blob: 113c7b46538475d09e3e6ec9a50c8b042a247039 [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);
66static int drbd_release(struct gendisk *gd, fmode_t mode);
Philipp Reisner00d56942011-02-09 18:09:48 +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);
Philipp Reisner00d56942011-02-09 18:09:48 +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;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700108int disable_sendpage;
109int 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 */
Lars Ellenberg543cc102011-03-10 22:18:18 +0100123DEFINE_MUTEX(drbd_cfg_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700124
125struct kmem_cache *drbd_request_cache;
Andreas Gruenbacher6c852be2011-02-04 15:38:52 +0100126struct kmem_cache *drbd_ee_cache; /* peer requests */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700127struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */
128struct kmem_cache *drbd_al_ext_cache; /* activity log extents */
129mempool_t *drbd_request_mempool;
130mempool_t *drbd_ee_mempool;
Lars Ellenberg35abf592011-02-23 12:39:46 +0100131mempool_t *drbd_md_io_page_pool;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100132struct bio_set *drbd_md_io_bio_set;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700133
134/* I do not use a standard mempool, because:
135 1) I want to hand out the pre-allocated objects first.
136 2) I want to be able to interrupt sleeping allocation with a signal.
137 Note: This is a single linked list, the next pointer is the private
138 member of struct page.
139 */
140struct page *drbd_pp_pool;
141spinlock_t drbd_pp_lock;
142int drbd_pp_vacant;
143wait_queue_head_t drbd_pp_wait;
144
145DEFINE_RATELIMIT_STATE(drbd_ratelimit_state, 5 * HZ, 5);
146
Emese Revfy7d4e9d02009-12-14 00:59:30 +0100147static const struct block_device_operations drbd_ops = {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700148 .owner = THIS_MODULE,
149 .open = drbd_open,
150 .release = drbd_release,
151};
152
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100153static void bio_destructor_drbd(struct bio *bio)
154{
155 bio_free(bio, drbd_md_io_bio_set);
156}
157
158struct bio *bio_alloc_drbd(gfp_t gfp_mask)
159{
160 struct bio *bio;
161
162 if (!drbd_md_io_bio_set)
163 return bio_alloc(gfp_mask, 1);
164
165 bio = bio_alloc_bioset(gfp_mask, 1, drbd_md_io_bio_set);
166 if (!bio)
167 return NULL;
168 bio->bi_destructor = bio_destructor_drbd;
169 return bio;
170}
171
Philipp Reisnerb411b362009-09-25 16:07:19 -0700172#ifdef __CHECKER__
173/* When checking with sparse, and this is an inline function, sparse will
174 give tons of false positives. When this is a real functions sparse works.
175 */
176int _get_ldev_if_state(struct drbd_conf *mdev, enum drbd_disk_state mins)
177{
178 int io_allowed;
179
180 atomic_inc(&mdev->local_cnt);
181 io_allowed = (mdev->state.disk >= mins);
182 if (!io_allowed) {
183 if (atomic_dec_and_test(&mdev->local_cnt))
184 wake_up(&mdev->misc_wait);
185 }
186 return io_allowed;
187}
188
189#endif
190
191/**
192 * DOC: The transfer log
193 *
194 * The transfer log is a single linked list of &struct drbd_tl_epoch objects.
Philipp Reisner87eeee42011-01-19 14:16:30 +0100195 * mdev->tconn->newest_tle points to the head, mdev->tconn->oldest_tle points to the tail
Philipp Reisnerb411b362009-09-25 16:07:19 -0700196 * of the list. There is always at least one &struct drbd_tl_epoch object.
197 *
198 * Each &struct drbd_tl_epoch has a circular double linked list of requests
199 * attached.
200 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100201static int tl_init(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700202{
203 struct drbd_tl_epoch *b;
204
205 /* during device minor initialization, we may well use GFP_KERNEL */
206 b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_KERNEL);
207 if (!b)
208 return 0;
209 INIT_LIST_HEAD(&b->requests);
210 INIT_LIST_HEAD(&b->w.list);
211 b->next = NULL;
212 b->br_number = 4711;
Philipp Reisner7e602c02010-05-27 14:49:27 +0200213 b->n_writes = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700214 b->w.cb = NULL; /* if this is != NULL, we need to dec_ap_pending in tl_clear */
215
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100216 tconn->oldest_tle = b;
217 tconn->newest_tle = b;
218 INIT_LIST_HEAD(&tconn->out_of_sequence_requests);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700219
Philipp Reisnerb411b362009-09-25 16:07:19 -0700220 return 1;
221}
222
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100223static void tl_cleanup(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700224{
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100225 if (tconn->oldest_tle != tconn->newest_tle)
226 conn_err(tconn, "ASSERT FAILED: oldest_tle == newest_tle\n");
227 if (!list_empty(&tconn->out_of_sequence_requests))
228 conn_err(tconn, "ASSERT FAILED: list_empty(out_of_sequence_requests)\n");
229 kfree(tconn->oldest_tle);
230 tconn->oldest_tle = NULL;
231 kfree(tconn->unused_spare_tle);
232 tconn->unused_spare_tle = NULL;
Andreas Gruenbacherd6287692011-01-13 23:05:39 +0100233}
234
Philipp Reisnerb411b362009-09-25 16:07:19 -0700235/**
236 * _tl_add_barrier() - Adds a barrier to the transfer log
237 * @mdev: DRBD device.
238 * @new: Barrier to be added before the current head of the TL.
239 *
240 * The caller must hold the req_lock.
241 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100242void _tl_add_barrier(struct drbd_tconn *tconn, struct drbd_tl_epoch *new)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700243{
244 struct drbd_tl_epoch *newest_before;
245
246 INIT_LIST_HEAD(&new->requests);
247 INIT_LIST_HEAD(&new->w.list);
248 new->w.cb = NULL; /* if this is != NULL, we need to dec_ap_pending in tl_clear */
249 new->next = NULL;
Philipp Reisner7e602c02010-05-27 14:49:27 +0200250 new->n_writes = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700251
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100252 newest_before = tconn->newest_tle;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700253 /* never send a barrier number == 0, because that is special-cased
254 * when using TCQ for our write ordering code */
255 new->br_number = (newest_before->br_number+1) ?: 1;
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100256 if (tconn->newest_tle != new) {
257 tconn->newest_tle->next = new;
258 tconn->newest_tle = new;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700259 }
260}
261
262/**
263 * tl_release() - Free or recycle the oldest &struct drbd_tl_epoch object of the TL
264 * @mdev: DRBD device.
265 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
266 * @set_size: Expected number of requests before that barrier.
267 *
268 * In case the passed barrier_nr or set_size does not match the oldest
269 * &struct drbd_tl_epoch objects this function will cause a termination
270 * of the connection.
271 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100272void tl_release(struct drbd_tconn *tconn, unsigned int barrier_nr,
273 unsigned int set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700274{
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100275 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700276 struct drbd_tl_epoch *b, *nob; /* next old barrier */
277 struct list_head *le, *tle;
278 struct drbd_request *r;
279
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100280 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700281
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100282 b = tconn->oldest_tle;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700283
284 /* first some paranoia code */
285 if (b == NULL) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100286 conn_err(tconn, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
287 barrier_nr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700288 goto bail;
289 }
290 if (b->br_number != barrier_nr) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100291 conn_err(tconn, "BAD! BarrierAck #%u received, expected #%u!\n",
292 barrier_nr, b->br_number);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700293 goto bail;
294 }
Philipp Reisner7e602c02010-05-27 14:49:27 +0200295 if (b->n_writes != set_size) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100296 conn_err(tconn, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
297 barrier_nr, set_size, b->n_writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700298 goto bail;
299 }
300
301 /* Clean up list of requests processed during current epoch */
302 list_for_each_safe(le, tle, &b->requests) {
303 r = list_entry(le, struct drbd_request, tl_requests);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100304 _req_mod(r, BARRIER_ACKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700305 }
306 /* There could be requests on the list waiting for completion
307 of the write to the local disk. To avoid corruptions of
308 slab's data structures we have to remove the lists head.
309
310 Also there could have been a barrier ack out of sequence, overtaking
311 the write acks - which would be a bug and violating write ordering.
312 To not deadlock in case we lose connection while such requests are
313 still pending, we need some way to find them for the
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100314 _req_mode(CONNECTION_LOST_WHILE_PENDING).
Philipp Reisnerb411b362009-09-25 16:07:19 -0700315
316 These have been list_move'd to the out_of_sequence_requests list in
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100317 _req_mod(, BARRIER_ACKED) above.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700318 */
319 list_del_init(&b->requests);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100320 mdev = b->w.mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700321
322 nob = b->next;
323 if (test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100324 _tl_add_barrier(tconn, b);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700325 if (nob)
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100326 tconn->oldest_tle = nob;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700327 /* if nob == NULL b was the only barrier, and becomes the new
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100328 barrier. Therefore tconn->oldest_tle points already to b */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700329 } else {
330 D_ASSERT(nob != NULL);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100331 tconn->oldest_tle = nob;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700332 kfree(b);
333 }
334
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100335 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700336 dec_ap_pending(mdev);
337
338 return;
339
340bail:
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100341 spin_unlock_irq(&tconn->req_lock);
342 conn_request_state(tconn, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700343}
344
Philipp Reisner617049a2010-12-22 12:48:31 +0100345
Philipp Reisner11b58e72010-05-12 17:08:26 +0200346/**
347 * _tl_restart() - Walks the transfer log, and applies an action to all requests
348 * @mdev: DRBD device.
349 * @what: The action/event to perform with all request objects
350 *
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100351 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
352 * RESTART_FROZEN_DISK_IO.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200353 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100354void _tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200355{
356 struct drbd_tl_epoch *b, *tmp, **pn;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200357 struct list_head *le, *tle, carry_reads;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200358 struct drbd_request *req;
359 int rv, n_writes, n_reads;
360
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100361 b = tconn->oldest_tle;
362 pn = &tconn->oldest_tle;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200363 while (b) {
364 n_writes = 0;
365 n_reads = 0;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200366 INIT_LIST_HEAD(&carry_reads);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200367 list_for_each_safe(le, tle, &b->requests) {
368 req = list_entry(le, struct drbd_request, tl_requests);
369 rv = _req_mod(req, what);
370
371 n_writes += (rv & MR_WRITE) >> MR_WRITE_SHIFT;
372 n_reads += (rv & MR_READ) >> MR_READ_SHIFT;
373 }
374 tmp = b->next;
375
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200376 if (n_writes) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100377 if (what == RESEND) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200378 b->n_writes = n_writes;
379 if (b->w.cb == NULL) {
380 b->w.cb = w_send_barrier;
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100381 inc_ap_pending(b->w.mdev);
382 set_bit(CREATE_BARRIER, &b->w.mdev->flags);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200383 }
384
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100385 drbd_queue_work(&tconn->data.work, &b->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200386 }
387 pn = &b->next;
388 } else {
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200389 if (n_reads)
390 list_add(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200391 /* there could still be requests on that ring list,
392 * in case local io is still pending */
393 list_del(&b->requests);
394
395 /* dec_ap_pending corresponding to queue_barrier.
396 * the newest barrier may not have been queued yet,
397 * in which case w.cb is still NULL. */
398 if (b->w.cb != NULL)
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100399 dec_ap_pending(b->w.mdev);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200400
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100401 if (b == tconn->newest_tle) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200402 /* recycle, but reinit! */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100403 if (tmp != NULL)
404 conn_err(tconn, "ASSERT FAILED tmp == NULL");
Philipp Reisner11b58e72010-05-12 17:08:26 +0200405 INIT_LIST_HEAD(&b->requests);
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200406 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200407 INIT_LIST_HEAD(&b->w.list);
408 b->w.cb = NULL;
409 b->br_number = net_random();
410 b->n_writes = 0;
411
412 *pn = b;
413 break;
414 }
415 *pn = tmp;
416 kfree(b);
417 }
418 b = tmp;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200419 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200420 }
421}
422
Philipp Reisnerb411b362009-09-25 16:07:19 -0700423
424/**
425 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
426 * @mdev: DRBD device.
427 *
428 * This is called after the connection to the peer was lost. The storage covered
429 * by the requests on the transfer gets marked as our of sync. Called from the
430 * receiver thread and the worker thread.
431 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100432void tl_clear(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700433{
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100434 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700435 struct list_head *le, *tle;
436 struct drbd_request *r;
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100437 int minor;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700438
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100439 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700440
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100441 _tl_restart(tconn, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700442
443 /* we expect this list to be empty. */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100444 if (!list_empty(&tconn->out_of_sequence_requests))
445 conn_err(tconn, "ASSERT FAILED list_empty(&out_of_sequence_requests)\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700446
447 /* but just in case, clean it up anyways! */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100448 list_for_each_safe(le, tle, &tconn->out_of_sequence_requests) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700449 r = list_entry(le, struct drbd_request, tl_requests);
450 /* It would be nice to complete outside of spinlock.
451 * But this is easier for now. */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100452 _req_mod(r, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700453 }
454
455 /* ensure bit indicating barrier is required is clear */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100456 idr_for_each_entry(&tconn->volumes, mdev, minor)
457 clear_bit(CREATE_BARRIER, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700458
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100459 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700460}
461
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100462void tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200463{
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100464 spin_lock_irq(&tconn->req_lock);
465 _tl_restart(tconn, what);
466 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700467}
468
Philipp Reisnerb411b362009-09-25 16:07:19 -0700469static int drbd_thread_setup(void *arg)
470{
471 struct drbd_thread *thi = (struct drbd_thread *) arg;
Philipp Reisner392c8802011-02-09 10:33:31 +0100472 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700473 unsigned long flags;
474 int retval;
475
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100476 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
Philipp Reisner392c8802011-02-09 10:33:31 +0100477 thi->name[0], thi->tconn->name);
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100478
Philipp Reisnerb411b362009-09-25 16:07:19 -0700479restart:
480 retval = thi->function(thi);
481
482 spin_lock_irqsave(&thi->t_lock, flags);
483
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100484 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700485 * was set the conn state to "StandAlone",
486 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
487 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100488 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700489 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100490 * so either thread_start sees EXITING, and can remap to RESTARTING,
491 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700492 */
493
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100494 if (thi->t_state == RESTARTING) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100495 conn_info(tconn, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100496 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700497 spin_unlock_irqrestore(&thi->t_lock, flags);
498 goto restart;
499 }
500
501 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100502 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700503 smp_mb();
504 complete(&thi->stop);
505 spin_unlock_irqrestore(&thi->t_lock, flags);
506
Philipp Reisner392c8802011-02-09 10:33:31 +0100507 conn_info(tconn, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700508
509 /* Release mod reference taken when thread was started */
510 module_put(THIS_MODULE);
511 return retval;
512}
513
Philipp Reisner392c8802011-02-09 10:33:31 +0100514static void drbd_thread_init(struct drbd_tconn *tconn, struct drbd_thread *thi,
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100515 int (*func) (struct drbd_thread *), char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700516{
517 spin_lock_init(&thi->t_lock);
518 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100519 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700520 thi->function = func;
Philipp Reisner392c8802011-02-09 10:33:31 +0100521 thi->tconn = tconn;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100522 strncpy(thi->name, name, ARRAY_SIZE(thi->name));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700523}
524
525int drbd_thread_start(struct drbd_thread *thi)
526{
Philipp Reisner392c8802011-02-09 10:33:31 +0100527 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700528 struct task_struct *nt;
529 unsigned long flags;
530
Philipp Reisnerb411b362009-09-25 16:07:19 -0700531 /* is used from state engine doing drbd_thread_stop_nowait,
532 * while holding the req lock irqsave */
533 spin_lock_irqsave(&thi->t_lock, flags);
534
535 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100536 case NONE:
Philipp Reisner392c8802011-02-09 10:33:31 +0100537 conn_info(tconn, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100538 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700539
540 /* Get ref on module for thread - this is released when thread exits */
541 if (!try_module_get(THIS_MODULE)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100542 conn_err(tconn, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700543 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100544 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700545 }
546
547 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700548 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100549 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700550 spin_unlock_irqrestore(&thi->t_lock, flags);
551 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
552
553 nt = kthread_create(drbd_thread_setup, (void *) thi,
Philipp Reisner392c8802011-02-09 10:33:31 +0100554 "drbd_%c_%s", thi->name[0], thi->tconn->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700555
556 if (IS_ERR(nt)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100557 conn_err(tconn, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700558
559 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100560 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700561 }
562 spin_lock_irqsave(&thi->t_lock, flags);
563 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100564 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700565 spin_unlock_irqrestore(&thi->t_lock, flags);
566 wake_up_process(nt);
567 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100568 case EXITING:
569 thi->t_state = RESTARTING;
Philipp Reisner392c8802011-02-09 10:33:31 +0100570 conn_info(tconn, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100571 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700572 /* fall through */
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100573 case RUNNING:
574 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700575 default:
576 spin_unlock_irqrestore(&thi->t_lock, flags);
577 break;
578 }
579
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100580 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700581}
582
583
584void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
585{
586 unsigned long flags;
587
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100588 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700589
590 /* may be called from state engine, holding the req lock irqsave */
591 spin_lock_irqsave(&thi->t_lock, flags);
592
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100593 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700594 spin_unlock_irqrestore(&thi->t_lock, flags);
595 if (restart)
596 drbd_thread_start(thi);
597 return;
598 }
599
600 if (thi->t_state != ns) {
601 if (thi->task == NULL) {
602 spin_unlock_irqrestore(&thi->t_lock, flags);
603 return;
604 }
605
606 thi->t_state = ns;
607 smp_mb();
608 init_completion(&thi->stop);
609 if (thi->task != current)
610 force_sig(DRBD_SIGKILL, thi->task);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700611 }
612
613 spin_unlock_irqrestore(&thi->t_lock, flags);
614
615 if (wait)
616 wait_for_completion(&thi->stop);
617}
618
Philipp Reisner392c8802011-02-09 10:33:31 +0100619static struct drbd_thread *drbd_task_to_thread(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100620{
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100621 struct drbd_thread *thi =
622 task == tconn->receiver.task ? &tconn->receiver :
623 task == tconn->asender.task ? &tconn->asender :
624 task == tconn->worker.task ? &tconn->worker : NULL;
625
626 return thi;
627}
628
Philipp Reisner392c8802011-02-09 10:33:31 +0100629char *drbd_task_to_thread_name(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100630{
Philipp Reisner392c8802011-02-09 10:33:31 +0100631 struct drbd_thread *thi = drbd_task_to_thread(tconn, task);
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100632 return thi ? thi->name : task->comm;
633}
634
Philipp Reisner80883192011-02-18 14:56:45 +0100635int conn_lowest_minor(struct drbd_tconn *tconn)
Philipp Reisner80822282011-02-08 12:46:30 +0100636{
637 int minor = 0;
Philipp Reisner774b3052011-02-22 02:07:03 -0500638
639 if (!idr_get_next(&tconn->volumes, &minor))
640 return -1;
Philipp Reisner80822282011-02-08 12:46:30 +0100641 return minor;
642}
Philipp Reisner774b3052011-02-22 02:07:03 -0500643
644#ifdef CONFIG_SMP
Philipp Reisnerb411b362009-09-25 16:07:19 -0700645/**
646 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
647 * @mdev: DRBD device.
648 *
649 * Forces all threads of a device onto the same CPU. This is beneficial for
650 * DRBD's performance. May be overwritten by user's configuration.
651 */
Philipp Reisner80822282011-02-08 12:46:30 +0100652void drbd_calc_cpu_mask(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700653{
654 int ord, cpu;
655
656 /* user override. */
Philipp Reisner80822282011-02-08 12:46:30 +0100657 if (cpumask_weight(tconn->cpu_mask))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700658 return;
659
Philipp Reisner80822282011-02-08 12:46:30 +0100660 ord = conn_lowest_minor(tconn) % cpumask_weight(cpu_online_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700661 for_each_online_cpu(cpu) {
662 if (ord-- == 0) {
Philipp Reisner80822282011-02-08 12:46:30 +0100663 cpumask_set_cpu(cpu, tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700664 return;
665 }
666 }
667 /* should not be reached */
Philipp Reisner80822282011-02-08 12:46:30 +0100668 cpumask_setall(tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700669}
670
671/**
672 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
673 * @mdev: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100674 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700675 *
676 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
677 * prematurely.
678 */
Philipp Reisner80822282011-02-08 12:46:30 +0100679void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700680{
681 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100682
Philipp Reisnerb411b362009-09-25 16:07:19 -0700683 if (!thi->reset_cpu_mask)
684 return;
685 thi->reset_cpu_mask = 0;
Philipp Reisner392c8802011-02-09 10:33:31 +0100686 set_cpus_allowed_ptr(p, thi->tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700687}
688#endif
689
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100690static void prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100691{
692 h->magic = cpu_to_be32(DRBD_MAGIC);
693 h->command = cpu_to_be16(cmd);
694 h->length = cpu_to_be16(size);
695}
696
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100697static void prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100698{
699 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
700 h->command = cpu_to_be16(cmd);
701 h->length = cpu_to_be32(size);
702}
703
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100704static void _prepare_header(struct drbd_tconn *tconn, int vnr, struct p_header *h,
705 enum drbd_packet cmd, int size)
706{
707 if (tconn->agreed_pro_version >= 100 || size > DRBD_MAX_SIZE_H80_PACKET)
708 prepare_header95(&h->h95, cmd, size);
709 else
710 prepare_header80(&h->h80, cmd, size);
711}
712
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100713static void prepare_header(struct drbd_conf *mdev, struct p_header *h,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100714 enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100715{
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100716 _prepare_header(mdev->tconn, mdev->vnr, h, cmd, size);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100717}
718
Philipp Reisnerb411b362009-09-25 16:07:19 -0700719/* the appropriate socket mutex must be held already */
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100720int _conn_send_cmd(struct drbd_tconn *tconn, int vnr, struct socket *sock,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100721 enum drbd_packet cmd, struct p_header *h, size_t size,
722 unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700723{
724 int sent, ok;
725
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100726 _prepare_header(tconn, vnr, h, cmd, size - sizeof(struct p_header));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700727
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100728 sent = drbd_send(tconn, sock, h, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700729
730 ok = (sent == size);
Lars Ellenberg0ddc5542011-01-21 12:35:15 +0100731 if (!ok && !signal_pending(current))
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100732 conn_warn(tconn, "short sent %s size=%d sent=%d\n",
733 cmdname(cmd), (int)size, sent);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700734 return ok;
735}
736
737/* don't pass the socket. we may only look at it
738 * when we hold the appropriate socket mutex.
739 */
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100740int conn_send_cmd(struct drbd_tconn *tconn, int vnr, int use_data_socket,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100741 enum drbd_packet cmd, struct p_header *h, size_t size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700742{
743 int ok = 0;
744 struct socket *sock;
745
746 if (use_data_socket) {
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100747 mutex_lock(&tconn->data.mutex);
748 sock = tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700749 } else {
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100750 mutex_lock(&tconn->meta.mutex);
751 sock = tconn->meta.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700752 }
753
754 /* drbd_disconnect() could have called drbd_free_sock()
755 * while we were waiting in down()... */
756 if (likely(sock != NULL))
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100757 ok = _conn_send_cmd(tconn, vnr, sock, cmd, h, size, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700758
759 if (use_data_socket)
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100760 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700761 else
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100762 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700763 return ok;
764}
765
Philipp Reisner61120872011-02-08 09:50:54 +0100766int conn_send_cmd2(struct drbd_tconn *tconn, enum drbd_packet cmd, char *data,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700767 size_t size)
768{
Philipp Reisner61120872011-02-08 09:50:54 +0100769 struct p_header80 h;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700770 int ok;
771
Philipp Reisner61120872011-02-08 09:50:54 +0100772 prepare_header80(&h, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700773
Philipp Reisner61120872011-02-08 09:50:54 +0100774 if (!drbd_get_data_sock(tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700775 return 0;
776
Philipp Reisnerb411b362009-09-25 16:07:19 -0700777 ok = (sizeof(h) ==
Philipp Reisner61120872011-02-08 09:50:54 +0100778 drbd_send(tconn, tconn->data.socket, &h, sizeof(h), 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700779 ok = ok && (size ==
Philipp Reisner61120872011-02-08 09:50:54 +0100780 drbd_send(tconn, tconn->data.socket, data, size, 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700781
Philipp Reisner61120872011-02-08 09:50:54 +0100782 drbd_put_data_sock(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700783
784 return ok;
785}
786
787int drbd_send_sync_param(struct drbd_conf *mdev, struct syncer_conf *sc)
788{
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200789 struct p_rs_param_95 *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700790 struct socket *sock;
791 int size, rv;
Philipp Reisner31890f42011-01-19 14:12:51 +0100792 const int apv = mdev->tconn->agreed_pro_version;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700793
794 size = apv <= 87 ? sizeof(struct p_rs_param)
795 : apv == 88 ? sizeof(struct p_rs_param)
796 + strlen(mdev->sync_conf.verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200797 : apv <= 94 ? sizeof(struct p_rs_param_89)
798 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700799
800 /* used from admin command context and receiver/worker context.
801 * to avoid kmalloc, grab the socket right here,
802 * then use the pre-allocated sbuf there */
Philipp Reisnere42325a2011-01-19 13:55:45 +0100803 mutex_lock(&mdev->tconn->data.mutex);
804 sock = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700805
806 if (likely(sock != NULL)) {
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100807 enum drbd_packet cmd =
808 apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700809
Philipp Reisnere42325a2011-01-19 13:55:45 +0100810 p = &mdev->tconn->data.sbuf.rs_param_95;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700811
812 /* initialize verify_alg and csums_alg */
813 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
814
815 p->rate = cpu_to_be32(sc->rate);
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200816 p->c_plan_ahead = cpu_to_be32(sc->c_plan_ahead);
817 p->c_delay_target = cpu_to_be32(sc->c_delay_target);
818 p->c_fill_target = cpu_to_be32(sc->c_fill_target);
819 p->c_max_rate = cpu_to_be32(sc->c_max_rate);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700820
821 if (apv >= 88)
822 strcpy(p->verify_alg, mdev->sync_conf.verify_alg);
823 if (apv >= 89)
824 strcpy(p->csums_alg, mdev->sync_conf.csums_alg);
825
826 rv = _drbd_send_cmd(mdev, sock, cmd, &p->head, size, 0);
827 } else
828 rv = 0; /* not ok */
829
Philipp Reisnere42325a2011-01-19 13:55:45 +0100830 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700831
832 return rv;
833}
834
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100835int drbd_send_protocol(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700836{
837 struct p_protocol *p;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100838 int size, cf, rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700839
840 size = sizeof(struct p_protocol);
841
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100842 if (tconn->agreed_pro_version >= 87)
843 size += strlen(tconn->net_conf->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700844
845 /* we must not recurse into our own queue,
846 * as that is blocked during handshake */
847 p = kmalloc(size, GFP_NOIO);
848 if (p == NULL)
849 return 0;
850
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100851 p->protocol = cpu_to_be32(tconn->net_conf->wire_protocol);
852 p->after_sb_0p = cpu_to_be32(tconn->net_conf->after_sb_0p);
853 p->after_sb_1p = cpu_to_be32(tconn->net_conf->after_sb_1p);
854 p->after_sb_2p = cpu_to_be32(tconn->net_conf->after_sb_2p);
855 p->two_primaries = cpu_to_be32(tconn->net_conf->two_primaries);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700856
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100857 cf = 0;
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100858 if (tconn->net_conf->want_lose)
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100859 cf |= CF_WANT_LOSE;
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100860 if (tconn->net_conf->dry_run) {
861 if (tconn->agreed_pro_version >= 92)
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100862 cf |= CF_DRY_RUN;
863 else {
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100864 conn_err(tconn, "--dry-run is not supported by peer");
Dan Carpenter7ac314c2010-04-22 14:27:23 +0200865 kfree(p);
Philipp Reisner148efa12011-01-15 00:21:15 +0100866 return -1;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100867 }
868 }
869 p->conn_flags = cpu_to_be32(cf);
870
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100871 if (tconn->agreed_pro_version >= 87)
872 strcpy(p->integrity_alg, tconn->net_conf->integrity_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700873
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100874 rv = conn_send_cmd2(tconn, P_PROTOCOL, p->head.payload, size - sizeof(struct p_header));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700875 kfree(p);
876 return rv;
877}
878
879int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
880{
881 struct p_uuids p;
882 int i;
883
884 if (!get_ldev_if_state(mdev, D_NEGOTIATING))
885 return 1;
886
887 for (i = UI_CURRENT; i < UI_SIZE; i++)
888 p.uuid[i] = mdev->ldev ? cpu_to_be64(mdev->ldev->md.uuid[i]) : 0;
889
890 mdev->comm_bm_set = drbd_bm_total_weight(mdev);
891 p.uuid[UI_SIZE] = cpu_to_be64(mdev->comm_bm_set);
Philipp Reisner89e58e72011-01-19 13:12:45 +0100892 uuid_flags |= mdev->tconn->net_conf->want_lose ? 1 : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700893 uuid_flags |= test_bit(CRASHED_PRIMARY, &mdev->flags) ? 2 : 0;
894 uuid_flags |= mdev->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
895 p.uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
896
897 put_ldev(mdev);
898
Philipp Reisnerc0129492011-01-19 16:58:16 +0100899 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_UUIDS, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700900}
901
902int drbd_send_uuids(struct drbd_conf *mdev)
903{
904 return _drbd_send_uuids(mdev, 0);
905}
906
907int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev)
908{
909 return _drbd_send_uuids(mdev, 8);
910}
911
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100912void drbd_print_uuids(struct drbd_conf *mdev, const char *text)
913{
914 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
915 u64 *uuid = mdev->ldev->md.uuid;
916 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX\n",
917 text,
918 (unsigned long long)uuid[UI_CURRENT],
919 (unsigned long long)uuid[UI_BITMAP],
920 (unsigned long long)uuid[UI_HISTORY_START],
921 (unsigned long long)uuid[UI_HISTORY_END]);
922 put_ldev(mdev);
923 } else {
924 dev_info(DEV, "%s effective data uuid: %016llX\n",
925 text,
926 (unsigned long long)mdev->ed_uuid);
927 }
928}
929
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100930int drbd_gen_and_send_sync_uuid(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700931{
932 struct p_rs_uuid p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100933 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700934
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100935 D_ASSERT(mdev->state.disk == D_UP_TO_DATE);
936
Philipp Reisner4a23f262011-01-11 17:42:17 +0100937 uuid = mdev->ldev->md.uuid[UI_BITMAP] + UUID_NEW_BM_OFFSET;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100938 drbd_uuid_set(mdev, UI_BITMAP, uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100939 drbd_print_uuids(mdev, "updated sync UUID");
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100940 drbd_md_sync(mdev);
941 p.uuid = cpu_to_be64(uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700942
Philipp Reisnerc0129492011-01-19 16:58:16 +0100943 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_SYNC_UUID, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700944}
945
Philipp Reisnere89b5912010-03-24 17:11:33 +0100946int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700947{
948 struct p_sizes p;
949 sector_t d_size, u_size;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200950 int q_order_type, max_bio_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700951 int ok;
952
953 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
954 D_ASSERT(mdev->ldev->backing_bdev);
955 d_size = drbd_get_max_capacity(mdev->ldev);
956 u_size = mdev->ldev->dc.disk_size;
957 q_order_type = drbd_queue_order_type(mdev);
Philipp Reisner99432fc2011-05-20 16:39:13 +0200958 max_bio_size = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
959 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700960 put_ldev(mdev);
961 } else {
962 d_size = 0;
963 u_size = 0;
964 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200965 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700966 }
967
968 p.d_size = cpu_to_be64(d_size);
969 p.u_size = cpu_to_be64(u_size);
970 p.c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(mdev->this_bdev));
Philipp Reisner99432fc2011-05-20 16:39:13 +0200971 p.max_bio_size = cpu_to_be32(max_bio_size);
Philipp Reisnere89b5912010-03-24 17:11:33 +0100972 p.queue_order_type = cpu_to_be16(q_order_type);
973 p.dds_flags = cpu_to_be16(flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700974
Philipp Reisnerc0129492011-01-19 16:58:16 +0100975 ok = drbd_send_cmd(mdev, USE_DATA_SOCKET, P_SIZES, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700976 return ok;
977}
978
979/**
980 * drbd_send_state() - Sends the drbd state to the peer
981 * @mdev: DRBD device.
982 */
983int drbd_send_state(struct drbd_conf *mdev)
984{
985 struct socket *sock;
986 struct p_state p;
987 int ok = 0;
988
Philipp Reisnere42325a2011-01-19 13:55:45 +0100989 mutex_lock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700990
991 p.state = cpu_to_be32(mdev->state.i); /* Within the send mutex */
Philipp Reisnere42325a2011-01-19 13:55:45 +0100992 sock = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700993
994 if (likely(sock != NULL)) {
Philipp Reisnerc0129492011-01-19 16:58:16 +0100995 ok = _drbd_send_cmd(mdev, sock, P_STATE, &p.head, sizeof(p), 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700996 }
997
Philipp Reisnere42325a2011-01-19 13:55:45 +0100998 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700999
Philipp Reisnerb411b362009-09-25 16:07:19 -07001000 return ok;
1001}
1002
Philipp Reisnercf29c9d2011-02-11 15:11:24 +01001003int _conn_send_state_req(struct drbd_tconn *tconn, int vnr, enum drbd_packet cmd,
1004 union drbd_state mask, union drbd_state val)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001005{
1006 struct p_req_state p;
1007
1008 p.mask = cpu_to_be32(mask.i);
1009 p.val = cpu_to_be32(val.i);
1010
Philipp Reisnercf29c9d2011-02-11 15:11:24 +01001011 return conn_send_cmd(tconn, vnr, USE_DATA_SOCKET, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001012}
1013
Andreas Gruenbacherbf885f82010-12-08 00:39:32 +01001014int drbd_send_sr_reply(struct drbd_conf *mdev, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001015{
1016 struct p_req_state_reply p;
1017
1018 p.retcode = cpu_to_be32(retcode);
1019
Philipp Reisnerc0129492011-01-19 16:58:16 +01001020 return drbd_send_cmd(mdev, USE_META_SOCKET, P_STATE_CHG_REPLY, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001021}
1022
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001023int conn_send_sr_reply(struct drbd_tconn *tconn, enum drbd_state_rv retcode)
1024{
1025 struct p_req_state_reply p;
1026 enum drbd_packet cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
1027
1028 p.retcode = cpu_to_be32(retcode);
1029
1030 return conn_send_cmd(tconn, 0, USE_META_SOCKET, cmd, &p.head, sizeof(p));
1031}
1032
Philipp Reisnerb411b362009-09-25 16:07:19 -07001033int fill_bitmap_rle_bits(struct drbd_conf *mdev,
1034 struct p_compressed_bm *p,
1035 struct bm_xfer_ctx *c)
1036{
1037 struct bitstream bs;
1038 unsigned long plain_bits;
1039 unsigned long tmp;
1040 unsigned long rl;
1041 unsigned len;
1042 unsigned toggle;
1043 int bits;
1044
1045 /* may we use this feature? */
1046 if ((mdev->sync_conf.use_rle == 0) ||
Philipp Reisner31890f42011-01-19 14:12:51 +01001047 (mdev->tconn->agreed_pro_version < 90))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001048 return 0;
1049
1050 if (c->bit_offset >= c->bm_bits)
1051 return 0; /* nothing to do. */
1052
1053 /* use at most thus many bytes */
1054 bitstream_init(&bs, p->code, BM_PACKET_VLI_BYTES_MAX, 0);
1055 memset(p->code, 0, BM_PACKET_VLI_BYTES_MAX);
1056 /* plain bits covered in this code string */
1057 plain_bits = 0;
1058
1059 /* p->encoding & 0x80 stores whether the first run length is set.
1060 * bit offset is implicit.
1061 * start with toggle == 2 to be able to tell the first iteration */
1062 toggle = 2;
1063
1064 /* see how much plain bits we can stuff into one packet
1065 * using RLE and VLI. */
1066 do {
1067 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(mdev, c->bit_offset)
1068 : _drbd_bm_find_next(mdev, c->bit_offset);
1069 if (tmp == -1UL)
1070 tmp = c->bm_bits;
1071 rl = tmp - c->bit_offset;
1072
1073 if (toggle == 2) { /* first iteration */
1074 if (rl == 0) {
1075 /* the first checked bit was set,
1076 * store start value, */
1077 DCBP_set_start(p, 1);
1078 /* but skip encoding of zero run length */
1079 toggle = !toggle;
1080 continue;
1081 }
1082 DCBP_set_start(p, 0);
1083 }
1084
1085 /* paranoia: catch zero runlength.
1086 * can only happen if bitmap is modified while we scan it. */
1087 if (rl == 0) {
1088 dev_err(DEV, "unexpected zero runlength while encoding bitmap "
1089 "t:%u bo:%lu\n", toggle, c->bit_offset);
1090 return -1;
1091 }
1092
1093 bits = vli_encode_bits(&bs, rl);
1094 if (bits == -ENOBUFS) /* buffer full */
1095 break;
1096 if (bits <= 0) {
1097 dev_err(DEV, "error while encoding bitmap: %d\n", bits);
1098 return 0;
1099 }
1100
1101 toggle = !toggle;
1102 plain_bits += rl;
1103 c->bit_offset = tmp;
1104 } while (c->bit_offset < c->bm_bits);
1105
1106 len = bs.cur.b - p->code + !!bs.cur.bit;
1107
1108 if (plain_bits < (len << 3)) {
1109 /* incompressible with this method.
1110 * we need to rewind both word and bit position. */
1111 c->bit_offset -= plain_bits;
1112 bm_xfer_ctx_bit_to_word_offset(c);
1113 c->bit_offset = c->word_offset * BITS_PER_LONG;
1114 return 0;
1115 }
1116
1117 /* RLE + VLI was able to compress it just fine.
1118 * update c->word_offset. */
1119 bm_xfer_ctx_bit_to_word_offset(c);
1120
1121 /* store pad_bits */
1122 DCBP_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
1123
1124 return len;
1125}
1126
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001127/**
1128 * send_bitmap_rle_or_plain
1129 *
1130 * Return 0 when done, 1 when another iteration is needed, and a negative error
1131 * code upon failure.
1132 */
1133static int
Philipp Reisnerb411b362009-09-25 16:07:19 -07001134send_bitmap_rle_or_plain(struct drbd_conf *mdev,
Philipp Reisnerc0129492011-01-19 16:58:16 +01001135 struct p_header *h, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001136{
1137 struct p_compressed_bm *p = (void*)h;
1138 unsigned long num_words;
1139 int len;
1140 int ok;
1141
1142 len = fill_bitmap_rle_bits(mdev, p, c);
1143
1144 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001145 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001146
1147 if (len) {
1148 DCBP_set_code(p, RLE_VLI_Bits);
Philipp Reisnere42325a2011-01-19 13:55:45 +01001149 ok = _drbd_send_cmd(mdev, mdev->tconn->data.socket, P_COMPRESSED_BITMAP, h,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001150 sizeof(*p) + len, 0);
1151
1152 c->packets[0]++;
1153 c->bytes[0] += sizeof(*p) + len;
1154
1155 if (c->bit_offset >= c->bm_bits)
1156 len = 0; /* DONE */
1157 } else {
1158 /* was not compressible.
1159 * send a buffer full of plain text bits instead. */
1160 num_words = min_t(size_t, BM_PACKET_WORDS, c->bm_words - c->word_offset);
1161 len = num_words * sizeof(long);
1162 if (len)
1163 drbd_bm_get_lel(mdev, c->word_offset, num_words, (unsigned long*)h->payload);
Philipp Reisnere42325a2011-01-19 13:55:45 +01001164 ok = _drbd_send_cmd(mdev, mdev->tconn->data.socket, P_BITMAP,
Philipp Reisner0b70a132010-08-20 13:36:10 +02001165 h, sizeof(struct p_header80) + len, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001166 c->word_offset += num_words;
1167 c->bit_offset = c->word_offset * BITS_PER_LONG;
1168
1169 c->packets[1]++;
Philipp Reisner0b70a132010-08-20 13:36:10 +02001170 c->bytes[1] += sizeof(struct p_header80) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001171
1172 if (c->bit_offset > c->bm_bits)
1173 c->bit_offset = c->bm_bits;
1174 }
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001175 if (ok) {
1176 if (len == 0) {
1177 INFO_bm_xfer_stats(mdev, "send", c);
1178 return 0;
1179 } else
1180 return 1;
1181 }
1182 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001183}
1184
1185/* See the comment at receive_bitmap() */
1186int _drbd_send_bitmap(struct drbd_conf *mdev)
1187{
1188 struct bm_xfer_ctx c;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001189 struct p_header *p;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001190 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001191
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001192 if (!expect(mdev->bitmap))
1193 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001194
1195 /* maybe we should use some per thread scratch page,
1196 * and allocate that during initial device creation? */
Philipp Reisnerc0129492011-01-19 16:58:16 +01001197 p = (struct p_header *) __get_free_page(GFP_NOIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001198 if (!p) {
1199 dev_err(DEV, "failed to allocate one page buffer in %s\n", __func__);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001200 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001201 }
1202
1203 if (get_ldev(mdev)) {
1204 if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC)) {
1205 dev_info(DEV, "Writing the whole bitmap, MDF_FullSync was set.\n");
1206 drbd_bm_set_all(mdev);
1207 if (drbd_bm_write(mdev)) {
1208 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1209 * but otherwise process as per normal - need to tell other
1210 * side that a full resync is required! */
1211 dev_err(DEV, "Failed to write bitmap to disk!\n");
1212 } else {
1213 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
1214 drbd_md_sync(mdev);
1215 }
1216 }
1217 put_ldev(mdev);
1218 }
1219
1220 c = (struct bm_xfer_ctx) {
1221 .bm_bits = drbd_bm_bits(mdev),
1222 .bm_words = drbd_bm_words(mdev),
1223 };
1224
1225 do {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001226 err = send_bitmap_rle_or_plain(mdev, p, &c);
1227 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001228
1229 free_page((unsigned long) p);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001230 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001231}
1232
1233int drbd_send_bitmap(struct drbd_conf *mdev)
1234{
1235 int err;
1236
Philipp Reisner61120872011-02-08 09:50:54 +01001237 if (!drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001238 return -1;
1239 err = !_drbd_send_bitmap(mdev);
Philipp Reisner61120872011-02-08 09:50:54 +01001240 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001241 return err;
1242}
1243
1244int drbd_send_b_ack(struct drbd_conf *mdev, u32 barrier_nr, u32 set_size)
1245{
1246 int ok;
1247 struct p_barrier_ack p;
1248
1249 p.barrier = barrier_nr;
1250 p.set_size = cpu_to_be32(set_size);
1251
1252 if (mdev->state.conn < C_CONNECTED)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001253 return false;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001254 ok = drbd_send_cmd(mdev, USE_META_SOCKET, P_BARRIER_ACK, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001255 return ok;
1256}
1257
1258/**
1259 * _drbd_send_ack() - Sends an ack packet
1260 * @mdev: DRBD device.
1261 * @cmd: Packet command code.
1262 * @sector: sector, needs to be in big endian byte order
1263 * @blksize: size in byte, needs to be in big endian byte order
1264 * @block_id: Id, big endian byte order
1265 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001266static int _drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
1267 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001268{
1269 int ok;
1270 struct p_block_ack p;
1271
1272 p.sector = sector;
1273 p.block_id = block_id;
1274 p.blksize = blksize;
Andreas Gruenbacher8ccf2182011-02-24 11:35:43 +01001275 p.seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001276
Philipp Reisnere42325a2011-01-19 13:55:45 +01001277 if (!mdev->tconn->meta.socket || mdev->state.conn < C_CONNECTED)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001278 return false;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001279 ok = drbd_send_cmd(mdev, USE_META_SOCKET, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001280 return ok;
1281}
1282
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001283/* dp->sector and dp->block_id already/still in network byte order,
1284 * data_size is payload size according to dp->head,
1285 * and may need to be corrected for digest size. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001286int drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packet cmd,
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001287 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001288{
Philipp Reisnera0638452011-01-19 14:31:32 +01001289 data_size -= (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_r_tfm) ?
1290 crypto_hash_digestsize(mdev->tconn->integrity_r_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001291 return _drbd_send_ack(mdev, cmd, dp->sector, cpu_to_be32(data_size),
1292 dp->block_id);
1293}
1294
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001295int drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001296 struct p_block_req *rp)
1297{
1298 return _drbd_send_ack(mdev, cmd, rp->sector, rp->blksize, rp->block_id);
1299}
1300
1301/**
1302 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001303 * @mdev: DRBD device
1304 * @cmd: packet command code
1305 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001306 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001307int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001308 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001309{
1310 return _drbd_send_ack(mdev, cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001311 cpu_to_be64(peer_req->i.sector),
1312 cpu_to_be32(peer_req->i.size),
1313 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001314}
1315
1316/* This function misuses the block_id field to signal if the blocks
1317 * are is sync or not. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001318int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001319 sector_t sector, int blksize, u64 block_id)
1320{
1321 return _drbd_send_ack(mdev, cmd,
1322 cpu_to_be64(sector),
1323 cpu_to_be32(blksize),
1324 cpu_to_be64(block_id));
1325}
1326
1327int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1328 sector_t sector, int size, u64 block_id)
1329{
1330 int ok;
1331 struct p_block_req p;
1332
1333 p.sector = cpu_to_be64(sector);
1334 p.block_id = block_id;
1335 p.blksize = cpu_to_be32(size);
1336
Philipp Reisnerc0129492011-01-19 16:58:16 +01001337 ok = drbd_send_cmd(mdev, USE_DATA_SOCKET, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001338 return ok;
1339}
1340
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001341int drbd_send_drequest_csum(struct drbd_conf *mdev, sector_t sector, int size,
1342 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001343{
1344 int ok;
1345 struct p_block_req p;
1346
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001347 prepare_header(mdev, &p.head, cmd, sizeof(p) - sizeof(struct p_header) + digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001348 p.sector = cpu_to_be64(sector);
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +01001349 p.block_id = ID_SYNCER /* unused */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001350 p.blksize = cpu_to_be32(size);
1351
Philipp Reisnere42325a2011-01-19 13:55:45 +01001352 mutex_lock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001353
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001354 ok = (sizeof(p) == drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), 0));
1355 ok = ok && (digest_size == drbd_send(mdev->tconn, mdev->tconn->data.socket, digest, digest_size, 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001356
Philipp Reisnere42325a2011-01-19 13:55:45 +01001357 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001358
1359 return ok;
1360}
1361
1362int drbd_send_ov_request(struct drbd_conf *mdev, sector_t sector, int size)
1363{
1364 int ok;
1365 struct p_block_req p;
1366
1367 p.sector = cpu_to_be64(sector);
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +01001368 p.block_id = ID_SYNCER /* unused */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001369 p.blksize = cpu_to_be32(size);
1370
Philipp Reisnerc0129492011-01-19 16:58:16 +01001371 ok = drbd_send_cmd(mdev, USE_DATA_SOCKET, P_OV_REQUEST, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001372 return ok;
1373}
1374
1375/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001376 * returns false if we should retry,
1377 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001378 */
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001379static int we_should_drop_the_connection(struct drbd_tconn *tconn, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001380{
1381 int drop_it;
1382 /* long elapsed = (long)(jiffies - mdev->last_received); */
1383
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001384 drop_it = tconn->meta.socket == sock
1385 || !tconn->asender.task
1386 || get_t_state(&tconn->asender) != RUNNING
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001387 || tconn->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001388
1389 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001390 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001391
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001392 drop_it = !--tconn->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001393 if (!drop_it) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001394 conn_err(tconn, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1395 current->comm, current->pid, tconn->ko_count);
1396 request_ping(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001397 }
1398
1399 return drop_it; /* && (mdev->state == R_PRIMARY) */;
1400}
1401
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001402static void drbd_update_congested(struct drbd_tconn *tconn)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001403{
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001404 struct sock *sk = tconn->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001405 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001406 set_bit(NET_CONGESTED, &tconn->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001407}
1408
Philipp Reisnerb411b362009-09-25 16:07:19 -07001409/* The idea of sendpage seems to be to put some kind of reference
1410 * to the page into the skb, and to hand it over to the NIC. In
1411 * this process get_page() gets called.
1412 *
1413 * As soon as the page was really sent over the network put_page()
1414 * gets called by some part of the network layer. [ NIC driver? ]
1415 *
1416 * [ get_page() / put_page() increment/decrement the count. If count
1417 * reaches 0 the page will be freed. ]
1418 *
1419 * This works nicely with pages from FSs.
1420 * But this means that in protocol A we might signal IO completion too early!
1421 *
1422 * In order not to corrupt data during a resync we must make sure
1423 * that we do not reuse our own buffer pages (EEs) to early, therefore
1424 * we have the net_ee list.
1425 *
1426 * XFS seems to have problems, still, it submits pages with page_count == 0!
1427 * As a workaround, we disable sendpage on pages
1428 * with page_count == 0 or PageSlab.
1429 */
1430static int _drbd_no_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001431 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001432{
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001433 int sent = drbd_send(mdev->tconn, mdev->tconn->data.socket, kmap(page) + offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001434 kunmap(page);
1435 if (sent == size)
1436 mdev->send_cnt += size>>9;
1437 return sent == size;
1438}
1439
1440static int _drbd_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001441 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001442{
1443 mm_segment_t oldfs = get_fs();
1444 int sent, ok;
1445 int len = size;
1446
1447 /* e.g. XFS meta- & log-data is in slab pages, which have a
1448 * page_count of 0 and/or have PageSlab() set.
1449 * we cannot use send_page for those, as that does get_page();
1450 * put_page(); and would cause either a VM_BUG directly, or
1451 * __page_cache_release a page that would actually still be referenced
1452 * by someone, leading to some obscure delayed Oops somewhere else. */
1453 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001454 return _drbd_no_send_page(mdev, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001455
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001456 msg_flags |= MSG_NOSIGNAL;
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001457 drbd_update_congested(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001458 set_fs(KERNEL_DS);
1459 do {
Philipp Reisnere42325a2011-01-19 13:55:45 +01001460 sent = mdev->tconn->data.socket->ops->sendpage(mdev->tconn->data.socket, page,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001461 offset, len,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001462 msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001463 if (sent == -EAGAIN) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001464 if (we_should_drop_the_connection(mdev->tconn,
Philipp Reisnere42325a2011-01-19 13:55:45 +01001465 mdev->tconn->data.socket))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001466 break;
1467 else
1468 continue;
1469 }
1470 if (sent <= 0) {
1471 dev_warn(DEV, "%s: size=%d len=%d sent=%d\n",
1472 __func__, (int)size, len, sent);
1473 break;
1474 }
1475 len -= sent;
1476 offset += sent;
1477 } while (len > 0 /* THINK && mdev->cstate >= C_CONNECTED*/);
1478 set_fs(oldfs);
Philipp Reisner01a311a2011-02-07 14:30:33 +01001479 clear_bit(NET_CONGESTED, &mdev->tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001480
1481 ok = (len == 0);
1482 if (likely(ok))
1483 mdev->send_cnt += size>>9;
1484 return ok;
1485}
1486
1487static int _drbd_send_bio(struct drbd_conf *mdev, struct bio *bio)
1488{
1489 struct bio_vec *bvec;
1490 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001491 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001492 __bio_for_each_segment(bvec, bio, i, 0) {
1493 if (!_drbd_no_send_page(mdev, bvec->bv_page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001494 bvec->bv_offset, bvec->bv_len,
1495 i == bio->bi_vcnt -1 ? 0 : MSG_MORE))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001496 return 0;
1497 }
1498 return 1;
1499}
1500
1501static int _drbd_send_zc_bio(struct drbd_conf *mdev, struct bio *bio)
1502{
1503 struct bio_vec *bvec;
1504 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001505 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001506 __bio_for_each_segment(bvec, bio, i, 0) {
1507 if (!_drbd_send_page(mdev, bvec->bv_page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001508 bvec->bv_offset, bvec->bv_len,
1509 i == bio->bi_vcnt -1 ? 0 : MSG_MORE))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001510 return 0;
1511 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001512 return 1;
1513}
1514
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001515static int _drbd_send_zc_ee(struct drbd_conf *mdev,
1516 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001517{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001518 struct page *page = peer_req->pages;
1519 unsigned len = peer_req->i.size;
1520
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001521 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001522 page_chain_for_each(page) {
1523 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001524 if (!_drbd_send_page(mdev, page, 0, l,
1525 page_chain_next(page) ? MSG_MORE : 0))
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001526 return 0;
1527 len -= l;
1528 }
1529 return 1;
1530}
1531
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001532static u32 bio_flags_to_wire(struct drbd_conf *mdev, unsigned long bi_rw)
1533{
Philipp Reisner31890f42011-01-19 14:12:51 +01001534 if (mdev->tconn->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001535 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001536 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1537 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1538 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1539 else
Jens Axboe721a9602011-03-09 11:56:30 +01001540 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001541}
1542
Philipp Reisnerb411b362009-09-25 16:07:19 -07001543/* Used to send write requests
1544 * R_PRIMARY -> Peer (P_DATA)
1545 */
1546int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
1547{
1548 int ok = 1;
1549 struct p_data p;
1550 unsigned int dp_flags = 0;
1551 void *dgb;
1552 int dgs;
1553
Philipp Reisner61120872011-02-08 09:50:54 +01001554 if (!drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001555 return 0;
1556
Philipp Reisnera0638452011-01-19 14:31:32 +01001557 dgs = (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_w_tfm) ?
1558 crypto_hash_digestsize(mdev->tconn->integrity_w_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001559
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001560 prepare_header(mdev, &p.head, P_DATA, sizeof(p) - sizeof(struct p_header) + dgs + req->i.size);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001561 p.sector = cpu_to_be64(req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001562 p.block_id = (unsigned long)req;
Andreas Gruenbacher8ccf2182011-02-24 11:35:43 +01001563 p.seq_num = cpu_to_be32(req->seq_num = atomic_inc_return(&mdev->packet_seq));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001564
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001565 dp_flags = bio_flags_to_wire(mdev, req->master_bio->bi_rw);
1566
Philipp Reisnerb411b362009-09-25 16:07:19 -07001567 if (mdev->state.conn >= C_SYNC_SOURCE &&
1568 mdev->state.conn <= C_PAUSED_SYNC_T)
1569 dp_flags |= DP_MAY_SET_IN_SYNC;
1570
1571 p.dp_flags = cpu_to_be32(dp_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001572 set_bit(UNPLUG_REMOTE, &mdev->flags);
1573 ok = (sizeof(p) ==
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001574 drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), dgs ? MSG_MORE : 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001575 if (ok && dgs) {
Philipp Reisnera0638452011-01-19 14:31:32 +01001576 dgb = mdev->tconn->int_dig_out;
1577 drbd_csum_bio(mdev, mdev->tconn->integrity_w_tfm, req->master_bio, dgb);
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001578 ok = dgs == drbd_send(mdev->tconn, mdev->tconn->data.socket, dgb, dgs, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001579 }
1580 if (ok) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001581 /* For protocol A, we have to memcpy the payload into
1582 * socket buffers, as we may complete right away
1583 * as soon as we handed it over to tcp, at which point the data
1584 * pages may become invalid.
1585 *
1586 * For data-integrity enabled, we copy it as well, so we can be
1587 * sure that even if the bio pages may still be modified, it
1588 * won't change the data on the wire, thus if the digest checks
1589 * out ok after sending on this side, but does not fit on the
1590 * receiving side, we sure have detected corruption elsewhere.
1591 */
Philipp Reisner89e58e72011-01-19 13:12:45 +01001592 if (mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A || dgs)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001593 ok = _drbd_send_bio(mdev, req->master_bio);
1594 else
1595 ok = _drbd_send_zc_bio(mdev, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001596
1597 /* double check digest, sometimes buffers have been modified in flight. */
1598 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001599 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001600 * currently supported in kernel crypto. */
1601 unsigned char digest[64];
Philipp Reisnera0638452011-01-19 14:31:32 +01001602 drbd_csum_bio(mdev, mdev->tconn->integrity_w_tfm, req->master_bio, digest);
1603 if (memcmp(mdev->tconn->int_dig_out, digest, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001604 dev_warn(DEV,
1605 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001606 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001607 }
1608 } /* else if (dgs > 64) {
1609 ... Be noisy about digest too large ...
1610 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001611 }
1612
Philipp Reisner61120872011-02-08 09:50:54 +01001613 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001614
Philipp Reisnerb411b362009-09-25 16:07:19 -07001615 return ok;
1616}
1617
1618/* answer packet, used to send data back for read requests:
1619 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1620 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1621 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001622int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001623 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001624{
1625 int ok;
1626 struct p_data p;
1627 void *dgb;
1628 int dgs;
1629
Philipp Reisnera0638452011-01-19 14:31:32 +01001630 dgs = (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_w_tfm) ?
1631 crypto_hash_digestsize(mdev->tconn->integrity_w_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001632
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001633 prepare_header(mdev, &p.head, cmd, sizeof(p) -
1634 sizeof(struct p_header80) +
1635 dgs + peer_req->i.size);
1636 p.sector = cpu_to_be64(peer_req->i.sector);
1637 p.block_id = peer_req->block_id;
Andreas Gruenbachercc378272011-01-26 18:01:50 +01001638 p.seq_num = 0; /* unused */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001639
1640 /* Only called by our kernel thread.
1641 * This one may be interrupted by DRBD_SIG and/or DRBD_SIGKILL
1642 * in response to admin command or module unload.
1643 */
Philipp Reisner61120872011-02-08 09:50:54 +01001644 if (!drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001645 return 0;
1646
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001647 ok = sizeof(p) == drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), dgs ? MSG_MORE : 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001648 if (ok && dgs) {
Philipp Reisnera0638452011-01-19 14:31:32 +01001649 dgb = mdev->tconn->int_dig_out;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001650 drbd_csum_ee(mdev, mdev->tconn->integrity_w_tfm, peer_req, dgb);
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001651 ok = dgs == drbd_send(mdev->tconn, mdev->tconn->data.socket, dgb, dgs, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001652 }
1653 if (ok)
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001654 ok = _drbd_send_zc_ee(mdev, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001655
Philipp Reisner61120872011-02-08 09:50:54 +01001656 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001657
Philipp Reisnerb411b362009-09-25 16:07:19 -07001658 return ok;
1659}
1660
Philipp Reisner73a01a12010-10-27 14:33:00 +02001661int drbd_send_oos(struct drbd_conf *mdev, struct drbd_request *req)
1662{
1663 struct p_block_desc p;
1664
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001665 p.sector = cpu_to_be64(req->i.sector);
1666 p.blksize = cpu_to_be32(req->i.size);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001667
1668 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_OUT_OF_SYNC, &p.head, sizeof(p));
1669}
1670
Philipp Reisnerb411b362009-09-25 16:07:19 -07001671/*
1672 drbd_send distinguishes two cases:
1673
1674 Packets sent via the data socket "sock"
1675 and packets sent via the meta data socket "msock"
1676
1677 sock msock
1678 -----------------+-------------------------+------------------------------
1679 timeout conf.timeout / 2 conf.timeout / 2
1680 timeout action send a ping via msock Abort communication
1681 and close all sockets
1682*/
1683
1684/*
1685 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1686 */
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001687int drbd_send(struct drbd_tconn *tconn, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001688 void *buf, size_t size, unsigned msg_flags)
1689{
1690 struct kvec iov;
1691 struct msghdr msg;
1692 int rv, sent = 0;
1693
1694 if (!sock)
1695 return -1000;
1696
1697 /* THINK if (signal_pending) return ... ? */
1698
1699 iov.iov_base = buf;
1700 iov.iov_len = size;
1701
1702 msg.msg_name = NULL;
1703 msg.msg_namelen = 0;
1704 msg.msg_control = NULL;
1705 msg.msg_controllen = 0;
1706 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1707
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001708 if (sock == tconn->data.socket) {
1709 tconn->ko_count = tconn->net_conf->ko_count;
1710 drbd_update_congested(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001711 }
1712 do {
1713 /* STRANGE
1714 * tcp_sendmsg does _not_ use its size parameter at all ?
1715 *
1716 * -EAGAIN on timeout, -EINTR on signal.
1717 */
1718/* THINK
1719 * do we need to block DRBD_SIG if sock == &meta.socket ??
1720 * otherwise wake_asender() might interrupt some send_*Ack !
1721 */
1722 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1723 if (rv == -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001724 if (we_should_drop_the_connection(tconn, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001725 break;
1726 else
1727 continue;
1728 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001729 if (rv == -EINTR) {
1730 flush_signals(current);
1731 rv = 0;
1732 }
1733 if (rv < 0)
1734 break;
1735 sent += rv;
1736 iov.iov_base += rv;
1737 iov.iov_len -= rv;
1738 } while (sent < size);
1739
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001740 if (sock == tconn->data.socket)
1741 clear_bit(NET_CONGESTED, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001742
1743 if (rv <= 0) {
1744 if (rv != -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001745 conn_err(tconn, "%s_sendmsg returned %d\n",
1746 sock == tconn->meta.socket ? "msock" : "sock",
1747 rv);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001748 conn_request_state(tconn, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001749 } else
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001750 conn_request_state(tconn, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001751 }
1752
1753 return sent;
1754}
1755
1756static int drbd_open(struct block_device *bdev, fmode_t mode)
1757{
1758 struct drbd_conf *mdev = bdev->bd_disk->private_data;
1759 unsigned long flags;
1760 int rv = 0;
1761
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001762 mutex_lock(&drbd_main_mutex);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001763 spin_lock_irqsave(&mdev->tconn->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001764 /* to have a stable mdev->state.role
1765 * and no race with updating open_cnt */
1766
1767 if (mdev->state.role != R_PRIMARY) {
1768 if (mode & FMODE_WRITE)
1769 rv = -EROFS;
1770 else if (!allow_oos)
1771 rv = -EMEDIUMTYPE;
1772 }
1773
1774 if (!rv)
1775 mdev->open_cnt++;
Philipp Reisner87eeee42011-01-19 14:16:30 +01001776 spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001777 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001778
1779 return rv;
1780}
1781
1782static int drbd_release(struct gendisk *gd, fmode_t mode)
1783{
1784 struct drbd_conf *mdev = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001785 mutex_lock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001786 mdev->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001787 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001788 return 0;
1789}
1790
Philipp Reisnerb411b362009-09-25 16:07:19 -07001791static void drbd_set_defaults(struct drbd_conf *mdev)
1792{
Philipp Reisner85f4cc12010-06-29 17:35:34 +02001793 /* This way we get a compile error when sync_conf grows,
1794 and we forgot to initialize it here */
1795 mdev->sync_conf = (struct syncer_conf) {
1796 /* .rate = */ DRBD_RATE_DEF,
1797 /* .after = */ DRBD_AFTER_DEF,
1798 /* .al_extents = */ DRBD_AL_EXTENTS_DEF,
Philipp Reisner85f4cc12010-06-29 17:35:34 +02001799 /* .verify_alg = */ {}, 0,
1800 /* .cpu_mask = */ {}, 0,
1801 /* .csums_alg = */ {}, 0,
Philipp Reisnere7564142010-06-29 17:35:34 +02001802 /* .use_rle = */ 0,
Philipp Reisner9a31d712010-07-05 13:42:03 +02001803 /* .on_no_data = */ DRBD_ON_NO_DATA_DEF,
1804 /* .c_plan_ahead = */ DRBD_C_PLAN_AHEAD_DEF,
1805 /* .c_delay_target = */ DRBD_C_DELAY_TARGET_DEF,
1806 /* .c_fill_target = */ DRBD_C_FILL_TARGET_DEF,
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001807 /* .c_max_rate = */ DRBD_C_MAX_RATE_DEF,
1808 /* .c_min_rate = */ DRBD_C_MIN_RATE_DEF
Philipp Reisner85f4cc12010-06-29 17:35:34 +02001809 };
1810
1811 /* Have to use that way, because the layout differs between
1812 big endian and little endian */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001813 mdev->state = (union drbd_state) {
1814 { .role = R_SECONDARY,
1815 .peer = R_UNKNOWN,
1816 .conn = C_STANDALONE,
1817 .disk = D_DISKLESS,
1818 .pdsk = D_UNKNOWN,
Philipp Reisnerfb22c402010-09-08 23:20:21 +02001819 .susp = 0,
1820 .susp_nod = 0,
1821 .susp_fen = 0
Philipp Reisnerb411b362009-09-25 16:07:19 -07001822 } };
1823}
1824
1825void drbd_init_set_defaults(struct drbd_conf *mdev)
1826{
1827 /* the memset(,0,) did most of this.
1828 * note: only assignments, no allocation in here */
1829
1830 drbd_set_defaults(mdev);
1831
Philipp Reisnerb411b362009-09-25 16:07:19 -07001832 atomic_set(&mdev->ap_bio_cnt, 0);
1833 atomic_set(&mdev->ap_pending_cnt, 0);
1834 atomic_set(&mdev->rs_pending_cnt, 0);
1835 atomic_set(&mdev->unacked_cnt, 0);
1836 atomic_set(&mdev->local_cnt, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001837 atomic_set(&mdev->pp_in_use, 0);
Lars Ellenberg435f0742010-09-06 12:30:25 +02001838 atomic_set(&mdev->pp_in_use_by_net, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02001839 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001840 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner759fbdf2010-10-26 16:02:27 +02001841 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001842
1843 mutex_init(&mdev->md_io_mutex);
Philipp Reisner8410da82011-02-11 20:11:10 +01001844 mutex_init(&mdev->own_state_mutex);
1845 mdev->state_mutex = &mdev->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001846
Philipp Reisnerb411b362009-09-25 16:07:19 -07001847 spin_lock_init(&mdev->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001848 spin_lock_init(&mdev->peer_seq_lock);
1849 spin_lock_init(&mdev->epoch_lock);
1850
1851 INIT_LIST_HEAD(&mdev->active_ee);
1852 INIT_LIST_HEAD(&mdev->sync_ee);
1853 INIT_LIST_HEAD(&mdev->done_ee);
1854 INIT_LIST_HEAD(&mdev->read_ee);
1855 INIT_LIST_HEAD(&mdev->net_ee);
1856 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001857 INIT_LIST_HEAD(&mdev->resync_work.list);
1858 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001859 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001860 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02001861 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001862 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02001863
Philipp Reisner794abb72010-12-27 11:51:23 +01001864 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001865 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001866 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001867 mdev->md_sync_work.cb = w_md_sync;
1868 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001869 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01001870
1871 mdev->resync_work.mdev = mdev;
1872 mdev->unplug_work.mdev = mdev;
1873 mdev->go_diskless.mdev = mdev;
1874 mdev->md_sync_work.mdev = mdev;
1875 mdev->bm_io_work.w.mdev = mdev;
1876 mdev->start_resync_work.mdev = mdev;
1877
Philipp Reisnerb411b362009-09-25 16:07:19 -07001878 init_timer(&mdev->resync_timer);
1879 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01001880 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001881 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001882 mdev->resync_timer.function = resync_timer_fn;
1883 mdev->resync_timer.data = (unsigned long) mdev;
1884 mdev->md_sync_timer.function = md_sync_timer_fn;
1885 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001886 mdev->start_resync_timer.function = start_resync_timer_fn;
1887 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001888 mdev->request_timer.function = request_timer_fn;
1889 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001890
1891 init_waitqueue_head(&mdev->misc_wait);
1892 init_waitqueue_head(&mdev->state_wait);
1893 init_waitqueue_head(&mdev->ee_wait);
1894 init_waitqueue_head(&mdev->al_wait);
1895 init_waitqueue_head(&mdev->seq_wait);
1896
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001897 /* mdev->tconn->agreed_pro_version gets initialized in drbd_connect() */
Philipp Reisner2451fc32010-08-24 13:43:11 +02001898 mdev->write_ordering = WO_bdev_flush;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001899 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001900 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
1901 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001902}
1903
1904void drbd_mdev_cleanup(struct drbd_conf *mdev)
1905{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001906 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001907 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001908 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001909 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001910
1911 /* no need to lock it, I'm the only thread alive */
1912 if (atomic_read(&mdev->current_epoch->epoch_size) != 0)
1913 dev_err(DEV, "epoch_size:%d\n", atomic_read(&mdev->current_epoch->epoch_size));
1914 mdev->al_writ_cnt =
1915 mdev->bm_writ_cnt =
1916 mdev->read_cnt =
1917 mdev->recv_cnt =
1918 mdev->send_cnt =
1919 mdev->writ_cnt =
1920 mdev->p_size =
1921 mdev->rs_start =
1922 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001923 mdev->rs_failed = 0;
1924 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001925 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001926 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
1927 mdev->rs_mark_left[i] = 0;
1928 mdev->rs_mark_time[i] = 0;
1929 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01001930 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001931
1932 drbd_set_my_capacity(mdev, 0);
1933 if (mdev->bitmap) {
1934 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01001935 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001936 drbd_bm_cleanup(mdev);
1937 }
1938
1939 drbd_free_resources(mdev);
Philipp Reisner07782862010-08-31 12:00:50 +02001940 clear_bit(AL_SUSPENDED, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001941
1942 /*
1943 * currently we drbd_init_ee only on module load, so
1944 * we may do drbd_release_ee only on module unload!
1945 */
1946 D_ASSERT(list_empty(&mdev->active_ee));
1947 D_ASSERT(list_empty(&mdev->sync_ee));
1948 D_ASSERT(list_empty(&mdev->done_ee));
1949 D_ASSERT(list_empty(&mdev->read_ee));
1950 D_ASSERT(list_empty(&mdev->net_ee));
1951 D_ASSERT(list_empty(&mdev->resync_reads));
Philipp Reisnere42325a2011-01-19 13:55:45 +01001952 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
1953 D_ASSERT(list_empty(&mdev->tconn->meta.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001954 D_ASSERT(list_empty(&mdev->resync_work.list));
1955 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001956 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01001957
1958 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001959}
1960
1961
1962static void drbd_destroy_mempools(void)
1963{
1964 struct page *page;
1965
1966 while (drbd_pp_pool) {
1967 page = drbd_pp_pool;
1968 drbd_pp_pool = (struct page *)page_private(page);
1969 __free_page(page);
1970 drbd_pp_vacant--;
1971 }
1972
1973 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
1974
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01001975 if (drbd_md_io_bio_set)
1976 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg35abf592011-02-23 12:39:46 +01001977 if (drbd_md_io_page_pool)
1978 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001979 if (drbd_ee_mempool)
1980 mempool_destroy(drbd_ee_mempool);
1981 if (drbd_request_mempool)
1982 mempool_destroy(drbd_request_mempool);
1983 if (drbd_ee_cache)
1984 kmem_cache_destroy(drbd_ee_cache);
1985 if (drbd_request_cache)
1986 kmem_cache_destroy(drbd_request_cache);
1987 if (drbd_bm_ext_cache)
1988 kmem_cache_destroy(drbd_bm_ext_cache);
1989 if (drbd_al_ext_cache)
1990 kmem_cache_destroy(drbd_al_ext_cache);
1991
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01001992 drbd_md_io_bio_set = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01001993 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001994 drbd_ee_mempool = NULL;
1995 drbd_request_mempool = NULL;
1996 drbd_ee_cache = NULL;
1997 drbd_request_cache = NULL;
1998 drbd_bm_ext_cache = NULL;
1999 drbd_al_ext_cache = NULL;
2000
2001 return;
2002}
2003
2004static int drbd_create_mempools(void)
2005{
2006 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01002007 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002008 int i;
2009
2010 /* prepare our caches and mempools */
2011 drbd_request_mempool = NULL;
2012 drbd_ee_cache = NULL;
2013 drbd_request_cache = NULL;
2014 drbd_bm_ext_cache = NULL;
2015 drbd_al_ext_cache = NULL;
2016 drbd_pp_pool = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002017 drbd_md_io_page_pool = NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002018 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002019
2020 /* caches */
2021 drbd_request_cache = kmem_cache_create(
2022 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2023 if (drbd_request_cache == NULL)
2024 goto Enomem;
2025
2026 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002027 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002028 if (drbd_ee_cache == NULL)
2029 goto Enomem;
2030
2031 drbd_bm_ext_cache = kmem_cache_create(
2032 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2033 if (drbd_bm_ext_cache == NULL)
2034 goto Enomem;
2035
2036 drbd_al_ext_cache = kmem_cache_create(
2037 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2038 if (drbd_al_ext_cache == NULL)
2039 goto Enomem;
2040
2041 /* mempools */
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002042 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2043 if (drbd_md_io_bio_set == NULL)
2044 goto Enomem;
2045
Lars Ellenberg35abf592011-02-23 12:39:46 +01002046 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2047 if (drbd_md_io_page_pool == NULL)
2048 goto Enomem;
2049
Philipp Reisnerb411b362009-09-25 16:07:19 -07002050 drbd_request_mempool = mempool_create(number,
2051 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2052 if (drbd_request_mempool == NULL)
2053 goto Enomem;
2054
2055 drbd_ee_mempool = mempool_create(number,
2056 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002057 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002058 goto Enomem;
2059
2060 /* drbd's page pool */
2061 spin_lock_init(&drbd_pp_lock);
2062
2063 for (i = 0; i < number; i++) {
2064 page = alloc_page(GFP_HIGHUSER);
2065 if (!page)
2066 goto Enomem;
2067 set_page_private(page, (unsigned long)drbd_pp_pool);
2068 drbd_pp_pool = page;
2069 }
2070 drbd_pp_vacant = number;
2071
2072 return 0;
2073
2074Enomem:
2075 drbd_destroy_mempools(); /* in case we allocated some */
2076 return -ENOMEM;
2077}
2078
2079static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2080 void *unused)
2081{
2082 /* just so we have it. you never know what interesting things we
2083 * might want to do here some day...
2084 */
2085
2086 return NOTIFY_DONE;
2087}
2088
2089static struct notifier_block drbd_notifier = {
2090 .notifier_call = drbd_notify_sys,
2091};
2092
2093static void drbd_release_ee_lists(struct drbd_conf *mdev)
2094{
2095 int rr;
2096
2097 rr = drbd_release_ee(mdev, &mdev->active_ee);
2098 if (rr)
2099 dev_err(DEV, "%d EEs in active list found!\n", rr);
2100
2101 rr = drbd_release_ee(mdev, &mdev->sync_ee);
2102 if (rr)
2103 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2104
2105 rr = drbd_release_ee(mdev, &mdev->read_ee);
2106 if (rr)
2107 dev_err(DEV, "%d EEs in read list found!\n", rr);
2108
2109 rr = drbd_release_ee(mdev, &mdev->done_ee);
2110 if (rr)
2111 dev_err(DEV, "%d EEs in done list found!\n", rr);
2112
2113 rr = drbd_release_ee(mdev, &mdev->net_ee);
2114 if (rr)
2115 dev_err(DEV, "%d EEs in net list found!\n", rr);
2116}
2117
Philipp Reisner774b3052011-02-22 02:07:03 -05002118/* caution. no locking. */
2119void drbd_delete_device(unsigned int minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002120{
2121 struct drbd_conf *mdev = minor_to_mdev(minor);
2122
2123 if (!mdev)
2124 return;
2125
Lars Ellenberg569083c2011-03-07 09:49:02 +01002126 idr_remove(&mdev->tconn->volumes, mdev->vnr);
2127 idr_remove(&minors, minor);
2128 synchronize_rcu();
Philipp Reisner774b3052011-02-22 02:07:03 -05002129
Philipp Reisnerb411b362009-09-25 16:07:19 -07002130 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002131 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnere42325a2011-01-19 13:55:45 +01002132 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002133 /* end paranoia asserts */
2134
2135 del_gendisk(mdev->vdisk);
2136
2137 /* cleanup stuff that may have been allocated during
2138 * device (re-)configuration or state changes */
2139
2140 if (mdev->this_bdev)
2141 bdput(mdev->this_bdev);
2142
2143 drbd_free_resources(mdev);
2144
2145 drbd_release_ee_lists(mdev);
2146
Philipp Reisnerb411b362009-09-25 16:07:19 -07002147 lc_destroy(mdev->act_log);
2148 lc_destroy(mdev->resync);
2149
2150 kfree(mdev->p_uuid);
2151 /* mdev->p_uuid = NULL; */
2152
Philipp Reisnerb411b362009-09-25 16:07:19 -07002153 /* cleanup the rest that has been
2154 * allocated from drbd_new_device
2155 * and actually free the mdev itself */
2156 drbd_free_mdev(mdev);
2157}
2158
2159static void drbd_cleanup(void)
2160{
2161 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002162 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002163
2164 unregister_reboot_notifier(&drbd_notifier);
2165
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002166 /* first remove proc,
2167 * drbdsetup uses it's presence to detect
2168 * whether DRBD is loaded.
2169 * If we would get stuck in proc removal,
2170 * but have netlink already deregistered,
2171 * some drbdsetup commands may wait forever
2172 * for an answer.
2173 */
2174 if (drbd_proc)
2175 remove_proc_entry("drbd", NULL);
2176
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002177 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002178
Philipp Reisner81a5d602011-02-22 19:53:16 -05002179 idr_for_each_entry(&minors, mdev, i)
2180 drbd_delete_device(i);
2181 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002182 unregister_blkdev(DRBD_MAJOR, "drbd");
2183
Philipp Reisner81a5d602011-02-22 19:53:16 -05002184 idr_destroy(&minors);
2185
Philipp Reisnerb411b362009-09-25 16:07:19 -07002186 printk(KERN_INFO "drbd: module cleanup done.\n");
2187}
2188
2189/**
2190 * drbd_congested() - Callback for pdflush
2191 * @congested_data: User data
2192 * @bdi_bits: Bits pdflush is currently interested in
2193 *
2194 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2195 */
2196static int drbd_congested(void *congested_data, int bdi_bits)
2197{
2198 struct drbd_conf *mdev = congested_data;
2199 struct request_queue *q;
2200 char reason = '-';
2201 int r = 0;
2202
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002203 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002204 /* DRBD has frozen IO */
2205 r = bdi_bits;
2206 reason = 'd';
2207 goto out;
2208 }
2209
2210 if (get_ldev(mdev)) {
2211 q = bdev_get_queue(mdev->ldev->backing_bdev);
2212 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2213 put_ldev(mdev);
2214 if (r)
2215 reason = 'b';
2216 }
2217
Philipp Reisner01a311a2011-02-07 14:30:33 +01002218 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002219 r |= (1 << BDI_async_congested);
2220 reason = reason == 'b' ? 'a' : 'n';
2221 }
2222
2223out:
2224 mdev->congestion_reason = reason;
2225 return r;
2226}
2227
Philipp Reisner6699b652011-02-09 11:10:24 +01002228static void drbd_init_workqueue(struct drbd_work_queue* wq)
2229{
2230 sema_init(&wq->s, 0);
2231 spin_lock_init(&wq->q_lock);
2232 INIT_LIST_HEAD(&wq->q);
2233}
2234
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002235struct drbd_tconn *conn_by_name(const char *name)
2236{
2237 struct drbd_tconn *tconn;
2238
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002239 if (!name || !name[0])
2240 return NULL;
2241
Lars Ellenberg543cc102011-03-10 22:18:18 +01002242 mutex_lock(&drbd_cfg_mutex);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002243 list_for_each_entry(tconn, &drbd_tconns, all_tconn) {
2244 if (!strcmp(tconn->name, name))
2245 goto found;
2246 }
2247 tconn = NULL;
2248found:
Lars Ellenberg543cc102011-03-10 22:18:18 +01002249 mutex_unlock(&drbd_cfg_mutex);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002250 return tconn;
2251}
2252
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002253struct drbd_tconn *drbd_new_tconn(const char *name)
Philipp Reisner21114382011-01-19 12:26:59 +01002254{
2255 struct drbd_tconn *tconn;
2256
2257 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2258 if (!tconn)
2259 return NULL;
2260
2261 tconn->name = kstrdup(name, GFP_KERNEL);
2262 if (!tconn->name)
2263 goto fail;
2264
Philipp Reisner774b3052011-02-22 02:07:03 -05002265 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2266 goto fail;
2267
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002268 if (!tl_init(tconn))
2269 goto fail;
2270
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002271 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da82011-02-11 20:11:10 +01002272 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002273 spin_lock_init(&tconn->req_lock);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002274 atomic_set(&tconn->net_cnt, 0);
2275 init_waitqueue_head(&tconn->net_cnt_wait);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002276 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002277 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002278
Philipp Reisner6699b652011-02-09 11:10:24 +01002279 drbd_init_workqueue(&tconn->data.work);
2280 mutex_init(&tconn->data.mutex);
2281
2282 drbd_init_workqueue(&tconn->meta.work);
2283 mutex_init(&tconn->meta.mutex);
2284
Philipp Reisner392c8802011-02-09 10:33:31 +01002285 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2286 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2287 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2288
Lars Ellenberg543cc102011-03-10 22:18:18 +01002289 mutex_lock(&drbd_cfg_mutex);
2290 list_add_tail(&tconn->all_tconn, &drbd_tconns);
2291 mutex_unlock(&drbd_cfg_mutex);
Philipp Reisner21114382011-01-19 12:26:59 +01002292
2293 return tconn;
2294
2295fail:
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002296 tl_cleanup(tconn);
Philipp Reisner774b3052011-02-22 02:07:03 -05002297 free_cpumask_var(tconn->cpu_mask);
Philipp Reisner21114382011-01-19 12:26:59 +01002298 kfree(tconn->name);
2299 kfree(tconn);
2300
2301 return NULL;
2302}
2303
2304void drbd_free_tconn(struct drbd_tconn *tconn)
2305{
Lars Ellenberg543cc102011-03-10 22:18:18 +01002306 mutex_lock(&drbd_cfg_mutex);
Philipp Reisner21114382011-01-19 12:26:59 +01002307 list_del(&tconn->all_tconn);
Lars Ellenberg543cc102011-03-10 22:18:18 +01002308 mutex_unlock(&drbd_cfg_mutex);
Philipp Reisner062e8792011-02-08 11:09:18 +01002309 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002310
Philipp Reisner774b3052011-02-22 02:07:03 -05002311 free_cpumask_var(tconn->cpu_mask);
Philipp Reisner21114382011-01-19 12:26:59 +01002312 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002313 kfree(tconn->int_dig_out);
2314 kfree(tconn->int_dig_in);
2315 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002316 kfree(tconn);
2317}
2318
Philipp Reisner774b3052011-02-22 02:07:03 -05002319enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002320{
2321 struct drbd_conf *mdev;
2322 struct gendisk *disk;
2323 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002324 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002325 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002326 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002327
2328 mdev = minor_to_mdev(minor);
2329 if (mdev)
2330 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002331
2332 /* GFP_KERNEL, we are outside of all write-out paths */
2333 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2334 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002335 return ERR_NOMEM;
2336
2337 mdev->tconn = tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002338 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002339 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002340
2341 drbd_init_set_defaults(mdev);
2342
2343 q = blk_alloc_queue(GFP_KERNEL);
2344 if (!q)
2345 goto out_no_q;
2346 mdev->rq_queue = q;
2347 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002348
2349 disk = alloc_disk(1);
2350 if (!disk)
2351 goto out_no_disk;
2352 mdev->vdisk = disk;
2353
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002354 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002355
2356 disk->queue = q;
2357 disk->major = DRBD_MAJOR;
2358 disk->first_minor = minor;
2359 disk->fops = &drbd_ops;
2360 sprintf(disk->disk_name, "drbd%d", minor);
2361 disk->private_data = mdev;
2362
2363 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2364 /* we have no partitions. we contain only ourselves. */
2365 mdev->this_bdev->bd_contains = mdev->this_bdev;
2366
2367 q->backing_dev_info.congested_fn = drbd_congested;
2368 q->backing_dev_info.congested_data = mdev;
2369
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002370 blk_queue_make_request(q, drbd_make_request);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002371 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2372 This triggers a max_bio_size message upon first attach or connect */
2373 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002374 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2375 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002376 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002377
2378 mdev->md_io_page = alloc_page(GFP_KERNEL);
2379 if (!mdev->md_io_page)
2380 goto out_no_io_page;
2381
2382 if (drbd_bm_init(mdev))
2383 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002384 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002385 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002386
Philipp Reisnerb411b362009-09-25 16:07:19 -07002387 mdev->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2388 if (!mdev->current_epoch)
2389 goto out_no_epoch;
2390
2391 INIT_LIST_HEAD(&mdev->current_epoch->list);
2392 mdev->epochs = 1;
2393
Lars Ellenberg8432b312011-03-08 16:11:16 +01002394 if (!idr_pre_get(&minors, GFP_KERNEL))
2395 goto out_no_minor_idr;
2396 if (idr_get_new_above(&minors, mdev, minor, &minor_got))
2397 goto out_no_minor_idr;
2398 if (minor_got != minor) {
2399 err = ERR_MINOR_EXISTS;
2400 drbd_msg_put_info("requested minor exists already");
2401 goto out_idr_remove_minor;
Lars Ellenberg569083c2011-03-07 09:49:02 +01002402 }
2403
Lars Ellenberg8432b312011-03-08 16:11:16 +01002404 if (!idr_pre_get(&tconn->volumes, GFP_KERNEL))
Lars Ellenberg569083c2011-03-07 09:49:02 +01002405 goto out_idr_remove_minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002406 if (idr_get_new_above(&tconn->volumes, mdev, vnr, &vnr_got))
2407 goto out_idr_remove_minor;
2408 if (vnr_got != vnr) {
2409 err = ERR_INVALID_REQUEST;
2410 drbd_msg_put_info("requested volume exists already");
2411 goto out_idr_remove_vol;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002412 }
Philipp Reisner774b3052011-02-22 02:07:03 -05002413 add_disk(disk);
2414
2415 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002416
Lars Ellenberg569083c2011-03-07 09:49:02 +01002417out_idr_remove_vol:
2418 idr_remove(&tconn->volumes, vnr_got);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002419out_idr_remove_minor:
2420 idr_remove(&minors, minor_got);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002421 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002422out_no_minor_idr:
Philipp Reisner81a5d602011-02-22 19:53:16 -05002423 kfree(mdev->current_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002424out_no_epoch:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002425 drbd_bm_cleanup(mdev);
2426out_no_bitmap:
2427 __free_page(mdev->md_io_page);
2428out_no_io_page:
2429 put_disk(disk);
2430out_no_disk:
2431 blk_cleanup_queue(q);
2432out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002433 kfree(mdev);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002434 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002435}
2436
2437/* counterpart of drbd_new_device.
2438 * last part of drbd_delete_device. */
2439void drbd_free_mdev(struct drbd_conf *mdev)
2440{
2441 kfree(mdev->current_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002442 if (mdev->bitmap) /* should no longer be there. */
2443 drbd_bm_cleanup(mdev);
2444 __free_page(mdev->md_io_page);
2445 put_disk(mdev->vdisk);
2446 blk_cleanup_queue(mdev->rq_queue);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002447 kfree(mdev);
2448}
2449
2450
2451int __init drbd_init(void)
2452{
2453 int err;
2454
Philipp Reisnerfd340c12011-01-19 16:57:39 +01002455 BUILD_BUG_ON(sizeof(struct p_header80) != sizeof(struct p_header95));
2456 BUILD_BUG_ON(sizeof(struct p_handshake) != 80);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002457
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002458 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002459 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002460 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002461#ifdef MODULE
2462 return -EINVAL;
2463#else
2464 minor_count = 8;
2465#endif
2466 }
2467
Philipp Reisnerb411b362009-09-25 16:07:19 -07002468 err = register_blkdev(DRBD_MAJOR, "drbd");
2469 if (err) {
2470 printk(KERN_ERR
2471 "drbd: unable to register block device major %d\n",
2472 DRBD_MAJOR);
2473 return err;
2474 }
2475
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002476 err = drbd_genl_register();
2477 if (err) {
2478 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2479 goto fail;
2480 }
2481
2482
Philipp Reisnerb411b362009-09-25 16:07:19 -07002483 register_reboot_notifier(&drbd_notifier);
2484
2485 /*
2486 * allocate all necessary structs
2487 */
2488 err = -ENOMEM;
2489
2490 init_waitqueue_head(&drbd_pp_wait);
2491
2492 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002493 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002494
2495 err = drbd_create_mempools();
2496 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002497 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002498
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002499 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002500 if (!drbd_proc) {
2501 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002502 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002503 }
2504
2505 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002506 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002507
2508 printk(KERN_INFO "drbd: initialized. "
2509 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2510 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2511 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2512 printk(KERN_INFO "drbd: registered as block device major %d\n",
2513 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002514
2515 return 0; /* Success! */
2516
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002517fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002518 drbd_cleanup();
2519 if (err == -ENOMEM)
2520 /* currently always the case */
2521 printk(KERN_ERR "drbd: ran out of memory\n");
2522 else
2523 printk(KERN_ERR "drbd: initialization failure\n");
2524 return err;
2525}
2526
2527void drbd_free_bc(struct drbd_backing_dev *ldev)
2528{
2529 if (ldev == NULL)
2530 return;
2531
Tejun Heoe525fd82010-11-13 11:55:17 +01002532 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2533 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002534
2535 kfree(ldev);
2536}
2537
Philipp Reisner360cc742011-02-08 14:29:53 +01002538void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002539{
Philipp Reisner360cc742011-02-08 14:29:53 +01002540 if (tconn->data.socket) {
2541 mutex_lock(&tconn->data.mutex);
2542 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2543 sock_release(tconn->data.socket);
2544 tconn->data.socket = NULL;
2545 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002546 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002547 if (tconn->meta.socket) {
2548 mutex_lock(&tconn->meta.mutex);
2549 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2550 sock_release(tconn->meta.socket);
2551 tconn->meta.socket = NULL;
2552 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002553 }
2554}
2555
2556
2557void drbd_free_resources(struct drbd_conf *mdev)
2558{
2559 crypto_free_hash(mdev->csums_tfm);
2560 mdev->csums_tfm = NULL;
2561 crypto_free_hash(mdev->verify_tfm);
2562 mdev->verify_tfm = NULL;
Philipp Reisnera0638452011-01-19 14:31:32 +01002563 crypto_free_hash(mdev->tconn->cram_hmac_tfm);
2564 mdev->tconn->cram_hmac_tfm = NULL;
2565 crypto_free_hash(mdev->tconn->integrity_w_tfm);
2566 mdev->tconn->integrity_w_tfm = NULL;
2567 crypto_free_hash(mdev->tconn->integrity_r_tfm);
2568 mdev->tconn->integrity_r_tfm = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002569
Philipp Reisner360cc742011-02-08 14:29:53 +01002570 drbd_free_sock(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002571
2572 __no_warn(local,
2573 drbd_free_bc(mdev->ldev);
2574 mdev->ldev = NULL;);
2575}
2576
2577/* meta data management */
2578
2579struct meta_data_on_disk {
2580 u64 la_size; /* last agreed size. */
2581 u64 uuid[UI_SIZE]; /* UUIDs. */
2582 u64 device_uuid;
2583 u64 reserved_u64_1;
2584 u32 flags; /* MDF */
2585 u32 magic;
2586 u32 md_size_sect;
2587 u32 al_offset; /* offset to this block */
2588 u32 al_nr_extents; /* important for restoring the AL */
2589 /* `-- act_log->nr_elements <-- sync_conf.al_extents */
2590 u32 bm_offset; /* offset to the bitmap, from here */
2591 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002592 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2593 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002594
2595} __packed;
2596
2597/**
2598 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2599 * @mdev: DRBD device.
2600 */
2601void drbd_md_sync(struct drbd_conf *mdev)
2602{
2603 struct meta_data_on_disk *buffer;
2604 sector_t sector;
2605 int i;
2606
Lars Ellenbergee15b032010-09-03 10:00:09 +02002607 del_timer(&mdev->md_sync_timer);
2608 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002609 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
2610 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002611
2612 /* We use here D_FAILED and not D_ATTACHING because we try to write
2613 * metadata even if we detach due to a disk failure! */
2614 if (!get_ldev_if_state(mdev, D_FAILED))
2615 return;
2616
Philipp Reisnerb411b362009-09-25 16:07:19 -07002617 mutex_lock(&mdev->md_io_mutex);
2618 buffer = (struct meta_data_on_disk *)page_address(mdev->md_io_page);
2619 memset(buffer, 0, 512);
2620
2621 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
2622 for (i = UI_CURRENT; i < UI_SIZE; i++)
2623 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
2624 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
2625 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC);
2626
2627 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
2628 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
2629 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
2630 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
2631 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
2632
2633 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002634 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002635
2636 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
2637 sector = mdev->ldev->md.md_offset;
2638
Lars Ellenberg3f3a9b82010-09-01 15:12:12 +02002639 if (!drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002640 /* this was a try anyways ... */
2641 dev_err(DEV, "meta data update failed!\n");
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002642 drbd_chk_io_error(mdev, 1, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002643 }
2644
2645 /* Update mdev->ldev->md.la_size_sect,
2646 * since we updated it on metadata. */
2647 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
2648
2649 mutex_unlock(&mdev->md_io_mutex);
2650 put_ldev(mdev);
2651}
2652
2653/**
2654 * drbd_md_read() - Reads in the meta data super block
2655 * @mdev: DRBD device.
2656 * @bdev: Device from which the meta data should be read in.
2657 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01002658 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Philipp Reisnerb411b362009-09-25 16:07:19 -07002659 * something goes wrong. Currently only: ERR_IO_MD_DISK, ERR_MD_INVALID.
2660 */
2661int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
2662{
2663 struct meta_data_on_disk *buffer;
2664 int i, rv = NO_ERROR;
2665
2666 if (!get_ldev_if_state(mdev, D_ATTACHING))
2667 return ERR_IO_MD_DISK;
2668
Philipp Reisnerb411b362009-09-25 16:07:19 -07002669 mutex_lock(&mdev->md_io_mutex);
2670 buffer = (struct meta_data_on_disk *)page_address(mdev->md_io_page);
2671
2672 if (!drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002673 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07002674 called BEFORE disk is attached */
2675 dev_err(DEV, "Error while reading metadata.\n");
2676 rv = ERR_IO_MD_DISK;
2677 goto err;
2678 }
2679
Andreas Gruenbachere7fad8a2011-01-11 13:54:02 +01002680 if (buffer->magic != cpu_to_be32(DRBD_MD_MAGIC)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002681 dev_err(DEV, "Error while reading metadata, magic not found.\n");
2682 rv = ERR_MD_INVALID;
2683 goto err;
2684 }
2685 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
2686 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
2687 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
2688 rv = ERR_MD_INVALID;
2689 goto err;
2690 }
2691 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
2692 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
2693 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
2694 rv = ERR_MD_INVALID;
2695 goto err;
2696 }
2697 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
2698 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
2699 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
2700 rv = ERR_MD_INVALID;
2701 goto err;
2702 }
2703
2704 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
2705 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
2706 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
2707 rv = ERR_MD_INVALID;
2708 goto err;
2709 }
2710
2711 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
2712 for (i = UI_CURRENT; i < UI_SIZE; i++)
2713 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
2714 bdev->md.flags = be32_to_cpu(buffer->flags);
2715 mdev->sync_conf.al_extents = be32_to_cpu(buffer->al_nr_extents);
2716 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
2717
Philipp Reisner87eeee42011-01-19 14:16:30 +01002718 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002719 if (mdev->state.conn < C_CONNECTED) {
2720 int peer;
2721 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
2722 peer = max_t(int, peer, DRBD_MAX_BIO_SIZE_SAFE);
2723 mdev->peer_max_bio_size = peer;
2724 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01002725 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002726
Philipp Reisnerb411b362009-09-25 16:07:19 -07002727 if (mdev->sync_conf.al_extents < 7)
2728 mdev->sync_conf.al_extents = 127;
2729
2730 err:
2731 mutex_unlock(&mdev->md_io_mutex);
2732 put_ldev(mdev);
2733
2734 return rv;
2735}
2736
2737/**
2738 * drbd_md_mark_dirty() - Mark meta data super block as dirty
2739 * @mdev: DRBD device.
2740 *
2741 * Call this function if you change anything that should be written to
2742 * the meta-data super block. This function sets MD_DIRTY, and starts a
2743 * timer that ensures that within five seconds you have to call drbd_md_sync().
2744 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02002745#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02002746void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
2747{
2748 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
2749 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
2750 mdev->last_md_mark_dirty.line = line;
2751 mdev->last_md_mark_dirty.func = func;
2752 }
2753}
2754#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07002755void drbd_md_mark_dirty(struct drbd_conf *mdev)
2756{
Lars Ellenbergee15b032010-09-03 10:00:09 +02002757 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02002758 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002759}
Lars Ellenbergee15b032010-09-03 10:00:09 +02002760#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07002761
2762static void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
2763{
2764 int i;
2765
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002766 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002767 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002768}
2769
2770void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
2771{
2772 if (idx == UI_CURRENT) {
2773 if (mdev->state.role == R_PRIMARY)
2774 val |= 1;
2775 else
2776 val &= ~((u64)1);
2777
2778 drbd_set_ed_uuid(mdev, val);
2779 }
2780
2781 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002782 drbd_md_mark_dirty(mdev);
2783}
2784
2785
2786void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
2787{
2788 if (mdev->ldev->md.uuid[idx]) {
2789 drbd_uuid_move_history(mdev);
2790 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002791 }
2792 _drbd_uuid_set(mdev, idx, val);
2793}
2794
2795/**
2796 * drbd_uuid_new_current() - Creates a new current UUID
2797 * @mdev: DRBD device.
2798 *
2799 * Creates a new current UUID, and rotates the old current UUID into
2800 * the bitmap slot. Causes an incremental resync upon next connect.
2801 */
2802void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
2803{
2804 u64 val;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002805 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002806
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002807 if (bm_uuid)
2808 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
2809
Philipp Reisnerb411b362009-09-25 16:07:19 -07002810 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002811
2812 get_random_bytes(&val, sizeof(u64));
2813 _drbd_uuid_set(mdev, UI_CURRENT, val);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002814 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02002815 /* get it to stable storage _now_ */
2816 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002817}
2818
2819void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
2820{
2821 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
2822 return;
2823
2824 if (val == 0) {
2825 drbd_uuid_move_history(mdev);
2826 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
2827 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002828 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002829 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
2830 if (bm_uuid)
2831 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002832
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002833 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002834 }
2835 drbd_md_mark_dirty(mdev);
2836}
2837
2838/**
2839 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
2840 * @mdev: DRBD device.
2841 *
2842 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
2843 */
2844int drbd_bmio_set_n_write(struct drbd_conf *mdev)
2845{
2846 int rv = -EIO;
2847
2848 if (get_ldev_if_state(mdev, D_ATTACHING)) {
2849 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
2850 drbd_md_sync(mdev);
2851 drbd_bm_set_all(mdev);
2852
2853 rv = drbd_bm_write(mdev);
2854
2855 if (!rv) {
2856 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
2857 drbd_md_sync(mdev);
2858 }
2859
2860 put_ldev(mdev);
2861 }
2862
2863 return rv;
2864}
2865
2866/**
2867 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
2868 * @mdev: DRBD device.
2869 *
2870 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
2871 */
2872int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
2873{
2874 int rv = -EIO;
2875
Philipp Reisner07782862010-08-31 12:00:50 +02002876 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002877 if (get_ldev_if_state(mdev, D_ATTACHING)) {
2878 drbd_bm_clear_all(mdev);
2879 rv = drbd_bm_write(mdev);
2880 put_ldev(mdev);
2881 }
2882
2883 return rv;
2884}
2885
Philipp Reisner00d56942011-02-09 18:09:48 +01002886static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002887{
2888 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01002889 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01002890 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002891
2892 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
2893
Lars Ellenberg02851e92010-12-16 14:47:39 +01002894 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002895 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01002896 rv = work->io_fn(mdev);
2897 drbd_bm_unlock(mdev);
2898 put_ldev(mdev);
2899 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002900
Lars Ellenberg4738fa12011-02-21 13:20:55 +01002901 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002902 wake_up(&mdev->misc_wait);
2903
2904 if (work->done)
2905 work->done(mdev, rv);
2906
2907 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
2908 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002909 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002910
2911 return 1;
2912}
2913
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002914void drbd_ldev_destroy(struct drbd_conf *mdev)
2915{
2916 lc_destroy(mdev->resync);
2917 mdev->resync = NULL;
2918 lc_destroy(mdev->act_log);
2919 mdev->act_log = NULL;
2920 __no_warn(local,
2921 drbd_free_bc(mdev->ldev);
2922 mdev->ldev = NULL;);
2923
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002924 clear_bit(GO_DISKLESS, &mdev->flags);
2925}
2926
Philipp Reisner00d56942011-02-09 18:09:48 +01002927static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002928{
Philipp Reisner00d56942011-02-09 18:09:48 +01002929 struct drbd_conf *mdev = w->mdev;
2930
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002931 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02002932 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
2933 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002934 * the protected members anymore, though, so once put_ldev reaches zero
2935 * again, it will be safe to free them. */
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002936 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002937 return 1;
2938}
2939
2940void drbd_go_diskless(struct drbd_conf *mdev)
2941{
2942 D_ASSERT(mdev->state.disk == D_FAILED);
2943 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01002944 drbd_queue_work(&mdev->tconn->data.work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002945}
2946
Philipp Reisnerb411b362009-09-25 16:07:19 -07002947/**
2948 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
2949 * @mdev: DRBD device.
2950 * @io_fn: IO callback to be called when bitmap IO is possible
2951 * @done: callback to be called after the bitmap IO was performed
2952 * @why: Descriptive text of the reason for doing the IO
2953 *
2954 * While IO on the bitmap happens we freeze application IO thus we ensure
2955 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
2956 * called from worker context. It MUST NOT be used while a previous such
2957 * work is still pending!
2958 */
2959void drbd_queue_bitmap_io(struct drbd_conf *mdev,
2960 int (*io_fn)(struct drbd_conf *),
2961 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002962 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002963{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002964 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002965
2966 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
2967 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
2968 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
2969 if (mdev->bm_io_work.why)
2970 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
2971 why, mdev->bm_io_work.why);
2972
2973 mdev->bm_io_work.io_fn = io_fn;
2974 mdev->bm_io_work.done = done;
2975 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002976 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002977
Philipp Reisner87eeee42011-01-19 14:16:30 +01002978 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002979 set_bit(BITMAP_IO, &mdev->flags);
2980 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01002981 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01002982 drbd_queue_work(&mdev->tconn->data.work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002983 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01002984 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002985}
2986
2987/**
2988 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
2989 * @mdev: DRBD device.
2990 * @io_fn: IO callback to be called when bitmap IO is possible
2991 * @why: Descriptive text of the reason for doing the IO
2992 *
2993 * freezes application IO while that the actual IO operations runs. This
2994 * functions MAY NOT be called from worker context.
2995 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002996int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
2997 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002998{
2999 int rv;
3000
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003001 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003002
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003003 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3004 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003005
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003006 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003007 rv = io_fn(mdev);
3008 drbd_bm_unlock(mdev);
3009
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003010 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3011 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003012
3013 return rv;
3014}
3015
3016void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3017{
3018 if ((mdev->ldev->md.flags & flag) != flag) {
3019 drbd_md_mark_dirty(mdev);
3020 mdev->ldev->md.flags |= flag;
3021 }
3022}
3023
3024void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3025{
3026 if ((mdev->ldev->md.flags & flag) != 0) {
3027 drbd_md_mark_dirty(mdev);
3028 mdev->ldev->md.flags &= ~flag;
3029 }
3030}
3031int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3032{
3033 return (bdev->md.flags & flag) != 0;
3034}
3035
3036static void md_sync_timer_fn(unsigned long data)
3037{
3038 struct drbd_conf *mdev = (struct drbd_conf *) data;
3039
Philipp Reisnere42325a2011-01-19 13:55:45 +01003040 drbd_queue_work_front(&mdev->tconn->data.work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003041}
3042
Philipp Reisner00d56942011-02-09 18:09:48 +01003043static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003044{
Philipp Reisner00d56942011-02-09 18:09:48 +01003045 struct drbd_conf *mdev = w->mdev;
3046
Philipp Reisnerb411b362009-09-25 16:07:19 -07003047 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003048#ifdef DEBUG
3049 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3050 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3051#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003052 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003053 return 1;
3054}
3055
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003056const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003057{
3058 /* THINK may need to become several global tables
3059 * when we want to support more than
3060 * one PRO_VERSION */
3061 static const char *cmdnames[] = {
3062 [P_DATA] = "Data",
3063 [P_DATA_REPLY] = "DataReply",
3064 [P_RS_DATA_REPLY] = "RSDataReply",
3065 [P_BARRIER] = "Barrier",
3066 [P_BITMAP] = "ReportBitMap",
3067 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3068 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3069 [P_UNPLUG_REMOTE] = "UnplugRemote",
3070 [P_DATA_REQUEST] = "DataRequest",
3071 [P_RS_DATA_REQUEST] = "RSDataRequest",
3072 [P_SYNC_PARAM] = "SyncParam",
3073 [P_SYNC_PARAM89] = "SyncParam89",
3074 [P_PROTOCOL] = "ReportProtocol",
3075 [P_UUIDS] = "ReportUUIDs",
3076 [P_SIZES] = "ReportSizes",
3077 [P_STATE] = "ReportState",
3078 [P_SYNC_UUID] = "ReportSyncUUID",
3079 [P_AUTH_CHALLENGE] = "AuthChallenge",
3080 [P_AUTH_RESPONSE] = "AuthResponse",
3081 [P_PING] = "Ping",
3082 [P_PING_ACK] = "PingAck",
3083 [P_RECV_ACK] = "RecvAck",
3084 [P_WRITE_ACK] = "WriteAck",
3085 [P_RS_WRITE_ACK] = "RSWriteAck",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003086 [P_DISCARD_WRITE] = "DiscardWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003087 [P_NEG_ACK] = "NegAck",
3088 [P_NEG_DREPLY] = "NegDReply",
3089 [P_NEG_RS_DREPLY] = "NegRSDReply",
3090 [P_BARRIER_ACK] = "BarrierAck",
3091 [P_STATE_CHG_REQ] = "StateChgRequest",
3092 [P_STATE_CHG_REPLY] = "StateChgReply",
3093 [P_OV_REQUEST] = "OVRequest",
3094 [P_OV_REPLY] = "OVReply",
3095 [P_OV_RESULT] = "OVResult",
3096 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3097 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3098 [P_COMPRESSED_BITMAP] = "CBitmap",
3099 [P_DELAY_PROBE] = "DelayProbe",
3100 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003101 [P_RETRY_WRITE] = "RetryWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003102 };
3103
3104 if (cmd == P_HAND_SHAKE_M)
3105 return "HandShakeM";
3106 if (cmd == P_HAND_SHAKE_S)
3107 return "HandShakeS";
3108 if (cmd == P_HAND_SHAKE)
3109 return "HandShake";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003110 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003111 return "Unknown";
3112 return cmdnames[cmd];
3113}
3114
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003115/**
3116 * drbd_wait_misc - wait for a request to make progress
3117 * @mdev: device associated with the request
3118 * @i: the struct drbd_interval embedded in struct drbd_request or
3119 * struct drbd_peer_request
3120 */
3121int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3122{
3123 struct net_conf *net_conf = mdev->tconn->net_conf;
3124 DEFINE_WAIT(wait);
3125 long timeout;
3126
3127 if (!net_conf)
3128 return -ETIMEDOUT;
3129 timeout = MAX_SCHEDULE_TIMEOUT;
3130 if (net_conf->ko_count)
3131 timeout = net_conf->timeout * HZ / 10 * net_conf->ko_count;
3132
3133 /* Indicate to wake up mdev->misc_wait on progress. */
3134 i->waiting = true;
3135 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3136 spin_unlock_irq(&mdev->tconn->req_lock);
3137 timeout = schedule_timeout(timeout);
3138 finish_wait(&mdev->misc_wait, &wait);
3139 spin_lock_irq(&mdev->tconn->req_lock);
3140 if (!timeout || mdev->state.conn < C_CONNECTED)
3141 return -ETIMEDOUT;
3142 if (signal_pending(current))
3143 return -ERESTARTSYS;
3144 return 0;
3145}
3146
Philipp Reisnerb411b362009-09-25 16:07:19 -07003147#ifdef CONFIG_DRBD_FAULT_INJECTION
3148/* Fault insertion support including random number generator shamelessly
3149 * stolen from kernel/rcutorture.c */
3150struct fault_random_state {
3151 unsigned long state;
3152 unsigned long count;
3153};
3154
3155#define FAULT_RANDOM_MULT 39916801 /* prime */
3156#define FAULT_RANDOM_ADD 479001701 /* prime */
3157#define FAULT_RANDOM_REFRESH 10000
3158
3159/*
3160 * Crude but fast random-number generator. Uses a linear congruential
3161 * generator, with occasional help from get_random_bytes().
3162 */
3163static unsigned long
3164_drbd_fault_random(struct fault_random_state *rsp)
3165{
3166 long refresh;
3167
Roel Kluin49829ea2009-12-15 22:55:44 +01003168 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003169 get_random_bytes(&refresh, sizeof(refresh));
3170 rsp->state += refresh;
3171 rsp->count = FAULT_RANDOM_REFRESH;
3172 }
3173 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3174 return swahw32(rsp->state);
3175}
3176
3177static char *
3178_drbd_fault_str(unsigned int type) {
3179 static char *_faults[] = {
3180 [DRBD_FAULT_MD_WR] = "Meta-data write",
3181 [DRBD_FAULT_MD_RD] = "Meta-data read",
3182 [DRBD_FAULT_RS_WR] = "Resync write",
3183 [DRBD_FAULT_RS_RD] = "Resync read",
3184 [DRBD_FAULT_DT_WR] = "Data write",
3185 [DRBD_FAULT_DT_RD] = "Data read",
3186 [DRBD_FAULT_DT_RA] = "Data read ahead",
3187 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003188 [DRBD_FAULT_AL_EE] = "EE allocation",
3189 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003190 };
3191
3192 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3193}
3194
3195unsigned int
3196_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3197{
3198 static struct fault_random_state rrs = {0, 0};
3199
3200 unsigned int ret = (
3201 (fault_devs == 0 ||
3202 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3203 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3204
3205 if (ret) {
3206 fault_count++;
3207
Lars Ellenberg73835062010-05-27 11:51:56 +02003208 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003209 dev_warn(DEV, "***Simulating %s failure\n",
3210 _drbd_fault_str(type));
3211 }
3212
3213 return ret;
3214}
3215#endif
3216
3217const char *drbd_buildtag(void)
3218{
3219 /* DRBD built from external sources has here a reference to the
3220 git hash of the source code. */
3221
3222 static char buildtag[38] = "\0uilt-in";
3223
3224 if (buildtag[0] == 0) {
3225#ifdef CONFIG_MODULES
3226 if (THIS_MODULE != NULL)
3227 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3228 else
3229#endif
3230 buildtag[0] = 'b';
3231 }
3232
3233 return buildtag;
3234}
3235
3236module_init(drbd_init)
3237module_exit(drbd_cleanup)
3238
Philipp Reisnerb411b362009-09-25 16:07:19 -07003239EXPORT_SYMBOL(drbd_conn_str);
3240EXPORT_SYMBOL(drbd_role_str);
3241EXPORT_SYMBOL(drbd_disk_str);
3242EXPORT_SYMBOL(drbd_set_st_err_str);