blob: 298b868910dc4be078911df20a9203928ab634b1 [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>
48
49#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{
1540 struct bio_vec *bvec;
1541 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001542 /* hint all but last page with MSG_MORE */
Lars Ellenberg001a8862012-03-08 16:43:45 +01001543 bio_for_each_segment(bvec, bio, i) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001544 int err;
1545
1546 err = _drbd_no_send_page(mdev, bvec->bv_page,
1547 bvec->bv_offset, bvec->bv_len,
1548 i == bio->bi_vcnt - 1 ? 0 : MSG_MORE);
1549 if (err)
1550 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001551 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001552 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001553}
1554
1555static int _drbd_send_zc_bio(struct drbd_conf *mdev, struct bio *bio)
1556{
1557 struct bio_vec *bvec;
1558 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001559 /* hint all but last page with MSG_MORE */
Lars Ellenberg001a8862012-03-08 16:43:45 +01001560 bio_for_each_segment(bvec, bio, i) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001561 int err;
1562
1563 err = _drbd_send_page(mdev, bvec->bv_page,
1564 bvec->bv_offset, bvec->bv_len,
1565 i == bio->bi_vcnt - 1 ? 0 : MSG_MORE);
1566 if (err)
1567 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001568 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001569 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001570}
1571
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001572static int _drbd_send_zc_ee(struct drbd_conf *mdev,
1573 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001574{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001575 struct page *page = peer_req->pages;
1576 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001577 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001578
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001579 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001580 page_chain_for_each(page) {
1581 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001582
1583 err = _drbd_send_page(mdev, page, 0, l,
1584 page_chain_next(page) ? MSG_MORE : 0);
1585 if (err)
1586 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001587 len -= l;
1588 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001589 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001590}
1591
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001592static u32 bio_flags_to_wire(struct drbd_conf *mdev, unsigned long bi_rw)
1593{
Philipp Reisner31890f42011-01-19 14:12:51 +01001594 if (mdev->tconn->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001595 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001596 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1597 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1598 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1599 else
Jens Axboe721a9602011-03-09 11:56:30 +01001600 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001601}
1602
Philipp Reisnerb411b362009-09-25 16:07:19 -07001603/* Used to send write requests
1604 * R_PRIMARY -> Peer (P_DATA)
1605 */
1606int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
1607{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001608 struct drbd_socket *sock;
1609 struct p_data *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001610 unsigned int dp_flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001611 int dgs;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001612 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001613
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001614 sock = &mdev->tconn->data;
1615 p = drbd_prepare_command(mdev, sock);
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001616 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001617
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001618 if (!p)
1619 return -EIO;
1620 p->sector = cpu_to_be64(req->i.sector);
1621 p->block_id = (unsigned long)req;
Lars Ellenberg5cdb0bf32012-03-26 16:21:25 +02001622 p->seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001623 dp_flags = bio_flags_to_wire(mdev, req->master_bio->bi_rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001624 if (mdev->state.conn >= C_SYNC_SOURCE &&
1625 mdev->state.conn <= C_PAUSED_SYNC_T)
1626 dp_flags |= DP_MAY_SET_IN_SYNC;
Philipp Reisner303d1442011-04-13 16:24:47 -07001627 if (mdev->tconn->agreed_pro_version >= 100) {
1628 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1629 dp_flags |= DP_SEND_RECEIVE_ACK;
1630 if (req->rq_state & RQ_EXP_WRITE_ACK)
1631 dp_flags |= DP_SEND_WRITE_ACK;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001632 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001633 p->dp_flags = cpu_to_be32(dp_flags);
1634 if (dgs)
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001635 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001636 err = __send_command(mdev->tconn, mdev->vnr, sock, P_DATA, sizeof(*p) + dgs, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001637 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001638 /* For protocol A, we have to memcpy the payload into
1639 * socket buffers, as we may complete right away
1640 * as soon as we handed it over to tcp, at which point the data
1641 * pages may become invalid.
1642 *
1643 * For data-integrity enabled, we copy it as well, so we can be
1644 * sure that even if the bio pages may still be modified, it
1645 * won't change the data on the wire, thus if the digest checks
1646 * out ok after sending on this side, but does not fit on the
1647 * receiving side, we sure have detected corruption elsewhere.
1648 */
Philipp Reisner303d1442011-04-13 16:24:47 -07001649 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || dgs)
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001650 err = _drbd_send_bio(mdev, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001651 else
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001652 err = _drbd_send_zc_bio(mdev, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001653
1654 /* double check digest, sometimes buffers have been modified in flight. */
1655 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001656 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001657 * currently supported in kernel crypto. */
1658 unsigned char digest[64];
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001659 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001660 if (memcmp(p + 1, digest, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001661 dev_warn(DEV,
1662 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001663 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001664 }
1665 } /* else if (dgs > 64) {
1666 ... Be noisy about digest too large ...
1667 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001668 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001669 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001670
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001671 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001672}
1673
1674/* answer packet, used to send data back for read requests:
1675 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1676 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1677 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001678int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001679 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001680{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001681 struct drbd_socket *sock;
1682 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001683 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001684 int dgs;
1685
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001686 sock = &mdev->tconn->data;
1687 p = drbd_prepare_command(mdev, sock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001688
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001689 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001690
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001691 if (!p)
1692 return -EIO;
1693 p->sector = cpu_to_be64(peer_req->i.sector);
1694 p->block_id = peer_req->block_id;
1695 p->seq_num = 0; /* unused */
Lars Ellenbergb17f33c2012-02-08 15:32:51 +01001696 p->dp_flags = 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001697 if (dgs)
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001698 drbd_csum_ee(mdev, mdev->tconn->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001699 err = __send_command(mdev->tconn, mdev->vnr, sock, cmd, sizeof(*p) + dgs, NULL, peer_req->i.size);
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001700 if (!err)
1701 err = _drbd_send_zc_ee(mdev, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001702 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001703
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001704 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001705}
1706
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +01001707int drbd_send_out_of_sync(struct drbd_conf *mdev, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001708{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001709 struct drbd_socket *sock;
1710 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001711
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001712 sock = &mdev->tconn->data;
1713 p = drbd_prepare_command(mdev, sock);
1714 if (!p)
1715 return -EIO;
1716 p->sector = cpu_to_be64(req->i.sector);
1717 p->blksize = cpu_to_be32(req->i.size);
1718 return drbd_send_command(mdev, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001719}
1720
Philipp Reisnerb411b362009-09-25 16:07:19 -07001721/*
1722 drbd_send distinguishes two cases:
1723
1724 Packets sent via the data socket "sock"
1725 and packets sent via the meta data socket "msock"
1726
1727 sock msock
1728 -----------------+-------------------------+------------------------------
1729 timeout conf.timeout / 2 conf.timeout / 2
1730 timeout action send a ping via msock Abort communication
1731 and close all sockets
1732*/
1733
1734/*
1735 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1736 */
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001737int drbd_send(struct drbd_tconn *tconn, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001738 void *buf, size_t size, unsigned msg_flags)
1739{
1740 struct kvec iov;
1741 struct msghdr msg;
1742 int rv, sent = 0;
1743
1744 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001745 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001746
1747 /* THINK if (signal_pending) return ... ? */
1748
1749 iov.iov_base = buf;
1750 iov.iov_len = size;
1751
1752 msg.msg_name = NULL;
1753 msg.msg_namelen = 0;
1754 msg.msg_control = NULL;
1755 msg.msg_controllen = 0;
1756 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1757
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001758 if (sock == tconn->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001759 rcu_read_lock();
1760 tconn->ko_count = rcu_dereference(tconn->net_conf)->ko_count;
1761 rcu_read_unlock();
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001762 drbd_update_congested(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001763 }
1764 do {
1765 /* STRANGE
1766 * tcp_sendmsg does _not_ use its size parameter at all ?
1767 *
1768 * -EAGAIN on timeout, -EINTR on signal.
1769 */
1770/* THINK
1771 * do we need to block DRBD_SIG if sock == &meta.socket ??
1772 * otherwise wake_asender() might interrupt some send_*Ack !
1773 */
1774 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1775 if (rv == -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001776 if (we_should_drop_the_connection(tconn, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001777 break;
1778 else
1779 continue;
1780 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001781 if (rv == -EINTR) {
1782 flush_signals(current);
1783 rv = 0;
1784 }
1785 if (rv < 0)
1786 break;
1787 sent += rv;
1788 iov.iov_base += rv;
1789 iov.iov_len -= rv;
1790 } while (sent < size);
1791
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001792 if (sock == tconn->data.socket)
1793 clear_bit(NET_CONGESTED, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001794
1795 if (rv <= 0) {
1796 if (rv != -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001797 conn_err(tconn, "%s_sendmsg returned %d\n",
1798 sock == tconn->meta.socket ? "msock" : "sock",
1799 rv);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001800 conn_request_state(tconn, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001801 } else
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001802 conn_request_state(tconn, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001803 }
1804
1805 return sent;
1806}
1807
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001808/**
1809 * drbd_send_all - Send an entire buffer
1810 *
1811 * Returns 0 upon success and a negative error value otherwise.
1812 */
1813int drbd_send_all(struct drbd_tconn *tconn, struct socket *sock, void *buffer,
1814 size_t size, unsigned msg_flags)
1815{
1816 int err;
1817
1818 err = drbd_send(tconn, sock, buffer, size, msg_flags);
1819 if (err < 0)
1820 return err;
1821 if (err != size)
1822 return -EIO;
1823 return 0;
1824}
1825
Philipp Reisnerb411b362009-09-25 16:07:19 -07001826static int drbd_open(struct block_device *bdev, fmode_t mode)
1827{
1828 struct drbd_conf *mdev = bdev->bd_disk->private_data;
1829 unsigned long flags;
1830 int rv = 0;
1831
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001832 mutex_lock(&drbd_main_mutex);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001833 spin_lock_irqsave(&mdev->tconn->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001834 /* to have a stable mdev->state.role
1835 * and no race with updating open_cnt */
1836
1837 if (mdev->state.role != R_PRIMARY) {
1838 if (mode & FMODE_WRITE)
1839 rv = -EROFS;
1840 else if (!allow_oos)
1841 rv = -EMEDIUMTYPE;
1842 }
1843
1844 if (!rv)
1845 mdev->open_cnt++;
Philipp Reisner87eeee42011-01-19 14:16:30 +01001846 spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001847 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001848
1849 return rv;
1850}
1851
Al Virodb2a1442013-05-05 21:52:57 -04001852static void drbd_release(struct gendisk *gd, fmode_t mode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001853{
1854 struct drbd_conf *mdev = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001855 mutex_lock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001856 mdev->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001857 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001858}
1859
Philipp Reisnerb411b362009-09-25 16:07:19 -07001860static void drbd_set_defaults(struct drbd_conf *mdev)
1861{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001862 /* Beware! The actual layout differs
1863 * between big endian and little endian */
Philipp Reisnerda9fbc22011-03-29 10:52:01 +02001864 mdev->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001865 { .role = R_SECONDARY,
1866 .peer = R_UNKNOWN,
1867 .conn = C_STANDALONE,
1868 .disk = D_DISKLESS,
1869 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001870 } };
1871}
1872
1873void drbd_init_set_defaults(struct drbd_conf *mdev)
1874{
1875 /* the memset(,0,) did most of this.
1876 * note: only assignments, no allocation in here */
1877
1878 drbd_set_defaults(mdev);
1879
Philipp Reisnerb411b362009-09-25 16:07:19 -07001880 atomic_set(&mdev->ap_bio_cnt, 0);
1881 atomic_set(&mdev->ap_pending_cnt, 0);
1882 atomic_set(&mdev->rs_pending_cnt, 0);
1883 atomic_set(&mdev->unacked_cnt, 0);
1884 atomic_set(&mdev->local_cnt, 0);
Lars Ellenberg435f0742010-09-06 12:30:25 +02001885 atomic_set(&mdev->pp_in_use_by_net, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02001886 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001887 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner759fbdf2010-10-26 16:02:27 +02001888 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisnere1711732011-06-27 11:51:46 +02001889 atomic_set(&mdev->md_io_in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001890
Philipp Reisner8410da82011-02-11 20:11:10 +01001891 mutex_init(&mdev->own_state_mutex);
1892 mdev->state_mutex = &mdev->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001893
1894 spin_lock_init(&mdev->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001895 spin_lock_init(&mdev->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001896
1897 INIT_LIST_HEAD(&mdev->active_ee);
1898 INIT_LIST_HEAD(&mdev->sync_ee);
1899 INIT_LIST_HEAD(&mdev->done_ee);
1900 INIT_LIST_HEAD(&mdev->read_ee);
1901 INIT_LIST_HEAD(&mdev->net_ee);
1902 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001903 INIT_LIST_HEAD(&mdev->resync_work.list);
1904 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001905 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001906 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02001907 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001908 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02001909
Philipp Reisner794abb72010-12-27 11:51:23 +01001910 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001911 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001912 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001913 mdev->md_sync_work.cb = w_md_sync;
1914 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001915 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01001916
1917 mdev->resync_work.mdev = mdev;
1918 mdev->unplug_work.mdev = mdev;
1919 mdev->go_diskless.mdev = mdev;
1920 mdev->md_sync_work.mdev = mdev;
1921 mdev->bm_io_work.w.mdev = mdev;
1922 mdev->start_resync_work.mdev = mdev;
1923
Philipp Reisnerb411b362009-09-25 16:07:19 -07001924 init_timer(&mdev->resync_timer);
1925 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01001926 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001927 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001928 mdev->resync_timer.function = resync_timer_fn;
1929 mdev->resync_timer.data = (unsigned long) mdev;
1930 mdev->md_sync_timer.function = md_sync_timer_fn;
1931 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001932 mdev->start_resync_timer.function = start_resync_timer_fn;
1933 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001934 mdev->request_timer.function = request_timer_fn;
1935 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001936
1937 init_waitqueue_head(&mdev->misc_wait);
1938 init_waitqueue_head(&mdev->state_wait);
1939 init_waitqueue_head(&mdev->ee_wait);
1940 init_waitqueue_head(&mdev->al_wait);
1941 init_waitqueue_head(&mdev->seq_wait);
1942
Philipp Reisnerb411b362009-09-25 16:07:19 -07001943 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001944 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
1945 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001946}
1947
1948void drbd_mdev_cleanup(struct drbd_conf *mdev)
1949{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001950 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001951 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001952 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001953 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001954
Philipp Reisnerb411b362009-09-25 16:07:19 -07001955 mdev->al_writ_cnt =
1956 mdev->bm_writ_cnt =
1957 mdev->read_cnt =
1958 mdev->recv_cnt =
1959 mdev->send_cnt =
1960 mdev->writ_cnt =
1961 mdev->p_size =
1962 mdev->rs_start =
1963 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001964 mdev->rs_failed = 0;
1965 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001966 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001967 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
1968 mdev->rs_mark_left[i] = 0;
1969 mdev->rs_mark_time[i] = 0;
1970 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01001971 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001972
1973 drbd_set_my_capacity(mdev, 0);
1974 if (mdev->bitmap) {
1975 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01001976 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001977 drbd_bm_cleanup(mdev);
1978 }
1979
Philipp Reisner1d041222011-04-22 15:20:23 +02001980 drbd_free_bc(mdev->ldev);
1981 mdev->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001982
Philipp Reisnerb411b362009-09-25 16:07:19 -07001983 clear_bit(AL_SUSPENDED, &mdev->flags);
1984
Philipp Reisnerb411b362009-09-25 16:07:19 -07001985 D_ASSERT(list_empty(&mdev->active_ee));
1986 D_ASSERT(list_empty(&mdev->sync_ee));
1987 D_ASSERT(list_empty(&mdev->done_ee));
1988 D_ASSERT(list_empty(&mdev->read_ee));
1989 D_ASSERT(list_empty(&mdev->net_ee));
1990 D_ASSERT(list_empty(&mdev->resync_reads));
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01001991 D_ASSERT(list_empty(&mdev->tconn->sender_work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001992 D_ASSERT(list_empty(&mdev->resync_work.list));
1993 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001994 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01001995
1996 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001997}
1998
1999
2000static void drbd_destroy_mempools(void)
2001{
2002 struct page *page;
2003
2004 while (drbd_pp_pool) {
2005 page = drbd_pp_pool;
2006 drbd_pp_pool = (struct page *)page_private(page);
2007 __free_page(page);
2008 drbd_pp_vacant--;
2009 }
2010
2011 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
2012
Lars Ellenberg9476f392011-02-23 17:02:01 +01002013 if (drbd_md_io_bio_set)
2014 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg42818082011-02-23 12:39:46 +01002015 if (drbd_md_io_page_pool)
2016 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002017 if (drbd_ee_mempool)
2018 mempool_destroy(drbd_ee_mempool);
2019 if (drbd_request_mempool)
2020 mempool_destroy(drbd_request_mempool);
2021 if (drbd_ee_cache)
2022 kmem_cache_destroy(drbd_ee_cache);
2023 if (drbd_request_cache)
2024 kmem_cache_destroy(drbd_request_cache);
2025 if (drbd_bm_ext_cache)
2026 kmem_cache_destroy(drbd_bm_ext_cache);
2027 if (drbd_al_ext_cache)
2028 kmem_cache_destroy(drbd_al_ext_cache);
2029
Lars Ellenberg9476f392011-02-23 17:02:01 +01002030 drbd_md_io_bio_set = NULL;
Lars Ellenberg42818082011-02-23 12:39:46 +01002031 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002032 drbd_ee_mempool = NULL;
2033 drbd_request_mempool = NULL;
2034 drbd_ee_cache = NULL;
2035 drbd_request_cache = NULL;
2036 drbd_bm_ext_cache = NULL;
2037 drbd_al_ext_cache = NULL;
2038
2039 return;
2040}
2041
2042static int drbd_create_mempools(void)
2043{
2044 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01002045 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002046 int i;
2047
2048 /* prepare our caches and mempools */
2049 drbd_request_mempool = NULL;
2050 drbd_ee_cache = NULL;
2051 drbd_request_cache = NULL;
2052 drbd_bm_ext_cache = NULL;
2053 drbd_al_ext_cache = NULL;
2054 drbd_pp_pool = NULL;
Lars Ellenberg42818082011-02-23 12:39:46 +01002055 drbd_md_io_page_pool = NULL;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002056 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002057
2058 /* caches */
2059 drbd_request_cache = kmem_cache_create(
2060 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2061 if (drbd_request_cache == NULL)
2062 goto Enomem;
2063
2064 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002065 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002066 if (drbd_ee_cache == NULL)
2067 goto Enomem;
2068
2069 drbd_bm_ext_cache = kmem_cache_create(
2070 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2071 if (drbd_bm_ext_cache == NULL)
2072 goto Enomem;
2073
2074 drbd_al_ext_cache = kmem_cache_create(
2075 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2076 if (drbd_al_ext_cache == NULL)
2077 goto Enomem;
2078
2079 /* mempools */
Lars Ellenberg9476f392011-02-23 17:02:01 +01002080 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2081 if (drbd_md_io_bio_set == NULL)
2082 goto Enomem;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002083
Lars Ellenberg42818082011-02-23 12:39:46 +01002084 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2085 if (drbd_md_io_page_pool == NULL)
2086 goto Enomem;
2087
Philipp Reisnerb411b362009-09-25 16:07:19 -07002088 drbd_request_mempool = mempool_create(number,
2089 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2090 if (drbd_request_mempool == NULL)
2091 goto Enomem;
2092
2093 drbd_ee_mempool = mempool_create(number,
2094 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002095 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002096 goto Enomem;
2097
2098 /* drbd's page pool */
2099 spin_lock_init(&drbd_pp_lock);
2100
2101 for (i = 0; i < number; i++) {
2102 page = alloc_page(GFP_HIGHUSER);
2103 if (!page)
2104 goto Enomem;
2105 set_page_private(page, (unsigned long)drbd_pp_pool);
2106 drbd_pp_pool = page;
2107 }
2108 drbd_pp_vacant = number;
2109
2110 return 0;
2111
2112Enomem:
2113 drbd_destroy_mempools(); /* in case we allocated some */
2114 return -ENOMEM;
2115}
2116
2117static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2118 void *unused)
2119{
2120 /* just so we have it. you never know what interesting things we
2121 * might want to do here some day...
2122 */
2123
2124 return NOTIFY_DONE;
2125}
2126
2127static struct notifier_block drbd_notifier = {
2128 .notifier_call = drbd_notify_sys,
2129};
2130
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002131static void drbd_release_all_peer_reqs(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002132{
2133 int rr;
2134
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002135 rr = drbd_free_peer_reqs(mdev, &mdev->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002136 if (rr)
2137 dev_err(DEV, "%d EEs in active list found!\n", rr);
2138
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002139 rr = drbd_free_peer_reqs(mdev, &mdev->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002140 if (rr)
2141 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2142
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002143 rr = drbd_free_peer_reqs(mdev, &mdev->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002144 if (rr)
2145 dev_err(DEV, "%d EEs in read list found!\n", rr);
2146
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002147 rr = drbd_free_peer_reqs(mdev, &mdev->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002148 if (rr)
2149 dev_err(DEV, "%d EEs in done list found!\n", rr);
2150
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002151 rr = drbd_free_peer_reqs(mdev, &mdev->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002152 if (rr)
2153 dev_err(DEV, "%d EEs in net list found!\n", rr);
2154}
2155
Philipp Reisner774b3052011-02-22 02:07:03 -05002156/* caution. no locking. */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002157void drbd_minor_destroy(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002158{
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002159 struct drbd_conf *mdev = container_of(kref, struct drbd_conf, kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002160 struct drbd_tconn *tconn = mdev->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002161
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02002162 del_timer_sync(&mdev->request_timer);
2163
Philipp Reisnerb411b362009-09-25 16:07:19 -07002164 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002165 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002166 /* end paranoia asserts */
2167
Philipp Reisnerb411b362009-09-25 16:07:19 -07002168 /* cleanup stuff that may have been allocated during
2169 * device (re-)configuration or state changes */
2170
2171 if (mdev->this_bdev)
2172 bdput(mdev->this_bdev);
2173
Philipp Reisner1d041222011-04-22 15:20:23 +02002174 drbd_free_bc(mdev->ldev);
2175 mdev->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002176
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002177 drbd_release_all_peer_reqs(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002178
2179 lc_destroy(mdev->act_log);
2180 lc_destroy(mdev->resync);
2181
2182 kfree(mdev->p_uuid);
2183 /* mdev->p_uuid = NULL; */
2184
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002185 if (mdev->bitmap) /* should no longer be there. */
2186 drbd_bm_cleanup(mdev);
2187 __free_page(mdev->md_io_page);
2188 put_disk(mdev->vdisk);
2189 blk_cleanup_queue(mdev->rq_queue);
Philipp Reisner9958c852011-05-03 16:19:31 +02002190 kfree(mdev->rs_plan_s);
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002191 kfree(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002192
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002193 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002194}
2195
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002196/* One global retry thread, if we need to push back some bio and have it
2197 * reinserted through our make request function.
2198 */
2199static struct retry_worker {
2200 struct workqueue_struct *wq;
2201 struct work_struct worker;
2202
2203 spinlock_t lock;
2204 struct list_head writes;
2205} retry;
2206
2207static void do_retry(struct work_struct *ws)
2208{
2209 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2210 LIST_HEAD(writes);
2211 struct drbd_request *req, *tmp;
2212
2213 spin_lock_irq(&retry->lock);
2214 list_splice_init(&retry->writes, &writes);
2215 spin_unlock_irq(&retry->lock);
2216
2217 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
2218 struct drbd_conf *mdev = req->w.mdev;
2219 struct bio *bio = req->master_bio;
2220 unsigned long start_time = req->start_time;
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002221 bool expected;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002222
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002223 expected =
2224 expect(atomic_read(&req->completion_ref) == 0) &&
2225 expect(req->rq_state & RQ_POSTPONED) &&
2226 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2227 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2228
2229 if (!expected)
2230 dev_err(DEV, "req=%p completion_ref=%d rq_state=%x\n",
2231 req, atomic_read(&req->completion_ref),
2232 req->rq_state);
2233
2234 /* We still need to put one kref associated with the
2235 * "completion_ref" going zero in the code path that queued it
2236 * here. The request object may still be referenced by a
2237 * frozen local req->private_bio, in case we force-detached.
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002238 */
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002239 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002240
2241 /* A single suspended or otherwise blocking device may stall
2242 * all others as well. Fortunately, this code path is to
2243 * recover from a situation that "should not happen":
2244 * concurrent writes in multi-primary setup.
2245 * In a "normal" lifecycle, this workqueue is supposed to be
2246 * destroyed without ever doing anything.
2247 * If it turns out to be an issue anyways, we can do per
2248 * resource (replication group) or per device (minor) retry
2249 * workqueues instead.
2250 */
2251
2252 /* We are not just doing generic_make_request(),
2253 * as we want to keep the start_time information. */
Lars Ellenberg5df69ec2012-01-24 16:49:58 +01002254 inc_ap_bio(mdev);
2255 __drbd_make_request(mdev, bio, start_time);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002256 }
2257}
2258
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002259void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002260{
2261 unsigned long flags;
2262 spin_lock_irqsave(&retry.lock, flags);
2263 list_move_tail(&req->tl_requests, &retry.writes);
2264 spin_unlock_irqrestore(&retry.lock, flags);
2265
2266 /* Drop the extra reference that would otherwise
2267 * have been dropped by complete_master_bio.
2268 * do_retry() needs to grab a new one. */
2269 dec_ap_bio(req->w.mdev);
2270
2271 queue_work(retry.wq, &retry.worker);
2272}
2273
2274
Philipp Reisnerb411b362009-09-25 16:07:19 -07002275static void drbd_cleanup(void)
2276{
2277 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002278 struct drbd_conf *mdev;
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002279 struct drbd_tconn *tconn, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002280
2281 unregister_reboot_notifier(&drbd_notifier);
2282
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002283 /* first remove proc,
2284 * drbdsetup uses it's presence to detect
2285 * whether DRBD is loaded.
2286 * If we would get stuck in proc removal,
2287 * but have netlink already deregistered,
2288 * some drbdsetup commands may wait forever
2289 * for an answer.
2290 */
2291 if (drbd_proc)
2292 remove_proc_entry("drbd", NULL);
2293
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002294 if (retry.wq)
2295 destroy_workqueue(retry.wq);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002296
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002297 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002298
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002299 idr_for_each_entry(&minors, mdev, i) {
2300 idr_remove(&minors, mdev_to_minor(mdev));
2301 idr_remove(&mdev->tconn->volumes, mdev->vnr);
2302 del_gendisk(mdev->vdisk);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002303 /* synchronize_rcu(); No other threads running at this point */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002304 kref_put(&mdev->kref, &drbd_minor_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002305 }
2306
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002307 /* not _rcu since, no other updater anymore. Genl already unregistered */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002308 list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002309 list_del(&tconn->all_tconn); /* not _rcu no proc, not other threads */
2310 /* synchronize_rcu(); */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002311 kref_put(&tconn->kref, &conn_destroy);
2312 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002313
Philipp Reisner81a5d602011-02-22 19:53:16 -05002314 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002315 unregister_blkdev(DRBD_MAJOR, "drbd");
2316
Philipp Reisner81a5d602011-02-22 19:53:16 -05002317 idr_destroy(&minors);
2318
Philipp Reisnerb411b362009-09-25 16:07:19 -07002319 printk(KERN_INFO "drbd: module cleanup done.\n");
2320}
2321
2322/**
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002323 * drbd_congested() - Callback for the flusher thread
Philipp Reisnerb411b362009-09-25 16:07:19 -07002324 * @congested_data: User data
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002325 * @bdi_bits: Bits the BDI flusher thread is currently interested in
Philipp Reisnerb411b362009-09-25 16:07:19 -07002326 *
2327 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2328 */
2329static int drbd_congested(void *congested_data, int bdi_bits)
2330{
2331 struct drbd_conf *mdev = congested_data;
2332 struct request_queue *q;
2333 char reason = '-';
2334 int r = 0;
2335
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002336 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002337 /* DRBD has frozen IO */
2338 r = bdi_bits;
2339 reason = 'd';
2340 goto out;
2341 }
2342
Lars Ellenberg6f3465e2012-07-30 09:08:25 +02002343 if (test_bit(CALLBACK_PENDING, &mdev->tconn->flags)) {
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002344 r |= (1 << BDI_async_congested);
2345 /* Without good local data, we would need to read from remote,
2346 * and that would need the worker thread as well, which is
2347 * currently blocked waiting for that usermode helper to
2348 * finish.
2349 */
2350 if (!get_ldev_if_state(mdev, D_UP_TO_DATE))
2351 r |= (1 << BDI_sync_congested);
2352 else
2353 put_ldev(mdev);
2354 r &= bdi_bits;
2355 reason = 'c';
2356 goto out;
2357 }
2358
Philipp Reisnerb411b362009-09-25 16:07:19 -07002359 if (get_ldev(mdev)) {
2360 q = bdev_get_queue(mdev->ldev->backing_bdev);
2361 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2362 put_ldev(mdev);
2363 if (r)
2364 reason = 'b';
2365 }
2366
Philipp Reisner01a311a2011-02-07 14:30:33 +01002367 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002368 r |= (1 << BDI_async_congested);
2369 reason = reason == 'b' ? 'a' : 'n';
2370 }
2371
2372out:
2373 mdev->congestion_reason = reason;
2374 return r;
2375}
2376
Philipp Reisner6699b652011-02-09 11:10:24 +01002377static void drbd_init_workqueue(struct drbd_work_queue* wq)
2378{
Philipp Reisner6699b652011-02-09 11:10:24 +01002379 spin_lock_init(&wq->q_lock);
2380 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002381 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002382}
2383
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002384struct drbd_tconn *conn_get_by_name(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002385{
2386 struct drbd_tconn *tconn;
2387
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002388 if (!name || !name[0])
2389 return NULL;
2390
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002391 rcu_read_lock();
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002392 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002393 if (!strcmp(tconn->name, name)) {
2394 kref_get(&tconn->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002395 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002396 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002397 }
2398 tconn = NULL;
2399found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002400 rcu_read_unlock();
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002401 return tconn;
2402}
2403
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002404struct drbd_tconn *conn_get_by_addrs(void *my_addr, int my_addr_len,
2405 void *peer_addr, int peer_addr_len)
2406{
2407 struct drbd_tconn *tconn;
2408
2409 rcu_read_lock();
2410 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
2411 if (tconn->my_addr_len == my_addr_len &&
2412 tconn->peer_addr_len == peer_addr_len &&
2413 !memcmp(&tconn->my_addr, my_addr, my_addr_len) &&
2414 !memcmp(&tconn->peer_addr, peer_addr, peer_addr_len)) {
2415 kref_get(&tconn->kref);
2416 goto found;
2417 }
2418 }
2419 tconn = NULL;
2420found:
2421 rcu_read_unlock();
2422 return tconn;
2423}
2424
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002425static int drbd_alloc_socket(struct drbd_socket *socket)
2426{
2427 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2428 if (!socket->rbuf)
2429 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002430 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2431 if (!socket->sbuf)
2432 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002433 return 0;
2434}
2435
2436static void drbd_free_socket(struct drbd_socket *socket)
2437{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002438 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002439 free_page((unsigned long) socket->rbuf);
2440}
2441
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002442void conn_free_crypto(struct drbd_tconn *tconn)
2443{
Philipp Reisner1d041222011-04-22 15:20:23 +02002444 drbd_free_sock(tconn);
2445
2446 crypto_free_hash(tconn->csums_tfm);
2447 crypto_free_hash(tconn->verify_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002448 crypto_free_hash(tconn->cram_hmac_tfm);
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002449 crypto_free_hash(tconn->integrity_tfm);
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002450 crypto_free_hash(tconn->peer_integrity_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002451 kfree(tconn->int_dig_in);
2452 kfree(tconn->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002453
2454 tconn->csums_tfm = NULL;
2455 tconn->verify_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002456 tconn->cram_hmac_tfm = NULL;
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002457 tconn->integrity_tfm = NULL;
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002458 tconn->peer_integrity_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002459 tconn->int_dig_in = NULL;
2460 tconn->int_dig_vv = NULL;
2461}
2462
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002463int set_resource_options(struct drbd_tconn *tconn, struct res_opts *res_opts)
2464{
2465 cpumask_var_t new_cpu_mask;
2466 int err;
2467
2468 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2469 return -ENOMEM;
2470 /*
2471 retcode = ERR_NOMEM;
2472 drbd_msg_put_info("unable to allocate cpumask");
2473 */
2474
2475 /* silently ignore cpu mask on UP kernel */
2476 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
2477 /* FIXME: Get rid of constant 32 here */
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002478 err = bitmap_parse(res_opts->cpu_mask, 32,
2479 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002480 if (err) {
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002481 conn_warn(tconn, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002482 /* retcode = ERR_CPU_MASK_PARSE; */
2483 goto fail;
2484 }
2485 }
2486 tconn->res_opts = *res_opts;
2487 if (!cpumask_equal(tconn->cpu_mask, new_cpu_mask)) {
2488 cpumask_copy(tconn->cpu_mask, new_cpu_mask);
2489 drbd_calc_cpu_mask(tconn);
2490 tconn->receiver.reset_cpu_mask = 1;
2491 tconn->asender.reset_cpu_mask = 1;
2492 tconn->worker.reset_cpu_mask = 1;
2493 }
2494 err = 0;
2495
2496fail:
2497 free_cpumask_var(new_cpu_mask);
2498 return err;
2499
2500}
2501
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002502/* caller must be under genl_lock() */
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002503struct drbd_tconn *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002504{
2505 struct drbd_tconn *tconn;
2506
2507 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2508 if (!tconn)
2509 return NULL;
2510
2511 tconn->name = kstrdup(name, GFP_KERNEL);
2512 if (!tconn->name)
2513 goto fail;
2514
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002515 if (drbd_alloc_socket(&tconn->data))
2516 goto fail;
2517 if (drbd_alloc_socket(&tconn->meta))
2518 goto fail;
2519
Philipp Reisner774b3052011-02-22 02:07:03 -05002520 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2521 goto fail;
2522
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002523 if (set_resource_options(tconn, res_opts))
2524 goto fail;
2525
Philipp Reisner12038a32011-11-09 19:18:00 +01002526 tconn->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2527 if (!tconn->current_epoch)
2528 goto fail;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002529
2530 INIT_LIST_HEAD(&tconn->transfer_log);
2531
Philipp Reisner12038a32011-11-09 19:18:00 +01002532 INIT_LIST_HEAD(&tconn->current_epoch->list);
2533 tconn->epochs = 1;
2534 spin_lock_init(&tconn->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002535 tconn->write_ordering = WO_bdev_flush;
2536
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002537 tconn->send.seen_any_write_yet = false;
2538 tconn->send.current_epoch_nr = 0;
2539 tconn->send.current_epoch_writes = 0;
2540
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002541 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da82011-02-11 20:11:10 +01002542 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002543 spin_lock_init(&tconn->req_lock);
Philipp Reisnera0095502011-05-03 13:14:15 +02002544 mutex_init(&tconn->conf_update);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002545 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002546 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002547
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01002548 drbd_init_workqueue(&tconn->sender_work);
Philipp Reisner6699b652011-02-09 11:10:24 +01002549 mutex_init(&tconn->data.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002550 mutex_init(&tconn->meta.mutex);
2551
Philipp Reisner392c8802011-02-09 10:33:31 +01002552 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2553 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2554 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2555
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002556 kref_init(&tconn->kref);
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002557 list_add_tail_rcu(&tconn->all_tconn, &drbd_tconns);
Philipp Reisner21114382011-01-19 12:26:59 +01002558
2559 return tconn;
2560
2561fail:
Philipp Reisner12038a32011-11-09 19:18:00 +01002562 kfree(tconn->current_epoch);
Philipp Reisner774b3052011-02-22 02:07:03 -05002563 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002564 drbd_free_socket(&tconn->meta);
2565 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002566 kfree(tconn->name);
2567 kfree(tconn);
2568
2569 return NULL;
2570}
2571
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002572void conn_destroy(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002573{
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002574 struct drbd_tconn *tconn = container_of(kref, struct drbd_tconn, kref);
2575
Philipp Reisner12038a32011-11-09 19:18:00 +01002576 if (atomic_read(&tconn->current_epoch->epoch_size) != 0)
2577 conn_err(tconn, "epoch_size:%d\n", atomic_read(&tconn->current_epoch->epoch_size));
2578 kfree(tconn->current_epoch);
2579
Philipp Reisner062e8792011-02-08 11:09:18 +01002580 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002581
Philipp Reisner774b3052011-02-22 02:07:03 -05002582 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002583 drbd_free_socket(&tconn->meta);
2584 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002585 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002586 kfree(tconn->int_dig_in);
2587 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002588 kfree(tconn);
2589}
2590
Philipp Reisner774b3052011-02-22 02:07:03 -05002591enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002592{
2593 struct drbd_conf *mdev;
2594 struct gendisk *disk;
2595 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002596 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002597 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002598 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002599
2600 mdev = minor_to_mdev(minor);
2601 if (mdev)
2602 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002603
2604 /* GFP_KERNEL, we are outside of all write-out paths */
2605 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2606 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002607 return ERR_NOMEM;
2608
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002609 kref_get(&tconn->kref);
Philipp Reisner774b3052011-02-22 02:07:03 -05002610 mdev->tconn = tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002611
2612 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002613 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002614
2615 drbd_init_set_defaults(mdev);
2616
2617 q = blk_alloc_queue(GFP_KERNEL);
2618 if (!q)
2619 goto out_no_q;
2620 mdev->rq_queue = q;
2621 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002622
2623 disk = alloc_disk(1);
2624 if (!disk)
2625 goto out_no_disk;
2626 mdev->vdisk = disk;
2627
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002628 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002629
2630 disk->queue = q;
2631 disk->major = DRBD_MAJOR;
2632 disk->first_minor = minor;
2633 disk->fops = &drbd_ops;
2634 sprintf(disk->disk_name, "drbd%d", minor);
2635 disk->private_data = mdev;
2636
2637 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2638 /* we have no partitions. we contain only ourselves. */
2639 mdev->this_bdev->bd_contains = mdev->this_bdev;
2640
2641 q->backing_dev_info.congested_fn = drbd_congested;
2642 q->backing_dev_info.congested_data = mdev;
2643
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002644 blk_queue_make_request(q, drbd_make_request);
Lars Ellenberga73ff322012-06-25 19:15:38 +02002645 blk_queue_flush(q, REQ_FLUSH | REQ_FUA);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002646 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2647 This triggers a max_bio_size message upon first attach or connect */
2648 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002649 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2650 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002651 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002652
2653 mdev->md_io_page = alloc_page(GFP_KERNEL);
2654 if (!mdev->md_io_page)
2655 goto out_no_io_page;
2656
2657 if (drbd_bm_init(mdev))
2658 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002659 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002660 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002661
Tejun Heo56de2102013-02-27 17:04:01 -08002662 minor_got = idr_alloc(&minors, mdev, minor, minor + 1, GFP_KERNEL);
2663 if (minor_got < 0) {
2664 if (minor_got == -ENOSPC) {
2665 err = ERR_MINOR_EXISTS;
2666 drbd_msg_put_info("requested minor exists already");
2667 }
Lars Ellenberg8432b312011-03-08 16:11:16 +01002668 goto out_no_minor_idr;
Tejun Heo56de2102013-02-27 17:04:01 -08002669 }
2670
2671 vnr_got = idr_alloc(&tconn->volumes, mdev, vnr, vnr + 1, GFP_KERNEL);
2672 if (vnr_got < 0) {
2673 if (vnr_got == -ENOSPC) {
2674 err = ERR_INVALID_REQUEST;
2675 drbd_msg_put_info("requested volume exists already");
2676 }
Lars Ellenberg8432b312011-03-08 16:11:16 +01002677 goto out_idr_remove_minor;
Lars Ellenberg569083c2011-03-07 09:49:02 +01002678 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002679
Philipp Reisner774b3052011-02-22 02:07:03 -05002680 add_disk(disk);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002681 kref_init(&mdev->kref); /* one ref for both idrs and the the add_disk */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002682
Philipp Reisner2325eb62011-03-15 16:56:18 +01002683 /* inherit the connection state */
2684 mdev->state.conn = tconn->cstate;
2685 if (mdev->state.conn == C_WF_REPORT_PARAMS)
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002686 drbd_connected(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002687
Philipp Reisner774b3052011-02-22 02:07:03 -05002688 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002689
Lars Ellenberg8432b312011-03-08 16:11:16 +01002690out_idr_remove_minor:
2691 idr_remove(&minors, minor_got);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002692 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002693out_no_minor_idr:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002694 drbd_bm_cleanup(mdev);
2695out_no_bitmap:
2696 __free_page(mdev->md_io_page);
2697out_no_io_page:
2698 put_disk(disk);
2699out_no_disk:
2700 blk_cleanup_queue(q);
2701out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002702 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002703 kref_put(&tconn->kref, &conn_destroy);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002704 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002705}
2706
Philipp Reisnerb411b362009-09-25 16:07:19 -07002707int __init drbd_init(void)
2708{
2709 int err;
2710
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002711 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002712 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002713 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002714#ifdef MODULE
2715 return -EINVAL;
2716#else
Andreas Gruenbacher46530e82011-05-31 13:08:53 +02002717 minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002718#endif
2719 }
2720
Philipp Reisnerb411b362009-09-25 16:07:19 -07002721 err = register_blkdev(DRBD_MAJOR, "drbd");
2722 if (err) {
2723 printk(KERN_ERR
2724 "drbd: unable to register block device major %d\n",
2725 DRBD_MAJOR);
2726 return err;
2727 }
2728
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002729 err = drbd_genl_register();
2730 if (err) {
2731 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2732 goto fail;
2733 }
2734
2735
Philipp Reisnerb411b362009-09-25 16:07:19 -07002736 register_reboot_notifier(&drbd_notifier);
2737
2738 /*
2739 * allocate all necessary structs
2740 */
2741 err = -ENOMEM;
2742
2743 init_waitqueue_head(&drbd_pp_wait);
2744
2745 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002746 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002747
2748 err = drbd_create_mempools();
2749 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002750 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002751
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002752 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002753 if (!drbd_proc) {
2754 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002755 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002756 }
2757
2758 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002759 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002760
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002761 retry.wq = create_singlethread_workqueue("drbd-reissue");
2762 if (!retry.wq) {
2763 printk(KERN_ERR "drbd: unable to create retry workqueue\n");
2764 goto fail;
2765 }
2766 INIT_WORK(&retry.worker, do_retry);
2767 spin_lock_init(&retry.lock);
2768 INIT_LIST_HEAD(&retry.writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002769
2770 printk(KERN_INFO "drbd: initialized. "
2771 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2772 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2773 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2774 printk(KERN_INFO "drbd: registered as block device major %d\n",
2775 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002776
2777 return 0; /* Success! */
2778
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002779fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002780 drbd_cleanup();
2781 if (err == -ENOMEM)
2782 /* currently always the case */
2783 printk(KERN_ERR "drbd: ran out of memory\n");
2784 else
2785 printk(KERN_ERR "drbd: initialization failure\n");
2786 return err;
2787}
2788
2789void drbd_free_bc(struct drbd_backing_dev *ldev)
2790{
2791 if (ldev == NULL)
2792 return;
2793
Tejun Heoe525fd82010-11-13 11:55:17 +01002794 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2795 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002796
2797 kfree(ldev);
2798}
2799
Philipp Reisner360cc742011-02-08 14:29:53 +01002800void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002801{
Philipp Reisner360cc742011-02-08 14:29:53 +01002802 if (tconn->data.socket) {
2803 mutex_lock(&tconn->data.mutex);
2804 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2805 sock_release(tconn->data.socket);
2806 tconn->data.socket = NULL;
2807 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002808 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002809 if (tconn->meta.socket) {
2810 mutex_lock(&tconn->meta.mutex);
2811 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2812 sock_release(tconn->meta.socket);
2813 tconn->meta.socket = NULL;
2814 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002815 }
2816}
2817
Philipp Reisnerb411b362009-09-25 16:07:19 -07002818/* meta data management */
2819
Philipp Reisner19fffd72012-08-28 16:48:03 +02002820void conn_md_sync(struct drbd_tconn *tconn)
2821{
2822 struct drbd_conf *mdev;
2823 int vnr;
2824
2825 rcu_read_lock();
2826 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
2827 kref_get(&mdev->kref);
2828 rcu_read_unlock();
2829 drbd_md_sync(mdev);
2830 kref_put(&mdev->kref, &drbd_minor_destroy);
2831 rcu_read_lock();
2832 }
2833 rcu_read_unlock();
2834}
2835
Philipp Reisnerb411b362009-09-25 16:07:19 -07002836struct meta_data_on_disk {
2837 u64 la_size; /* last agreed size. */
2838 u64 uuid[UI_SIZE]; /* UUIDs. */
2839 u64 device_uuid;
2840 u64 reserved_u64_1;
2841 u32 flags; /* MDF */
2842 u32 magic;
2843 u32 md_size_sect;
2844 u32 al_offset; /* offset to this block */
2845 u32 al_nr_extents; /* important for restoring the AL */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002846 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002847 u32 bm_offset; /* offset to the bitmap, from here */
2848 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002849 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2850 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002851
2852} __packed;
2853
2854/**
2855 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2856 * @mdev: DRBD device.
2857 */
2858void drbd_md_sync(struct drbd_conf *mdev)
2859{
2860 struct meta_data_on_disk *buffer;
2861 sector_t sector;
2862 int i;
2863
Lars Ellenbergee15b032010-09-03 10:00:09 +02002864 del_timer(&mdev->md_sync_timer);
2865 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002866 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
2867 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002868
2869 /* We use here D_FAILED and not D_ATTACHING because we try to write
2870 * metadata even if we detach due to a disk failure! */
2871 if (!get_ldev_if_state(mdev, D_FAILED))
2872 return;
2873
Philipp Reisnere1711732011-06-27 11:51:46 +02002874 buffer = drbd_md_get_buffer(mdev);
2875 if (!buffer)
2876 goto out;
2877
Philipp Reisnerb411b362009-09-25 16:07:19 -07002878 memset(buffer, 0, 512);
2879
2880 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
2881 for (i = UI_CURRENT; i < UI_SIZE; i++)
2882 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
2883 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002884 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002885
2886 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
2887 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
2888 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
2889 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
2890 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
2891
2892 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002893 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002894
2895 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
2896 sector = mdev->ldev->md.md_offset;
2897
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01002898 if (drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002899 /* this was a try anyways ... */
2900 dev_err(DEV, "meta data update failed!\n");
Lars Ellenberg383606e2012-06-14 14:21:32 +02002901 drbd_chk_io_error(mdev, 1, DRBD_META_IO_ERROR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002902 }
2903
2904 /* Update mdev->ldev->md.la_size_sect,
2905 * since we updated it on metadata. */
2906 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
2907
Philipp Reisnere1711732011-06-27 11:51:46 +02002908 drbd_md_put_buffer(mdev);
2909out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002910 put_ldev(mdev);
2911}
2912
2913/**
2914 * drbd_md_read() - Reads in the meta data super block
2915 * @mdev: DRBD device.
2916 * @bdev: Device from which the meta data should be read in.
2917 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01002918 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002919 * something goes wrong.
Philipp Reisnerb411b362009-09-25 16:07:19 -07002920 */
2921int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
2922{
2923 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002924 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002925 int i, rv = NO_ERROR;
2926
2927 if (!get_ldev_if_state(mdev, D_ATTACHING))
2928 return ERR_IO_MD_DISK;
2929
Philipp Reisnere1711732011-06-27 11:51:46 +02002930 buffer = drbd_md_get_buffer(mdev);
2931 if (!buffer)
2932 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002933
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01002934 if (drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002935 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07002936 called BEFORE disk is attached */
2937 dev_err(DEV, "Error while reading metadata.\n");
2938 rv = ERR_IO_MD_DISK;
2939 goto err;
2940 }
2941
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002942 magic = be32_to_cpu(buffer->magic);
2943 flags = be32_to_cpu(buffer->flags);
2944 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
2945 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
2946 /* btw: that's Activity Log clean, not "all" clean. */
2947 dev_err(DEV, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
2948 rv = ERR_MD_UNCLEAN;
2949 goto err;
2950 }
2951 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01002952 if (magic == DRBD_MD_MAGIC_07)
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002953 dev_err(DEV, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
2954 else
2955 dev_err(DEV, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002956 rv = ERR_MD_INVALID;
2957 goto err;
2958 }
2959 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
2960 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
2961 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
2962 rv = ERR_MD_INVALID;
2963 goto err;
2964 }
2965 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
2966 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
2967 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
2968 rv = ERR_MD_INVALID;
2969 goto err;
2970 }
2971 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
2972 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
2973 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
2974 rv = ERR_MD_INVALID;
2975 goto err;
2976 }
2977
2978 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
2979 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
2980 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
2981 rv = ERR_MD_INVALID;
2982 goto err;
2983 }
2984
2985 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
2986 for (i = UI_CURRENT; i < UI_SIZE; i++)
2987 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
2988 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002989 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
2990
Philipp Reisner87eeee42011-01-19 14:16:30 +01002991 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002992 if (mdev->state.conn < C_CONNECTED) {
Lars Ellenbergdb141b22012-06-25 19:15:58 +02002993 unsigned int peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02002994 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
Lars Ellenbergdb141b22012-06-25 19:15:58 +02002995 peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002996 mdev->peer_max_bio_size = peer;
2997 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01002998 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002999
3000 err:
Philipp Reisnere1711732011-06-27 11:51:46 +02003001 drbd_md_put_buffer(mdev);
3002 out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07003003 put_ldev(mdev);
3004
3005 return rv;
3006}
3007
3008/**
3009 * drbd_md_mark_dirty() - Mark meta data super block as dirty
3010 * @mdev: DRBD device.
3011 *
3012 * Call this function if you change anything that should be written to
3013 * the meta-data super block. This function sets MD_DIRTY, and starts a
3014 * timer that ensures that within five seconds you have to call drbd_md_sync().
3015 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003016#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02003017void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
3018{
3019 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
3020 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
3021 mdev->last_md_mark_dirty.line = line;
3022 mdev->last_md_mark_dirty.func = func;
3023 }
3024}
3025#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07003026void drbd_md_mark_dirty(struct drbd_conf *mdev)
3027{
Lars Ellenbergee15b032010-09-03 10:00:09 +02003028 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003029 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003030}
Lars Ellenbergee15b032010-09-03 10:00:09 +02003031#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003032
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003033void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003034{
3035 int i;
3036
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003037 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003038 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003039}
3040
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003041void __drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003042{
3043 if (idx == UI_CURRENT) {
3044 if (mdev->state.role == R_PRIMARY)
3045 val |= 1;
3046 else
3047 val &= ~((u64)1);
3048
3049 drbd_set_ed_uuid(mdev, val);
3050 }
3051
3052 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003053 drbd_md_mark_dirty(mdev);
3054}
3055
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003056void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3057{
3058 unsigned long flags;
3059 spin_lock_irqsave(&mdev->ldev->md.uuid_lock, flags);
3060 __drbd_uuid_set(mdev, idx, val);
3061 spin_unlock_irqrestore(&mdev->ldev->md.uuid_lock, flags);
3062}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003063
3064void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3065{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003066 unsigned long flags;
3067 spin_lock_irqsave(&mdev->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003068 if (mdev->ldev->md.uuid[idx]) {
3069 drbd_uuid_move_history(mdev);
3070 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003071 }
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003072 __drbd_uuid_set(mdev, idx, val);
3073 spin_unlock_irqrestore(&mdev->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003074}
3075
3076/**
3077 * drbd_uuid_new_current() - Creates a new current UUID
3078 * @mdev: DRBD device.
3079 *
3080 * Creates a new current UUID, and rotates the old current UUID into
3081 * the bitmap slot. Causes an incremental resync upon next connect.
3082 */
3083void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
3084{
3085 u64 val;
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003086 unsigned long long bm_uuid;
3087
3088 get_random_bytes(&val, sizeof(u64));
3089
3090 spin_lock_irq(&mdev->ldev->md.uuid_lock);
3091 bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003092
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003093 if (bm_uuid)
3094 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
3095
Philipp Reisnerb411b362009-09-25 16:07:19 -07003096 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003097 __drbd_uuid_set(mdev, UI_CURRENT, val);
3098 spin_unlock_irq(&mdev->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003099
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003100 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003101 /* get it to stable storage _now_ */
3102 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003103}
3104
3105void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
3106{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003107 unsigned long flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003108 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
3109 return;
3110
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003111 spin_lock_irqsave(&mdev->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003112 if (val == 0) {
3113 drbd_uuid_move_history(mdev);
3114 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
3115 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003116 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003117 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
3118 if (bm_uuid)
3119 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003120
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003121 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003122 }
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003123 spin_unlock_irqrestore(&mdev->ldev->md.uuid_lock, flags);
3124
Philipp Reisnerb411b362009-09-25 16:07:19 -07003125 drbd_md_mark_dirty(mdev);
3126}
3127
3128/**
3129 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3130 * @mdev: DRBD device.
3131 *
3132 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3133 */
3134int drbd_bmio_set_n_write(struct drbd_conf *mdev)
3135{
3136 int rv = -EIO;
3137
3138 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3139 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
3140 drbd_md_sync(mdev);
3141 drbd_bm_set_all(mdev);
3142
3143 rv = drbd_bm_write(mdev);
3144
3145 if (!rv) {
3146 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
3147 drbd_md_sync(mdev);
3148 }
3149
3150 put_ldev(mdev);
3151 }
3152
3153 return rv;
3154}
3155
3156/**
3157 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3158 * @mdev: DRBD device.
3159 *
3160 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3161 */
3162int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
3163{
3164 int rv = -EIO;
3165
Philipp Reisner07782862010-08-31 12:00:50 +02003166 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003167 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3168 drbd_bm_clear_all(mdev);
3169 rv = drbd_bm_write(mdev);
3170 put_ldev(mdev);
3171 }
3172
3173 return rv;
3174}
3175
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003176static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003177{
3178 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01003179 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003180 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003181
3182 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
3183
Lars Ellenberg02851e92010-12-16 14:47:39 +01003184 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003185 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003186 rv = work->io_fn(mdev);
3187 drbd_bm_unlock(mdev);
3188 put_ldev(mdev);
3189 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003190
Lars Ellenberg4738fa12011-02-21 13:20:55 +01003191 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003192 wake_up(&mdev->misc_wait);
3193
3194 if (work->done)
3195 work->done(mdev, rv);
3196
3197 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
3198 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003199 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003200
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003201 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003202}
3203
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003204void drbd_ldev_destroy(struct drbd_conf *mdev)
3205{
3206 lc_destroy(mdev->resync);
3207 mdev->resync = NULL;
3208 lc_destroy(mdev->act_log);
3209 mdev->act_log = NULL;
3210 __no_warn(local,
3211 drbd_free_bc(mdev->ldev);
3212 mdev->ldev = NULL;);
3213
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003214 clear_bit(GO_DISKLESS, &mdev->flags);
3215}
3216
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003217static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003218{
Philipp Reisner00d56942011-02-09 18:09:48 +01003219 struct drbd_conf *mdev = w->mdev;
3220
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003221 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02003222 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
3223 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003224 * the protected members anymore, though, so once put_ldev reaches zero
3225 * again, it will be safe to free them. */
Lars Ellenberga2a3c74f2012-09-22 12:26:57 +02003226
3227 /* Try to write changed bitmap pages, read errors may have just
3228 * set some bits outside the area covered by the activity log.
3229 *
3230 * If we have an IO error during the bitmap writeout,
3231 * we will want a full sync next time, just in case.
3232 * (Do we want a specific meta data flag for this?)
3233 *
3234 * If that does not make it to stable storage either,
Philipp Reisnerfd0017c2012-10-19 14:19:23 +02003235 * we cannot do anything about that anymore.
3236 *
3237 * We still need to check if both bitmap and ldev are present, we may
3238 * end up here after a failed attach, before ldev was even assigned.
3239 */
3240 if (mdev->bitmap && mdev->ldev) {
Lars Ellenberga2a3c74f2012-09-22 12:26:57 +02003241 if (drbd_bitmap_io_from_worker(mdev, drbd_bm_write,
3242 "detach", BM_LOCKED_MASK)) {
Lars Ellenbergedc9f5e2012-09-27 15:18:21 +02003243 if (test_bit(WAS_READ_ERROR, &mdev->flags)) {
Lars Ellenberga2a3c74f2012-09-22 12:26:57 +02003244 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
3245 drbd_md_sync(mdev);
3246 }
3247 }
3248 }
3249
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003250 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003251 return 0;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003252}
3253
3254void drbd_go_diskless(struct drbd_conf *mdev)
3255{
3256 D_ASSERT(mdev->state.disk == D_FAILED);
3257 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01003258 drbd_queue_work(&mdev->tconn->sender_work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003259}
3260
Philipp Reisnerb411b362009-09-25 16:07:19 -07003261/**
3262 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
3263 * @mdev: DRBD device.
3264 * @io_fn: IO callback to be called when bitmap IO is possible
3265 * @done: callback to be called after the bitmap IO was performed
3266 * @why: Descriptive text of the reason for doing the IO
3267 *
3268 * While IO on the bitmap happens we freeze application IO thus we ensure
3269 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3270 * called from worker context. It MUST NOT be used while a previous such
3271 * work is still pending!
3272 */
3273void drbd_queue_bitmap_io(struct drbd_conf *mdev,
3274 int (*io_fn)(struct drbd_conf *),
3275 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003276 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003277{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003278 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003279
3280 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
3281 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
3282 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
3283 if (mdev->bm_io_work.why)
3284 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
3285 why, mdev->bm_io_work.why);
3286
3287 mdev->bm_io_work.io_fn = io_fn;
3288 mdev->bm_io_work.done = done;
3289 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003290 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003291
Philipp Reisner87eeee42011-01-19 14:16:30 +01003292 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003293 set_bit(BITMAP_IO, &mdev->flags);
3294 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01003295 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01003296 drbd_queue_work(&mdev->tconn->sender_work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003297 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003298 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003299}
3300
3301/**
3302 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
3303 * @mdev: DRBD device.
3304 * @io_fn: IO callback to be called when bitmap IO is possible
3305 * @why: Descriptive text of the reason for doing the IO
3306 *
3307 * freezes application IO while that the actual IO operations runs. This
3308 * functions MAY NOT be called from worker context.
3309 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003310int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
3311 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003312{
3313 int rv;
3314
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003315 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003316
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003317 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3318 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003319
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003320 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003321 rv = io_fn(mdev);
3322 drbd_bm_unlock(mdev);
3323
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003324 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3325 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003326
3327 return rv;
3328}
3329
3330void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3331{
3332 if ((mdev->ldev->md.flags & flag) != flag) {
3333 drbd_md_mark_dirty(mdev);
3334 mdev->ldev->md.flags |= flag;
3335 }
3336}
3337
3338void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3339{
3340 if ((mdev->ldev->md.flags & flag) != 0) {
3341 drbd_md_mark_dirty(mdev);
3342 mdev->ldev->md.flags &= ~flag;
3343 }
3344}
3345int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3346{
3347 return (bdev->md.flags & flag) != 0;
3348}
3349
3350static void md_sync_timer_fn(unsigned long data)
3351{
3352 struct drbd_conf *mdev = (struct drbd_conf *) data;
3353
Lars Ellenbergb792b652012-08-22 14:59:06 +02003354 /* must not double-queue! */
3355 if (list_empty(&mdev->md_sync_work.list))
3356 drbd_queue_work_front(&mdev->tconn->sender_work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003357}
3358
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003359static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003360{
Philipp Reisner00d56942011-02-09 18:09:48 +01003361 struct drbd_conf *mdev = w->mdev;
3362
Philipp Reisnerb411b362009-09-25 16:07:19 -07003363 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003364#ifdef DEBUG
3365 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3366 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3367#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003368 drbd_md_sync(mdev);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003369 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003370}
3371
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003372const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003373{
3374 /* THINK may need to become several global tables
3375 * when we want to support more than
3376 * one PRO_VERSION */
3377 static const char *cmdnames[] = {
3378 [P_DATA] = "Data",
3379 [P_DATA_REPLY] = "DataReply",
3380 [P_RS_DATA_REPLY] = "RSDataReply",
3381 [P_BARRIER] = "Barrier",
3382 [P_BITMAP] = "ReportBitMap",
3383 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3384 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3385 [P_UNPLUG_REMOTE] = "UnplugRemote",
3386 [P_DATA_REQUEST] = "DataRequest",
3387 [P_RS_DATA_REQUEST] = "RSDataRequest",
3388 [P_SYNC_PARAM] = "SyncParam",
3389 [P_SYNC_PARAM89] = "SyncParam89",
3390 [P_PROTOCOL] = "ReportProtocol",
3391 [P_UUIDS] = "ReportUUIDs",
3392 [P_SIZES] = "ReportSizes",
3393 [P_STATE] = "ReportState",
3394 [P_SYNC_UUID] = "ReportSyncUUID",
3395 [P_AUTH_CHALLENGE] = "AuthChallenge",
3396 [P_AUTH_RESPONSE] = "AuthResponse",
3397 [P_PING] = "Ping",
3398 [P_PING_ACK] = "PingAck",
3399 [P_RECV_ACK] = "RecvAck",
3400 [P_WRITE_ACK] = "WriteAck",
3401 [P_RS_WRITE_ACK] = "RSWriteAck",
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02003402 [P_SUPERSEDED] = "Superseded",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003403 [P_NEG_ACK] = "NegAck",
3404 [P_NEG_DREPLY] = "NegDReply",
3405 [P_NEG_RS_DREPLY] = "NegRSDReply",
3406 [P_BARRIER_ACK] = "BarrierAck",
3407 [P_STATE_CHG_REQ] = "StateChgRequest",
3408 [P_STATE_CHG_REPLY] = "StateChgReply",
3409 [P_OV_REQUEST] = "OVRequest",
3410 [P_OV_REPLY] = "OVReply",
3411 [P_OV_RESULT] = "OVResult",
3412 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3413 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3414 [P_COMPRESSED_BITMAP] = "CBitmap",
3415 [P_DELAY_PROBE] = "DelayProbe",
3416 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003417 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003418 [P_RS_CANCEL] = "RSCancel",
3419 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3420 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003421 [P_RETRY_WRITE] = "retry_write",
3422 [P_PROTOCOL_UPDATE] = "protocol_update",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003423
3424 /* enum drbd_packet, but not commands - obsoleted flags:
3425 * P_MAY_IGNORE
3426 * P_MAX_OPT_CMD
3427 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003428 };
3429
Lars Ellenbergae25b332011-04-24 00:01:16 +02003430 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003431 if (cmd == P_INITIAL_META)
3432 return "InitialMeta";
3433 if (cmd == P_INITIAL_DATA)
3434 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003435 if (cmd == P_CONNECTION_FEATURES)
3436 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003437 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003438 return "Unknown";
3439 return cmdnames[cmd];
3440}
3441
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003442/**
3443 * drbd_wait_misc - wait for a request to make progress
3444 * @mdev: device associated with the request
3445 * @i: the struct drbd_interval embedded in struct drbd_request or
3446 * struct drbd_peer_request
3447 */
3448int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3449{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003450 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003451 DEFINE_WAIT(wait);
3452 long timeout;
3453
Philipp Reisner44ed1672011-04-19 17:10:19 +02003454 rcu_read_lock();
3455 nc = rcu_dereference(mdev->tconn->net_conf);
3456 if (!nc) {
3457 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003458 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003459 }
3460 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3461 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003462
3463 /* Indicate to wake up mdev->misc_wait on progress. */
3464 i->waiting = true;
3465 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3466 spin_unlock_irq(&mdev->tconn->req_lock);
3467 timeout = schedule_timeout(timeout);
3468 finish_wait(&mdev->misc_wait, &wait);
3469 spin_lock_irq(&mdev->tconn->req_lock);
3470 if (!timeout || mdev->state.conn < C_CONNECTED)
3471 return -ETIMEDOUT;
3472 if (signal_pending(current))
3473 return -ERESTARTSYS;
3474 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003475}
3476
3477#ifdef CONFIG_DRBD_FAULT_INJECTION
3478/* Fault insertion support including random number generator shamelessly
3479 * stolen from kernel/rcutorture.c */
3480struct fault_random_state {
3481 unsigned long state;
3482 unsigned long count;
3483};
3484
3485#define FAULT_RANDOM_MULT 39916801 /* prime */
3486#define FAULT_RANDOM_ADD 479001701 /* prime */
3487#define FAULT_RANDOM_REFRESH 10000
3488
3489/*
3490 * Crude but fast random-number generator. Uses a linear congruential
3491 * generator, with occasional help from get_random_bytes().
3492 */
3493static unsigned long
3494_drbd_fault_random(struct fault_random_state *rsp)
3495{
3496 long refresh;
3497
Roel Kluin49829ea2009-12-15 22:55:44 +01003498 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003499 get_random_bytes(&refresh, sizeof(refresh));
3500 rsp->state += refresh;
3501 rsp->count = FAULT_RANDOM_REFRESH;
3502 }
3503 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3504 return swahw32(rsp->state);
3505}
3506
3507static char *
3508_drbd_fault_str(unsigned int type) {
3509 static char *_faults[] = {
3510 [DRBD_FAULT_MD_WR] = "Meta-data write",
3511 [DRBD_FAULT_MD_RD] = "Meta-data read",
3512 [DRBD_FAULT_RS_WR] = "Resync write",
3513 [DRBD_FAULT_RS_RD] = "Resync read",
3514 [DRBD_FAULT_DT_WR] = "Data write",
3515 [DRBD_FAULT_DT_RD] = "Data read",
3516 [DRBD_FAULT_DT_RA] = "Data read ahead",
3517 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003518 [DRBD_FAULT_AL_EE] = "EE allocation",
3519 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003520 };
3521
3522 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3523}
3524
3525unsigned int
3526_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3527{
3528 static struct fault_random_state rrs = {0, 0};
3529
3530 unsigned int ret = (
3531 (fault_devs == 0 ||
3532 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3533 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3534
3535 if (ret) {
3536 fault_count++;
3537
Lars Ellenberg73835062010-05-27 11:51:56 +02003538 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003539 dev_warn(DEV, "***Simulating %s failure\n",
3540 _drbd_fault_str(type));
3541 }
3542
3543 return ret;
3544}
3545#endif
3546
3547const char *drbd_buildtag(void)
3548{
3549 /* DRBD built from external sources has here a reference to the
3550 git hash of the source code. */
3551
3552 static char buildtag[38] = "\0uilt-in";
3553
3554 if (buildtag[0] == 0) {
Cong Wangbc4854b2012-04-03 14:13:36 +08003555#ifdef MODULE
3556 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3557#else
3558 buildtag[0] = 'b';
Philipp Reisnerb411b362009-09-25 16:07:19 -07003559#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003560 }
3561
3562 return buildtag;
3563}
3564
3565module_init(drbd_init)
3566module_exit(drbd_cleanup)
3567
Philipp Reisnerb411b362009-09-25 16:07:19 -07003568EXPORT_SYMBOL(drbd_conn_str);
3569EXPORT_SYMBOL(drbd_role_str);
3570EXPORT_SYMBOL(drbd_disk_str);
3571EXPORT_SYMBOL(drbd_set_st_err_str);