blob: 779bf5b10d5a98a1b1f98b9c728ff3e5c111815f [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{
Andreas Gruenbacherecf23632011-03-15 23:48:25 +0100726 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700727
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100728 _prepare_header(tconn, vnr, h, cmd, size - sizeof(struct p_header));
Andreas Gruenbacherecf23632011-03-15 23:48:25 +0100729 err = drbd_send_all(tconn, sock, h, size, msg_flags);
730 if (err && !signal_pending(current))
731 conn_warn(tconn, "short send %s size=%d\n",
732 cmdname(cmd), (int)size);
733 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700734}
735
736/* don't pass the socket. we may only look at it
737 * when we hold the appropriate socket mutex.
738 */
Andreas Gruenbacher7d168ed2011-03-16 00:11:25 +0100739int conn_send_cmd(struct drbd_tconn *tconn, int vnr, struct drbd_socket *sock,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100740 enum drbd_packet cmd, struct p_header *h, size_t size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700741{
Andreas Gruenbacher596a37f2011-03-15 23:55:59 +0100742 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700743
Andreas Gruenbacher7d168ed2011-03-16 00:11:25 +0100744 mutex_lock(&sock->mutex);
745 if (sock->socket)
746 err = _conn_send_cmd(tconn, vnr, sock->socket, cmd, h, size, 0);
747 mutex_unlock(&sock->mutex);
Andreas Gruenbacher596a37f2011-03-15 23:55:59 +0100748 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700749}
750
Philipp Reisner61120872011-02-08 09:50:54 +0100751int conn_send_cmd2(struct drbd_tconn *tconn, enum drbd_packet cmd, char *data,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700752 size_t size)
753{
Philipp Reisner61120872011-02-08 09:50:54 +0100754 struct p_header80 h;
Andreas Gruenbacherce9879c2011-03-15 23:34:29 +0100755 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700756
Philipp Reisner61120872011-02-08 09:50:54 +0100757 prepare_header80(&h, cmd, size);
Andreas Gruenbacherce9879c2011-03-15 23:34:29 +0100758 err = drbd_get_data_sock(tconn);
759 if (!err) {
760 err = drbd_send_all(tconn, tconn->data.socket, &h, sizeof(h), 0);
761 if (!err)
762 err = drbd_send_all(tconn, tconn->data.socket, data, size, 0);
763 drbd_put_data_sock(tconn);
764 }
765 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700766}
767
Lars Ellenbergf3990022011-03-23 14:31:09 +0100768int drbd_send_sync_param(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700769{
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200770 struct p_rs_param_95 *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700771 struct socket *sock;
Andreas Gruenbacher103ea272011-03-16 00:43:02 +0100772 int size, err;
Philipp Reisner31890f42011-01-19 14:12:51 +0100773 const int apv = mdev->tconn->agreed_pro_version;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700774
775 size = apv <= 87 ? sizeof(struct p_rs_param)
776 : apv == 88 ? sizeof(struct p_rs_param)
Lars Ellenbergf3990022011-03-23 14:31:09 +0100777 + strlen(mdev->tconn->net_conf->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200778 : apv <= 94 ? sizeof(struct p_rs_param_89)
779 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700780
781 /* used from admin command context and receiver/worker context.
782 * to avoid kmalloc, grab the socket right here,
783 * then use the pre-allocated sbuf there */
Philipp Reisnere42325a2011-01-19 13:55:45 +0100784 mutex_lock(&mdev->tconn->data.mutex);
785 sock = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700786
787 if (likely(sock != NULL)) {
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100788 enum drbd_packet cmd =
789 apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700790
Philipp Reisnere42325a2011-01-19 13:55:45 +0100791 p = &mdev->tconn->data.sbuf.rs_param_95;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700792
793 /* initialize verify_alg and csums_alg */
794 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
795
Lars Ellenbergf3990022011-03-23 14:31:09 +0100796 if (get_ldev(mdev)) {
797 p->rate = cpu_to_be32(mdev->ldev->dc.resync_rate);
798 p->c_plan_ahead = cpu_to_be32(mdev->ldev->dc.c_plan_ahead);
799 p->c_delay_target = cpu_to_be32(mdev->ldev->dc.c_delay_target);
800 p->c_fill_target = cpu_to_be32(mdev->ldev->dc.c_fill_target);
801 p->c_max_rate = cpu_to_be32(mdev->ldev->dc.c_max_rate);
802 put_ldev(mdev);
803 } else {
804 p->rate = cpu_to_be32(DRBD_RATE_DEF);
805 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
806 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
807 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
808 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
809 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700810
811 if (apv >= 88)
Lars Ellenbergf3990022011-03-23 14:31:09 +0100812 strcpy(p->verify_alg, mdev->tconn->net_conf->verify_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700813 if (apv >= 89)
Lars Ellenbergf3990022011-03-23 14:31:09 +0100814 strcpy(p->csums_alg, mdev->tconn->net_conf->csums_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700815
Andreas Gruenbacher103ea272011-03-16 00:43:02 +0100816 err = _drbd_send_cmd(mdev, sock, cmd, &p->head, size, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700817 } else
Andreas Gruenbacher103ea272011-03-16 00:43:02 +0100818 err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700819
Philipp Reisnere42325a2011-01-19 13:55:45 +0100820 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700821
Andreas Gruenbacher103ea272011-03-16 00:43:02 +0100822 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700823}
824
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100825int drbd_send_protocol(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700826{
827 struct p_protocol *p;
Andreas Gruenbacher387eb302011-03-16 01:05:37 +0100828 int size, cf, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700829
830 size = sizeof(struct p_protocol);
831
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100832 if (tconn->agreed_pro_version >= 87)
833 size += strlen(tconn->net_conf->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700834
835 /* we must not recurse into our own queue,
836 * as that is blocked during handshake */
837 p = kmalloc(size, GFP_NOIO);
838 if (p == NULL)
Andreas Gruenbacher387eb302011-03-16 01:05:37 +0100839 return -ENOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700840
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100841 p->protocol = cpu_to_be32(tconn->net_conf->wire_protocol);
842 p->after_sb_0p = cpu_to_be32(tconn->net_conf->after_sb_0p);
843 p->after_sb_1p = cpu_to_be32(tconn->net_conf->after_sb_1p);
844 p->after_sb_2p = cpu_to_be32(tconn->net_conf->after_sb_2p);
845 p->two_primaries = cpu_to_be32(tconn->net_conf->two_primaries);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700846
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100847 cf = 0;
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100848 if (tconn->net_conf->want_lose)
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100849 cf |= CF_WANT_LOSE;
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100850 if (tconn->net_conf->dry_run) {
851 if (tconn->agreed_pro_version >= 92)
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100852 cf |= CF_DRY_RUN;
853 else {
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100854 conn_err(tconn, "--dry-run is not supported by peer");
Dan Carpenter7ac314c2010-04-22 14:27:23 +0200855 kfree(p);
Andreas Gruenbacher387eb302011-03-16 01:05:37 +0100856 return -EOPNOTSUPP;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100857 }
858 }
859 p->conn_flags = cpu_to_be32(cf);
860
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100861 if (tconn->agreed_pro_version >= 87)
862 strcpy(p->integrity_alg, tconn->net_conf->integrity_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700863
Andreas Gruenbacher387eb302011-03-16 01:05:37 +0100864 err = conn_send_cmd2(tconn, P_PROTOCOL, p->head.payload, size - sizeof(struct p_header));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700865 kfree(p);
Andreas Gruenbacher387eb302011-03-16 01:05:37 +0100866 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700867}
868
869int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
870{
871 struct p_uuids p;
872 int i;
873
874 if (!get_ldev_if_state(mdev, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +0100875 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700876
877 for (i = UI_CURRENT; i < UI_SIZE; i++)
878 p.uuid[i] = mdev->ldev ? cpu_to_be64(mdev->ldev->md.uuid[i]) : 0;
879
880 mdev->comm_bm_set = drbd_bm_total_weight(mdev);
881 p.uuid[UI_SIZE] = cpu_to_be64(mdev->comm_bm_set);
Philipp Reisner89e58e72011-01-19 13:12:45 +0100882 uuid_flags |= mdev->tconn->net_conf->want_lose ? 1 : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700883 uuid_flags |= test_bit(CRASHED_PRIMARY, &mdev->flags) ? 2 : 0;
884 uuid_flags |= mdev->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
885 p.uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
886
887 put_ldev(mdev);
888
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +0100889 return drbd_send_cmd(mdev, &mdev->tconn->data, P_UUIDS, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700890}
891
892int drbd_send_uuids(struct drbd_conf *mdev)
893{
894 return _drbd_send_uuids(mdev, 0);
895}
896
897int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev)
898{
899 return _drbd_send_uuids(mdev, 8);
900}
901
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100902void drbd_print_uuids(struct drbd_conf *mdev, const char *text)
903{
904 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
905 u64 *uuid = mdev->ldev->md.uuid;
906 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX\n",
907 text,
908 (unsigned long long)uuid[UI_CURRENT],
909 (unsigned long long)uuid[UI_BITMAP],
910 (unsigned long long)uuid[UI_HISTORY_START],
911 (unsigned long long)uuid[UI_HISTORY_END]);
912 put_ldev(mdev);
913 } else {
914 dev_info(DEV, "%s effective data uuid: %016llX\n",
915 text,
916 (unsigned long long)mdev->ed_uuid);
917 }
918}
919
Andreas Gruenbacher9c1b7f72011-03-16 01:09:01 +0100920void drbd_gen_and_send_sync_uuid(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700921{
922 struct p_rs_uuid p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100923 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700924
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100925 D_ASSERT(mdev->state.disk == D_UP_TO_DATE);
926
Philipp Reisner4a23f262011-01-11 17:42:17 +0100927 uuid = mdev->ldev->md.uuid[UI_BITMAP] + UUID_NEW_BM_OFFSET;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100928 drbd_uuid_set(mdev, UI_BITMAP, uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100929 drbd_print_uuids(mdev, "updated sync UUID");
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100930 drbd_md_sync(mdev);
931 p.uuid = cpu_to_be64(uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700932
Andreas Gruenbacher9c1b7f72011-03-16 01:09:01 +0100933 drbd_send_cmd(mdev, &mdev->tconn->data, P_SYNC_UUID, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700934}
935
Philipp Reisnere89b5912010-03-24 17:11:33 +0100936int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700937{
938 struct p_sizes p;
939 sector_t d_size, u_size;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200940 int q_order_type, max_bio_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700941
942 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
943 D_ASSERT(mdev->ldev->backing_bdev);
944 d_size = drbd_get_max_capacity(mdev->ldev);
945 u_size = mdev->ldev->dc.disk_size;
946 q_order_type = drbd_queue_order_type(mdev);
Philipp Reisner99432fc2011-05-20 16:39:13 +0200947 max_bio_size = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
948 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700949 put_ldev(mdev);
950 } else {
951 d_size = 0;
952 u_size = 0;
953 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200954 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700955 }
956
957 p.d_size = cpu_to_be64(d_size);
958 p.u_size = cpu_to_be64(u_size);
959 p.c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(mdev->this_bdev));
Philipp Reisner99432fc2011-05-20 16:39:13 +0200960 p.max_bio_size = cpu_to_be32(max_bio_size);
Philipp Reisnere89b5912010-03-24 17:11:33 +0100961 p.queue_order_type = cpu_to_be16(q_order_type);
962 p.dds_flags = cpu_to_be16(flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700963
Andreas Gruenbacherf02d4d02011-03-16 01:12:50 +0100964 return drbd_send_cmd(mdev, &mdev->tconn->data, P_SIZES, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700965}
966
967/**
968 * drbd_send_state() - Sends the drbd state to the peer
969 * @mdev: DRBD device.
970 */
971int drbd_send_state(struct drbd_conf *mdev)
972{
973 struct socket *sock;
974 struct p_state p;
Andreas Gruenbacher927036f2011-03-16 00:50:00 +0100975 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700976
Philipp Reisnere42325a2011-01-19 13:55:45 +0100977 mutex_lock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700978
979 p.state = cpu_to_be32(mdev->state.i); /* Within the send mutex */
Philipp Reisnere42325a2011-01-19 13:55:45 +0100980 sock = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700981
Andreas Gruenbacher04dfa132011-03-15 23:51:21 +0100982 if (likely(sock != NULL))
Andreas Gruenbacher927036f2011-03-16 00:50:00 +0100983 err = _drbd_send_cmd(mdev, sock, P_STATE, &p.head, sizeof(p), 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700984
Philipp Reisnere42325a2011-01-19 13:55:45 +0100985 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700986
Andreas Gruenbacher927036f2011-03-16 00:50:00 +0100987 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700988}
989
Philipp Reisnercf29c9d2011-02-11 15:11:24 +0100990int _conn_send_state_req(struct drbd_tconn *tconn, int vnr, enum drbd_packet cmd,
991 union drbd_state mask, union drbd_state val)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700992{
993 struct p_req_state p;
994
995 p.mask = cpu_to_be32(mask.i);
996 p.val = cpu_to_be32(val.i);
997
Andreas Gruenbacher758970c2011-03-16 01:16:25 +0100998 return conn_send_cmd(tconn, vnr, &tconn->data, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700999}
1000
Andreas Gruenbacher2f4e7ab2011-03-16 01:20:38 +01001001void drbd_send_sr_reply(struct drbd_conf *mdev, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001002{
1003 struct p_req_state_reply p;
1004
1005 p.retcode = cpu_to_be32(retcode);
1006
Andreas Gruenbacher2f4e7ab2011-03-16 01:20:38 +01001007 drbd_send_cmd(mdev, &mdev->tconn->meta, P_STATE_CHG_REPLY, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001008}
1009
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001010int conn_send_sr_reply(struct drbd_tconn *tconn, enum drbd_state_rv retcode)
1011{
1012 struct p_req_state_reply p;
1013 enum drbd_packet cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
1014
1015 p.retcode = cpu_to_be32(retcode);
1016
Andreas Gruenbacher7d168ed2011-03-16 00:11:25 +01001017 return !conn_send_cmd(tconn, 0, &tconn->meta, cmd, &p.head, sizeof(p));
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001018}
1019
Philipp Reisnerb411b362009-09-25 16:07:19 -07001020int fill_bitmap_rle_bits(struct drbd_conf *mdev,
1021 struct p_compressed_bm *p,
1022 struct bm_xfer_ctx *c)
1023{
1024 struct bitstream bs;
1025 unsigned long plain_bits;
1026 unsigned long tmp;
1027 unsigned long rl;
1028 unsigned len;
1029 unsigned toggle;
1030 int bits;
1031
1032 /* may we use this feature? */
Lars Ellenbergf3990022011-03-23 14:31:09 +01001033 if ((mdev->tconn->net_conf->use_rle == 0) ||
Philipp Reisner31890f42011-01-19 14:12:51 +01001034 (mdev->tconn->agreed_pro_version < 90))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001035 return 0;
1036
1037 if (c->bit_offset >= c->bm_bits)
1038 return 0; /* nothing to do. */
1039
1040 /* use at most thus many bytes */
1041 bitstream_init(&bs, p->code, BM_PACKET_VLI_BYTES_MAX, 0);
1042 memset(p->code, 0, BM_PACKET_VLI_BYTES_MAX);
1043 /* plain bits covered in this code string */
1044 plain_bits = 0;
1045
1046 /* p->encoding & 0x80 stores whether the first run length is set.
1047 * bit offset is implicit.
1048 * start with toggle == 2 to be able to tell the first iteration */
1049 toggle = 2;
1050
1051 /* see how much plain bits we can stuff into one packet
1052 * using RLE and VLI. */
1053 do {
1054 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(mdev, c->bit_offset)
1055 : _drbd_bm_find_next(mdev, c->bit_offset);
1056 if (tmp == -1UL)
1057 tmp = c->bm_bits;
1058 rl = tmp - c->bit_offset;
1059
1060 if (toggle == 2) { /* first iteration */
1061 if (rl == 0) {
1062 /* the first checked bit was set,
1063 * store start value, */
1064 DCBP_set_start(p, 1);
1065 /* but skip encoding of zero run length */
1066 toggle = !toggle;
1067 continue;
1068 }
1069 DCBP_set_start(p, 0);
1070 }
1071
1072 /* paranoia: catch zero runlength.
1073 * can only happen if bitmap is modified while we scan it. */
1074 if (rl == 0) {
1075 dev_err(DEV, "unexpected zero runlength while encoding bitmap "
1076 "t:%u bo:%lu\n", toggle, c->bit_offset);
1077 return -1;
1078 }
1079
1080 bits = vli_encode_bits(&bs, rl);
1081 if (bits == -ENOBUFS) /* buffer full */
1082 break;
1083 if (bits <= 0) {
1084 dev_err(DEV, "error while encoding bitmap: %d\n", bits);
1085 return 0;
1086 }
1087
1088 toggle = !toggle;
1089 plain_bits += rl;
1090 c->bit_offset = tmp;
1091 } while (c->bit_offset < c->bm_bits);
1092
1093 len = bs.cur.b - p->code + !!bs.cur.bit;
1094
1095 if (plain_bits < (len << 3)) {
1096 /* incompressible with this method.
1097 * we need to rewind both word and bit position. */
1098 c->bit_offset -= plain_bits;
1099 bm_xfer_ctx_bit_to_word_offset(c);
1100 c->bit_offset = c->word_offset * BITS_PER_LONG;
1101 return 0;
1102 }
1103
1104 /* RLE + VLI was able to compress it just fine.
1105 * update c->word_offset. */
1106 bm_xfer_ctx_bit_to_word_offset(c);
1107
1108 /* store pad_bits */
1109 DCBP_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
1110
1111 return len;
1112}
1113
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001114/**
1115 * send_bitmap_rle_or_plain
1116 *
1117 * Return 0 when done, 1 when another iteration is needed, and a negative error
1118 * code upon failure.
1119 */
1120static int
Philipp Reisnerb411b362009-09-25 16:07:19 -07001121send_bitmap_rle_or_plain(struct drbd_conf *mdev,
Philipp Reisnerc0129492011-01-19 16:58:16 +01001122 struct p_header *h, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001123{
1124 struct p_compressed_bm *p = (void*)h;
1125 unsigned long num_words;
1126 int len;
1127 int ok;
1128
1129 len = fill_bitmap_rle_bits(mdev, p, c);
1130
1131 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001132 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001133
1134 if (len) {
1135 DCBP_set_code(p, RLE_VLI_Bits);
Andreas Gruenbacher04dfa132011-03-15 23:51:21 +01001136 ok = !_drbd_send_cmd(mdev, mdev->tconn->data.socket, P_COMPRESSED_BITMAP, h,
1137 sizeof(*p) + len, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001138
1139 c->packets[0]++;
1140 c->bytes[0] += sizeof(*p) + len;
1141
1142 if (c->bit_offset >= c->bm_bits)
1143 len = 0; /* DONE */
1144 } else {
1145 /* was not compressible.
1146 * send a buffer full of plain text bits instead. */
1147 num_words = min_t(size_t, BM_PACKET_WORDS, c->bm_words - c->word_offset);
1148 len = num_words * sizeof(long);
1149 if (len)
1150 drbd_bm_get_lel(mdev, c->word_offset, num_words, (unsigned long*)h->payload);
Andreas Gruenbacher04dfa132011-03-15 23:51:21 +01001151 ok = !_drbd_send_cmd(mdev, mdev->tconn->data.socket, P_BITMAP,
1152 h, sizeof(struct p_header80) + len, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001153 c->word_offset += num_words;
1154 c->bit_offset = c->word_offset * BITS_PER_LONG;
1155
1156 c->packets[1]++;
Philipp Reisner0b70a132010-08-20 13:36:10 +02001157 c->bytes[1] += sizeof(struct p_header80) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001158
1159 if (c->bit_offset > c->bm_bits)
1160 c->bit_offset = c->bm_bits;
1161 }
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001162 if (ok) {
1163 if (len == 0) {
1164 INFO_bm_xfer_stats(mdev, "send", c);
1165 return 0;
1166 } else
1167 return 1;
1168 }
1169 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001170}
1171
1172/* See the comment at receive_bitmap() */
1173int _drbd_send_bitmap(struct drbd_conf *mdev)
1174{
1175 struct bm_xfer_ctx c;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001176 struct p_header *p;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001177 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001178
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001179 if (!expect(mdev->bitmap))
1180 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001181
1182 /* maybe we should use some per thread scratch page,
1183 * and allocate that during initial device creation? */
Philipp Reisnerc0129492011-01-19 16:58:16 +01001184 p = (struct p_header *) __get_free_page(GFP_NOIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001185 if (!p) {
1186 dev_err(DEV, "failed to allocate one page buffer in %s\n", __func__);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001187 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001188 }
1189
1190 if (get_ldev(mdev)) {
1191 if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC)) {
1192 dev_info(DEV, "Writing the whole bitmap, MDF_FullSync was set.\n");
1193 drbd_bm_set_all(mdev);
1194 if (drbd_bm_write(mdev)) {
1195 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1196 * but otherwise process as per normal - need to tell other
1197 * side that a full resync is required! */
1198 dev_err(DEV, "Failed to write bitmap to disk!\n");
1199 } else {
1200 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
1201 drbd_md_sync(mdev);
1202 }
1203 }
1204 put_ldev(mdev);
1205 }
1206
1207 c = (struct bm_xfer_ctx) {
1208 .bm_bits = drbd_bm_bits(mdev),
1209 .bm_words = drbd_bm_words(mdev),
1210 };
1211
1212 do {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001213 err = send_bitmap_rle_or_plain(mdev, p, &c);
1214 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001215
1216 free_page((unsigned long) p);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001217 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001218}
1219
1220int drbd_send_bitmap(struct drbd_conf *mdev)
1221{
1222 int err;
1223
Andreas Gruenbacher11b0be22011-03-15 16:15:10 +01001224 if (drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001225 return -1;
1226 err = !_drbd_send_bitmap(mdev);
Philipp Reisner61120872011-02-08 09:50:54 +01001227 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001228 return err;
1229}
Andreas Gruenbacherd4e67d72011-03-16 01:25:28 +01001230void drbd_send_b_ack(struct drbd_conf *mdev, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001231{
Philipp Reisnerb411b362009-09-25 16:07:19 -07001232 struct p_barrier_ack p;
1233
1234 p.barrier = barrier_nr;
1235 p.set_size = cpu_to_be32(set_size);
1236
Andreas Gruenbacherd4e67d72011-03-16 01:25:28 +01001237 if (mdev->state.conn >= C_CONNECTED)
1238 drbd_send_cmd(mdev, &mdev->tconn->meta, P_BARRIER_ACK, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001239}
1240
1241/**
1242 * _drbd_send_ack() - Sends an ack packet
1243 * @mdev: DRBD device.
1244 * @cmd: Packet command code.
1245 * @sector: sector, needs to be in big endian byte order
1246 * @blksize: size in byte, needs to be in big endian byte order
1247 * @block_id: Id, big endian byte order
1248 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001249static int _drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
1250 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001251{
Philipp Reisnerb411b362009-09-25 16:07:19 -07001252 struct p_block_ack p;
1253
1254 p.sector = sector;
1255 p.block_id = block_id;
1256 p.blksize = blksize;
Andreas Gruenbacher8ccf2182011-02-24 11:35:43 +01001257 p.seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001258
Philipp Reisnere42325a2011-01-19 13:55:45 +01001259 if (!mdev->tconn->meta.socket || mdev->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001260 return -EIO;
1261 return drbd_send_cmd(mdev, &mdev->tconn->meta, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001262}
1263
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001264/* dp->sector and dp->block_id already/still in network byte order,
1265 * data_size is payload size according to dp->head,
1266 * and may need to be corrected for digest size. */
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001267void drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packet cmd,
1268 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001269{
Philipp Reisnera0638452011-01-19 14:31:32 +01001270 data_size -= (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_r_tfm) ?
1271 crypto_hash_digestsize(mdev->tconn->integrity_r_tfm) : 0;
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001272 _drbd_send_ack(mdev, cmd, dp->sector, cpu_to_be32(data_size),
1273 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001274}
1275
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001276void drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packet cmd,
1277 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001278{
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001279 _drbd_send_ack(mdev, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001280}
1281
1282/**
1283 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001284 * @mdev: DRBD device
1285 * @cmd: packet command code
1286 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001287 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001288int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001289 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001290{
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001291 return _drbd_send_ack(mdev, cmd,
1292 cpu_to_be64(peer_req->i.sector),
1293 cpu_to_be32(peer_req->i.size),
1294 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001295}
1296
1297/* This function misuses the block_id field to signal if the blocks
1298 * are is sync or not. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001299int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001300 sector_t sector, int blksize, u64 block_id)
1301{
Andreas Gruenbacherfa79abd2011-03-16 01:31:39 +01001302 return _drbd_send_ack(mdev, cmd,
1303 cpu_to_be64(sector),
1304 cpu_to_be32(blksize),
1305 cpu_to_be64(block_id));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001306}
1307
1308int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1309 sector_t sector, int size, u64 block_id)
1310{
Philipp Reisnerb411b362009-09-25 16:07:19 -07001311 struct p_block_req p;
1312
1313 p.sector = cpu_to_be64(sector);
1314 p.block_id = block_id;
1315 p.blksize = cpu_to_be32(size);
1316
Andreas Gruenbacher6c1005e2011-03-16 01:34:24 +01001317 return drbd_send_cmd(mdev, &mdev->tconn->data, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001318}
1319
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001320int drbd_send_drequest_csum(struct drbd_conf *mdev, sector_t sector, int size,
1321 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001322{
Andreas Gruenbacherdb1b0b72011-03-16 01:37:21 +01001323 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001324 struct p_block_req p;
1325
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001326 prepare_header(mdev, &p.head, cmd, sizeof(p) - sizeof(struct p_header) + digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001327 p.sector = cpu_to_be64(sector);
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +01001328 p.block_id = ID_SYNCER /* unused */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001329 p.blksize = cpu_to_be32(size);
1330
Philipp Reisnere42325a2011-01-19 13:55:45 +01001331 mutex_lock(&mdev->tconn->data.mutex);
Andreas Gruenbacherdb1b0b72011-03-16 01:37:21 +01001332 err = drbd_send_all(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), 0);
1333 if (!err)
1334 err = drbd_send_all(mdev->tconn, mdev->tconn->data.socket, digest, digest_size, 0);
Philipp Reisnere42325a2011-01-19 13:55:45 +01001335 mutex_unlock(&mdev->tconn->data.mutex);
Andreas Gruenbacherdb1b0b72011-03-16 01:37:21 +01001336 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001337}
1338
1339int drbd_send_ov_request(struct drbd_conf *mdev, sector_t sector, int size)
1340{
Philipp Reisnerb411b362009-09-25 16:07:19 -07001341 struct p_block_req p;
1342
1343 p.sector = cpu_to_be64(sector);
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +01001344 p.block_id = ID_SYNCER /* unused */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001345 p.blksize = cpu_to_be32(size);
1346
Andreas Gruenbacher5b9f4992011-03-16 01:31:39 +01001347 return drbd_send_cmd(mdev, &mdev->tconn->data, P_OV_REQUEST, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001348}
1349
1350/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001351 * returns false if we should retry,
1352 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001353 */
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001354static int we_should_drop_the_connection(struct drbd_tconn *tconn, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001355{
1356 int drop_it;
1357 /* long elapsed = (long)(jiffies - mdev->last_received); */
1358
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001359 drop_it = tconn->meta.socket == sock
1360 || !tconn->asender.task
1361 || get_t_state(&tconn->asender) != RUNNING
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001362 || tconn->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001363
1364 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001365 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001366
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001367 drop_it = !--tconn->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001368 if (!drop_it) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001369 conn_err(tconn, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1370 current->comm, current->pid, tconn->ko_count);
1371 request_ping(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001372 }
1373
1374 return drop_it; /* && (mdev->state == R_PRIMARY) */;
1375}
1376
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001377static void drbd_update_congested(struct drbd_tconn *tconn)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001378{
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001379 struct sock *sk = tconn->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001380 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001381 set_bit(NET_CONGESTED, &tconn->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001382}
1383
Philipp Reisnerb411b362009-09-25 16:07:19 -07001384/* The idea of sendpage seems to be to put some kind of reference
1385 * to the page into the skb, and to hand it over to the NIC. In
1386 * this process get_page() gets called.
1387 *
1388 * As soon as the page was really sent over the network put_page()
1389 * gets called by some part of the network layer. [ NIC driver? ]
1390 *
1391 * [ get_page() / put_page() increment/decrement the count. If count
1392 * reaches 0 the page will be freed. ]
1393 *
1394 * This works nicely with pages from FSs.
1395 * But this means that in protocol A we might signal IO completion too early!
1396 *
1397 * In order not to corrupt data during a resync we must make sure
1398 * that we do not reuse our own buffer pages (EEs) to early, therefore
1399 * we have the net_ee list.
1400 *
1401 * XFS seems to have problems, still, it submits pages with page_count == 0!
1402 * As a workaround, we disable sendpage on pages
1403 * with page_count == 0 or PageSlab.
1404 */
1405static int _drbd_no_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001406 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001407{
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001408 int sent = drbd_send(mdev->tconn, mdev->tconn->data.socket, kmap(page) + offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001409 kunmap(page);
1410 if (sent == size)
1411 mdev->send_cnt += size>>9;
1412 return sent == size;
1413}
1414
1415static int _drbd_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001416 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001417{
1418 mm_segment_t oldfs = get_fs();
1419 int sent, ok;
1420 int len = size;
1421
1422 /* e.g. XFS meta- & log-data is in slab pages, which have a
1423 * page_count of 0 and/or have PageSlab() set.
1424 * we cannot use send_page for those, as that does get_page();
1425 * put_page(); and would cause either a VM_BUG directly, or
1426 * __page_cache_release a page that would actually still be referenced
1427 * by someone, leading to some obscure delayed Oops somewhere else. */
1428 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001429 return _drbd_no_send_page(mdev, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001430
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001431 msg_flags |= MSG_NOSIGNAL;
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001432 drbd_update_congested(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001433 set_fs(KERNEL_DS);
1434 do {
Philipp Reisnere42325a2011-01-19 13:55:45 +01001435 sent = mdev->tconn->data.socket->ops->sendpage(mdev->tconn->data.socket, page,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001436 offset, len,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001437 msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001438 if (sent == -EAGAIN) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001439 if (we_should_drop_the_connection(mdev->tconn,
Philipp Reisnere42325a2011-01-19 13:55:45 +01001440 mdev->tconn->data.socket))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001441 break;
1442 else
1443 continue;
1444 }
1445 if (sent <= 0) {
1446 dev_warn(DEV, "%s: size=%d len=%d sent=%d\n",
1447 __func__, (int)size, len, sent);
1448 break;
1449 }
1450 len -= sent;
1451 offset += sent;
1452 } while (len > 0 /* THINK && mdev->cstate >= C_CONNECTED*/);
1453 set_fs(oldfs);
Philipp Reisner01a311a2011-02-07 14:30:33 +01001454 clear_bit(NET_CONGESTED, &mdev->tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001455
1456 ok = (len == 0);
1457 if (likely(ok))
1458 mdev->send_cnt += size>>9;
1459 return ok;
1460}
1461
1462static int _drbd_send_bio(struct drbd_conf *mdev, struct bio *bio)
1463{
1464 struct bio_vec *bvec;
1465 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001466 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001467 __bio_for_each_segment(bvec, bio, i, 0) {
1468 if (!_drbd_no_send_page(mdev, bvec->bv_page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001469 bvec->bv_offset, bvec->bv_len,
1470 i == bio->bi_vcnt -1 ? 0 : MSG_MORE))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001471 return 0;
1472 }
1473 return 1;
1474}
1475
1476static int _drbd_send_zc_bio(struct drbd_conf *mdev, struct bio *bio)
1477{
1478 struct bio_vec *bvec;
1479 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001480 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001481 __bio_for_each_segment(bvec, bio, i, 0) {
1482 if (!_drbd_send_page(mdev, bvec->bv_page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001483 bvec->bv_offset, bvec->bv_len,
1484 i == bio->bi_vcnt -1 ? 0 : MSG_MORE))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001485 return 0;
1486 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001487 return 1;
1488}
1489
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001490static int _drbd_send_zc_ee(struct drbd_conf *mdev,
1491 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001492{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001493 struct page *page = peer_req->pages;
1494 unsigned len = peer_req->i.size;
1495
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001496 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001497 page_chain_for_each(page) {
1498 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001499 if (!_drbd_send_page(mdev, page, 0, l,
1500 page_chain_next(page) ? MSG_MORE : 0))
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001501 return 0;
1502 len -= l;
1503 }
1504 return 1;
1505}
1506
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001507static u32 bio_flags_to_wire(struct drbd_conf *mdev, unsigned long bi_rw)
1508{
Philipp Reisner31890f42011-01-19 14:12:51 +01001509 if (mdev->tconn->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001510 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001511 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1512 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1513 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1514 else
Jens Axboe721a9602011-03-09 11:56:30 +01001515 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001516}
1517
Philipp Reisnerb411b362009-09-25 16:07:19 -07001518/* Used to send write requests
1519 * R_PRIMARY -> Peer (P_DATA)
1520 */
1521int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
1522{
1523 int ok = 1;
1524 struct p_data p;
1525 unsigned int dp_flags = 0;
1526 void *dgb;
1527 int dgs;
1528
Andreas Gruenbacher11b0be22011-03-15 16:15:10 +01001529 if (drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001530 return 0;
1531
Philipp Reisnera0638452011-01-19 14:31:32 +01001532 dgs = (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_w_tfm) ?
1533 crypto_hash_digestsize(mdev->tconn->integrity_w_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001534
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001535 prepare_header(mdev, &p.head, P_DATA, sizeof(p) - sizeof(struct p_header) + dgs + req->i.size);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001536 p.sector = cpu_to_be64(req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001537 p.block_id = (unsigned long)req;
Andreas Gruenbacher8ccf2182011-02-24 11:35:43 +01001538 p.seq_num = cpu_to_be32(req->seq_num = atomic_inc_return(&mdev->packet_seq));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001539
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001540 dp_flags = bio_flags_to_wire(mdev, req->master_bio->bi_rw);
1541
Philipp Reisnerb411b362009-09-25 16:07:19 -07001542 if (mdev->state.conn >= C_SYNC_SOURCE &&
1543 mdev->state.conn <= C_PAUSED_SYNC_T)
1544 dp_flags |= DP_MAY_SET_IN_SYNC;
1545
1546 p.dp_flags = cpu_to_be32(dp_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001547 set_bit(UNPLUG_REMOTE, &mdev->flags);
1548 ok = (sizeof(p) ==
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001549 drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), dgs ? MSG_MORE : 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001550 if (ok && dgs) {
Philipp Reisnera0638452011-01-19 14:31:32 +01001551 dgb = mdev->tconn->int_dig_out;
1552 drbd_csum_bio(mdev, mdev->tconn->integrity_w_tfm, req->master_bio, dgb);
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001553 ok = dgs == drbd_send(mdev->tconn, mdev->tconn->data.socket, dgb, dgs, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001554 }
1555 if (ok) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001556 /* For protocol A, we have to memcpy the payload into
1557 * socket buffers, as we may complete right away
1558 * as soon as we handed it over to tcp, at which point the data
1559 * pages may become invalid.
1560 *
1561 * For data-integrity enabled, we copy it as well, so we can be
1562 * sure that even if the bio pages may still be modified, it
1563 * won't change the data on the wire, thus if the digest checks
1564 * out ok after sending on this side, but does not fit on the
1565 * receiving side, we sure have detected corruption elsewhere.
1566 */
Philipp Reisner89e58e72011-01-19 13:12:45 +01001567 if (mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A || dgs)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001568 ok = _drbd_send_bio(mdev, req->master_bio);
1569 else
1570 ok = _drbd_send_zc_bio(mdev, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001571
1572 /* double check digest, sometimes buffers have been modified in flight. */
1573 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001574 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001575 * currently supported in kernel crypto. */
1576 unsigned char digest[64];
Philipp Reisnera0638452011-01-19 14:31:32 +01001577 drbd_csum_bio(mdev, mdev->tconn->integrity_w_tfm, req->master_bio, digest);
1578 if (memcmp(mdev->tconn->int_dig_out, digest, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001579 dev_warn(DEV,
1580 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001581 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001582 }
1583 } /* else if (dgs > 64) {
1584 ... Be noisy about digest too large ...
1585 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001586 }
1587
Philipp Reisner61120872011-02-08 09:50:54 +01001588 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001589
Philipp Reisnerb411b362009-09-25 16:07:19 -07001590 return ok;
1591}
1592
1593/* answer packet, used to send data back for read requests:
1594 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1595 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1596 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001597int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001598 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001599{
1600 int ok;
1601 struct p_data p;
1602 void *dgb;
1603 int dgs;
1604
Philipp Reisnera0638452011-01-19 14:31:32 +01001605 dgs = (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_w_tfm) ?
1606 crypto_hash_digestsize(mdev->tconn->integrity_w_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001607
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001608 prepare_header(mdev, &p.head, cmd, sizeof(p) -
1609 sizeof(struct p_header80) +
1610 dgs + peer_req->i.size);
1611 p.sector = cpu_to_be64(peer_req->i.sector);
1612 p.block_id = peer_req->block_id;
Andreas Gruenbachercc378272011-01-26 18:01:50 +01001613 p.seq_num = 0; /* unused */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001614
1615 /* Only called by our kernel thread.
1616 * This one may be interrupted by DRBD_SIG and/or DRBD_SIGKILL
1617 * in response to admin command or module unload.
1618 */
Andreas Gruenbacher11b0be22011-03-15 16:15:10 +01001619 if (drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001620 return 0;
1621
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001622 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 -07001623 if (ok && dgs) {
Philipp Reisnera0638452011-01-19 14:31:32 +01001624 dgb = mdev->tconn->int_dig_out;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001625 drbd_csum_ee(mdev, mdev->tconn->integrity_w_tfm, peer_req, dgb);
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001626 ok = dgs == drbd_send(mdev->tconn, mdev->tconn->data.socket, dgb, dgs, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001627 }
1628 if (ok)
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001629 ok = _drbd_send_zc_ee(mdev, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001630
Philipp Reisner61120872011-02-08 09:50:54 +01001631 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001632
Philipp Reisnerb411b362009-09-25 16:07:19 -07001633 return ok;
1634}
1635
Philipp Reisner73a01a12010-10-27 14:33:00 +02001636int drbd_send_oos(struct drbd_conf *mdev, struct drbd_request *req)
1637{
1638 struct p_block_desc p;
1639
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001640 p.sector = cpu_to_be64(req->i.sector);
1641 p.blksize = cpu_to_be32(req->i.size);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001642
Andreas Gruenbacherf7254462011-03-16 00:38:58 +01001643 return !drbd_send_cmd(mdev, &mdev->tconn->data, P_OUT_OF_SYNC, &p.head, sizeof(p));
Philipp Reisner73a01a12010-10-27 14:33:00 +02001644}
1645
Philipp Reisnerb411b362009-09-25 16:07:19 -07001646/*
1647 drbd_send distinguishes two cases:
1648
1649 Packets sent via the data socket "sock"
1650 and packets sent via the meta data socket "msock"
1651
1652 sock msock
1653 -----------------+-------------------------+------------------------------
1654 timeout conf.timeout / 2 conf.timeout / 2
1655 timeout action send a ping via msock Abort communication
1656 and close all sockets
1657*/
1658
1659/*
1660 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1661 */
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001662int drbd_send(struct drbd_tconn *tconn, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001663 void *buf, size_t size, unsigned msg_flags)
1664{
1665 struct kvec iov;
1666 struct msghdr msg;
1667 int rv, sent = 0;
1668
1669 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001670 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001671
1672 /* THINK if (signal_pending) return ... ? */
1673
1674 iov.iov_base = buf;
1675 iov.iov_len = size;
1676
1677 msg.msg_name = NULL;
1678 msg.msg_namelen = 0;
1679 msg.msg_control = NULL;
1680 msg.msg_controllen = 0;
1681 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1682
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001683 if (sock == tconn->data.socket) {
1684 tconn->ko_count = tconn->net_conf->ko_count;
1685 drbd_update_congested(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001686 }
1687 do {
1688 /* STRANGE
1689 * tcp_sendmsg does _not_ use its size parameter at all ?
1690 *
1691 * -EAGAIN on timeout, -EINTR on signal.
1692 */
1693/* THINK
1694 * do we need to block DRBD_SIG if sock == &meta.socket ??
1695 * otherwise wake_asender() might interrupt some send_*Ack !
1696 */
1697 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1698 if (rv == -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001699 if (we_should_drop_the_connection(tconn, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001700 break;
1701 else
1702 continue;
1703 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001704 if (rv == -EINTR) {
1705 flush_signals(current);
1706 rv = 0;
1707 }
1708 if (rv < 0)
1709 break;
1710 sent += rv;
1711 iov.iov_base += rv;
1712 iov.iov_len -= rv;
1713 } while (sent < size);
1714
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001715 if (sock == tconn->data.socket)
1716 clear_bit(NET_CONGESTED, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001717
1718 if (rv <= 0) {
1719 if (rv != -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001720 conn_err(tconn, "%s_sendmsg returned %d\n",
1721 sock == tconn->meta.socket ? "msock" : "sock",
1722 rv);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001723 conn_request_state(tconn, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001724 } else
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001725 conn_request_state(tconn, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001726 }
1727
1728 return sent;
1729}
1730
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001731/**
1732 * drbd_send_all - Send an entire buffer
1733 *
1734 * Returns 0 upon success and a negative error value otherwise.
1735 */
1736int drbd_send_all(struct drbd_tconn *tconn, struct socket *sock, void *buffer,
1737 size_t size, unsigned msg_flags)
1738{
1739 int err;
1740
1741 err = drbd_send(tconn, sock, buffer, size, msg_flags);
1742 if (err < 0)
1743 return err;
1744 if (err != size)
1745 return -EIO;
1746 return 0;
1747}
1748
Philipp Reisnerb411b362009-09-25 16:07:19 -07001749static int drbd_open(struct block_device *bdev, fmode_t mode)
1750{
1751 struct drbd_conf *mdev = bdev->bd_disk->private_data;
1752 unsigned long flags;
1753 int rv = 0;
1754
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001755 mutex_lock(&drbd_main_mutex);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001756 spin_lock_irqsave(&mdev->tconn->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001757 /* to have a stable mdev->state.role
1758 * and no race with updating open_cnt */
1759
1760 if (mdev->state.role != R_PRIMARY) {
1761 if (mode & FMODE_WRITE)
1762 rv = -EROFS;
1763 else if (!allow_oos)
1764 rv = -EMEDIUMTYPE;
1765 }
1766
1767 if (!rv)
1768 mdev->open_cnt++;
Philipp Reisner87eeee42011-01-19 14:16:30 +01001769 spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001770 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001771
1772 return rv;
1773}
1774
1775static int drbd_release(struct gendisk *gd, fmode_t mode)
1776{
1777 struct drbd_conf *mdev = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001778 mutex_lock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001779 mdev->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001780 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001781 return 0;
1782}
1783
Philipp Reisnerb411b362009-09-25 16:07:19 -07001784static void drbd_set_defaults(struct drbd_conf *mdev)
1785{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001786 /* Beware! The actual layout differs
1787 * between big endian and little endian */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001788 mdev->state = (union drbd_state) {
1789 { .role = R_SECONDARY,
1790 .peer = R_UNKNOWN,
1791 .conn = C_STANDALONE,
1792 .disk = D_DISKLESS,
1793 .pdsk = D_UNKNOWN,
Philipp Reisnerfb22c402010-09-08 23:20:21 +02001794 .susp = 0,
1795 .susp_nod = 0,
1796 .susp_fen = 0
Philipp Reisnerb411b362009-09-25 16:07:19 -07001797 } };
1798}
1799
1800void drbd_init_set_defaults(struct drbd_conf *mdev)
1801{
1802 /* the memset(,0,) did most of this.
1803 * note: only assignments, no allocation in here */
1804
1805 drbd_set_defaults(mdev);
1806
Philipp Reisnerb411b362009-09-25 16:07:19 -07001807 atomic_set(&mdev->ap_bio_cnt, 0);
1808 atomic_set(&mdev->ap_pending_cnt, 0);
1809 atomic_set(&mdev->rs_pending_cnt, 0);
1810 atomic_set(&mdev->unacked_cnt, 0);
1811 atomic_set(&mdev->local_cnt, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001812 atomic_set(&mdev->pp_in_use, 0);
Lars Ellenberg435f0742010-09-06 12:30:25 +02001813 atomic_set(&mdev->pp_in_use_by_net, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02001814 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001815 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner759fbdf2010-10-26 16:02:27 +02001816 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001817
1818 mutex_init(&mdev->md_io_mutex);
Philipp Reisner8410da82011-02-11 20:11:10 +01001819 mutex_init(&mdev->own_state_mutex);
1820 mdev->state_mutex = &mdev->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001821
Philipp Reisnerb411b362009-09-25 16:07:19 -07001822 spin_lock_init(&mdev->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001823 spin_lock_init(&mdev->peer_seq_lock);
1824 spin_lock_init(&mdev->epoch_lock);
1825
1826 INIT_LIST_HEAD(&mdev->active_ee);
1827 INIT_LIST_HEAD(&mdev->sync_ee);
1828 INIT_LIST_HEAD(&mdev->done_ee);
1829 INIT_LIST_HEAD(&mdev->read_ee);
1830 INIT_LIST_HEAD(&mdev->net_ee);
1831 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001832 INIT_LIST_HEAD(&mdev->resync_work.list);
1833 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001834 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001835 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02001836 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001837 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02001838
Philipp Reisner794abb72010-12-27 11:51:23 +01001839 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001840 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001841 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001842 mdev->md_sync_work.cb = w_md_sync;
1843 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001844 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01001845
1846 mdev->resync_work.mdev = mdev;
1847 mdev->unplug_work.mdev = mdev;
1848 mdev->go_diskless.mdev = mdev;
1849 mdev->md_sync_work.mdev = mdev;
1850 mdev->bm_io_work.w.mdev = mdev;
1851 mdev->start_resync_work.mdev = mdev;
1852
Philipp Reisnerb411b362009-09-25 16:07:19 -07001853 init_timer(&mdev->resync_timer);
1854 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01001855 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001856 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001857 mdev->resync_timer.function = resync_timer_fn;
1858 mdev->resync_timer.data = (unsigned long) mdev;
1859 mdev->md_sync_timer.function = md_sync_timer_fn;
1860 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001861 mdev->start_resync_timer.function = start_resync_timer_fn;
1862 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001863 mdev->request_timer.function = request_timer_fn;
1864 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001865
1866 init_waitqueue_head(&mdev->misc_wait);
1867 init_waitqueue_head(&mdev->state_wait);
1868 init_waitqueue_head(&mdev->ee_wait);
1869 init_waitqueue_head(&mdev->al_wait);
1870 init_waitqueue_head(&mdev->seq_wait);
1871
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001872 /* mdev->tconn->agreed_pro_version gets initialized in drbd_connect() */
Philipp Reisner2451fc32010-08-24 13:43:11 +02001873 mdev->write_ordering = WO_bdev_flush;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001874 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001875 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
1876 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001877}
1878
1879void drbd_mdev_cleanup(struct drbd_conf *mdev)
1880{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001881 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001882 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001883 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001884 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001885
1886 /* no need to lock it, I'm the only thread alive */
1887 if (atomic_read(&mdev->current_epoch->epoch_size) != 0)
1888 dev_err(DEV, "epoch_size:%d\n", atomic_read(&mdev->current_epoch->epoch_size));
1889 mdev->al_writ_cnt =
1890 mdev->bm_writ_cnt =
1891 mdev->read_cnt =
1892 mdev->recv_cnt =
1893 mdev->send_cnt =
1894 mdev->writ_cnt =
1895 mdev->p_size =
1896 mdev->rs_start =
1897 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001898 mdev->rs_failed = 0;
1899 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001900 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001901 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
1902 mdev->rs_mark_left[i] = 0;
1903 mdev->rs_mark_time[i] = 0;
1904 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01001905 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001906
1907 drbd_set_my_capacity(mdev, 0);
1908 if (mdev->bitmap) {
1909 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01001910 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001911 drbd_bm_cleanup(mdev);
1912 }
1913
1914 drbd_free_resources(mdev);
Philipp Reisner07782862010-08-31 12:00:50 +02001915 clear_bit(AL_SUSPENDED, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001916
1917 /*
1918 * currently we drbd_init_ee only on module load, so
1919 * we may do drbd_release_ee only on module unload!
1920 */
1921 D_ASSERT(list_empty(&mdev->active_ee));
1922 D_ASSERT(list_empty(&mdev->sync_ee));
1923 D_ASSERT(list_empty(&mdev->done_ee));
1924 D_ASSERT(list_empty(&mdev->read_ee));
1925 D_ASSERT(list_empty(&mdev->net_ee));
1926 D_ASSERT(list_empty(&mdev->resync_reads));
Philipp Reisnere42325a2011-01-19 13:55:45 +01001927 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
1928 D_ASSERT(list_empty(&mdev->tconn->meta.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001929 D_ASSERT(list_empty(&mdev->resync_work.list));
1930 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001931 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01001932
1933 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001934}
1935
1936
1937static void drbd_destroy_mempools(void)
1938{
1939 struct page *page;
1940
1941 while (drbd_pp_pool) {
1942 page = drbd_pp_pool;
1943 drbd_pp_pool = (struct page *)page_private(page);
1944 __free_page(page);
1945 drbd_pp_vacant--;
1946 }
1947
1948 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
1949
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01001950 if (drbd_md_io_bio_set)
1951 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg35abf592011-02-23 12:39:46 +01001952 if (drbd_md_io_page_pool)
1953 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001954 if (drbd_ee_mempool)
1955 mempool_destroy(drbd_ee_mempool);
1956 if (drbd_request_mempool)
1957 mempool_destroy(drbd_request_mempool);
1958 if (drbd_ee_cache)
1959 kmem_cache_destroy(drbd_ee_cache);
1960 if (drbd_request_cache)
1961 kmem_cache_destroy(drbd_request_cache);
1962 if (drbd_bm_ext_cache)
1963 kmem_cache_destroy(drbd_bm_ext_cache);
1964 if (drbd_al_ext_cache)
1965 kmem_cache_destroy(drbd_al_ext_cache);
1966
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01001967 drbd_md_io_bio_set = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01001968 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001969 drbd_ee_mempool = NULL;
1970 drbd_request_mempool = NULL;
1971 drbd_ee_cache = NULL;
1972 drbd_request_cache = NULL;
1973 drbd_bm_ext_cache = NULL;
1974 drbd_al_ext_cache = NULL;
1975
1976 return;
1977}
1978
1979static int drbd_create_mempools(void)
1980{
1981 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001982 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001983 int i;
1984
1985 /* prepare our caches and mempools */
1986 drbd_request_mempool = NULL;
1987 drbd_ee_cache = NULL;
1988 drbd_request_cache = NULL;
1989 drbd_bm_ext_cache = NULL;
1990 drbd_al_ext_cache = NULL;
1991 drbd_pp_pool = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01001992 drbd_md_io_page_pool = NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01001993 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001994
1995 /* caches */
1996 drbd_request_cache = kmem_cache_create(
1997 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
1998 if (drbd_request_cache == NULL)
1999 goto Enomem;
2000
2001 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002002 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002003 if (drbd_ee_cache == NULL)
2004 goto Enomem;
2005
2006 drbd_bm_ext_cache = kmem_cache_create(
2007 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2008 if (drbd_bm_ext_cache == NULL)
2009 goto Enomem;
2010
2011 drbd_al_ext_cache = kmem_cache_create(
2012 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2013 if (drbd_al_ext_cache == NULL)
2014 goto Enomem;
2015
2016 /* mempools */
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002017 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2018 if (drbd_md_io_bio_set == NULL)
2019 goto Enomem;
2020
Lars Ellenberg35abf592011-02-23 12:39:46 +01002021 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2022 if (drbd_md_io_page_pool == NULL)
2023 goto Enomem;
2024
Philipp Reisnerb411b362009-09-25 16:07:19 -07002025 drbd_request_mempool = mempool_create(number,
2026 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2027 if (drbd_request_mempool == NULL)
2028 goto Enomem;
2029
2030 drbd_ee_mempool = mempool_create(number,
2031 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002032 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002033 goto Enomem;
2034
2035 /* drbd's page pool */
2036 spin_lock_init(&drbd_pp_lock);
2037
2038 for (i = 0; i < number; i++) {
2039 page = alloc_page(GFP_HIGHUSER);
2040 if (!page)
2041 goto Enomem;
2042 set_page_private(page, (unsigned long)drbd_pp_pool);
2043 drbd_pp_pool = page;
2044 }
2045 drbd_pp_vacant = number;
2046
2047 return 0;
2048
2049Enomem:
2050 drbd_destroy_mempools(); /* in case we allocated some */
2051 return -ENOMEM;
2052}
2053
2054static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2055 void *unused)
2056{
2057 /* just so we have it. you never know what interesting things we
2058 * might want to do here some day...
2059 */
2060
2061 return NOTIFY_DONE;
2062}
2063
2064static struct notifier_block drbd_notifier = {
2065 .notifier_call = drbd_notify_sys,
2066};
2067
2068static void drbd_release_ee_lists(struct drbd_conf *mdev)
2069{
2070 int rr;
2071
2072 rr = drbd_release_ee(mdev, &mdev->active_ee);
2073 if (rr)
2074 dev_err(DEV, "%d EEs in active list found!\n", rr);
2075
2076 rr = drbd_release_ee(mdev, &mdev->sync_ee);
2077 if (rr)
2078 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2079
2080 rr = drbd_release_ee(mdev, &mdev->read_ee);
2081 if (rr)
2082 dev_err(DEV, "%d EEs in read list found!\n", rr);
2083
2084 rr = drbd_release_ee(mdev, &mdev->done_ee);
2085 if (rr)
2086 dev_err(DEV, "%d EEs in done list found!\n", rr);
2087
2088 rr = drbd_release_ee(mdev, &mdev->net_ee);
2089 if (rr)
2090 dev_err(DEV, "%d EEs in net list found!\n", rr);
2091}
2092
Philipp Reisner774b3052011-02-22 02:07:03 -05002093/* caution. no locking. */
2094void drbd_delete_device(unsigned int minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002095{
2096 struct drbd_conf *mdev = minor_to_mdev(minor);
2097
2098 if (!mdev)
2099 return;
2100
Lars Ellenberg569083c2011-03-07 09:49:02 +01002101 idr_remove(&mdev->tconn->volumes, mdev->vnr);
2102 idr_remove(&minors, minor);
2103 synchronize_rcu();
Philipp Reisner774b3052011-02-22 02:07:03 -05002104
Philipp Reisnerb411b362009-09-25 16:07:19 -07002105 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002106 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnere42325a2011-01-19 13:55:45 +01002107 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002108 /* end paranoia asserts */
2109
2110 del_gendisk(mdev->vdisk);
2111
2112 /* cleanup stuff that may have been allocated during
2113 * device (re-)configuration or state changes */
2114
2115 if (mdev->this_bdev)
2116 bdput(mdev->this_bdev);
2117
2118 drbd_free_resources(mdev);
2119
2120 drbd_release_ee_lists(mdev);
2121
Philipp Reisnerb411b362009-09-25 16:07:19 -07002122 lc_destroy(mdev->act_log);
2123 lc_destroy(mdev->resync);
2124
2125 kfree(mdev->p_uuid);
2126 /* mdev->p_uuid = NULL; */
2127
Philipp Reisnerb411b362009-09-25 16:07:19 -07002128 /* cleanup the rest that has been
2129 * allocated from drbd_new_device
2130 * and actually free the mdev itself */
2131 drbd_free_mdev(mdev);
2132}
2133
2134static void drbd_cleanup(void)
2135{
2136 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002137 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002138
2139 unregister_reboot_notifier(&drbd_notifier);
2140
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002141 /* first remove proc,
2142 * drbdsetup uses it's presence to detect
2143 * whether DRBD is loaded.
2144 * If we would get stuck in proc removal,
2145 * but have netlink already deregistered,
2146 * some drbdsetup commands may wait forever
2147 * for an answer.
2148 */
2149 if (drbd_proc)
2150 remove_proc_entry("drbd", NULL);
2151
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002152 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002153
Philipp Reisner81a5d602011-02-22 19:53:16 -05002154 idr_for_each_entry(&minors, mdev, i)
2155 drbd_delete_device(i);
2156 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002157 unregister_blkdev(DRBD_MAJOR, "drbd");
2158
Philipp Reisner81a5d602011-02-22 19:53:16 -05002159 idr_destroy(&minors);
2160
Philipp Reisnerb411b362009-09-25 16:07:19 -07002161 printk(KERN_INFO "drbd: module cleanup done.\n");
2162}
2163
2164/**
2165 * drbd_congested() - Callback for pdflush
2166 * @congested_data: User data
2167 * @bdi_bits: Bits pdflush is currently interested in
2168 *
2169 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2170 */
2171static int drbd_congested(void *congested_data, int bdi_bits)
2172{
2173 struct drbd_conf *mdev = congested_data;
2174 struct request_queue *q;
2175 char reason = '-';
2176 int r = 0;
2177
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002178 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002179 /* DRBD has frozen IO */
2180 r = bdi_bits;
2181 reason = 'd';
2182 goto out;
2183 }
2184
2185 if (get_ldev(mdev)) {
2186 q = bdev_get_queue(mdev->ldev->backing_bdev);
2187 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2188 put_ldev(mdev);
2189 if (r)
2190 reason = 'b';
2191 }
2192
Philipp Reisner01a311a2011-02-07 14:30:33 +01002193 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002194 r |= (1 << BDI_async_congested);
2195 reason = reason == 'b' ? 'a' : 'n';
2196 }
2197
2198out:
2199 mdev->congestion_reason = reason;
2200 return r;
2201}
2202
Philipp Reisner6699b652011-02-09 11:10:24 +01002203static void drbd_init_workqueue(struct drbd_work_queue* wq)
2204{
2205 sema_init(&wq->s, 0);
2206 spin_lock_init(&wq->q_lock);
2207 INIT_LIST_HEAD(&wq->q);
2208}
2209
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002210struct drbd_tconn *conn_by_name(const char *name)
2211{
2212 struct drbd_tconn *tconn;
2213
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002214 if (!name || !name[0])
2215 return NULL;
2216
Lars Ellenberg543cc102011-03-10 22:18:18 +01002217 mutex_lock(&drbd_cfg_mutex);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002218 list_for_each_entry(tconn, &drbd_tconns, all_tconn) {
2219 if (!strcmp(tconn->name, name))
2220 goto found;
2221 }
2222 tconn = NULL;
2223found:
Lars Ellenberg543cc102011-03-10 22:18:18 +01002224 mutex_unlock(&drbd_cfg_mutex);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002225 return tconn;
2226}
2227
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002228struct drbd_tconn *drbd_new_tconn(const char *name)
Philipp Reisner21114382011-01-19 12:26:59 +01002229{
2230 struct drbd_tconn *tconn;
2231
2232 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2233 if (!tconn)
2234 return NULL;
2235
2236 tconn->name = kstrdup(name, GFP_KERNEL);
2237 if (!tconn->name)
2238 goto fail;
2239
Philipp Reisner774b3052011-02-22 02:07:03 -05002240 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2241 goto fail;
2242
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002243 if (!tl_init(tconn))
2244 goto fail;
2245
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002246 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da82011-02-11 20:11:10 +01002247 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002248 spin_lock_init(&tconn->req_lock);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002249 atomic_set(&tconn->net_cnt, 0);
2250 init_waitqueue_head(&tconn->net_cnt_wait);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002251 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002252 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002253
Philipp Reisner6699b652011-02-09 11:10:24 +01002254 drbd_init_workqueue(&tconn->data.work);
2255 mutex_init(&tconn->data.mutex);
2256
2257 drbd_init_workqueue(&tconn->meta.work);
2258 mutex_init(&tconn->meta.mutex);
2259
Philipp Reisner392c8802011-02-09 10:33:31 +01002260 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2261 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2262 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2263
Lars Ellenbergf3990022011-03-23 14:31:09 +01002264 tconn->res_opts = (struct res_opts) {
2265 {}, 0, /* cpu_mask */
2266 DRBD_ON_NO_DATA_DEF, /* on_no_data */
2267 };
2268
Lars Ellenberg543cc102011-03-10 22:18:18 +01002269 mutex_lock(&drbd_cfg_mutex);
2270 list_add_tail(&tconn->all_tconn, &drbd_tconns);
2271 mutex_unlock(&drbd_cfg_mutex);
Philipp Reisner21114382011-01-19 12:26:59 +01002272
2273 return tconn;
2274
2275fail:
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002276 tl_cleanup(tconn);
Philipp Reisner774b3052011-02-22 02:07:03 -05002277 free_cpumask_var(tconn->cpu_mask);
Philipp Reisner21114382011-01-19 12:26:59 +01002278 kfree(tconn->name);
2279 kfree(tconn);
2280
2281 return NULL;
2282}
2283
2284void drbd_free_tconn(struct drbd_tconn *tconn)
2285{
Philipp Reisner21114382011-01-19 12:26:59 +01002286 list_del(&tconn->all_tconn);
Philipp Reisner062e8792011-02-08 11:09:18 +01002287 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002288
Philipp Reisner774b3052011-02-22 02:07:03 -05002289 free_cpumask_var(tconn->cpu_mask);
Philipp Reisner21114382011-01-19 12:26:59 +01002290 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002291 kfree(tconn->int_dig_out);
2292 kfree(tconn->int_dig_in);
2293 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002294 kfree(tconn);
2295}
2296
Philipp Reisner774b3052011-02-22 02:07:03 -05002297enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002298{
2299 struct drbd_conf *mdev;
2300 struct gendisk *disk;
2301 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002302 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002303 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002304 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002305
2306 mdev = minor_to_mdev(minor);
2307 if (mdev)
2308 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002309
2310 /* GFP_KERNEL, we are outside of all write-out paths */
2311 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2312 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002313 return ERR_NOMEM;
2314
2315 mdev->tconn = tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002316 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002317 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002318
2319 drbd_init_set_defaults(mdev);
2320
2321 q = blk_alloc_queue(GFP_KERNEL);
2322 if (!q)
2323 goto out_no_q;
2324 mdev->rq_queue = q;
2325 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002326
2327 disk = alloc_disk(1);
2328 if (!disk)
2329 goto out_no_disk;
2330 mdev->vdisk = disk;
2331
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002332 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002333
2334 disk->queue = q;
2335 disk->major = DRBD_MAJOR;
2336 disk->first_minor = minor;
2337 disk->fops = &drbd_ops;
2338 sprintf(disk->disk_name, "drbd%d", minor);
2339 disk->private_data = mdev;
2340
2341 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2342 /* we have no partitions. we contain only ourselves. */
2343 mdev->this_bdev->bd_contains = mdev->this_bdev;
2344
2345 q->backing_dev_info.congested_fn = drbd_congested;
2346 q->backing_dev_info.congested_data = mdev;
2347
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002348 blk_queue_make_request(q, drbd_make_request);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002349 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2350 This triggers a max_bio_size message upon first attach or connect */
2351 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002352 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2353 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002354 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002355
2356 mdev->md_io_page = alloc_page(GFP_KERNEL);
2357 if (!mdev->md_io_page)
2358 goto out_no_io_page;
2359
2360 if (drbd_bm_init(mdev))
2361 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002362 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002363 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002364
Philipp Reisnerb411b362009-09-25 16:07:19 -07002365 mdev->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2366 if (!mdev->current_epoch)
2367 goto out_no_epoch;
2368
2369 INIT_LIST_HEAD(&mdev->current_epoch->list);
2370 mdev->epochs = 1;
2371
Lars Ellenberg8432b312011-03-08 16:11:16 +01002372 if (!idr_pre_get(&minors, GFP_KERNEL))
2373 goto out_no_minor_idr;
2374 if (idr_get_new_above(&minors, mdev, minor, &minor_got))
2375 goto out_no_minor_idr;
2376 if (minor_got != minor) {
2377 err = ERR_MINOR_EXISTS;
2378 drbd_msg_put_info("requested minor exists already");
2379 goto out_idr_remove_minor;
Lars Ellenberg569083c2011-03-07 09:49:02 +01002380 }
2381
Lars Ellenberg8432b312011-03-08 16:11:16 +01002382 if (!idr_pre_get(&tconn->volumes, GFP_KERNEL))
Lars Ellenberg569083c2011-03-07 09:49:02 +01002383 goto out_idr_remove_minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002384 if (idr_get_new_above(&tconn->volumes, mdev, vnr, &vnr_got))
2385 goto out_idr_remove_minor;
2386 if (vnr_got != vnr) {
2387 err = ERR_INVALID_REQUEST;
2388 drbd_msg_put_info("requested volume exists already");
2389 goto out_idr_remove_vol;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002390 }
Philipp Reisner774b3052011-02-22 02:07:03 -05002391 add_disk(disk);
2392
Philipp Reisner2325eb62011-03-15 16:56:18 +01002393 /* inherit the connection state */
2394 mdev->state.conn = tconn->cstate;
2395 if (mdev->state.conn == C_WF_REPORT_PARAMS)
2396 drbd_connected(vnr, mdev, tconn);
2397
Philipp Reisner774b3052011-02-22 02:07:03 -05002398 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002399
Lars Ellenberg569083c2011-03-07 09:49:02 +01002400out_idr_remove_vol:
2401 idr_remove(&tconn->volumes, vnr_got);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002402out_idr_remove_minor:
2403 idr_remove(&minors, minor_got);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002404 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002405out_no_minor_idr:
Philipp Reisner81a5d602011-02-22 19:53:16 -05002406 kfree(mdev->current_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002407out_no_epoch:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002408 drbd_bm_cleanup(mdev);
2409out_no_bitmap:
2410 __free_page(mdev->md_io_page);
2411out_no_io_page:
2412 put_disk(disk);
2413out_no_disk:
2414 blk_cleanup_queue(q);
2415out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002416 kfree(mdev);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002417 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002418}
2419
2420/* counterpart of drbd_new_device.
2421 * last part of drbd_delete_device. */
2422void drbd_free_mdev(struct drbd_conf *mdev)
2423{
2424 kfree(mdev->current_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002425 if (mdev->bitmap) /* should no longer be there. */
2426 drbd_bm_cleanup(mdev);
2427 __free_page(mdev->md_io_page);
2428 put_disk(mdev->vdisk);
2429 blk_cleanup_queue(mdev->rq_queue);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002430 kfree(mdev);
2431}
2432
2433
2434int __init drbd_init(void)
2435{
2436 int err;
2437
Philipp Reisnerfd340c12011-01-19 16:57:39 +01002438 BUILD_BUG_ON(sizeof(struct p_header80) != sizeof(struct p_header95));
2439 BUILD_BUG_ON(sizeof(struct p_handshake) != 80);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002440
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002441 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002442 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002443 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002444#ifdef MODULE
2445 return -EINVAL;
2446#else
2447 minor_count = 8;
2448#endif
2449 }
2450
Philipp Reisnerb411b362009-09-25 16:07:19 -07002451 err = register_blkdev(DRBD_MAJOR, "drbd");
2452 if (err) {
2453 printk(KERN_ERR
2454 "drbd: unable to register block device major %d\n",
2455 DRBD_MAJOR);
2456 return err;
2457 }
2458
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002459 err = drbd_genl_register();
2460 if (err) {
2461 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2462 goto fail;
2463 }
2464
2465
Philipp Reisnerb411b362009-09-25 16:07:19 -07002466 register_reboot_notifier(&drbd_notifier);
2467
2468 /*
2469 * allocate all necessary structs
2470 */
2471 err = -ENOMEM;
2472
2473 init_waitqueue_head(&drbd_pp_wait);
2474
2475 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002476 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002477
2478 err = drbd_create_mempools();
2479 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002480 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002481
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002482 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002483 if (!drbd_proc) {
2484 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002485 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002486 }
2487
2488 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002489 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002490
2491 printk(KERN_INFO "drbd: initialized. "
2492 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2493 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2494 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2495 printk(KERN_INFO "drbd: registered as block device major %d\n",
2496 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002497
2498 return 0; /* Success! */
2499
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002500fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002501 drbd_cleanup();
2502 if (err == -ENOMEM)
2503 /* currently always the case */
2504 printk(KERN_ERR "drbd: ran out of memory\n");
2505 else
2506 printk(KERN_ERR "drbd: initialization failure\n");
2507 return err;
2508}
2509
2510void drbd_free_bc(struct drbd_backing_dev *ldev)
2511{
2512 if (ldev == NULL)
2513 return;
2514
Tejun Heoe525fd82010-11-13 11:55:17 +01002515 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2516 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002517
2518 kfree(ldev);
2519}
2520
Philipp Reisner360cc742011-02-08 14:29:53 +01002521void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002522{
Philipp Reisner360cc742011-02-08 14:29:53 +01002523 if (tconn->data.socket) {
2524 mutex_lock(&tconn->data.mutex);
2525 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2526 sock_release(tconn->data.socket);
2527 tconn->data.socket = NULL;
2528 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002529 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002530 if (tconn->meta.socket) {
2531 mutex_lock(&tconn->meta.mutex);
2532 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2533 sock_release(tconn->meta.socket);
2534 tconn->meta.socket = NULL;
2535 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002536 }
2537}
2538
2539
2540void drbd_free_resources(struct drbd_conf *mdev)
2541{
Lars Ellenbergf3990022011-03-23 14:31:09 +01002542 crypto_free_hash(mdev->tconn->csums_tfm);
2543 mdev->tconn->csums_tfm = NULL;
2544 crypto_free_hash(mdev->tconn->verify_tfm);
2545 mdev->tconn->verify_tfm = NULL;
Philipp Reisnera0638452011-01-19 14:31:32 +01002546 crypto_free_hash(mdev->tconn->cram_hmac_tfm);
2547 mdev->tconn->cram_hmac_tfm = NULL;
2548 crypto_free_hash(mdev->tconn->integrity_w_tfm);
2549 mdev->tconn->integrity_w_tfm = NULL;
2550 crypto_free_hash(mdev->tconn->integrity_r_tfm);
2551 mdev->tconn->integrity_r_tfm = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002552
Philipp Reisner360cc742011-02-08 14:29:53 +01002553 drbd_free_sock(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002554
2555 __no_warn(local,
2556 drbd_free_bc(mdev->ldev);
2557 mdev->ldev = NULL;);
2558}
2559
2560/* meta data management */
2561
2562struct meta_data_on_disk {
2563 u64 la_size; /* last agreed size. */
2564 u64 uuid[UI_SIZE]; /* UUIDs. */
2565 u64 device_uuid;
2566 u64 reserved_u64_1;
2567 u32 flags; /* MDF */
2568 u32 magic;
2569 u32 md_size_sect;
2570 u32 al_offset; /* offset to this block */
2571 u32 al_nr_extents; /* important for restoring the AL */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002572 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002573 u32 bm_offset; /* offset to the bitmap, from here */
2574 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002575 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2576 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002577
2578} __packed;
2579
2580/**
2581 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2582 * @mdev: DRBD device.
2583 */
2584void drbd_md_sync(struct drbd_conf *mdev)
2585{
2586 struct meta_data_on_disk *buffer;
2587 sector_t sector;
2588 int i;
2589
Lars Ellenbergee15b032010-09-03 10:00:09 +02002590 del_timer(&mdev->md_sync_timer);
2591 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002592 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
2593 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002594
2595 /* We use here D_FAILED and not D_ATTACHING because we try to write
2596 * metadata even if we detach due to a disk failure! */
2597 if (!get_ldev_if_state(mdev, D_FAILED))
2598 return;
2599
Philipp Reisnerb411b362009-09-25 16:07:19 -07002600 mutex_lock(&mdev->md_io_mutex);
2601 buffer = (struct meta_data_on_disk *)page_address(mdev->md_io_page);
2602 memset(buffer, 0, 512);
2603
2604 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
2605 for (i = UI_CURRENT; i < UI_SIZE; i++)
2606 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
2607 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
2608 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC);
2609
2610 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
2611 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
2612 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
2613 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
2614 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
2615
2616 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002617 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002618
2619 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
2620 sector = mdev->ldev->md.md_offset;
2621
Lars Ellenberg3f3a9b82010-09-01 15:12:12 +02002622 if (!drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002623 /* this was a try anyways ... */
2624 dev_err(DEV, "meta data update failed!\n");
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002625 drbd_chk_io_error(mdev, 1, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002626 }
2627
2628 /* Update mdev->ldev->md.la_size_sect,
2629 * since we updated it on metadata. */
2630 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
2631
2632 mutex_unlock(&mdev->md_io_mutex);
2633 put_ldev(mdev);
2634}
2635
2636/**
2637 * drbd_md_read() - Reads in the meta data super block
2638 * @mdev: DRBD device.
2639 * @bdev: Device from which the meta data should be read in.
2640 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01002641 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Philipp Reisnerb411b362009-09-25 16:07:19 -07002642 * something goes wrong. Currently only: ERR_IO_MD_DISK, ERR_MD_INVALID.
2643 */
2644int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
2645{
2646 struct meta_data_on_disk *buffer;
2647 int i, rv = NO_ERROR;
2648
2649 if (!get_ldev_if_state(mdev, D_ATTACHING))
2650 return ERR_IO_MD_DISK;
2651
Philipp Reisnerb411b362009-09-25 16:07:19 -07002652 mutex_lock(&mdev->md_io_mutex);
2653 buffer = (struct meta_data_on_disk *)page_address(mdev->md_io_page);
2654
2655 if (!drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002656 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07002657 called BEFORE disk is attached */
2658 dev_err(DEV, "Error while reading metadata.\n");
2659 rv = ERR_IO_MD_DISK;
2660 goto err;
2661 }
2662
Andreas Gruenbachere7fad8a2011-01-11 13:54:02 +01002663 if (buffer->magic != cpu_to_be32(DRBD_MD_MAGIC)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002664 dev_err(DEV, "Error while reading metadata, magic not found.\n");
2665 rv = ERR_MD_INVALID;
2666 goto err;
2667 }
2668 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
2669 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
2670 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
2671 rv = ERR_MD_INVALID;
2672 goto err;
2673 }
2674 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
2675 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
2676 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
2677 rv = ERR_MD_INVALID;
2678 goto err;
2679 }
2680 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
2681 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
2682 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
2683 rv = ERR_MD_INVALID;
2684 goto err;
2685 }
2686
2687 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
2688 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
2689 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
2690 rv = ERR_MD_INVALID;
2691 goto err;
2692 }
2693
2694 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
2695 for (i = UI_CURRENT; i < UI_SIZE; i++)
2696 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
2697 bdev->md.flags = be32_to_cpu(buffer->flags);
Lars Ellenbergf3990022011-03-23 14:31:09 +01002698 bdev->dc.al_extents = be32_to_cpu(buffer->al_nr_extents);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002699 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
2700
Philipp Reisner87eeee42011-01-19 14:16:30 +01002701 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002702 if (mdev->state.conn < C_CONNECTED) {
2703 int peer;
2704 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
2705 peer = max_t(int, peer, DRBD_MAX_BIO_SIZE_SAFE);
2706 mdev->peer_max_bio_size = peer;
2707 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01002708 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002709
Lars Ellenbergf3990022011-03-23 14:31:09 +01002710 if (bdev->dc.al_extents < 7)
2711 bdev->dc.al_extents = 127;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002712
2713 err:
2714 mutex_unlock(&mdev->md_io_mutex);
2715 put_ldev(mdev);
2716
2717 return rv;
2718}
2719
2720/**
2721 * drbd_md_mark_dirty() - Mark meta data super block as dirty
2722 * @mdev: DRBD device.
2723 *
2724 * Call this function if you change anything that should be written to
2725 * the meta-data super block. This function sets MD_DIRTY, and starts a
2726 * timer that ensures that within five seconds you have to call drbd_md_sync().
2727 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02002728#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02002729void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
2730{
2731 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
2732 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
2733 mdev->last_md_mark_dirty.line = line;
2734 mdev->last_md_mark_dirty.func = func;
2735 }
2736}
2737#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07002738void drbd_md_mark_dirty(struct drbd_conf *mdev)
2739{
Lars Ellenbergee15b032010-09-03 10:00:09 +02002740 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02002741 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002742}
Lars Ellenbergee15b032010-09-03 10:00:09 +02002743#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07002744
2745static void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
2746{
2747 int i;
2748
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002749 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002750 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002751}
2752
2753void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
2754{
2755 if (idx == UI_CURRENT) {
2756 if (mdev->state.role == R_PRIMARY)
2757 val |= 1;
2758 else
2759 val &= ~((u64)1);
2760
2761 drbd_set_ed_uuid(mdev, val);
2762 }
2763
2764 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002765 drbd_md_mark_dirty(mdev);
2766}
2767
2768
2769void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
2770{
2771 if (mdev->ldev->md.uuid[idx]) {
2772 drbd_uuid_move_history(mdev);
2773 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002774 }
2775 _drbd_uuid_set(mdev, idx, val);
2776}
2777
2778/**
2779 * drbd_uuid_new_current() - Creates a new current UUID
2780 * @mdev: DRBD device.
2781 *
2782 * Creates a new current UUID, and rotates the old current UUID into
2783 * the bitmap slot. Causes an incremental resync upon next connect.
2784 */
2785void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
2786{
2787 u64 val;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002788 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002789
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002790 if (bm_uuid)
2791 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
2792
Philipp Reisnerb411b362009-09-25 16:07:19 -07002793 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002794
2795 get_random_bytes(&val, sizeof(u64));
2796 _drbd_uuid_set(mdev, UI_CURRENT, val);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002797 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02002798 /* get it to stable storage _now_ */
2799 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002800}
2801
2802void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
2803{
2804 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
2805 return;
2806
2807 if (val == 0) {
2808 drbd_uuid_move_history(mdev);
2809 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
2810 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002811 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002812 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
2813 if (bm_uuid)
2814 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002815
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002816 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002817 }
2818 drbd_md_mark_dirty(mdev);
2819}
2820
2821/**
2822 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
2823 * @mdev: DRBD device.
2824 *
2825 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
2826 */
2827int drbd_bmio_set_n_write(struct drbd_conf *mdev)
2828{
2829 int rv = -EIO;
2830
2831 if (get_ldev_if_state(mdev, D_ATTACHING)) {
2832 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
2833 drbd_md_sync(mdev);
2834 drbd_bm_set_all(mdev);
2835
2836 rv = drbd_bm_write(mdev);
2837
2838 if (!rv) {
2839 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
2840 drbd_md_sync(mdev);
2841 }
2842
2843 put_ldev(mdev);
2844 }
2845
2846 return rv;
2847}
2848
2849/**
2850 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
2851 * @mdev: DRBD device.
2852 *
2853 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
2854 */
2855int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
2856{
2857 int rv = -EIO;
2858
Philipp Reisner07782862010-08-31 12:00:50 +02002859 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002860 if (get_ldev_if_state(mdev, D_ATTACHING)) {
2861 drbd_bm_clear_all(mdev);
2862 rv = drbd_bm_write(mdev);
2863 put_ldev(mdev);
2864 }
2865
2866 return rv;
2867}
2868
Philipp Reisner00d56942011-02-09 18:09:48 +01002869static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002870{
2871 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01002872 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01002873 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002874
2875 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
2876
Lars Ellenberg02851e92010-12-16 14:47:39 +01002877 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002878 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01002879 rv = work->io_fn(mdev);
2880 drbd_bm_unlock(mdev);
2881 put_ldev(mdev);
2882 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002883
Lars Ellenberg4738fa12011-02-21 13:20:55 +01002884 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002885 wake_up(&mdev->misc_wait);
2886
2887 if (work->done)
2888 work->done(mdev, rv);
2889
2890 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
2891 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002892 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002893
2894 return 1;
2895}
2896
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002897void drbd_ldev_destroy(struct drbd_conf *mdev)
2898{
2899 lc_destroy(mdev->resync);
2900 mdev->resync = NULL;
2901 lc_destroy(mdev->act_log);
2902 mdev->act_log = NULL;
2903 __no_warn(local,
2904 drbd_free_bc(mdev->ldev);
2905 mdev->ldev = NULL;);
2906
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002907 clear_bit(GO_DISKLESS, &mdev->flags);
2908}
2909
Philipp Reisner00d56942011-02-09 18:09:48 +01002910static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002911{
Philipp Reisner00d56942011-02-09 18:09:48 +01002912 struct drbd_conf *mdev = w->mdev;
2913
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002914 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02002915 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
2916 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002917 * the protected members anymore, though, so once put_ldev reaches zero
2918 * again, it will be safe to free them. */
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002919 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002920 return 1;
2921}
2922
2923void drbd_go_diskless(struct drbd_conf *mdev)
2924{
2925 D_ASSERT(mdev->state.disk == D_FAILED);
2926 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01002927 drbd_queue_work(&mdev->tconn->data.work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002928}
2929
Philipp Reisnerb411b362009-09-25 16:07:19 -07002930/**
2931 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
2932 * @mdev: DRBD device.
2933 * @io_fn: IO callback to be called when bitmap IO is possible
2934 * @done: callback to be called after the bitmap IO was performed
2935 * @why: Descriptive text of the reason for doing the IO
2936 *
2937 * While IO on the bitmap happens we freeze application IO thus we ensure
2938 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
2939 * called from worker context. It MUST NOT be used while a previous such
2940 * work is still pending!
2941 */
2942void drbd_queue_bitmap_io(struct drbd_conf *mdev,
2943 int (*io_fn)(struct drbd_conf *),
2944 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002945 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002946{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002947 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002948
2949 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
2950 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
2951 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
2952 if (mdev->bm_io_work.why)
2953 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
2954 why, mdev->bm_io_work.why);
2955
2956 mdev->bm_io_work.io_fn = io_fn;
2957 mdev->bm_io_work.done = done;
2958 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002959 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002960
Philipp Reisner87eeee42011-01-19 14:16:30 +01002961 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002962 set_bit(BITMAP_IO, &mdev->flags);
2963 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01002964 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01002965 drbd_queue_work(&mdev->tconn->data.work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002966 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01002967 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002968}
2969
2970/**
2971 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
2972 * @mdev: DRBD device.
2973 * @io_fn: IO callback to be called when bitmap IO is possible
2974 * @why: Descriptive text of the reason for doing the IO
2975 *
2976 * freezes application IO while that the actual IO operations runs. This
2977 * functions MAY NOT be called from worker context.
2978 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002979int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
2980 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002981{
2982 int rv;
2983
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002984 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002985
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002986 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
2987 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002988
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002989 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002990 rv = io_fn(mdev);
2991 drbd_bm_unlock(mdev);
2992
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002993 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
2994 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002995
2996 return rv;
2997}
2998
2999void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3000{
3001 if ((mdev->ldev->md.flags & flag) != flag) {
3002 drbd_md_mark_dirty(mdev);
3003 mdev->ldev->md.flags |= flag;
3004 }
3005}
3006
3007void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3008{
3009 if ((mdev->ldev->md.flags & flag) != 0) {
3010 drbd_md_mark_dirty(mdev);
3011 mdev->ldev->md.flags &= ~flag;
3012 }
3013}
3014int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3015{
3016 return (bdev->md.flags & flag) != 0;
3017}
3018
3019static void md_sync_timer_fn(unsigned long data)
3020{
3021 struct drbd_conf *mdev = (struct drbd_conf *) data;
3022
Philipp Reisnere42325a2011-01-19 13:55:45 +01003023 drbd_queue_work_front(&mdev->tconn->data.work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003024}
3025
Philipp Reisner00d56942011-02-09 18:09:48 +01003026static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003027{
Philipp Reisner00d56942011-02-09 18:09:48 +01003028 struct drbd_conf *mdev = w->mdev;
3029
Philipp Reisnerb411b362009-09-25 16:07:19 -07003030 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003031#ifdef DEBUG
3032 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3033 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3034#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003035 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003036 return 1;
3037}
3038
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003039const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003040{
3041 /* THINK may need to become several global tables
3042 * when we want to support more than
3043 * one PRO_VERSION */
3044 static const char *cmdnames[] = {
3045 [P_DATA] = "Data",
3046 [P_DATA_REPLY] = "DataReply",
3047 [P_RS_DATA_REPLY] = "RSDataReply",
3048 [P_BARRIER] = "Barrier",
3049 [P_BITMAP] = "ReportBitMap",
3050 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3051 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3052 [P_UNPLUG_REMOTE] = "UnplugRemote",
3053 [P_DATA_REQUEST] = "DataRequest",
3054 [P_RS_DATA_REQUEST] = "RSDataRequest",
3055 [P_SYNC_PARAM] = "SyncParam",
3056 [P_SYNC_PARAM89] = "SyncParam89",
3057 [P_PROTOCOL] = "ReportProtocol",
3058 [P_UUIDS] = "ReportUUIDs",
3059 [P_SIZES] = "ReportSizes",
3060 [P_STATE] = "ReportState",
3061 [P_SYNC_UUID] = "ReportSyncUUID",
3062 [P_AUTH_CHALLENGE] = "AuthChallenge",
3063 [P_AUTH_RESPONSE] = "AuthResponse",
3064 [P_PING] = "Ping",
3065 [P_PING_ACK] = "PingAck",
3066 [P_RECV_ACK] = "RecvAck",
3067 [P_WRITE_ACK] = "WriteAck",
3068 [P_RS_WRITE_ACK] = "RSWriteAck",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003069 [P_DISCARD_WRITE] = "DiscardWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003070 [P_NEG_ACK] = "NegAck",
3071 [P_NEG_DREPLY] = "NegDReply",
3072 [P_NEG_RS_DREPLY] = "NegRSDReply",
3073 [P_BARRIER_ACK] = "BarrierAck",
3074 [P_STATE_CHG_REQ] = "StateChgRequest",
3075 [P_STATE_CHG_REPLY] = "StateChgReply",
3076 [P_OV_REQUEST] = "OVRequest",
3077 [P_OV_REPLY] = "OVReply",
3078 [P_OV_RESULT] = "OVResult",
3079 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3080 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3081 [P_COMPRESSED_BITMAP] = "CBitmap",
3082 [P_DELAY_PROBE] = "DelayProbe",
3083 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003084 [P_RETRY_WRITE] = "RetryWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003085 };
3086
3087 if (cmd == P_HAND_SHAKE_M)
3088 return "HandShakeM";
3089 if (cmd == P_HAND_SHAKE_S)
3090 return "HandShakeS";
3091 if (cmd == P_HAND_SHAKE)
3092 return "HandShake";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003093 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003094 return "Unknown";
3095 return cmdnames[cmd];
3096}
3097
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003098/**
3099 * drbd_wait_misc - wait for a request to make progress
3100 * @mdev: device associated with the request
3101 * @i: the struct drbd_interval embedded in struct drbd_request or
3102 * struct drbd_peer_request
3103 */
3104int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3105{
3106 struct net_conf *net_conf = mdev->tconn->net_conf;
3107 DEFINE_WAIT(wait);
3108 long timeout;
3109
3110 if (!net_conf)
3111 return -ETIMEDOUT;
3112 timeout = MAX_SCHEDULE_TIMEOUT;
3113 if (net_conf->ko_count)
3114 timeout = net_conf->timeout * HZ / 10 * net_conf->ko_count;
3115
3116 /* Indicate to wake up mdev->misc_wait on progress. */
3117 i->waiting = true;
3118 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3119 spin_unlock_irq(&mdev->tconn->req_lock);
3120 timeout = schedule_timeout(timeout);
3121 finish_wait(&mdev->misc_wait, &wait);
3122 spin_lock_irq(&mdev->tconn->req_lock);
3123 if (!timeout || mdev->state.conn < C_CONNECTED)
3124 return -ETIMEDOUT;
3125 if (signal_pending(current))
3126 return -ERESTARTSYS;
3127 return 0;
3128}
3129
Philipp Reisnerb411b362009-09-25 16:07:19 -07003130#ifdef CONFIG_DRBD_FAULT_INJECTION
3131/* Fault insertion support including random number generator shamelessly
3132 * stolen from kernel/rcutorture.c */
3133struct fault_random_state {
3134 unsigned long state;
3135 unsigned long count;
3136};
3137
3138#define FAULT_RANDOM_MULT 39916801 /* prime */
3139#define FAULT_RANDOM_ADD 479001701 /* prime */
3140#define FAULT_RANDOM_REFRESH 10000
3141
3142/*
3143 * Crude but fast random-number generator. Uses a linear congruential
3144 * generator, with occasional help from get_random_bytes().
3145 */
3146static unsigned long
3147_drbd_fault_random(struct fault_random_state *rsp)
3148{
3149 long refresh;
3150
Roel Kluin49829ea2009-12-15 22:55:44 +01003151 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003152 get_random_bytes(&refresh, sizeof(refresh));
3153 rsp->state += refresh;
3154 rsp->count = FAULT_RANDOM_REFRESH;
3155 }
3156 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3157 return swahw32(rsp->state);
3158}
3159
3160static char *
3161_drbd_fault_str(unsigned int type) {
3162 static char *_faults[] = {
3163 [DRBD_FAULT_MD_WR] = "Meta-data write",
3164 [DRBD_FAULT_MD_RD] = "Meta-data read",
3165 [DRBD_FAULT_RS_WR] = "Resync write",
3166 [DRBD_FAULT_RS_RD] = "Resync read",
3167 [DRBD_FAULT_DT_WR] = "Data write",
3168 [DRBD_FAULT_DT_RD] = "Data read",
3169 [DRBD_FAULT_DT_RA] = "Data read ahead",
3170 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003171 [DRBD_FAULT_AL_EE] = "EE allocation",
3172 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003173 };
3174
3175 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3176}
3177
3178unsigned int
3179_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3180{
3181 static struct fault_random_state rrs = {0, 0};
3182
3183 unsigned int ret = (
3184 (fault_devs == 0 ||
3185 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3186 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3187
3188 if (ret) {
3189 fault_count++;
3190
Lars Ellenberg73835062010-05-27 11:51:56 +02003191 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003192 dev_warn(DEV, "***Simulating %s failure\n",
3193 _drbd_fault_str(type));
3194 }
3195
3196 return ret;
3197}
3198#endif
3199
3200const char *drbd_buildtag(void)
3201{
3202 /* DRBD built from external sources has here a reference to the
3203 git hash of the source code. */
3204
3205 static char buildtag[38] = "\0uilt-in";
3206
3207 if (buildtag[0] == 0) {
3208#ifdef CONFIG_MODULES
3209 if (THIS_MODULE != NULL)
3210 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3211 else
3212#endif
3213 buildtag[0] = 'b';
3214 }
3215
3216 return buildtag;
3217}
3218
3219module_init(drbd_init)
3220module_exit(drbd_cleanup)
3221
Philipp Reisnerb411b362009-09-25 16:07:19 -07003222EXPORT_SYMBOL(drbd_conn_str);
3223EXPORT_SYMBOL(drbd_role_str);
3224EXPORT_SYMBOL(drbd_disk_str);
3225EXPORT_SYMBOL(drbd_set_st_err_str);