blob: 018c336aea09dd52495cb7f20e5d074e169e3130 [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 Reisnere90285e2011-03-22 12:51:21 +0100437 int vnr;
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 Reisnere90285e2011-03-22 12:51:21 +0100456 idr_for_each_entry(&tconn->volumes, mdev, vnr)
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100457 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{
Philipp Reisnere90285e2011-03-22 12:51:21 +0100637 int vnr = 0;
638 struct drbd_conf *mdev;
Philipp Reisner774b3052011-02-22 02:07:03 -0500639
Philipp Reisnere90285e2011-03-22 12:51:21 +0100640 mdev = idr_get_next(&tconn->volumes, &vnr);
641 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -0500642 return -1;
Philipp Reisnere90285e2011-03-22 12:51:21 +0100643 return mdev_to_minor(mdev);
Philipp Reisner80822282011-02-08 12:46:30 +0100644}
Philipp Reisner774b3052011-02-22 02:07:03 -0500645
646#ifdef CONFIG_SMP
Philipp Reisnerb411b362009-09-25 16:07:19 -0700647/**
648 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
649 * @mdev: DRBD device.
650 *
651 * Forces all threads of a device onto the same CPU. This is beneficial for
652 * DRBD's performance. May be overwritten by user's configuration.
653 */
Philipp Reisner80822282011-02-08 12:46:30 +0100654void drbd_calc_cpu_mask(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700655{
656 int ord, cpu;
657
658 /* user override. */
Philipp Reisner80822282011-02-08 12:46:30 +0100659 if (cpumask_weight(tconn->cpu_mask))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700660 return;
661
Philipp Reisner80822282011-02-08 12:46:30 +0100662 ord = conn_lowest_minor(tconn) % cpumask_weight(cpu_online_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700663 for_each_online_cpu(cpu) {
664 if (ord-- == 0) {
Philipp Reisner80822282011-02-08 12:46:30 +0100665 cpumask_set_cpu(cpu, tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700666 return;
667 }
668 }
669 /* should not be reached */
Philipp Reisner80822282011-02-08 12:46:30 +0100670 cpumask_setall(tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700671}
672
673/**
674 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
675 * @mdev: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100676 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700677 *
678 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
679 * prematurely.
680 */
Philipp Reisner80822282011-02-08 12:46:30 +0100681void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700682{
683 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100684
Philipp Reisnerb411b362009-09-25 16:07:19 -0700685 if (!thi->reset_cpu_mask)
686 return;
687 thi->reset_cpu_mask = 0;
Philipp Reisner392c8802011-02-09 10:33:31 +0100688 set_cpus_allowed_ptr(p, thi->tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700689}
690#endif
691
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100692static void prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100693{
694 h->magic = cpu_to_be32(DRBD_MAGIC);
695 h->command = cpu_to_be16(cmd);
696 h->length = cpu_to_be16(size);
697}
698
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100699static void prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100700{
701 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
702 h->command = cpu_to_be16(cmd);
703 h->length = cpu_to_be32(size);
704}
705
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100706static void _prepare_header(struct drbd_tconn *tconn, int vnr, struct p_header *h,
707 enum drbd_packet cmd, int size)
708{
709 if (tconn->agreed_pro_version >= 100 || size > DRBD_MAX_SIZE_H80_PACKET)
710 prepare_header95(&h->h95, cmd, size);
711 else
712 prepare_header80(&h->h80, cmd, size);
713}
714
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100715static void prepare_header(struct drbd_conf *mdev, struct p_header *h,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100716 enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100717{
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100718 _prepare_header(mdev->tconn, mdev->vnr, h, cmd, size);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100719}
720
Philipp Reisnerb411b362009-09-25 16:07:19 -0700721/* the appropriate socket mutex must be held already */
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100722int _conn_send_cmd(struct drbd_tconn *tconn, int vnr, struct socket *sock,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100723 enum drbd_packet cmd, struct p_header *h, size_t size,
724 unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700725{
726 int sent, ok;
727
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100728 _prepare_header(tconn, vnr, h, cmd, size - sizeof(struct p_header));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700729
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100730 sent = drbd_send(tconn, sock, h, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700731
732 ok = (sent == size);
Lars Ellenberg0ddc5542011-01-21 12:35:15 +0100733 if (!ok && !signal_pending(current))
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100734 conn_warn(tconn, "short sent %s size=%d sent=%d\n",
735 cmdname(cmd), (int)size, sent);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700736 return ok;
737}
738
739/* don't pass the socket. we may only look at it
740 * when we hold the appropriate socket mutex.
741 */
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100742int conn_send_cmd(struct drbd_tconn *tconn, int vnr, int use_data_socket,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100743 enum drbd_packet cmd, struct p_header *h, size_t size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700744{
745 int ok = 0;
746 struct socket *sock;
747
748 if (use_data_socket) {
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100749 mutex_lock(&tconn->data.mutex);
750 sock = tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700751 } else {
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100752 mutex_lock(&tconn->meta.mutex);
753 sock = tconn->meta.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700754 }
755
756 /* drbd_disconnect() could have called drbd_free_sock()
757 * while we were waiting in down()... */
758 if (likely(sock != NULL))
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100759 ok = _conn_send_cmd(tconn, vnr, sock, cmd, h, size, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700760
761 if (use_data_socket)
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100762 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700763 else
Philipp Reisner2a67d8b2011-02-09 14:10:32 +0100764 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700765 return ok;
766}
767
Philipp Reisner61120872011-02-08 09:50:54 +0100768int conn_send_cmd2(struct drbd_tconn *tconn, enum drbd_packet cmd, char *data,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700769 size_t size)
770{
Philipp Reisner61120872011-02-08 09:50:54 +0100771 struct p_header80 h;
Andreas Gruenbacherce9879c2011-03-15 23:34:29 +0100772 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700773
Philipp Reisner61120872011-02-08 09:50:54 +0100774 prepare_header80(&h, cmd, size);
Andreas Gruenbacherce9879c2011-03-15 23:34:29 +0100775 err = drbd_get_data_sock(tconn);
776 if (!err) {
777 err = drbd_send_all(tconn, tconn->data.socket, &h, sizeof(h), 0);
778 if (!err)
779 err = drbd_send_all(tconn, tconn->data.socket, data, size, 0);
780 drbd_put_data_sock(tconn);
781 }
782 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700783}
784
Lars Ellenbergf3990022011-03-23 14:31:09 +0100785int drbd_send_sync_param(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700786{
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200787 struct p_rs_param_95 *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700788 struct socket *sock;
789 int size, rv;
Philipp Reisner31890f42011-01-19 14:12:51 +0100790 const int apv = mdev->tconn->agreed_pro_version;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700791
792 size = apv <= 87 ? sizeof(struct p_rs_param)
793 : apv == 88 ? sizeof(struct p_rs_param)
Lars Ellenbergf3990022011-03-23 14:31:09 +0100794 + strlen(mdev->tconn->net_conf->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200795 : apv <= 94 ? sizeof(struct p_rs_param_89)
796 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700797
798 /* used from admin command context and receiver/worker context.
799 * to avoid kmalloc, grab the socket right here,
800 * then use the pre-allocated sbuf there */
Philipp Reisnere42325a2011-01-19 13:55:45 +0100801 mutex_lock(&mdev->tconn->data.mutex);
802 sock = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700803
804 if (likely(sock != NULL)) {
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100805 enum drbd_packet cmd =
806 apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700807
Philipp Reisnere42325a2011-01-19 13:55:45 +0100808 p = &mdev->tconn->data.sbuf.rs_param_95;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700809
810 /* initialize verify_alg and csums_alg */
811 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
812
Lars Ellenbergf3990022011-03-23 14:31:09 +0100813 if (get_ldev(mdev)) {
814 p->rate = cpu_to_be32(mdev->ldev->dc.resync_rate);
815 p->c_plan_ahead = cpu_to_be32(mdev->ldev->dc.c_plan_ahead);
816 p->c_delay_target = cpu_to_be32(mdev->ldev->dc.c_delay_target);
817 p->c_fill_target = cpu_to_be32(mdev->ldev->dc.c_fill_target);
818 p->c_max_rate = cpu_to_be32(mdev->ldev->dc.c_max_rate);
819 put_ldev(mdev);
820 } else {
821 p->rate = cpu_to_be32(DRBD_RATE_DEF);
822 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
823 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
824 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
825 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
826 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700827
828 if (apv >= 88)
Lars Ellenbergf3990022011-03-23 14:31:09 +0100829 strcpy(p->verify_alg, mdev->tconn->net_conf->verify_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700830 if (apv >= 89)
Lars Ellenbergf3990022011-03-23 14:31:09 +0100831 strcpy(p->csums_alg, mdev->tconn->net_conf->csums_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700832
833 rv = _drbd_send_cmd(mdev, sock, cmd, &p->head, size, 0);
834 } else
835 rv = 0; /* not ok */
836
Philipp Reisnere42325a2011-01-19 13:55:45 +0100837 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700838
839 return rv;
840}
841
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100842int drbd_send_protocol(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700843{
844 struct p_protocol *p;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100845 int size, cf, rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700846
847 size = sizeof(struct p_protocol);
848
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100849 if (tconn->agreed_pro_version >= 87)
850 size += strlen(tconn->net_conf->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700851
852 /* we must not recurse into our own queue,
853 * as that is blocked during handshake */
854 p = kmalloc(size, GFP_NOIO);
855 if (p == NULL)
856 return 0;
857
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100858 p->protocol = cpu_to_be32(tconn->net_conf->wire_protocol);
859 p->after_sb_0p = cpu_to_be32(tconn->net_conf->after_sb_0p);
860 p->after_sb_1p = cpu_to_be32(tconn->net_conf->after_sb_1p);
861 p->after_sb_2p = cpu_to_be32(tconn->net_conf->after_sb_2p);
862 p->two_primaries = cpu_to_be32(tconn->net_conf->two_primaries);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700863
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100864 cf = 0;
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100865 if (tconn->net_conf->want_lose)
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100866 cf |= CF_WANT_LOSE;
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100867 if (tconn->net_conf->dry_run) {
868 if (tconn->agreed_pro_version >= 92)
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100869 cf |= CF_DRY_RUN;
870 else {
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100871 conn_err(tconn, "--dry-run is not supported by peer");
Dan Carpenter7ac314c2010-04-22 14:27:23 +0200872 kfree(p);
Philipp Reisner148efa12011-01-15 00:21:15 +0100873 return -1;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100874 }
875 }
876 p->conn_flags = cpu_to_be32(cf);
877
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100878 if (tconn->agreed_pro_version >= 87)
879 strcpy(p->integrity_alg, tconn->net_conf->integrity_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700880
Andreas Gruenbacherce9879c2011-03-15 23:34:29 +0100881 rv = !conn_send_cmd2(tconn, P_PROTOCOL, p->head.payload, size - sizeof(struct p_header));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700882 kfree(p);
883 return rv;
884}
885
886int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
887{
888 struct p_uuids p;
889 int i;
890
891 if (!get_ldev_if_state(mdev, D_NEGOTIATING))
892 return 1;
893
894 for (i = UI_CURRENT; i < UI_SIZE; i++)
895 p.uuid[i] = mdev->ldev ? cpu_to_be64(mdev->ldev->md.uuid[i]) : 0;
896
897 mdev->comm_bm_set = drbd_bm_total_weight(mdev);
898 p.uuid[UI_SIZE] = cpu_to_be64(mdev->comm_bm_set);
Philipp Reisner89e58e72011-01-19 13:12:45 +0100899 uuid_flags |= mdev->tconn->net_conf->want_lose ? 1 : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700900 uuid_flags |= test_bit(CRASHED_PRIMARY, &mdev->flags) ? 2 : 0;
901 uuid_flags |= mdev->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
902 p.uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
903
904 put_ldev(mdev);
905
Philipp Reisnerc0129492011-01-19 16:58:16 +0100906 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_UUIDS, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700907}
908
909int drbd_send_uuids(struct drbd_conf *mdev)
910{
911 return _drbd_send_uuids(mdev, 0);
912}
913
914int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev)
915{
916 return _drbd_send_uuids(mdev, 8);
917}
918
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100919void drbd_print_uuids(struct drbd_conf *mdev, const char *text)
920{
921 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
922 u64 *uuid = mdev->ldev->md.uuid;
923 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX\n",
924 text,
925 (unsigned long long)uuid[UI_CURRENT],
926 (unsigned long long)uuid[UI_BITMAP],
927 (unsigned long long)uuid[UI_HISTORY_START],
928 (unsigned long long)uuid[UI_HISTORY_END]);
929 put_ldev(mdev);
930 } else {
931 dev_info(DEV, "%s effective data uuid: %016llX\n",
932 text,
933 (unsigned long long)mdev->ed_uuid);
934 }
935}
936
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100937int drbd_gen_and_send_sync_uuid(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700938{
939 struct p_rs_uuid p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100940 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700941
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100942 D_ASSERT(mdev->state.disk == D_UP_TO_DATE);
943
Philipp Reisner4a23f262011-01-11 17:42:17 +0100944 uuid = mdev->ldev->md.uuid[UI_BITMAP] + UUID_NEW_BM_OFFSET;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100945 drbd_uuid_set(mdev, UI_BITMAP, uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100946 drbd_print_uuids(mdev, "updated sync UUID");
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100947 drbd_md_sync(mdev);
948 p.uuid = cpu_to_be64(uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700949
Philipp Reisnerc0129492011-01-19 16:58:16 +0100950 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_SYNC_UUID, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700951}
952
Philipp Reisnere89b5912010-03-24 17:11:33 +0100953int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700954{
955 struct p_sizes p;
956 sector_t d_size, u_size;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200957 int q_order_type, max_bio_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700958 int ok;
959
960 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
961 D_ASSERT(mdev->ldev->backing_bdev);
962 d_size = drbd_get_max_capacity(mdev->ldev);
963 u_size = mdev->ldev->dc.disk_size;
964 q_order_type = drbd_queue_order_type(mdev);
Philipp Reisner99432fc2011-05-20 16:39:13 +0200965 max_bio_size = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
966 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700967 put_ldev(mdev);
968 } else {
969 d_size = 0;
970 u_size = 0;
971 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200972 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700973 }
974
975 p.d_size = cpu_to_be64(d_size);
976 p.u_size = cpu_to_be64(u_size);
977 p.c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(mdev->this_bdev));
Philipp Reisner99432fc2011-05-20 16:39:13 +0200978 p.max_bio_size = cpu_to_be32(max_bio_size);
Philipp Reisnere89b5912010-03-24 17:11:33 +0100979 p.queue_order_type = cpu_to_be16(q_order_type);
980 p.dds_flags = cpu_to_be16(flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700981
Philipp Reisnerc0129492011-01-19 16:58:16 +0100982 ok = drbd_send_cmd(mdev, USE_DATA_SOCKET, P_SIZES, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700983 return ok;
984}
985
986/**
987 * drbd_send_state() - Sends the drbd state to the peer
988 * @mdev: DRBD device.
989 */
990int drbd_send_state(struct drbd_conf *mdev)
991{
992 struct socket *sock;
993 struct p_state p;
994 int ok = 0;
995
Philipp Reisnere42325a2011-01-19 13:55:45 +0100996 mutex_lock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700997
998 p.state = cpu_to_be32(mdev->state.i); /* Within the send mutex */
Philipp Reisnere42325a2011-01-19 13:55:45 +0100999 sock = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001000
1001 if (likely(sock != NULL)) {
Philipp Reisnerc0129492011-01-19 16:58:16 +01001002 ok = _drbd_send_cmd(mdev, sock, P_STATE, &p.head, sizeof(p), 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001003 }
1004
Philipp Reisnere42325a2011-01-19 13:55:45 +01001005 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001006
Philipp Reisnerb411b362009-09-25 16:07:19 -07001007 return ok;
1008}
1009
Philipp Reisnercf29c9d2011-02-11 15:11:24 +01001010int _conn_send_state_req(struct drbd_tconn *tconn, int vnr, enum drbd_packet cmd,
1011 union drbd_state mask, union drbd_state val)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001012{
1013 struct p_req_state p;
1014
1015 p.mask = cpu_to_be32(mask.i);
1016 p.val = cpu_to_be32(val.i);
1017
Philipp Reisnercf29c9d2011-02-11 15:11:24 +01001018 return conn_send_cmd(tconn, vnr, USE_DATA_SOCKET, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001019}
1020
Andreas Gruenbacherbf885f82010-12-08 00:39:32 +01001021int drbd_send_sr_reply(struct drbd_conf *mdev, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001022{
1023 struct p_req_state_reply p;
1024
1025 p.retcode = cpu_to_be32(retcode);
1026
Philipp Reisnerc0129492011-01-19 16:58:16 +01001027 return drbd_send_cmd(mdev, USE_META_SOCKET, P_STATE_CHG_REPLY, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001028}
1029
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001030int conn_send_sr_reply(struct drbd_tconn *tconn, enum drbd_state_rv retcode)
1031{
1032 struct p_req_state_reply p;
1033 enum drbd_packet cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
1034
1035 p.retcode = cpu_to_be32(retcode);
1036
1037 return conn_send_cmd(tconn, 0, USE_META_SOCKET, cmd, &p.head, sizeof(p));
1038}
1039
Philipp Reisnerb411b362009-09-25 16:07:19 -07001040int fill_bitmap_rle_bits(struct drbd_conf *mdev,
1041 struct p_compressed_bm *p,
1042 struct bm_xfer_ctx *c)
1043{
1044 struct bitstream bs;
1045 unsigned long plain_bits;
1046 unsigned long tmp;
1047 unsigned long rl;
1048 unsigned len;
1049 unsigned toggle;
1050 int bits;
1051
1052 /* may we use this feature? */
Lars Ellenbergf3990022011-03-23 14:31:09 +01001053 if ((mdev->tconn->net_conf->use_rle == 0) ||
Philipp Reisner31890f42011-01-19 14:12:51 +01001054 (mdev->tconn->agreed_pro_version < 90))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001055 return 0;
1056
1057 if (c->bit_offset >= c->bm_bits)
1058 return 0; /* nothing to do. */
1059
1060 /* use at most thus many bytes */
1061 bitstream_init(&bs, p->code, BM_PACKET_VLI_BYTES_MAX, 0);
1062 memset(p->code, 0, BM_PACKET_VLI_BYTES_MAX);
1063 /* plain bits covered in this code string */
1064 plain_bits = 0;
1065
1066 /* p->encoding & 0x80 stores whether the first run length is set.
1067 * bit offset is implicit.
1068 * start with toggle == 2 to be able to tell the first iteration */
1069 toggle = 2;
1070
1071 /* see how much plain bits we can stuff into one packet
1072 * using RLE and VLI. */
1073 do {
1074 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(mdev, c->bit_offset)
1075 : _drbd_bm_find_next(mdev, c->bit_offset);
1076 if (tmp == -1UL)
1077 tmp = c->bm_bits;
1078 rl = tmp - c->bit_offset;
1079
1080 if (toggle == 2) { /* first iteration */
1081 if (rl == 0) {
1082 /* the first checked bit was set,
1083 * store start value, */
1084 DCBP_set_start(p, 1);
1085 /* but skip encoding of zero run length */
1086 toggle = !toggle;
1087 continue;
1088 }
1089 DCBP_set_start(p, 0);
1090 }
1091
1092 /* paranoia: catch zero runlength.
1093 * can only happen if bitmap is modified while we scan it. */
1094 if (rl == 0) {
1095 dev_err(DEV, "unexpected zero runlength while encoding bitmap "
1096 "t:%u bo:%lu\n", toggle, c->bit_offset);
1097 return -1;
1098 }
1099
1100 bits = vli_encode_bits(&bs, rl);
1101 if (bits == -ENOBUFS) /* buffer full */
1102 break;
1103 if (bits <= 0) {
1104 dev_err(DEV, "error while encoding bitmap: %d\n", bits);
1105 return 0;
1106 }
1107
1108 toggle = !toggle;
1109 plain_bits += rl;
1110 c->bit_offset = tmp;
1111 } while (c->bit_offset < c->bm_bits);
1112
1113 len = bs.cur.b - p->code + !!bs.cur.bit;
1114
1115 if (plain_bits < (len << 3)) {
1116 /* incompressible with this method.
1117 * we need to rewind both word and bit position. */
1118 c->bit_offset -= plain_bits;
1119 bm_xfer_ctx_bit_to_word_offset(c);
1120 c->bit_offset = c->word_offset * BITS_PER_LONG;
1121 return 0;
1122 }
1123
1124 /* RLE + VLI was able to compress it just fine.
1125 * update c->word_offset. */
1126 bm_xfer_ctx_bit_to_word_offset(c);
1127
1128 /* store pad_bits */
1129 DCBP_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
1130
1131 return len;
1132}
1133
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001134/**
1135 * send_bitmap_rle_or_plain
1136 *
1137 * Return 0 when done, 1 when another iteration is needed, and a negative error
1138 * code upon failure.
1139 */
1140static int
Philipp Reisnerb411b362009-09-25 16:07:19 -07001141send_bitmap_rle_or_plain(struct drbd_conf *mdev,
Philipp Reisnerc0129492011-01-19 16:58:16 +01001142 struct p_header *h, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001143{
1144 struct p_compressed_bm *p = (void*)h;
1145 unsigned long num_words;
1146 int len;
1147 int ok;
1148
1149 len = fill_bitmap_rle_bits(mdev, p, c);
1150
1151 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001152 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001153
1154 if (len) {
1155 DCBP_set_code(p, RLE_VLI_Bits);
Philipp Reisnere42325a2011-01-19 13:55:45 +01001156 ok = _drbd_send_cmd(mdev, mdev->tconn->data.socket, P_COMPRESSED_BITMAP, h,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001157 sizeof(*p) + len, 0);
1158
1159 c->packets[0]++;
1160 c->bytes[0] += sizeof(*p) + len;
1161
1162 if (c->bit_offset >= c->bm_bits)
1163 len = 0; /* DONE */
1164 } else {
1165 /* was not compressible.
1166 * send a buffer full of plain text bits instead. */
1167 num_words = min_t(size_t, BM_PACKET_WORDS, c->bm_words - c->word_offset);
1168 len = num_words * sizeof(long);
1169 if (len)
1170 drbd_bm_get_lel(mdev, c->word_offset, num_words, (unsigned long*)h->payload);
Philipp Reisnere42325a2011-01-19 13:55:45 +01001171 ok = _drbd_send_cmd(mdev, mdev->tconn->data.socket, P_BITMAP,
Philipp Reisner0b70a132010-08-20 13:36:10 +02001172 h, sizeof(struct p_header80) + len, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001173 c->word_offset += num_words;
1174 c->bit_offset = c->word_offset * BITS_PER_LONG;
1175
1176 c->packets[1]++;
Philipp Reisner0b70a132010-08-20 13:36:10 +02001177 c->bytes[1] += sizeof(struct p_header80) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001178
1179 if (c->bit_offset > c->bm_bits)
1180 c->bit_offset = c->bm_bits;
1181 }
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001182 if (ok) {
1183 if (len == 0) {
1184 INFO_bm_xfer_stats(mdev, "send", c);
1185 return 0;
1186 } else
1187 return 1;
1188 }
1189 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001190}
1191
1192/* See the comment at receive_bitmap() */
1193int _drbd_send_bitmap(struct drbd_conf *mdev)
1194{
1195 struct bm_xfer_ctx c;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001196 struct p_header *p;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001197 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001198
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001199 if (!expect(mdev->bitmap))
1200 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001201
1202 /* maybe we should use some per thread scratch page,
1203 * and allocate that during initial device creation? */
Philipp Reisnerc0129492011-01-19 16:58:16 +01001204 p = (struct p_header *) __get_free_page(GFP_NOIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001205 if (!p) {
1206 dev_err(DEV, "failed to allocate one page buffer in %s\n", __func__);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001207 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001208 }
1209
1210 if (get_ldev(mdev)) {
1211 if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC)) {
1212 dev_info(DEV, "Writing the whole bitmap, MDF_FullSync was set.\n");
1213 drbd_bm_set_all(mdev);
1214 if (drbd_bm_write(mdev)) {
1215 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1216 * but otherwise process as per normal - need to tell other
1217 * side that a full resync is required! */
1218 dev_err(DEV, "Failed to write bitmap to disk!\n");
1219 } else {
1220 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
1221 drbd_md_sync(mdev);
1222 }
1223 }
1224 put_ldev(mdev);
1225 }
1226
1227 c = (struct bm_xfer_ctx) {
1228 .bm_bits = drbd_bm_bits(mdev),
1229 .bm_words = drbd_bm_words(mdev),
1230 };
1231
1232 do {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001233 err = send_bitmap_rle_or_plain(mdev, p, &c);
1234 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001235
1236 free_page((unsigned long) p);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001237 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001238}
1239
1240int drbd_send_bitmap(struct drbd_conf *mdev)
1241{
1242 int err;
1243
Andreas Gruenbacher11b0be22011-03-15 16:15:10 +01001244 if (drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001245 return -1;
1246 err = !_drbd_send_bitmap(mdev);
Philipp Reisner61120872011-02-08 09:50:54 +01001247 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001248 return err;
1249}
1250
1251int drbd_send_b_ack(struct drbd_conf *mdev, u32 barrier_nr, u32 set_size)
1252{
1253 int ok;
1254 struct p_barrier_ack p;
1255
1256 p.barrier = barrier_nr;
1257 p.set_size = cpu_to_be32(set_size);
1258
1259 if (mdev->state.conn < C_CONNECTED)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001260 return false;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001261 ok = drbd_send_cmd(mdev, USE_META_SOCKET, P_BARRIER_ACK, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001262 return ok;
1263}
1264
1265/**
1266 * _drbd_send_ack() - Sends an ack packet
1267 * @mdev: DRBD device.
1268 * @cmd: Packet command code.
1269 * @sector: sector, needs to be in big endian byte order
1270 * @blksize: size in byte, needs to be in big endian byte order
1271 * @block_id: Id, big endian byte order
1272 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001273static int _drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
1274 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001275{
1276 int ok;
1277 struct p_block_ack p;
1278
1279 p.sector = sector;
1280 p.block_id = block_id;
1281 p.blksize = blksize;
Andreas Gruenbacher8ccf2182011-02-24 11:35:43 +01001282 p.seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001283
Philipp Reisnere42325a2011-01-19 13:55:45 +01001284 if (!mdev->tconn->meta.socket || mdev->state.conn < C_CONNECTED)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001285 return false;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001286 ok = drbd_send_cmd(mdev, USE_META_SOCKET, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001287 return ok;
1288}
1289
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001290/* dp->sector and dp->block_id already/still in network byte order,
1291 * data_size is payload size according to dp->head,
1292 * and may need to be corrected for digest size. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001293int drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packet cmd,
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001294 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001295{
Philipp Reisnera0638452011-01-19 14:31:32 +01001296 data_size -= (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_r_tfm) ?
1297 crypto_hash_digestsize(mdev->tconn->integrity_r_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001298 return _drbd_send_ack(mdev, cmd, dp->sector, cpu_to_be32(data_size),
1299 dp->block_id);
1300}
1301
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001302int drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001303 struct p_block_req *rp)
1304{
1305 return _drbd_send_ack(mdev, cmd, rp->sector, rp->blksize, rp->block_id);
1306}
1307
1308/**
1309 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001310 * @mdev: DRBD device
1311 * @cmd: packet command code
1312 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001313 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001314int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001315 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001316{
1317 return _drbd_send_ack(mdev, cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001318 cpu_to_be64(peer_req->i.sector),
1319 cpu_to_be32(peer_req->i.size),
1320 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001321}
1322
1323/* This function misuses the block_id field to signal if the blocks
1324 * are is sync or not. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001325int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001326 sector_t sector, int blksize, u64 block_id)
1327{
1328 return _drbd_send_ack(mdev, cmd,
1329 cpu_to_be64(sector),
1330 cpu_to_be32(blksize),
1331 cpu_to_be64(block_id));
1332}
1333
1334int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1335 sector_t sector, int size, u64 block_id)
1336{
1337 int ok;
1338 struct p_block_req p;
1339
1340 p.sector = cpu_to_be64(sector);
1341 p.block_id = block_id;
1342 p.blksize = cpu_to_be32(size);
1343
Philipp Reisnerc0129492011-01-19 16:58:16 +01001344 ok = drbd_send_cmd(mdev, USE_DATA_SOCKET, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001345 return ok;
1346}
1347
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001348int drbd_send_drequest_csum(struct drbd_conf *mdev, sector_t sector, int size,
1349 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001350{
1351 int ok;
1352 struct p_block_req p;
1353
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001354 prepare_header(mdev, &p.head, cmd, sizeof(p) - sizeof(struct p_header) + digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001355 p.sector = cpu_to_be64(sector);
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +01001356 p.block_id = ID_SYNCER /* unused */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001357 p.blksize = cpu_to_be32(size);
1358
Philipp Reisnere42325a2011-01-19 13:55:45 +01001359 mutex_lock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001360
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001361 ok = (sizeof(p) == drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), 0));
1362 ok = ok && (digest_size == drbd_send(mdev->tconn, mdev->tconn->data.socket, digest, digest_size, 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001363
Philipp Reisnere42325a2011-01-19 13:55:45 +01001364 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001365
1366 return ok;
1367}
1368
1369int drbd_send_ov_request(struct drbd_conf *mdev, sector_t sector, int size)
1370{
1371 int ok;
1372 struct p_block_req p;
1373
1374 p.sector = cpu_to_be64(sector);
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +01001375 p.block_id = ID_SYNCER /* unused */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001376 p.blksize = cpu_to_be32(size);
1377
Philipp Reisnerc0129492011-01-19 16:58:16 +01001378 ok = drbd_send_cmd(mdev, USE_DATA_SOCKET, P_OV_REQUEST, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001379 return ok;
1380}
1381
1382/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001383 * returns false if we should retry,
1384 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001385 */
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001386static int we_should_drop_the_connection(struct drbd_tconn *tconn, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001387{
1388 int drop_it;
1389 /* long elapsed = (long)(jiffies - mdev->last_received); */
1390
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001391 drop_it = tconn->meta.socket == sock
1392 || !tconn->asender.task
1393 || get_t_state(&tconn->asender) != RUNNING
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001394 || tconn->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001395
1396 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001397 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001398
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001399 drop_it = !--tconn->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001400 if (!drop_it) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001401 conn_err(tconn, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1402 current->comm, current->pid, tconn->ko_count);
1403 request_ping(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001404 }
1405
1406 return drop_it; /* && (mdev->state == R_PRIMARY) */;
1407}
1408
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001409static void drbd_update_congested(struct drbd_tconn *tconn)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001410{
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001411 struct sock *sk = tconn->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001412 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001413 set_bit(NET_CONGESTED, &tconn->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001414}
1415
Philipp Reisnerb411b362009-09-25 16:07:19 -07001416/* The idea of sendpage seems to be to put some kind of reference
1417 * to the page into the skb, and to hand it over to the NIC. In
1418 * this process get_page() gets called.
1419 *
1420 * As soon as the page was really sent over the network put_page()
1421 * gets called by some part of the network layer. [ NIC driver? ]
1422 *
1423 * [ get_page() / put_page() increment/decrement the count. If count
1424 * reaches 0 the page will be freed. ]
1425 *
1426 * This works nicely with pages from FSs.
1427 * But this means that in protocol A we might signal IO completion too early!
1428 *
1429 * In order not to corrupt data during a resync we must make sure
1430 * that we do not reuse our own buffer pages (EEs) to early, therefore
1431 * we have the net_ee list.
1432 *
1433 * XFS seems to have problems, still, it submits pages with page_count == 0!
1434 * As a workaround, we disable sendpage on pages
1435 * with page_count == 0 or PageSlab.
1436 */
1437static int _drbd_no_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001438 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001439{
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001440 int sent = drbd_send(mdev->tconn, mdev->tconn->data.socket, kmap(page) + offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001441 kunmap(page);
1442 if (sent == size)
1443 mdev->send_cnt += size>>9;
1444 return sent == size;
1445}
1446
1447static int _drbd_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001448 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001449{
1450 mm_segment_t oldfs = get_fs();
1451 int sent, ok;
1452 int len = size;
1453
1454 /* e.g. XFS meta- & log-data is in slab pages, which have a
1455 * page_count of 0 and/or have PageSlab() set.
1456 * we cannot use send_page for those, as that does get_page();
1457 * put_page(); and would cause either a VM_BUG directly, or
1458 * __page_cache_release a page that would actually still be referenced
1459 * by someone, leading to some obscure delayed Oops somewhere else. */
1460 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001461 return _drbd_no_send_page(mdev, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001462
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001463 msg_flags |= MSG_NOSIGNAL;
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001464 drbd_update_congested(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001465 set_fs(KERNEL_DS);
1466 do {
Philipp Reisnere42325a2011-01-19 13:55:45 +01001467 sent = mdev->tconn->data.socket->ops->sendpage(mdev->tconn->data.socket, page,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001468 offset, len,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001469 msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001470 if (sent == -EAGAIN) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001471 if (we_should_drop_the_connection(mdev->tconn,
Philipp Reisnere42325a2011-01-19 13:55:45 +01001472 mdev->tconn->data.socket))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001473 break;
1474 else
1475 continue;
1476 }
1477 if (sent <= 0) {
1478 dev_warn(DEV, "%s: size=%d len=%d sent=%d\n",
1479 __func__, (int)size, len, sent);
1480 break;
1481 }
1482 len -= sent;
1483 offset += sent;
1484 } while (len > 0 /* THINK && mdev->cstate >= C_CONNECTED*/);
1485 set_fs(oldfs);
Philipp Reisner01a311a2011-02-07 14:30:33 +01001486 clear_bit(NET_CONGESTED, &mdev->tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001487
1488 ok = (len == 0);
1489 if (likely(ok))
1490 mdev->send_cnt += size>>9;
1491 return ok;
1492}
1493
1494static int _drbd_send_bio(struct drbd_conf *mdev, struct bio *bio)
1495{
1496 struct bio_vec *bvec;
1497 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001498 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001499 __bio_for_each_segment(bvec, bio, i, 0) {
1500 if (!_drbd_no_send_page(mdev, bvec->bv_page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001501 bvec->bv_offset, bvec->bv_len,
1502 i == bio->bi_vcnt -1 ? 0 : MSG_MORE))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001503 return 0;
1504 }
1505 return 1;
1506}
1507
1508static int _drbd_send_zc_bio(struct drbd_conf *mdev, struct bio *bio)
1509{
1510 struct bio_vec *bvec;
1511 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001512 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001513 __bio_for_each_segment(bvec, bio, i, 0) {
1514 if (!_drbd_send_page(mdev, bvec->bv_page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001515 bvec->bv_offset, bvec->bv_len,
1516 i == bio->bi_vcnt -1 ? 0 : MSG_MORE))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001517 return 0;
1518 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001519 return 1;
1520}
1521
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001522static int _drbd_send_zc_ee(struct drbd_conf *mdev,
1523 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001524{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001525 struct page *page = peer_req->pages;
1526 unsigned len = peer_req->i.size;
1527
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001528 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001529 page_chain_for_each(page) {
1530 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001531 if (!_drbd_send_page(mdev, page, 0, l,
1532 page_chain_next(page) ? MSG_MORE : 0))
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001533 return 0;
1534 len -= l;
1535 }
1536 return 1;
1537}
1538
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001539static u32 bio_flags_to_wire(struct drbd_conf *mdev, unsigned long bi_rw)
1540{
Philipp Reisner31890f42011-01-19 14:12:51 +01001541 if (mdev->tconn->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001542 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001543 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1544 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1545 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1546 else
Jens Axboe721a9602011-03-09 11:56:30 +01001547 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001548}
1549
Philipp Reisnerb411b362009-09-25 16:07:19 -07001550/* Used to send write requests
1551 * R_PRIMARY -> Peer (P_DATA)
1552 */
1553int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
1554{
1555 int ok = 1;
1556 struct p_data p;
1557 unsigned int dp_flags = 0;
1558 void *dgb;
1559 int dgs;
1560
Andreas Gruenbacher11b0be22011-03-15 16:15:10 +01001561 if (drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001562 return 0;
1563
Philipp Reisnera0638452011-01-19 14:31:32 +01001564 dgs = (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_w_tfm) ?
1565 crypto_hash_digestsize(mdev->tconn->integrity_w_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001566
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001567 prepare_header(mdev, &p.head, P_DATA, sizeof(p) - sizeof(struct p_header) + dgs + req->i.size);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001568 p.sector = cpu_to_be64(req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001569 p.block_id = (unsigned long)req;
Andreas Gruenbacher8ccf2182011-02-24 11:35:43 +01001570 p.seq_num = cpu_to_be32(req->seq_num = atomic_inc_return(&mdev->packet_seq));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001571
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001572 dp_flags = bio_flags_to_wire(mdev, req->master_bio->bi_rw);
1573
Philipp Reisnerb411b362009-09-25 16:07:19 -07001574 if (mdev->state.conn >= C_SYNC_SOURCE &&
1575 mdev->state.conn <= C_PAUSED_SYNC_T)
1576 dp_flags |= DP_MAY_SET_IN_SYNC;
1577
1578 p.dp_flags = cpu_to_be32(dp_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001579 set_bit(UNPLUG_REMOTE, &mdev->flags);
1580 ok = (sizeof(p) ==
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001581 drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), dgs ? MSG_MORE : 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001582 if (ok && dgs) {
Philipp Reisnera0638452011-01-19 14:31:32 +01001583 dgb = mdev->tconn->int_dig_out;
1584 drbd_csum_bio(mdev, mdev->tconn->integrity_w_tfm, req->master_bio, dgb);
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001585 ok = dgs == drbd_send(mdev->tconn, mdev->tconn->data.socket, dgb, dgs, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001586 }
1587 if (ok) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001588 /* For protocol A, we have to memcpy the payload into
1589 * socket buffers, as we may complete right away
1590 * as soon as we handed it over to tcp, at which point the data
1591 * pages may become invalid.
1592 *
1593 * For data-integrity enabled, we copy it as well, so we can be
1594 * sure that even if the bio pages may still be modified, it
1595 * won't change the data on the wire, thus if the digest checks
1596 * out ok after sending on this side, but does not fit on the
1597 * receiving side, we sure have detected corruption elsewhere.
1598 */
Philipp Reisner89e58e72011-01-19 13:12:45 +01001599 if (mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A || dgs)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001600 ok = _drbd_send_bio(mdev, req->master_bio);
1601 else
1602 ok = _drbd_send_zc_bio(mdev, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001603
1604 /* double check digest, sometimes buffers have been modified in flight. */
1605 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001606 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001607 * currently supported in kernel crypto. */
1608 unsigned char digest[64];
Philipp Reisnera0638452011-01-19 14:31:32 +01001609 drbd_csum_bio(mdev, mdev->tconn->integrity_w_tfm, req->master_bio, digest);
1610 if (memcmp(mdev->tconn->int_dig_out, digest, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001611 dev_warn(DEV,
1612 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001613 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001614 }
1615 } /* else if (dgs > 64) {
1616 ... Be noisy about digest too large ...
1617 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001618 }
1619
Philipp Reisner61120872011-02-08 09:50:54 +01001620 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001621
Philipp Reisnerb411b362009-09-25 16:07:19 -07001622 return ok;
1623}
1624
1625/* answer packet, used to send data back for read requests:
1626 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1627 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1628 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001629int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001630 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001631{
1632 int ok;
1633 struct p_data p;
1634 void *dgb;
1635 int dgs;
1636
Philipp Reisnera0638452011-01-19 14:31:32 +01001637 dgs = (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_w_tfm) ?
1638 crypto_hash_digestsize(mdev->tconn->integrity_w_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001639
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001640 prepare_header(mdev, &p.head, cmd, sizeof(p) -
1641 sizeof(struct p_header80) +
1642 dgs + peer_req->i.size);
1643 p.sector = cpu_to_be64(peer_req->i.sector);
1644 p.block_id = peer_req->block_id;
Andreas Gruenbachercc378272011-01-26 18:01:50 +01001645 p.seq_num = 0; /* unused */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001646
1647 /* Only called by our kernel thread.
1648 * This one may be interrupted by DRBD_SIG and/or DRBD_SIGKILL
1649 * in response to admin command or module unload.
1650 */
Andreas Gruenbacher11b0be22011-03-15 16:15:10 +01001651 if (drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001652 return 0;
1653
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001654 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 -07001655 if (ok && dgs) {
Philipp Reisnera0638452011-01-19 14:31:32 +01001656 dgb = mdev->tconn->int_dig_out;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001657 drbd_csum_ee(mdev, mdev->tconn->integrity_w_tfm, peer_req, dgb);
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001658 ok = dgs == drbd_send(mdev->tconn, mdev->tconn->data.socket, dgb, dgs, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001659 }
1660 if (ok)
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001661 ok = _drbd_send_zc_ee(mdev, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001662
Philipp Reisner61120872011-02-08 09:50:54 +01001663 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001664
Philipp Reisnerb411b362009-09-25 16:07:19 -07001665 return ok;
1666}
1667
Philipp Reisner73a01a12010-10-27 14:33:00 +02001668int drbd_send_oos(struct drbd_conf *mdev, struct drbd_request *req)
1669{
1670 struct p_block_desc p;
1671
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001672 p.sector = cpu_to_be64(req->i.sector);
1673 p.blksize = cpu_to_be32(req->i.size);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001674
1675 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_OUT_OF_SYNC, &p.head, sizeof(p));
1676}
1677
Philipp Reisnerb411b362009-09-25 16:07:19 -07001678/*
1679 drbd_send distinguishes two cases:
1680
1681 Packets sent via the data socket "sock"
1682 and packets sent via the meta data socket "msock"
1683
1684 sock msock
1685 -----------------+-------------------------+------------------------------
1686 timeout conf.timeout / 2 conf.timeout / 2
1687 timeout action send a ping via msock Abort communication
1688 and close all sockets
1689*/
1690
1691/*
1692 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1693 */
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001694int drbd_send(struct drbd_tconn *tconn, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001695 void *buf, size_t size, unsigned msg_flags)
1696{
1697 struct kvec iov;
1698 struct msghdr msg;
1699 int rv, sent = 0;
1700
1701 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001702 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001703
1704 /* THINK if (signal_pending) return ... ? */
1705
1706 iov.iov_base = buf;
1707 iov.iov_len = size;
1708
1709 msg.msg_name = NULL;
1710 msg.msg_namelen = 0;
1711 msg.msg_control = NULL;
1712 msg.msg_controllen = 0;
1713 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1714
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001715 if (sock == tconn->data.socket) {
1716 tconn->ko_count = tconn->net_conf->ko_count;
1717 drbd_update_congested(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001718 }
1719 do {
1720 /* STRANGE
1721 * tcp_sendmsg does _not_ use its size parameter at all ?
1722 *
1723 * -EAGAIN on timeout, -EINTR on signal.
1724 */
1725/* THINK
1726 * do we need to block DRBD_SIG if sock == &meta.socket ??
1727 * otherwise wake_asender() might interrupt some send_*Ack !
1728 */
1729 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1730 if (rv == -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001731 if (we_should_drop_the_connection(tconn, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001732 break;
1733 else
1734 continue;
1735 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001736 if (rv == -EINTR) {
1737 flush_signals(current);
1738 rv = 0;
1739 }
1740 if (rv < 0)
1741 break;
1742 sent += rv;
1743 iov.iov_base += rv;
1744 iov.iov_len -= rv;
1745 } while (sent < size);
1746
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001747 if (sock == tconn->data.socket)
1748 clear_bit(NET_CONGESTED, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001749
1750 if (rv <= 0) {
1751 if (rv != -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001752 conn_err(tconn, "%s_sendmsg returned %d\n",
1753 sock == tconn->meta.socket ? "msock" : "sock",
1754 rv);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001755 conn_request_state(tconn, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001756 } else
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001757 conn_request_state(tconn, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001758 }
1759
1760 return sent;
1761}
1762
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001763/**
1764 * drbd_send_all - Send an entire buffer
1765 *
1766 * Returns 0 upon success and a negative error value otherwise.
1767 */
1768int drbd_send_all(struct drbd_tconn *tconn, struct socket *sock, void *buffer,
1769 size_t size, unsigned msg_flags)
1770{
1771 int err;
1772
1773 err = drbd_send(tconn, sock, buffer, size, msg_flags);
1774 if (err < 0)
1775 return err;
1776 if (err != size)
1777 return -EIO;
1778 return 0;
1779}
1780
Philipp Reisnerb411b362009-09-25 16:07:19 -07001781static int drbd_open(struct block_device *bdev, fmode_t mode)
1782{
1783 struct drbd_conf *mdev = bdev->bd_disk->private_data;
1784 unsigned long flags;
1785 int rv = 0;
1786
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001787 mutex_lock(&drbd_main_mutex);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001788 spin_lock_irqsave(&mdev->tconn->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001789 /* to have a stable mdev->state.role
1790 * and no race with updating open_cnt */
1791
1792 if (mdev->state.role != R_PRIMARY) {
1793 if (mode & FMODE_WRITE)
1794 rv = -EROFS;
1795 else if (!allow_oos)
1796 rv = -EMEDIUMTYPE;
1797 }
1798
1799 if (!rv)
1800 mdev->open_cnt++;
Philipp Reisner87eeee42011-01-19 14:16:30 +01001801 spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001802 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001803
1804 return rv;
1805}
1806
1807static int drbd_release(struct gendisk *gd, fmode_t mode)
1808{
1809 struct drbd_conf *mdev = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001810 mutex_lock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001811 mdev->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001812 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001813 return 0;
1814}
1815
Philipp Reisnerb411b362009-09-25 16:07:19 -07001816static void drbd_set_defaults(struct drbd_conf *mdev)
1817{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001818 /* Beware! The actual layout differs
1819 * between big endian and little endian */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001820 mdev->state = (union drbd_state) {
1821 { .role = R_SECONDARY,
1822 .peer = R_UNKNOWN,
1823 .conn = C_STANDALONE,
1824 .disk = D_DISKLESS,
1825 .pdsk = D_UNKNOWN,
Philipp Reisnerfb22c402010-09-08 23:20:21 +02001826 .susp = 0,
1827 .susp_nod = 0,
1828 .susp_fen = 0
Philipp Reisnerb411b362009-09-25 16:07:19 -07001829 } };
1830}
1831
1832void drbd_init_set_defaults(struct drbd_conf *mdev)
1833{
1834 /* the memset(,0,) did most of this.
1835 * note: only assignments, no allocation in here */
1836
1837 drbd_set_defaults(mdev);
1838
Philipp Reisnerb411b362009-09-25 16:07:19 -07001839 atomic_set(&mdev->ap_bio_cnt, 0);
1840 atomic_set(&mdev->ap_pending_cnt, 0);
1841 atomic_set(&mdev->rs_pending_cnt, 0);
1842 atomic_set(&mdev->unacked_cnt, 0);
1843 atomic_set(&mdev->local_cnt, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001844 atomic_set(&mdev->pp_in_use, 0);
Lars Ellenberg435f0742010-09-06 12:30:25 +02001845 atomic_set(&mdev->pp_in_use_by_net, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02001846 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001847 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner759fbdf2010-10-26 16:02:27 +02001848 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001849
1850 mutex_init(&mdev->md_io_mutex);
Philipp Reisner8410da82011-02-11 20:11:10 +01001851 mutex_init(&mdev->own_state_mutex);
1852 mdev->state_mutex = &mdev->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001853
Philipp Reisnerb411b362009-09-25 16:07:19 -07001854 spin_lock_init(&mdev->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001855 spin_lock_init(&mdev->peer_seq_lock);
1856 spin_lock_init(&mdev->epoch_lock);
1857
1858 INIT_LIST_HEAD(&mdev->active_ee);
1859 INIT_LIST_HEAD(&mdev->sync_ee);
1860 INIT_LIST_HEAD(&mdev->done_ee);
1861 INIT_LIST_HEAD(&mdev->read_ee);
1862 INIT_LIST_HEAD(&mdev->net_ee);
1863 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001864 INIT_LIST_HEAD(&mdev->resync_work.list);
1865 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001866 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001867 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02001868 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001869 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02001870
Philipp Reisner794abb72010-12-27 11:51:23 +01001871 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001872 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001873 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001874 mdev->md_sync_work.cb = w_md_sync;
1875 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001876 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01001877
1878 mdev->resync_work.mdev = mdev;
1879 mdev->unplug_work.mdev = mdev;
1880 mdev->go_diskless.mdev = mdev;
1881 mdev->md_sync_work.mdev = mdev;
1882 mdev->bm_io_work.w.mdev = mdev;
1883 mdev->start_resync_work.mdev = mdev;
1884
Philipp Reisnerb411b362009-09-25 16:07:19 -07001885 init_timer(&mdev->resync_timer);
1886 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01001887 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001888 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001889 mdev->resync_timer.function = resync_timer_fn;
1890 mdev->resync_timer.data = (unsigned long) mdev;
1891 mdev->md_sync_timer.function = md_sync_timer_fn;
1892 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001893 mdev->start_resync_timer.function = start_resync_timer_fn;
1894 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001895 mdev->request_timer.function = request_timer_fn;
1896 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001897
1898 init_waitqueue_head(&mdev->misc_wait);
1899 init_waitqueue_head(&mdev->state_wait);
1900 init_waitqueue_head(&mdev->ee_wait);
1901 init_waitqueue_head(&mdev->al_wait);
1902 init_waitqueue_head(&mdev->seq_wait);
1903
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001904 /* mdev->tconn->agreed_pro_version gets initialized in drbd_connect() */
Philipp Reisner2451fc32010-08-24 13:43:11 +02001905 mdev->write_ordering = WO_bdev_flush;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001906 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001907 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
1908 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001909}
1910
1911void drbd_mdev_cleanup(struct drbd_conf *mdev)
1912{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001913 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001914 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001915 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001916 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001917
1918 /* no need to lock it, I'm the only thread alive */
1919 if (atomic_read(&mdev->current_epoch->epoch_size) != 0)
1920 dev_err(DEV, "epoch_size:%d\n", atomic_read(&mdev->current_epoch->epoch_size));
1921 mdev->al_writ_cnt =
1922 mdev->bm_writ_cnt =
1923 mdev->read_cnt =
1924 mdev->recv_cnt =
1925 mdev->send_cnt =
1926 mdev->writ_cnt =
1927 mdev->p_size =
1928 mdev->rs_start =
1929 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001930 mdev->rs_failed = 0;
1931 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001932 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001933 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
1934 mdev->rs_mark_left[i] = 0;
1935 mdev->rs_mark_time[i] = 0;
1936 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01001937 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001938
1939 drbd_set_my_capacity(mdev, 0);
1940 if (mdev->bitmap) {
1941 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01001942 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001943 drbd_bm_cleanup(mdev);
1944 }
1945
1946 drbd_free_resources(mdev);
Philipp Reisner07782862010-08-31 12:00:50 +02001947 clear_bit(AL_SUSPENDED, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001948
1949 /*
1950 * currently we drbd_init_ee only on module load, so
1951 * we may do drbd_release_ee only on module unload!
1952 */
1953 D_ASSERT(list_empty(&mdev->active_ee));
1954 D_ASSERT(list_empty(&mdev->sync_ee));
1955 D_ASSERT(list_empty(&mdev->done_ee));
1956 D_ASSERT(list_empty(&mdev->read_ee));
1957 D_ASSERT(list_empty(&mdev->net_ee));
1958 D_ASSERT(list_empty(&mdev->resync_reads));
Philipp Reisnere42325a2011-01-19 13:55:45 +01001959 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
1960 D_ASSERT(list_empty(&mdev->tconn->meta.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001961 D_ASSERT(list_empty(&mdev->resync_work.list));
1962 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001963 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01001964
1965 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001966}
1967
1968
1969static void drbd_destroy_mempools(void)
1970{
1971 struct page *page;
1972
1973 while (drbd_pp_pool) {
1974 page = drbd_pp_pool;
1975 drbd_pp_pool = (struct page *)page_private(page);
1976 __free_page(page);
1977 drbd_pp_vacant--;
1978 }
1979
1980 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
1981
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01001982 if (drbd_md_io_bio_set)
1983 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg35abf592011-02-23 12:39:46 +01001984 if (drbd_md_io_page_pool)
1985 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001986 if (drbd_ee_mempool)
1987 mempool_destroy(drbd_ee_mempool);
1988 if (drbd_request_mempool)
1989 mempool_destroy(drbd_request_mempool);
1990 if (drbd_ee_cache)
1991 kmem_cache_destroy(drbd_ee_cache);
1992 if (drbd_request_cache)
1993 kmem_cache_destroy(drbd_request_cache);
1994 if (drbd_bm_ext_cache)
1995 kmem_cache_destroy(drbd_bm_ext_cache);
1996 if (drbd_al_ext_cache)
1997 kmem_cache_destroy(drbd_al_ext_cache);
1998
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01001999 drbd_md_io_bio_set = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002000 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002001 drbd_ee_mempool = NULL;
2002 drbd_request_mempool = NULL;
2003 drbd_ee_cache = NULL;
2004 drbd_request_cache = NULL;
2005 drbd_bm_ext_cache = NULL;
2006 drbd_al_ext_cache = NULL;
2007
2008 return;
2009}
2010
2011static int drbd_create_mempools(void)
2012{
2013 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01002014 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002015 int i;
2016
2017 /* prepare our caches and mempools */
2018 drbd_request_mempool = NULL;
2019 drbd_ee_cache = NULL;
2020 drbd_request_cache = NULL;
2021 drbd_bm_ext_cache = NULL;
2022 drbd_al_ext_cache = NULL;
2023 drbd_pp_pool = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002024 drbd_md_io_page_pool = NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002025 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002026
2027 /* caches */
2028 drbd_request_cache = kmem_cache_create(
2029 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2030 if (drbd_request_cache == NULL)
2031 goto Enomem;
2032
2033 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002034 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002035 if (drbd_ee_cache == NULL)
2036 goto Enomem;
2037
2038 drbd_bm_ext_cache = kmem_cache_create(
2039 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2040 if (drbd_bm_ext_cache == NULL)
2041 goto Enomem;
2042
2043 drbd_al_ext_cache = kmem_cache_create(
2044 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2045 if (drbd_al_ext_cache == NULL)
2046 goto Enomem;
2047
2048 /* mempools */
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002049 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2050 if (drbd_md_io_bio_set == NULL)
2051 goto Enomem;
2052
Lars Ellenberg35abf592011-02-23 12:39:46 +01002053 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2054 if (drbd_md_io_page_pool == NULL)
2055 goto Enomem;
2056
Philipp Reisnerb411b362009-09-25 16:07:19 -07002057 drbd_request_mempool = mempool_create(number,
2058 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2059 if (drbd_request_mempool == NULL)
2060 goto Enomem;
2061
2062 drbd_ee_mempool = mempool_create(number,
2063 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002064 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002065 goto Enomem;
2066
2067 /* drbd's page pool */
2068 spin_lock_init(&drbd_pp_lock);
2069
2070 for (i = 0; i < number; i++) {
2071 page = alloc_page(GFP_HIGHUSER);
2072 if (!page)
2073 goto Enomem;
2074 set_page_private(page, (unsigned long)drbd_pp_pool);
2075 drbd_pp_pool = page;
2076 }
2077 drbd_pp_vacant = number;
2078
2079 return 0;
2080
2081Enomem:
2082 drbd_destroy_mempools(); /* in case we allocated some */
2083 return -ENOMEM;
2084}
2085
2086static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2087 void *unused)
2088{
2089 /* just so we have it. you never know what interesting things we
2090 * might want to do here some day...
2091 */
2092
2093 return NOTIFY_DONE;
2094}
2095
2096static struct notifier_block drbd_notifier = {
2097 .notifier_call = drbd_notify_sys,
2098};
2099
2100static void drbd_release_ee_lists(struct drbd_conf *mdev)
2101{
2102 int rr;
2103
2104 rr = drbd_release_ee(mdev, &mdev->active_ee);
2105 if (rr)
2106 dev_err(DEV, "%d EEs in active list found!\n", rr);
2107
2108 rr = drbd_release_ee(mdev, &mdev->sync_ee);
2109 if (rr)
2110 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2111
2112 rr = drbd_release_ee(mdev, &mdev->read_ee);
2113 if (rr)
2114 dev_err(DEV, "%d EEs in read list found!\n", rr);
2115
2116 rr = drbd_release_ee(mdev, &mdev->done_ee);
2117 if (rr)
2118 dev_err(DEV, "%d EEs in done list found!\n", rr);
2119
2120 rr = drbd_release_ee(mdev, &mdev->net_ee);
2121 if (rr)
2122 dev_err(DEV, "%d EEs in net list found!\n", rr);
2123}
2124
Philipp Reisner774b3052011-02-22 02:07:03 -05002125/* caution. no locking. */
2126void drbd_delete_device(unsigned int minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002127{
2128 struct drbd_conf *mdev = minor_to_mdev(minor);
2129
2130 if (!mdev)
2131 return;
2132
Lars Ellenberg569083c2011-03-07 09:49:02 +01002133 idr_remove(&mdev->tconn->volumes, mdev->vnr);
2134 idr_remove(&minors, minor);
2135 synchronize_rcu();
Philipp Reisner774b3052011-02-22 02:07:03 -05002136
Philipp Reisnerb411b362009-09-25 16:07:19 -07002137 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002138 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnere42325a2011-01-19 13:55:45 +01002139 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002140 /* end paranoia asserts */
2141
2142 del_gendisk(mdev->vdisk);
2143
2144 /* cleanup stuff that may have been allocated during
2145 * device (re-)configuration or state changes */
2146
2147 if (mdev->this_bdev)
2148 bdput(mdev->this_bdev);
2149
2150 drbd_free_resources(mdev);
2151
2152 drbd_release_ee_lists(mdev);
2153
Philipp Reisnerb411b362009-09-25 16:07:19 -07002154 lc_destroy(mdev->act_log);
2155 lc_destroy(mdev->resync);
2156
2157 kfree(mdev->p_uuid);
2158 /* mdev->p_uuid = NULL; */
2159
Philipp Reisnerb411b362009-09-25 16:07:19 -07002160 /* cleanup the rest that has been
2161 * allocated from drbd_new_device
2162 * and actually free the mdev itself */
2163 drbd_free_mdev(mdev);
2164}
2165
2166static void drbd_cleanup(void)
2167{
2168 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002169 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002170
2171 unregister_reboot_notifier(&drbd_notifier);
2172
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002173 /* first remove proc,
2174 * drbdsetup uses it's presence to detect
2175 * whether DRBD is loaded.
2176 * If we would get stuck in proc removal,
2177 * but have netlink already deregistered,
2178 * some drbdsetup commands may wait forever
2179 * for an answer.
2180 */
2181 if (drbd_proc)
2182 remove_proc_entry("drbd", NULL);
2183
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002184 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002185
Philipp Reisner81a5d602011-02-22 19:53:16 -05002186 idr_for_each_entry(&minors, mdev, i)
2187 drbd_delete_device(i);
2188 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002189 unregister_blkdev(DRBD_MAJOR, "drbd");
2190
Philipp Reisner81a5d602011-02-22 19:53:16 -05002191 idr_destroy(&minors);
2192
Philipp Reisnerb411b362009-09-25 16:07:19 -07002193 printk(KERN_INFO "drbd: module cleanup done.\n");
2194}
2195
2196/**
2197 * drbd_congested() - Callback for pdflush
2198 * @congested_data: User data
2199 * @bdi_bits: Bits pdflush is currently interested in
2200 *
2201 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2202 */
2203static int drbd_congested(void *congested_data, int bdi_bits)
2204{
2205 struct drbd_conf *mdev = congested_data;
2206 struct request_queue *q;
2207 char reason = '-';
2208 int r = 0;
2209
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002210 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002211 /* DRBD has frozen IO */
2212 r = bdi_bits;
2213 reason = 'd';
2214 goto out;
2215 }
2216
2217 if (get_ldev(mdev)) {
2218 q = bdev_get_queue(mdev->ldev->backing_bdev);
2219 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2220 put_ldev(mdev);
2221 if (r)
2222 reason = 'b';
2223 }
2224
Philipp Reisner01a311a2011-02-07 14:30:33 +01002225 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002226 r |= (1 << BDI_async_congested);
2227 reason = reason == 'b' ? 'a' : 'n';
2228 }
2229
2230out:
2231 mdev->congestion_reason = reason;
2232 return r;
2233}
2234
Philipp Reisner6699b652011-02-09 11:10:24 +01002235static void drbd_init_workqueue(struct drbd_work_queue* wq)
2236{
2237 sema_init(&wq->s, 0);
2238 spin_lock_init(&wq->q_lock);
2239 INIT_LIST_HEAD(&wq->q);
2240}
2241
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002242struct drbd_tconn *conn_by_name(const char *name)
2243{
2244 struct drbd_tconn *tconn;
2245
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002246 if (!name || !name[0])
2247 return NULL;
2248
Lars Ellenberg543cc102011-03-10 22:18:18 +01002249 mutex_lock(&drbd_cfg_mutex);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002250 list_for_each_entry(tconn, &drbd_tconns, all_tconn) {
2251 if (!strcmp(tconn->name, name))
2252 goto found;
2253 }
2254 tconn = NULL;
2255found:
Lars Ellenberg543cc102011-03-10 22:18:18 +01002256 mutex_unlock(&drbd_cfg_mutex);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002257 return tconn;
2258}
2259
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002260struct drbd_tconn *drbd_new_tconn(const char *name)
Philipp Reisner21114382011-01-19 12:26:59 +01002261{
2262 struct drbd_tconn *tconn;
2263
2264 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2265 if (!tconn)
2266 return NULL;
2267
2268 tconn->name = kstrdup(name, GFP_KERNEL);
2269 if (!tconn->name)
2270 goto fail;
2271
Philipp Reisner774b3052011-02-22 02:07:03 -05002272 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2273 goto fail;
2274
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002275 if (!tl_init(tconn))
2276 goto fail;
2277
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002278 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da82011-02-11 20:11:10 +01002279 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002280 spin_lock_init(&tconn->req_lock);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002281 atomic_set(&tconn->net_cnt, 0);
2282 init_waitqueue_head(&tconn->net_cnt_wait);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002283 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002284 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002285
Philipp Reisner6699b652011-02-09 11:10:24 +01002286 drbd_init_workqueue(&tconn->data.work);
2287 mutex_init(&tconn->data.mutex);
2288
2289 drbd_init_workqueue(&tconn->meta.work);
2290 mutex_init(&tconn->meta.mutex);
2291
Philipp Reisner392c8802011-02-09 10:33:31 +01002292 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2293 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2294 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2295
Lars Ellenbergf3990022011-03-23 14:31:09 +01002296 tconn->res_opts = (struct res_opts) {
2297 {}, 0, /* cpu_mask */
2298 DRBD_ON_NO_DATA_DEF, /* on_no_data */
2299 };
2300
Lars Ellenberg543cc102011-03-10 22:18:18 +01002301 mutex_lock(&drbd_cfg_mutex);
2302 list_add_tail(&tconn->all_tconn, &drbd_tconns);
2303 mutex_unlock(&drbd_cfg_mutex);
Philipp Reisner21114382011-01-19 12:26:59 +01002304
2305 return tconn;
2306
2307fail:
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002308 tl_cleanup(tconn);
Philipp Reisner774b3052011-02-22 02:07:03 -05002309 free_cpumask_var(tconn->cpu_mask);
Philipp Reisner21114382011-01-19 12:26:59 +01002310 kfree(tconn->name);
2311 kfree(tconn);
2312
2313 return NULL;
2314}
2315
2316void drbd_free_tconn(struct drbd_tconn *tconn)
2317{
Philipp Reisner21114382011-01-19 12:26:59 +01002318 list_del(&tconn->all_tconn);
Philipp Reisner062e8792011-02-08 11:09:18 +01002319 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002320
Philipp Reisner774b3052011-02-22 02:07:03 -05002321 free_cpumask_var(tconn->cpu_mask);
Philipp Reisner21114382011-01-19 12:26:59 +01002322 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002323 kfree(tconn->int_dig_out);
2324 kfree(tconn->int_dig_in);
2325 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002326 kfree(tconn);
2327}
2328
Philipp Reisner774b3052011-02-22 02:07:03 -05002329enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002330{
2331 struct drbd_conf *mdev;
2332 struct gendisk *disk;
2333 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002334 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002335 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002336 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002337
2338 mdev = minor_to_mdev(minor);
2339 if (mdev)
2340 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002341
2342 /* GFP_KERNEL, we are outside of all write-out paths */
2343 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2344 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002345 return ERR_NOMEM;
2346
2347 mdev->tconn = tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002348 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002349 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002350
2351 drbd_init_set_defaults(mdev);
2352
2353 q = blk_alloc_queue(GFP_KERNEL);
2354 if (!q)
2355 goto out_no_q;
2356 mdev->rq_queue = q;
2357 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002358
2359 disk = alloc_disk(1);
2360 if (!disk)
2361 goto out_no_disk;
2362 mdev->vdisk = disk;
2363
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002364 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002365
2366 disk->queue = q;
2367 disk->major = DRBD_MAJOR;
2368 disk->first_minor = minor;
2369 disk->fops = &drbd_ops;
2370 sprintf(disk->disk_name, "drbd%d", minor);
2371 disk->private_data = mdev;
2372
2373 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2374 /* we have no partitions. we contain only ourselves. */
2375 mdev->this_bdev->bd_contains = mdev->this_bdev;
2376
2377 q->backing_dev_info.congested_fn = drbd_congested;
2378 q->backing_dev_info.congested_data = mdev;
2379
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002380 blk_queue_make_request(q, drbd_make_request);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002381 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2382 This triggers a max_bio_size message upon first attach or connect */
2383 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002384 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2385 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002386 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002387
2388 mdev->md_io_page = alloc_page(GFP_KERNEL);
2389 if (!mdev->md_io_page)
2390 goto out_no_io_page;
2391
2392 if (drbd_bm_init(mdev))
2393 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002394 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002395 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002396
Philipp Reisnerb411b362009-09-25 16:07:19 -07002397 mdev->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2398 if (!mdev->current_epoch)
2399 goto out_no_epoch;
2400
2401 INIT_LIST_HEAD(&mdev->current_epoch->list);
2402 mdev->epochs = 1;
2403
Lars Ellenberg8432b312011-03-08 16:11:16 +01002404 if (!idr_pre_get(&minors, GFP_KERNEL))
2405 goto out_no_minor_idr;
2406 if (idr_get_new_above(&minors, mdev, minor, &minor_got))
2407 goto out_no_minor_idr;
2408 if (minor_got != minor) {
2409 err = ERR_MINOR_EXISTS;
2410 drbd_msg_put_info("requested minor exists already");
2411 goto out_idr_remove_minor;
Lars Ellenberg569083c2011-03-07 09:49:02 +01002412 }
2413
Lars Ellenberg8432b312011-03-08 16:11:16 +01002414 if (!idr_pre_get(&tconn->volumes, GFP_KERNEL))
Lars Ellenberg569083c2011-03-07 09:49:02 +01002415 goto out_idr_remove_minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002416 if (idr_get_new_above(&tconn->volumes, mdev, vnr, &vnr_got))
2417 goto out_idr_remove_minor;
2418 if (vnr_got != vnr) {
2419 err = ERR_INVALID_REQUEST;
2420 drbd_msg_put_info("requested volume exists already");
2421 goto out_idr_remove_vol;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002422 }
Philipp Reisner774b3052011-02-22 02:07:03 -05002423 add_disk(disk);
2424
Philipp Reisner2325eb62011-03-15 16:56:18 +01002425 /* inherit the connection state */
2426 mdev->state.conn = tconn->cstate;
2427 if (mdev->state.conn == C_WF_REPORT_PARAMS)
2428 drbd_connected(vnr, mdev, tconn);
2429
Philipp Reisner774b3052011-02-22 02:07:03 -05002430 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002431
Lars Ellenberg569083c2011-03-07 09:49:02 +01002432out_idr_remove_vol:
2433 idr_remove(&tconn->volumes, vnr_got);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002434out_idr_remove_minor:
2435 idr_remove(&minors, minor_got);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002436 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002437out_no_minor_idr:
Philipp Reisner81a5d602011-02-22 19:53:16 -05002438 kfree(mdev->current_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002439out_no_epoch:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002440 drbd_bm_cleanup(mdev);
2441out_no_bitmap:
2442 __free_page(mdev->md_io_page);
2443out_no_io_page:
2444 put_disk(disk);
2445out_no_disk:
2446 blk_cleanup_queue(q);
2447out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002448 kfree(mdev);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002449 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002450}
2451
2452/* counterpart of drbd_new_device.
2453 * last part of drbd_delete_device. */
2454void drbd_free_mdev(struct drbd_conf *mdev)
2455{
2456 kfree(mdev->current_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002457 if (mdev->bitmap) /* should no longer be there. */
2458 drbd_bm_cleanup(mdev);
2459 __free_page(mdev->md_io_page);
2460 put_disk(mdev->vdisk);
2461 blk_cleanup_queue(mdev->rq_queue);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002462 kfree(mdev);
2463}
2464
2465
2466int __init drbd_init(void)
2467{
2468 int err;
2469
Philipp Reisnerfd340c12011-01-19 16:57:39 +01002470 BUILD_BUG_ON(sizeof(struct p_header80) != sizeof(struct p_header95));
2471 BUILD_BUG_ON(sizeof(struct p_handshake) != 80);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002472
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002473 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002474 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002475 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002476#ifdef MODULE
2477 return -EINVAL;
2478#else
2479 minor_count = 8;
2480#endif
2481 }
2482
Philipp Reisnerb411b362009-09-25 16:07:19 -07002483 err = register_blkdev(DRBD_MAJOR, "drbd");
2484 if (err) {
2485 printk(KERN_ERR
2486 "drbd: unable to register block device major %d\n",
2487 DRBD_MAJOR);
2488 return err;
2489 }
2490
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002491 err = drbd_genl_register();
2492 if (err) {
2493 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2494 goto fail;
2495 }
2496
2497
Philipp Reisnerb411b362009-09-25 16:07:19 -07002498 register_reboot_notifier(&drbd_notifier);
2499
2500 /*
2501 * allocate all necessary structs
2502 */
2503 err = -ENOMEM;
2504
2505 init_waitqueue_head(&drbd_pp_wait);
2506
2507 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002508 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002509
2510 err = drbd_create_mempools();
2511 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002512 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002513
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002514 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002515 if (!drbd_proc) {
2516 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002517 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002518 }
2519
2520 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002521 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002522
2523 printk(KERN_INFO "drbd: initialized. "
2524 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2525 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2526 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2527 printk(KERN_INFO "drbd: registered as block device major %d\n",
2528 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002529
2530 return 0; /* Success! */
2531
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002532fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002533 drbd_cleanup();
2534 if (err == -ENOMEM)
2535 /* currently always the case */
2536 printk(KERN_ERR "drbd: ran out of memory\n");
2537 else
2538 printk(KERN_ERR "drbd: initialization failure\n");
2539 return err;
2540}
2541
2542void drbd_free_bc(struct drbd_backing_dev *ldev)
2543{
2544 if (ldev == NULL)
2545 return;
2546
Tejun Heoe525fd82010-11-13 11:55:17 +01002547 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2548 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002549
2550 kfree(ldev);
2551}
2552
Philipp Reisner360cc742011-02-08 14:29:53 +01002553void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002554{
Philipp Reisner360cc742011-02-08 14:29:53 +01002555 if (tconn->data.socket) {
2556 mutex_lock(&tconn->data.mutex);
2557 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2558 sock_release(tconn->data.socket);
2559 tconn->data.socket = NULL;
2560 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002561 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002562 if (tconn->meta.socket) {
2563 mutex_lock(&tconn->meta.mutex);
2564 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2565 sock_release(tconn->meta.socket);
2566 tconn->meta.socket = NULL;
2567 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002568 }
2569}
2570
2571
2572void drbd_free_resources(struct drbd_conf *mdev)
2573{
Lars Ellenbergf3990022011-03-23 14:31:09 +01002574 crypto_free_hash(mdev->tconn->csums_tfm);
2575 mdev->tconn->csums_tfm = NULL;
2576 crypto_free_hash(mdev->tconn->verify_tfm);
2577 mdev->tconn->verify_tfm = NULL;
Philipp Reisnera0638452011-01-19 14:31:32 +01002578 crypto_free_hash(mdev->tconn->cram_hmac_tfm);
2579 mdev->tconn->cram_hmac_tfm = NULL;
2580 crypto_free_hash(mdev->tconn->integrity_w_tfm);
2581 mdev->tconn->integrity_w_tfm = NULL;
2582 crypto_free_hash(mdev->tconn->integrity_r_tfm);
2583 mdev->tconn->integrity_r_tfm = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002584
Philipp Reisner360cc742011-02-08 14:29:53 +01002585 drbd_free_sock(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002586
2587 __no_warn(local,
2588 drbd_free_bc(mdev->ldev);
2589 mdev->ldev = NULL;);
2590}
2591
2592/* meta data management */
2593
2594struct meta_data_on_disk {
2595 u64 la_size; /* last agreed size. */
2596 u64 uuid[UI_SIZE]; /* UUIDs. */
2597 u64 device_uuid;
2598 u64 reserved_u64_1;
2599 u32 flags; /* MDF */
2600 u32 magic;
2601 u32 md_size_sect;
2602 u32 al_offset; /* offset to this block */
2603 u32 al_nr_extents; /* important for restoring the AL */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002604 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002605 u32 bm_offset; /* offset to the bitmap, from here */
2606 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002607 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2608 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002609
2610} __packed;
2611
2612/**
2613 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2614 * @mdev: DRBD device.
2615 */
2616void drbd_md_sync(struct drbd_conf *mdev)
2617{
2618 struct meta_data_on_disk *buffer;
2619 sector_t sector;
2620 int i;
2621
Lars Ellenbergee15b032010-09-03 10:00:09 +02002622 del_timer(&mdev->md_sync_timer);
2623 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002624 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
2625 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002626
2627 /* We use here D_FAILED and not D_ATTACHING because we try to write
2628 * metadata even if we detach due to a disk failure! */
2629 if (!get_ldev_if_state(mdev, D_FAILED))
2630 return;
2631
Philipp Reisnerb411b362009-09-25 16:07:19 -07002632 mutex_lock(&mdev->md_io_mutex);
2633 buffer = (struct meta_data_on_disk *)page_address(mdev->md_io_page);
2634 memset(buffer, 0, 512);
2635
2636 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
2637 for (i = UI_CURRENT; i < UI_SIZE; i++)
2638 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
2639 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
2640 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC);
2641
2642 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
2643 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
2644 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
2645 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
2646 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
2647
2648 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002649 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002650
2651 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
2652 sector = mdev->ldev->md.md_offset;
2653
Lars Ellenberg3f3a9b82010-09-01 15:12:12 +02002654 if (!drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002655 /* this was a try anyways ... */
2656 dev_err(DEV, "meta data update failed!\n");
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002657 drbd_chk_io_error(mdev, 1, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002658 }
2659
2660 /* Update mdev->ldev->md.la_size_sect,
2661 * since we updated it on metadata. */
2662 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
2663
2664 mutex_unlock(&mdev->md_io_mutex);
2665 put_ldev(mdev);
2666}
2667
2668/**
2669 * drbd_md_read() - Reads in the meta data super block
2670 * @mdev: DRBD device.
2671 * @bdev: Device from which the meta data should be read in.
2672 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01002673 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Philipp Reisnerb411b362009-09-25 16:07:19 -07002674 * something goes wrong. Currently only: ERR_IO_MD_DISK, ERR_MD_INVALID.
2675 */
2676int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
2677{
2678 struct meta_data_on_disk *buffer;
2679 int i, rv = NO_ERROR;
2680
2681 if (!get_ldev_if_state(mdev, D_ATTACHING))
2682 return ERR_IO_MD_DISK;
2683
Philipp Reisnerb411b362009-09-25 16:07:19 -07002684 mutex_lock(&mdev->md_io_mutex);
2685 buffer = (struct meta_data_on_disk *)page_address(mdev->md_io_page);
2686
2687 if (!drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002688 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07002689 called BEFORE disk is attached */
2690 dev_err(DEV, "Error while reading metadata.\n");
2691 rv = ERR_IO_MD_DISK;
2692 goto err;
2693 }
2694
Andreas Gruenbachere7fad8a2011-01-11 13:54:02 +01002695 if (buffer->magic != cpu_to_be32(DRBD_MD_MAGIC)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002696 dev_err(DEV, "Error while reading metadata, magic not found.\n");
2697 rv = ERR_MD_INVALID;
2698 goto err;
2699 }
2700 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
2701 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
2702 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
2703 rv = ERR_MD_INVALID;
2704 goto err;
2705 }
2706 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
2707 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
2708 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
2709 rv = ERR_MD_INVALID;
2710 goto err;
2711 }
2712 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
2713 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
2714 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
2715 rv = ERR_MD_INVALID;
2716 goto err;
2717 }
2718
2719 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
2720 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
2721 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
2722 rv = ERR_MD_INVALID;
2723 goto err;
2724 }
2725
2726 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
2727 for (i = UI_CURRENT; i < UI_SIZE; i++)
2728 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
2729 bdev->md.flags = be32_to_cpu(buffer->flags);
Lars Ellenbergf3990022011-03-23 14:31:09 +01002730 bdev->dc.al_extents = be32_to_cpu(buffer->al_nr_extents);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002731 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
2732
Philipp Reisner87eeee42011-01-19 14:16:30 +01002733 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002734 if (mdev->state.conn < C_CONNECTED) {
2735 int peer;
2736 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
2737 peer = max_t(int, peer, DRBD_MAX_BIO_SIZE_SAFE);
2738 mdev->peer_max_bio_size = peer;
2739 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01002740 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002741
Lars Ellenbergf3990022011-03-23 14:31:09 +01002742 if (bdev->dc.al_extents < 7)
2743 bdev->dc.al_extents = 127;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002744
2745 err:
2746 mutex_unlock(&mdev->md_io_mutex);
2747 put_ldev(mdev);
2748
2749 return rv;
2750}
2751
2752/**
2753 * drbd_md_mark_dirty() - Mark meta data super block as dirty
2754 * @mdev: DRBD device.
2755 *
2756 * Call this function if you change anything that should be written to
2757 * the meta-data super block. This function sets MD_DIRTY, and starts a
2758 * timer that ensures that within five seconds you have to call drbd_md_sync().
2759 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02002760#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02002761void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
2762{
2763 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
2764 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
2765 mdev->last_md_mark_dirty.line = line;
2766 mdev->last_md_mark_dirty.func = func;
2767 }
2768}
2769#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07002770void drbd_md_mark_dirty(struct drbd_conf *mdev)
2771{
Lars Ellenbergee15b032010-09-03 10:00:09 +02002772 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02002773 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002774}
Lars Ellenbergee15b032010-09-03 10:00:09 +02002775#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07002776
2777static void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
2778{
2779 int i;
2780
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002781 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002782 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002783}
2784
2785void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
2786{
2787 if (idx == UI_CURRENT) {
2788 if (mdev->state.role == R_PRIMARY)
2789 val |= 1;
2790 else
2791 val &= ~((u64)1);
2792
2793 drbd_set_ed_uuid(mdev, val);
2794 }
2795
2796 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002797 drbd_md_mark_dirty(mdev);
2798}
2799
2800
2801void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
2802{
2803 if (mdev->ldev->md.uuid[idx]) {
2804 drbd_uuid_move_history(mdev);
2805 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002806 }
2807 _drbd_uuid_set(mdev, idx, val);
2808}
2809
2810/**
2811 * drbd_uuid_new_current() - Creates a new current UUID
2812 * @mdev: DRBD device.
2813 *
2814 * Creates a new current UUID, and rotates the old current UUID into
2815 * the bitmap slot. Causes an incremental resync upon next connect.
2816 */
2817void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
2818{
2819 u64 val;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002820 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002821
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002822 if (bm_uuid)
2823 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
2824
Philipp Reisnerb411b362009-09-25 16:07:19 -07002825 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002826
2827 get_random_bytes(&val, sizeof(u64));
2828 _drbd_uuid_set(mdev, UI_CURRENT, val);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002829 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02002830 /* get it to stable storage _now_ */
2831 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002832}
2833
2834void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
2835{
2836 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
2837 return;
2838
2839 if (val == 0) {
2840 drbd_uuid_move_history(mdev);
2841 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
2842 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002843 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002844 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
2845 if (bm_uuid)
2846 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002847
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002848 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002849 }
2850 drbd_md_mark_dirty(mdev);
2851}
2852
2853/**
2854 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
2855 * @mdev: DRBD device.
2856 *
2857 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
2858 */
2859int drbd_bmio_set_n_write(struct drbd_conf *mdev)
2860{
2861 int rv = -EIO;
2862
2863 if (get_ldev_if_state(mdev, D_ATTACHING)) {
2864 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
2865 drbd_md_sync(mdev);
2866 drbd_bm_set_all(mdev);
2867
2868 rv = drbd_bm_write(mdev);
2869
2870 if (!rv) {
2871 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
2872 drbd_md_sync(mdev);
2873 }
2874
2875 put_ldev(mdev);
2876 }
2877
2878 return rv;
2879}
2880
2881/**
2882 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
2883 * @mdev: DRBD device.
2884 *
2885 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
2886 */
2887int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
2888{
2889 int rv = -EIO;
2890
Philipp Reisner07782862010-08-31 12:00:50 +02002891 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002892 if (get_ldev_if_state(mdev, D_ATTACHING)) {
2893 drbd_bm_clear_all(mdev);
2894 rv = drbd_bm_write(mdev);
2895 put_ldev(mdev);
2896 }
2897
2898 return rv;
2899}
2900
Philipp Reisner00d56942011-02-09 18:09:48 +01002901static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002902{
2903 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01002904 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01002905 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002906
2907 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
2908
Lars Ellenberg02851e92010-12-16 14:47:39 +01002909 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002910 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01002911 rv = work->io_fn(mdev);
2912 drbd_bm_unlock(mdev);
2913 put_ldev(mdev);
2914 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002915
Lars Ellenberg4738fa12011-02-21 13:20:55 +01002916 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002917 wake_up(&mdev->misc_wait);
2918
2919 if (work->done)
2920 work->done(mdev, rv);
2921
2922 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
2923 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002924 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002925
2926 return 1;
2927}
2928
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002929void drbd_ldev_destroy(struct drbd_conf *mdev)
2930{
2931 lc_destroy(mdev->resync);
2932 mdev->resync = NULL;
2933 lc_destroy(mdev->act_log);
2934 mdev->act_log = NULL;
2935 __no_warn(local,
2936 drbd_free_bc(mdev->ldev);
2937 mdev->ldev = NULL;);
2938
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002939 clear_bit(GO_DISKLESS, &mdev->flags);
2940}
2941
Philipp Reisner00d56942011-02-09 18:09:48 +01002942static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002943{
Philipp Reisner00d56942011-02-09 18:09:48 +01002944 struct drbd_conf *mdev = w->mdev;
2945
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002946 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02002947 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
2948 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002949 * the protected members anymore, though, so once put_ldev reaches zero
2950 * again, it will be safe to free them. */
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002951 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002952 return 1;
2953}
2954
2955void drbd_go_diskless(struct drbd_conf *mdev)
2956{
2957 D_ASSERT(mdev->state.disk == D_FAILED);
2958 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01002959 drbd_queue_work(&mdev->tconn->data.work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002960}
2961
Philipp Reisnerb411b362009-09-25 16:07:19 -07002962/**
2963 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
2964 * @mdev: DRBD device.
2965 * @io_fn: IO callback to be called when bitmap IO is possible
2966 * @done: callback to be called after the bitmap IO was performed
2967 * @why: Descriptive text of the reason for doing the IO
2968 *
2969 * While IO on the bitmap happens we freeze application IO thus we ensure
2970 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
2971 * called from worker context. It MUST NOT be used while a previous such
2972 * work is still pending!
2973 */
2974void drbd_queue_bitmap_io(struct drbd_conf *mdev,
2975 int (*io_fn)(struct drbd_conf *),
2976 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002977 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002978{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002979 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002980
2981 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
2982 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
2983 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
2984 if (mdev->bm_io_work.why)
2985 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
2986 why, mdev->bm_io_work.why);
2987
2988 mdev->bm_io_work.io_fn = io_fn;
2989 mdev->bm_io_work.done = done;
2990 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002991 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002992
Philipp Reisner87eeee42011-01-19 14:16:30 +01002993 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002994 set_bit(BITMAP_IO, &mdev->flags);
2995 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01002996 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01002997 drbd_queue_work(&mdev->tconn->data.work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002998 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01002999 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003000}
3001
3002/**
3003 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
3004 * @mdev: DRBD device.
3005 * @io_fn: IO callback to be called when bitmap IO is possible
3006 * @why: Descriptive text of the reason for doing the IO
3007 *
3008 * freezes application IO while that the actual IO operations runs. This
3009 * functions MAY NOT be called from worker context.
3010 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003011int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
3012 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003013{
3014 int rv;
3015
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003016 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003017
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003018 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3019 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003020
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003021 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003022 rv = io_fn(mdev);
3023 drbd_bm_unlock(mdev);
3024
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003025 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3026 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003027
3028 return rv;
3029}
3030
3031void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3032{
3033 if ((mdev->ldev->md.flags & flag) != flag) {
3034 drbd_md_mark_dirty(mdev);
3035 mdev->ldev->md.flags |= flag;
3036 }
3037}
3038
3039void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3040{
3041 if ((mdev->ldev->md.flags & flag) != 0) {
3042 drbd_md_mark_dirty(mdev);
3043 mdev->ldev->md.flags &= ~flag;
3044 }
3045}
3046int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3047{
3048 return (bdev->md.flags & flag) != 0;
3049}
3050
3051static void md_sync_timer_fn(unsigned long data)
3052{
3053 struct drbd_conf *mdev = (struct drbd_conf *) data;
3054
Philipp Reisnere42325a2011-01-19 13:55:45 +01003055 drbd_queue_work_front(&mdev->tconn->data.work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003056}
3057
Philipp Reisner00d56942011-02-09 18:09:48 +01003058static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003059{
Philipp Reisner00d56942011-02-09 18:09:48 +01003060 struct drbd_conf *mdev = w->mdev;
3061
Philipp Reisnerb411b362009-09-25 16:07:19 -07003062 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003063#ifdef DEBUG
3064 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3065 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3066#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003067 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003068 return 1;
3069}
3070
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003071const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003072{
3073 /* THINK may need to become several global tables
3074 * when we want to support more than
3075 * one PRO_VERSION */
3076 static const char *cmdnames[] = {
3077 [P_DATA] = "Data",
3078 [P_DATA_REPLY] = "DataReply",
3079 [P_RS_DATA_REPLY] = "RSDataReply",
3080 [P_BARRIER] = "Barrier",
3081 [P_BITMAP] = "ReportBitMap",
3082 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3083 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3084 [P_UNPLUG_REMOTE] = "UnplugRemote",
3085 [P_DATA_REQUEST] = "DataRequest",
3086 [P_RS_DATA_REQUEST] = "RSDataRequest",
3087 [P_SYNC_PARAM] = "SyncParam",
3088 [P_SYNC_PARAM89] = "SyncParam89",
3089 [P_PROTOCOL] = "ReportProtocol",
3090 [P_UUIDS] = "ReportUUIDs",
3091 [P_SIZES] = "ReportSizes",
3092 [P_STATE] = "ReportState",
3093 [P_SYNC_UUID] = "ReportSyncUUID",
3094 [P_AUTH_CHALLENGE] = "AuthChallenge",
3095 [P_AUTH_RESPONSE] = "AuthResponse",
3096 [P_PING] = "Ping",
3097 [P_PING_ACK] = "PingAck",
3098 [P_RECV_ACK] = "RecvAck",
3099 [P_WRITE_ACK] = "WriteAck",
3100 [P_RS_WRITE_ACK] = "RSWriteAck",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003101 [P_DISCARD_WRITE] = "DiscardWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003102 [P_NEG_ACK] = "NegAck",
3103 [P_NEG_DREPLY] = "NegDReply",
3104 [P_NEG_RS_DREPLY] = "NegRSDReply",
3105 [P_BARRIER_ACK] = "BarrierAck",
3106 [P_STATE_CHG_REQ] = "StateChgRequest",
3107 [P_STATE_CHG_REPLY] = "StateChgReply",
3108 [P_OV_REQUEST] = "OVRequest",
3109 [P_OV_REPLY] = "OVReply",
3110 [P_OV_RESULT] = "OVResult",
3111 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3112 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3113 [P_COMPRESSED_BITMAP] = "CBitmap",
3114 [P_DELAY_PROBE] = "DelayProbe",
3115 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003116 [P_RETRY_WRITE] = "RetryWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003117 };
3118
3119 if (cmd == P_HAND_SHAKE_M)
3120 return "HandShakeM";
3121 if (cmd == P_HAND_SHAKE_S)
3122 return "HandShakeS";
3123 if (cmd == P_HAND_SHAKE)
3124 return "HandShake";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003125 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003126 return "Unknown";
3127 return cmdnames[cmd];
3128}
3129
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003130/**
3131 * drbd_wait_misc - wait for a request to make progress
3132 * @mdev: device associated with the request
3133 * @i: the struct drbd_interval embedded in struct drbd_request or
3134 * struct drbd_peer_request
3135 */
3136int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3137{
3138 struct net_conf *net_conf = mdev->tconn->net_conf;
3139 DEFINE_WAIT(wait);
3140 long timeout;
3141
3142 if (!net_conf)
3143 return -ETIMEDOUT;
3144 timeout = MAX_SCHEDULE_TIMEOUT;
3145 if (net_conf->ko_count)
3146 timeout = net_conf->timeout * HZ / 10 * net_conf->ko_count;
3147
3148 /* Indicate to wake up mdev->misc_wait on progress. */
3149 i->waiting = true;
3150 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3151 spin_unlock_irq(&mdev->tconn->req_lock);
3152 timeout = schedule_timeout(timeout);
3153 finish_wait(&mdev->misc_wait, &wait);
3154 spin_lock_irq(&mdev->tconn->req_lock);
3155 if (!timeout || mdev->state.conn < C_CONNECTED)
3156 return -ETIMEDOUT;
3157 if (signal_pending(current))
3158 return -ERESTARTSYS;
3159 return 0;
3160}
3161
Philipp Reisnerb411b362009-09-25 16:07:19 -07003162#ifdef CONFIG_DRBD_FAULT_INJECTION
3163/* Fault insertion support including random number generator shamelessly
3164 * stolen from kernel/rcutorture.c */
3165struct fault_random_state {
3166 unsigned long state;
3167 unsigned long count;
3168};
3169
3170#define FAULT_RANDOM_MULT 39916801 /* prime */
3171#define FAULT_RANDOM_ADD 479001701 /* prime */
3172#define FAULT_RANDOM_REFRESH 10000
3173
3174/*
3175 * Crude but fast random-number generator. Uses a linear congruential
3176 * generator, with occasional help from get_random_bytes().
3177 */
3178static unsigned long
3179_drbd_fault_random(struct fault_random_state *rsp)
3180{
3181 long refresh;
3182
Roel Kluin49829ea2009-12-15 22:55:44 +01003183 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003184 get_random_bytes(&refresh, sizeof(refresh));
3185 rsp->state += refresh;
3186 rsp->count = FAULT_RANDOM_REFRESH;
3187 }
3188 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3189 return swahw32(rsp->state);
3190}
3191
3192static char *
3193_drbd_fault_str(unsigned int type) {
3194 static char *_faults[] = {
3195 [DRBD_FAULT_MD_WR] = "Meta-data write",
3196 [DRBD_FAULT_MD_RD] = "Meta-data read",
3197 [DRBD_FAULT_RS_WR] = "Resync write",
3198 [DRBD_FAULT_RS_RD] = "Resync read",
3199 [DRBD_FAULT_DT_WR] = "Data write",
3200 [DRBD_FAULT_DT_RD] = "Data read",
3201 [DRBD_FAULT_DT_RA] = "Data read ahead",
3202 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003203 [DRBD_FAULT_AL_EE] = "EE allocation",
3204 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003205 };
3206
3207 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3208}
3209
3210unsigned int
3211_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3212{
3213 static struct fault_random_state rrs = {0, 0};
3214
3215 unsigned int ret = (
3216 (fault_devs == 0 ||
3217 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3218 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3219
3220 if (ret) {
3221 fault_count++;
3222
Lars Ellenberg73835062010-05-27 11:51:56 +02003223 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003224 dev_warn(DEV, "***Simulating %s failure\n",
3225 _drbd_fault_str(type));
3226 }
3227
3228 return ret;
3229}
3230#endif
3231
3232const char *drbd_buildtag(void)
3233{
3234 /* DRBD built from external sources has here a reference to the
3235 git hash of the source code. */
3236
3237 static char buildtag[38] = "\0uilt-in";
3238
3239 if (buildtag[0] == 0) {
3240#ifdef CONFIG_MODULES
3241 if (THIS_MODULE != NULL)
3242 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3243 else
3244#endif
3245 buildtag[0] = 'b';
3246 }
3247
3248 return buildtag;
3249}
3250
3251module_init(drbd_init)
3252module_exit(drbd_cleanup)
3253
Philipp Reisnerb411b362009-09-25 16:07:19 -07003254EXPORT_SYMBOL(drbd_conn_str);
3255EXPORT_SYMBOL(drbd_role_str);
3256EXPORT_SYMBOL(drbd_disk_str);
3257EXPORT_SYMBOL(drbd_set_st_err_str);