blob: e1234065954fdd0e4577424d094cde1bae765e21 [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);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +010067static int w_md_sync(struct drbd_work *w, int unused);
Philipp Reisnerb411b362009-09-25 16:07:19 -070068static void md_sync_timer_fn(unsigned long data);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +010069static int w_bitmap_io(struct drbd_work *w, int unused);
70static int w_go_diskless(struct drbd_work *w, int unused);
Philipp Reisnerb411b362009-09-25 16:07:19 -070071
Philipp Reisnerb411b362009-09-25 16:07:19 -070072MODULE_AUTHOR("Philipp Reisner <phil@linbit.com>, "
73 "Lars Ellenberg <lars@linbit.com>");
74MODULE_DESCRIPTION("drbd - Distributed Replicated Block Device v" REL_VERSION);
75MODULE_VERSION(REL_VERSION);
76MODULE_LICENSE("GPL");
Philipp Reisner81a5d602011-02-22 19:53:16 -050077MODULE_PARM_DESC(minor_count, "Approximate number of drbd devices ("
Philipp Reisner2b8a90b2011-01-10 11:15:17 +010078 __stringify(DRBD_MINOR_COUNT_MIN) "-" __stringify(DRBD_MINOR_COUNT_MAX) ")");
Philipp Reisnerb411b362009-09-25 16:07:19 -070079MODULE_ALIAS_BLOCKDEV_MAJOR(DRBD_MAJOR);
80
81#include <linux/moduleparam.h>
82/* allow_open_on_secondary */
83MODULE_PARM_DESC(allow_oos, "DONT USE!");
84/* thanks to these macros, if compiled into the kernel (not-module),
85 * this becomes the boot parameter drbd.minor_count */
86module_param(minor_count, uint, 0444);
87module_param(disable_sendpage, bool, 0644);
88module_param(allow_oos, bool, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -070089module_param(proc_details, int, 0644);
90
91#ifdef CONFIG_DRBD_FAULT_INJECTION
92int enable_faults;
93int fault_rate;
94static int fault_count;
95int fault_devs;
96/* bitmap of enabled faults */
97module_param(enable_faults, int, 0664);
98/* fault rate % value - applies to all enabled faults */
99module_param(fault_rate, int, 0664);
100/* count of faults inserted */
101module_param(fault_count, int, 0664);
102/* bitmap of devices to insert faults on */
103module_param(fault_devs, int, 0644);
104#endif
105
106/* module parameter, defined */
Philipp Reisner2b8a90b2011-01-10 11:15:17 +0100107unsigned int minor_count = DRBD_MINOR_COUNT_DEF;
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 */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700123
124struct kmem_cache *drbd_request_cache;
Andreas Gruenbacher6c852be2011-02-04 15:38:52 +0100125struct kmem_cache *drbd_ee_cache; /* peer requests */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700126struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */
127struct kmem_cache *drbd_al_ext_cache; /* activity log extents */
128mempool_t *drbd_request_mempool;
129mempool_t *drbd_ee_mempool;
Lars Ellenberg35abf592011-02-23 12:39:46 +0100130mempool_t *drbd_md_io_page_pool;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100131struct bio_set *drbd_md_io_bio_set;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700132
133/* I do not use a standard mempool, because:
134 1) I want to hand out the pre-allocated objects first.
135 2) I want to be able to interrupt sleeping allocation with a signal.
136 Note: This is a single linked list, the next pointer is the private
137 member of struct page.
138 */
139struct page *drbd_pp_pool;
140spinlock_t drbd_pp_lock;
141int drbd_pp_vacant;
142wait_queue_head_t drbd_pp_wait;
143
144DEFINE_RATELIMIT_STATE(drbd_ratelimit_state, 5 * HZ, 5);
145
Emese Revfy7d4e9d02009-12-14 00:59:30 +0100146static const struct block_device_operations drbd_ops = {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700147 .owner = THIS_MODULE,
148 .open = drbd_open,
149 .release = drbd_release,
150};
151
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100152static void bio_destructor_drbd(struct bio *bio)
153{
154 bio_free(bio, drbd_md_io_bio_set);
155}
156
157struct bio *bio_alloc_drbd(gfp_t gfp_mask)
158{
159 struct bio *bio;
160
161 if (!drbd_md_io_bio_set)
162 return bio_alloc(gfp_mask, 1);
163
164 bio = bio_alloc_bioset(gfp_mask, 1, drbd_md_io_bio_set);
165 if (!bio)
166 return NULL;
167 bio->bi_destructor = bio_destructor_drbd;
168 return bio;
169}
170
Philipp Reisnerb411b362009-09-25 16:07:19 -0700171#ifdef __CHECKER__
172/* When checking with sparse, and this is an inline function, sparse will
173 give tons of false positives. When this is a real functions sparse works.
174 */
175int _get_ldev_if_state(struct drbd_conf *mdev, enum drbd_disk_state mins)
176{
177 int io_allowed;
178
179 atomic_inc(&mdev->local_cnt);
180 io_allowed = (mdev->state.disk >= mins);
181 if (!io_allowed) {
182 if (atomic_dec_and_test(&mdev->local_cnt))
183 wake_up(&mdev->misc_wait);
184 }
185 return io_allowed;
186}
187
188#endif
189
190/**
191 * DOC: The transfer log
192 *
193 * The transfer log is a single linked list of &struct drbd_tl_epoch objects.
Philipp Reisner87eeee42011-01-19 14:16:30 +0100194 * mdev->tconn->newest_tle points to the head, mdev->tconn->oldest_tle points to the tail
Philipp Reisnerb411b362009-09-25 16:07:19 -0700195 * of the list. There is always at least one &struct drbd_tl_epoch object.
196 *
197 * Each &struct drbd_tl_epoch has a circular double linked list of requests
198 * attached.
199 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100200static int tl_init(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700201{
202 struct drbd_tl_epoch *b;
203
204 /* during device minor initialization, we may well use GFP_KERNEL */
205 b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_KERNEL);
206 if (!b)
207 return 0;
208 INIT_LIST_HEAD(&b->requests);
209 INIT_LIST_HEAD(&b->w.list);
210 b->next = NULL;
211 b->br_number = 4711;
Philipp Reisner7e602c02010-05-27 14:49:27 +0200212 b->n_writes = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700213 b->w.cb = NULL; /* if this is != NULL, we need to dec_ap_pending in tl_clear */
214
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100215 tconn->oldest_tle = b;
216 tconn->newest_tle = b;
217 INIT_LIST_HEAD(&tconn->out_of_sequence_requests);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200218 INIT_LIST_HEAD(&tconn->barrier_acked_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 */
Philipp Reisnercdfda632011-07-05 15:38:59 +0200319 list_splice_init(&b->requests, &tconn->barrier_acked_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;
Philipp Reisner6936fcb2011-11-10 18:45:36 +0100323 if (test_and_clear_bit(CREATE_BARRIER, &tconn->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
Andreas Gruenbacherf4976092011-07-17 23:06:12 +0200371 if (rv & MR_WRITE)
372 n_writes++;
373 if (rv & MR_READ)
374 n_reads++;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200375 }
376 tmp = b->next;
377
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200378 if (n_writes) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100379 if (what == RESEND) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200380 b->n_writes = n_writes;
381 if (b->w.cb == NULL) {
382 b->w.cb = w_send_barrier;
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100383 inc_ap_pending(b->w.mdev);
Philipp Reisner6936fcb2011-11-10 18:45:36 +0100384 set_bit(CREATE_BARRIER, &tconn->flags);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200385 }
386
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100387 drbd_queue_work(&tconn->data.work, &b->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200388 }
389 pn = &b->next;
390 } else {
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200391 if (n_reads)
392 list_add(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200393 /* there could still be requests on that ring list,
394 * in case local io is still pending */
395 list_del(&b->requests);
396
397 /* dec_ap_pending corresponding to queue_barrier.
398 * the newest barrier may not have been queued yet,
399 * in which case w.cb is still NULL. */
400 if (b->w.cb != NULL)
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100401 dec_ap_pending(b->w.mdev);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200402
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100403 if (b == tconn->newest_tle) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200404 /* recycle, but reinit! */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100405 if (tmp != NULL)
406 conn_err(tconn, "ASSERT FAILED tmp == NULL");
Philipp Reisner11b58e72010-05-12 17:08:26 +0200407 INIT_LIST_HEAD(&b->requests);
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200408 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200409 INIT_LIST_HEAD(&b->w.list);
410 b->w.cb = NULL;
411 b->br_number = net_random();
412 b->n_writes = 0;
413
414 *pn = b;
415 break;
416 }
417 *pn = tmp;
418 kfree(b);
419 }
420 b = tmp;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200421 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200422 }
Philipp Reisner11b58e72010-05-12 17:08:26 +0200423
Philipp Reisnercdfda632011-07-05 15:38:59 +0200424 /* Actions operating on the disk state, also want to work on
425 requests that got barrier acked. */
426 switch (what) {
427 case FAIL_FROZEN_DISK_IO:
428 case RESTART_FROZEN_DISK_IO:
429 list_for_each_safe(le, tle, &tconn->barrier_acked_requests) {
430 req = list_entry(le, struct drbd_request, tl_requests);
431 _req_mod(req, what);
432 }
433 case CONNECTION_LOST_WHILE_PENDING:
434 case RESEND:
435 break;
436 default:
437 conn_err(tconn, "what = %d in _tl_restart()\n", what);
438 }
439}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700440
441/**
442 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
443 * @mdev: DRBD device.
444 *
445 * This is called after the connection to the peer was lost. The storage covered
446 * by the requests on the transfer gets marked as our of sync. Called from the
447 * receiver thread and the worker thread.
448 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100449void tl_clear(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700450{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700451 struct list_head *le, *tle;
452 struct drbd_request *r;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700453
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100454 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700455
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100456 _tl_restart(tconn, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700457
458 /* we expect this list to be empty. */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100459 if (!list_empty(&tconn->out_of_sequence_requests))
460 conn_err(tconn, "ASSERT FAILED list_empty(&out_of_sequence_requests)\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700461
462 /* but just in case, clean it up anyways! */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100463 list_for_each_safe(le, tle, &tconn->out_of_sequence_requests) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700464 r = list_entry(le, struct drbd_request, tl_requests);
465 /* It would be nice to complete outside of spinlock.
466 * But this is easier for now. */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100467 _req_mod(r, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700468 }
469
470 /* ensure bit indicating barrier is required is clear */
Philipp Reisner6936fcb2011-11-10 18:45:36 +0100471 clear_bit(CREATE_BARRIER, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700472
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100473 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700474}
475
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100476void tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200477{
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100478 spin_lock_irq(&tconn->req_lock);
479 _tl_restart(tconn, what);
480 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700481}
482
Philipp Reisnercdfda632011-07-05 15:38:59 +0200483/**
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200484 * tl_abort_disk_io() - Abort disk I/O for all requests for a certain mdev in the TL
Philipp Reisnercdfda632011-07-05 15:38:59 +0200485 * @mdev: DRBD device.
Philipp Reisnercdfda632011-07-05 15:38:59 +0200486 */
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200487void tl_abort_disk_io(struct drbd_conf *mdev)
Philipp Reisnercdfda632011-07-05 15:38:59 +0200488{
489 struct drbd_tconn *tconn = mdev->tconn;
490 struct drbd_tl_epoch *b;
491 struct list_head *le, *tle;
492 struct drbd_request *req;
493
Philipp Reisnercdfda632011-07-05 15:38:59 +0200494 spin_lock_irq(&tconn->req_lock);
495 b = tconn->oldest_tle;
496 while (b) {
497 list_for_each_safe(le, tle, &b->requests) {
498 req = list_entry(le, struct drbd_request, tl_requests);
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200499 if (!(req->rq_state & RQ_LOCAL_PENDING))
500 continue;
Philipp Reisnercdfda632011-07-05 15:38:59 +0200501 if (req->w.mdev == mdev)
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200502 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200503 }
504 b = b->next;
505 }
506
507 list_for_each_safe(le, tle, &tconn->barrier_acked_requests) {
508 req = list_entry(le, struct drbd_request, tl_requests);
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200509 if (!(req->rq_state & RQ_LOCAL_PENDING))
510 continue;
Philipp Reisnercdfda632011-07-05 15:38:59 +0200511 if (req->w.mdev == mdev)
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200512 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200513 }
514
515 spin_unlock_irq(&tconn->req_lock);
516}
517
Philipp Reisnerb411b362009-09-25 16:07:19 -0700518static int drbd_thread_setup(void *arg)
519{
520 struct drbd_thread *thi = (struct drbd_thread *) arg;
Philipp Reisner392c8802011-02-09 10:33:31 +0100521 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700522 unsigned long flags;
523 int retval;
524
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100525 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
Philipp Reisner392c8802011-02-09 10:33:31 +0100526 thi->name[0], thi->tconn->name);
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100527
Philipp Reisnerb411b362009-09-25 16:07:19 -0700528restart:
529 retval = thi->function(thi);
530
531 spin_lock_irqsave(&thi->t_lock, flags);
532
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100533 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700534 * was set the conn state to "StandAlone",
535 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
536 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100537 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700538 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100539 * so either thread_start sees EXITING, and can remap to RESTARTING,
540 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700541 */
542
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100543 if (thi->t_state == RESTARTING) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100544 conn_info(tconn, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100545 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700546 spin_unlock_irqrestore(&thi->t_lock, flags);
547 goto restart;
548 }
549
550 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100551 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700552 smp_mb();
Lars Ellenberg992d6e92011-05-02 11:47:18 +0200553 complete_all(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700554 spin_unlock_irqrestore(&thi->t_lock, flags);
555
Philipp Reisner392c8802011-02-09 10:33:31 +0100556 conn_info(tconn, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700557
558 /* Release mod reference taken when thread was started */
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200559
560 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700561 module_put(THIS_MODULE);
562 return retval;
563}
564
Philipp Reisner392c8802011-02-09 10:33:31 +0100565static void drbd_thread_init(struct drbd_tconn *tconn, struct drbd_thread *thi,
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100566 int (*func) (struct drbd_thread *), char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700567{
568 spin_lock_init(&thi->t_lock);
569 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100570 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700571 thi->function = func;
Philipp Reisner392c8802011-02-09 10:33:31 +0100572 thi->tconn = tconn;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100573 strncpy(thi->name, name, ARRAY_SIZE(thi->name));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700574}
575
576int drbd_thread_start(struct drbd_thread *thi)
577{
Philipp Reisner392c8802011-02-09 10:33:31 +0100578 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700579 struct task_struct *nt;
580 unsigned long flags;
581
Philipp Reisnerb411b362009-09-25 16:07:19 -0700582 /* is used from state engine doing drbd_thread_stop_nowait,
583 * while holding the req lock irqsave */
584 spin_lock_irqsave(&thi->t_lock, flags);
585
586 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100587 case NONE:
Philipp Reisner392c8802011-02-09 10:33:31 +0100588 conn_info(tconn, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100589 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700590
591 /* Get ref on module for thread - this is released when thread exits */
592 if (!try_module_get(THIS_MODULE)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100593 conn_err(tconn, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700594 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100595 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700596 }
597
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200598 kref_get(&thi->tconn->kref);
599
Philipp Reisnerb411b362009-09-25 16:07:19 -0700600 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700601 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100602 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700603 spin_unlock_irqrestore(&thi->t_lock, flags);
604 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
605
606 nt = kthread_create(drbd_thread_setup, (void *) thi,
Philipp Reisner392c8802011-02-09 10:33:31 +0100607 "drbd_%c_%s", thi->name[0], thi->tconn->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700608
609 if (IS_ERR(nt)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100610 conn_err(tconn, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700611
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200612 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700613 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100614 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700615 }
616 spin_lock_irqsave(&thi->t_lock, flags);
617 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100618 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700619 spin_unlock_irqrestore(&thi->t_lock, flags);
620 wake_up_process(nt);
621 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100622 case EXITING:
623 thi->t_state = RESTARTING;
Philipp Reisner392c8802011-02-09 10:33:31 +0100624 conn_info(tconn, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100625 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700626 /* fall through */
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100627 case RUNNING:
628 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700629 default:
630 spin_unlock_irqrestore(&thi->t_lock, flags);
631 break;
632 }
633
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100634 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700635}
636
637
638void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
639{
640 unsigned long flags;
641
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100642 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700643
644 /* may be called from state engine, holding the req lock irqsave */
645 spin_lock_irqsave(&thi->t_lock, flags);
646
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100647 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700648 spin_unlock_irqrestore(&thi->t_lock, flags);
649 if (restart)
650 drbd_thread_start(thi);
651 return;
652 }
653
654 if (thi->t_state != ns) {
655 if (thi->task == NULL) {
656 spin_unlock_irqrestore(&thi->t_lock, flags);
657 return;
658 }
659
660 thi->t_state = ns;
661 smp_mb();
662 init_completion(&thi->stop);
663 if (thi->task != current)
664 force_sig(DRBD_SIGKILL, thi->task);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700665 }
666
667 spin_unlock_irqrestore(&thi->t_lock, flags);
668
669 if (wait)
670 wait_for_completion(&thi->stop);
671}
672
Philipp Reisner392c8802011-02-09 10:33:31 +0100673static struct drbd_thread *drbd_task_to_thread(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100674{
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100675 struct drbd_thread *thi =
676 task == tconn->receiver.task ? &tconn->receiver :
677 task == tconn->asender.task ? &tconn->asender :
678 task == tconn->worker.task ? &tconn->worker : NULL;
679
680 return thi;
681}
682
Philipp Reisner392c8802011-02-09 10:33:31 +0100683char *drbd_task_to_thread_name(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100684{
Philipp Reisner392c8802011-02-09 10:33:31 +0100685 struct drbd_thread *thi = drbd_task_to_thread(tconn, task);
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100686 return thi ? thi->name : task->comm;
687}
688
Philipp Reisner80883192011-02-18 14:56:45 +0100689int conn_lowest_minor(struct drbd_tconn *tconn)
Philipp Reisner80822282011-02-08 12:46:30 +0100690{
Philipp Reisnere90285e2011-03-22 12:51:21 +0100691 struct drbd_conf *mdev;
Philipp Reisner695d08f2011-04-11 22:53:32 -0700692 int vnr = 0, m;
Philipp Reisner774b3052011-02-22 02:07:03 -0500693
Philipp Reisner695d08f2011-04-11 22:53:32 -0700694 rcu_read_lock();
Philipp Reisnere90285e2011-03-22 12:51:21 +0100695 mdev = idr_get_next(&tconn->volumes, &vnr);
Philipp Reisner695d08f2011-04-11 22:53:32 -0700696 m = mdev ? mdev_to_minor(mdev) : -1;
697 rcu_read_unlock();
698
699 return m;
Philipp Reisner80822282011-02-08 12:46:30 +0100700}
Philipp Reisner774b3052011-02-22 02:07:03 -0500701
702#ifdef CONFIG_SMP
Philipp Reisnerb411b362009-09-25 16:07:19 -0700703/**
704 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
705 * @mdev: DRBD device.
706 *
707 * Forces all threads of a device onto the same CPU. This is beneficial for
708 * DRBD's performance. May be overwritten by user's configuration.
709 */
Philipp Reisner80822282011-02-08 12:46:30 +0100710void drbd_calc_cpu_mask(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700711{
712 int ord, cpu;
713
714 /* user override. */
Philipp Reisner80822282011-02-08 12:46:30 +0100715 if (cpumask_weight(tconn->cpu_mask))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700716 return;
717
Philipp Reisner80822282011-02-08 12:46:30 +0100718 ord = conn_lowest_minor(tconn) % cpumask_weight(cpu_online_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700719 for_each_online_cpu(cpu) {
720 if (ord-- == 0) {
Philipp Reisner80822282011-02-08 12:46:30 +0100721 cpumask_set_cpu(cpu, tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700722 return;
723 }
724 }
725 /* should not be reached */
Philipp Reisner80822282011-02-08 12:46:30 +0100726 cpumask_setall(tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700727}
728
729/**
730 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
731 * @mdev: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100732 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700733 *
734 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
735 * prematurely.
736 */
Philipp Reisner80822282011-02-08 12:46:30 +0100737void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700738{
739 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100740
Philipp Reisnerb411b362009-09-25 16:07:19 -0700741 if (!thi->reset_cpu_mask)
742 return;
743 thi->reset_cpu_mask = 0;
Philipp Reisner392c8802011-02-09 10:33:31 +0100744 set_cpus_allowed_ptr(p, thi->tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700745}
746#endif
747
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200748/**
749 * drbd_header_size - size of a packet header
750 *
751 * The header size is a multiple of 8, so any payload following the header is
752 * word aligned on 64-bit architectures. (The bitmap send and receive code
753 * relies on this.)
754 */
755unsigned int drbd_header_size(struct drbd_tconn *tconn)
756{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200757 if (tconn->agreed_pro_version >= 100) {
758 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
759 return sizeof(struct p_header100);
760 } else {
761 BUILD_BUG_ON(sizeof(struct p_header80) !=
762 sizeof(struct p_header95));
763 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
764 return sizeof(struct p_header80);
765 }
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200766}
767
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200768static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100769{
770 h->magic = cpu_to_be32(DRBD_MAGIC);
771 h->command = cpu_to_be16(cmd);
772 h->length = cpu_to_be16(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200773 return sizeof(struct p_header80);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100774}
775
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200776static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100777{
778 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
779 h->command = cpu_to_be16(cmd);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +0100780 h->length = cpu_to_be32(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200781 return sizeof(struct p_header95);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100782}
783
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200784static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
785 int size, int vnr)
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100786{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200787 h->magic = cpu_to_be32(DRBD_MAGIC_100);
788 h->volume = cpu_to_be16(vnr);
789 h->command = cpu_to_be16(cmd);
790 h->length = cpu_to_be32(size);
791 h->pad = 0;
792 return sizeof(struct p_header100);
793}
794
795static unsigned int prepare_header(struct drbd_tconn *tconn, int vnr,
796 void *buffer, enum drbd_packet cmd, int size)
797{
798 if (tconn->agreed_pro_version >= 100)
799 return prepare_header100(buffer, cmd, size, vnr);
800 else if (tconn->agreed_pro_version >= 95 &&
801 size > DRBD_MAX_SIZE_H80_PACKET)
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200802 return prepare_header95(buffer, cmd, size);
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100803 else
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200804 return prepare_header80(buffer, cmd, size);
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100805}
806
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200807static void *__conn_prepare_command(struct drbd_tconn *tconn,
808 struct drbd_socket *sock)
809{
810 if (!sock->socket)
811 return NULL;
812 return sock->sbuf + drbd_header_size(tconn);
813}
814
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200815void *conn_prepare_command(struct drbd_tconn *tconn, struct drbd_socket *sock)
816{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200817 void *p;
818
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200819 mutex_lock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200820 p = __conn_prepare_command(tconn, sock);
821 if (!p)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200822 mutex_unlock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200823
824 return p;
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200825}
826
827void *drbd_prepare_command(struct drbd_conf *mdev, struct drbd_socket *sock)
828{
829 return conn_prepare_command(mdev->tconn, sock);
830}
831
832static int __send_command(struct drbd_tconn *tconn, int vnr,
833 struct drbd_socket *sock, enum drbd_packet cmd,
834 unsigned int header_size, void *data,
835 unsigned int size)
836{
837 int msg_flags;
838 int err;
839
840 /*
841 * Called with @data == NULL and the size of the data blocks in @size
842 * for commands that send data blocks. For those commands, omit the
843 * MSG_MORE flag: this will increase the likelihood that data blocks
844 * which are page aligned on the sender will end up page aligned on the
845 * receiver.
846 */
847 msg_flags = data ? MSG_MORE : 0;
848
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200849 header_size += prepare_header(tconn, vnr, sock->sbuf, cmd,
850 header_size + size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200851 err = drbd_send_all(tconn, sock->socket, sock->sbuf, header_size,
852 msg_flags);
853 if (data && !err)
854 err = drbd_send_all(tconn, sock->socket, data, size, 0);
855 return err;
856}
857
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200858static int __conn_send_command(struct drbd_tconn *tconn, struct drbd_socket *sock,
859 enum drbd_packet cmd, unsigned int header_size,
860 void *data, unsigned int size)
861{
862 return __send_command(tconn, 0, sock, cmd, header_size, data, size);
863}
864
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200865int conn_send_command(struct drbd_tconn *tconn, struct drbd_socket *sock,
866 enum drbd_packet cmd, unsigned int header_size,
867 void *data, unsigned int size)
868{
869 int err;
870
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200871 err = __conn_send_command(tconn, sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200872 mutex_unlock(&sock->mutex);
873 return err;
874}
875
876int drbd_send_command(struct drbd_conf *mdev, struct drbd_socket *sock,
877 enum drbd_packet cmd, unsigned int header_size,
878 void *data, unsigned int size)
879{
880 int err;
881
882 err = __send_command(mdev->tconn, mdev->vnr, sock, cmd, header_size,
883 data, size);
884 mutex_unlock(&sock->mutex);
885 return err;
886}
887
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100888int drbd_send_ping(struct drbd_tconn *tconn)
889{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200890 struct drbd_socket *sock;
891
892 sock = &tconn->meta;
893 if (!conn_prepare_command(tconn, sock))
894 return -EIO;
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200895 return conn_send_command(tconn, sock, P_PING, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100896}
897
898int drbd_send_ping_ack(struct drbd_tconn *tconn)
899{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200900 struct drbd_socket *sock;
901
902 sock = &tconn->meta;
903 if (!conn_prepare_command(tconn, sock))
904 return -EIO;
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200905 return conn_send_command(tconn, sock, P_PING_ACK, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100906}
907
Lars Ellenbergf3990022011-03-23 14:31:09 +0100908int drbd_send_sync_param(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700909{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100910 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200911 struct p_rs_param_95 *p;
912 int size;
Philipp Reisner31890f42011-01-19 14:12:51 +0100913 const int apv = mdev->tconn->agreed_pro_version;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200914 enum drbd_packet cmd;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200915 struct net_conf *nc;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200916 struct disk_conf *dc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200917
918 sock = &mdev->tconn->data;
919 p = drbd_prepare_command(mdev, sock);
920 if (!p)
921 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700922
Philipp Reisner44ed1672011-04-19 17:10:19 +0200923 rcu_read_lock();
924 nc = rcu_dereference(mdev->tconn->net_conf);
925
Philipp Reisnerb411b362009-09-25 16:07:19 -0700926 size = apv <= 87 ? sizeof(struct p_rs_param)
927 : apv == 88 ? sizeof(struct p_rs_param)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200928 + strlen(nc->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200929 : apv <= 94 ? sizeof(struct p_rs_param_89)
930 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700931
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200932 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700933
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200934 /* initialize verify_alg and csums_alg */
935 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700936
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200937 if (get_ldev(mdev)) {
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200938 dc = rcu_dereference(mdev->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200939 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200940 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
941 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
942 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
943 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200944 put_ldev(mdev);
945 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200946 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200947 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
948 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
949 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
950 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
951 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700952
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200953 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200954 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200955 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200956 strcpy(p->csums_alg, nc->csums_alg);
957 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700958
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200959 return drbd_send_command(mdev, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700960}
961
Philipp Reisnerd659f2a2011-05-16 17:38:45 +0200962int __drbd_send_protocol(struct drbd_tconn *tconn, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700963{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200964 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700965 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200966 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200967 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700968
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200969 sock = &tconn->data;
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200970 p = __conn_prepare_command(tconn, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200971 if (!p)
972 return -EIO;
973
Philipp Reisner44ed1672011-04-19 17:10:19 +0200974 rcu_read_lock();
975 nc = rcu_dereference(tconn->net_conf);
976
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200977 if (nc->tentative && tconn->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200978 rcu_read_unlock();
979 mutex_unlock(&sock->mutex);
980 conn_err(tconn, "--dry-run is not supported by peer");
981 return -EOPNOTSUPP;
982 }
983
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200984 size = sizeof(*p);
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100985 if (tconn->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200986 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700987
Philipp Reisner44ed1672011-04-19 17:10:19 +0200988 p->protocol = cpu_to_be32(nc->wire_protocol);
989 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
990 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
991 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
992 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100993 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200994 if (nc->discard_my_data)
995 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200996 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200997 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100998 p->conn_flags = cpu_to_be32(cf);
999
Philipp Reisnerdc8228d2011-02-08 10:13:15 +01001000 if (tconn->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +02001001 strcpy(p->integrity_alg, nc->integrity_alg);
1002 rcu_read_unlock();
1003
Philipp Reisnerd659f2a2011-05-16 17:38:45 +02001004 return __conn_send_command(tconn, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +02001005}
1006
1007int drbd_send_protocol(struct drbd_tconn *tconn)
1008{
1009 int err;
1010
1011 mutex_lock(&tconn->data.mutex);
Philipp Reisnerd659f2a2011-05-16 17:38:45 +02001012 err = __drbd_send_protocol(tconn, P_PROTOCOL);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +02001013 mutex_unlock(&tconn->data.mutex);
1014
1015 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001016}
1017
1018int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
1019{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001020 struct drbd_socket *sock;
1021 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001022 int i;
1023
1024 if (!get_ldev_if_state(mdev, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +01001025 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001026
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001027 sock = &mdev->tconn->data;
1028 p = drbd_prepare_command(mdev, sock);
1029 if (!p) {
1030 put_ldev(mdev);
1031 return -EIO;
1032 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001033 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001034 p->uuid[i] = mdev->ldev ? cpu_to_be64(mdev->ldev->md.uuid[i]) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001035
1036 mdev->comm_bm_set = drbd_bm_total_weight(mdev);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001037 p->uuid[UI_SIZE] = cpu_to_be64(mdev->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +02001038 rcu_read_lock();
Andreas Gruenbacher6139f602011-05-06 20:00:02 +02001039 uuid_flags |= rcu_dereference(mdev->tconn->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001040 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001041 uuid_flags |= test_bit(CRASHED_PRIMARY, &mdev->flags) ? 2 : 0;
1042 uuid_flags |= mdev->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001043 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001044
1045 put_ldev(mdev);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001046 return drbd_send_command(mdev, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001047}
1048
1049int drbd_send_uuids(struct drbd_conf *mdev)
1050{
1051 return _drbd_send_uuids(mdev, 0);
1052}
1053
1054int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev)
1055{
1056 return _drbd_send_uuids(mdev, 8);
1057}
1058
Lars Ellenberg62b0da32011-01-20 13:25:21 +01001059void drbd_print_uuids(struct drbd_conf *mdev, const char *text)
1060{
1061 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
1062 u64 *uuid = mdev->ldev->md.uuid;
1063 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX\n",
1064 text,
1065 (unsigned long long)uuid[UI_CURRENT],
1066 (unsigned long long)uuid[UI_BITMAP],
1067 (unsigned long long)uuid[UI_HISTORY_START],
1068 (unsigned long long)uuid[UI_HISTORY_END]);
1069 put_ldev(mdev);
1070 } else {
1071 dev_info(DEV, "%s effective data uuid: %016llX\n",
1072 text,
1073 (unsigned long long)mdev->ed_uuid);
1074 }
1075}
1076
Andreas Gruenbacher9c1b7f72011-03-16 01:09:01 +01001077void drbd_gen_and_send_sync_uuid(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001078{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001079 struct drbd_socket *sock;
1080 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001081 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001082
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001083 D_ASSERT(mdev->state.disk == D_UP_TO_DATE);
1084
Philipp Reisner0cfac5d2011-11-10 12:12:52 +01001085 uuid = mdev->ldev->md.uuid[UI_BITMAP];
1086 if (uuid && uuid != UUID_JUST_CREATED)
1087 uuid = uuid + UUID_NEW_BM_OFFSET;
1088 else
1089 get_random_bytes(&uuid, sizeof(u64));
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001090 drbd_uuid_set(mdev, UI_BITMAP, uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01001091 drbd_print_uuids(mdev, "updated sync UUID");
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001092 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001093
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001094 sock = &mdev->tconn->data;
1095 p = drbd_prepare_command(mdev, sock);
1096 if (p) {
1097 p->uuid = cpu_to_be64(uuid);
1098 drbd_send_command(mdev, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
1099 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001100}
1101
Philipp Reisnere89b5912010-03-24 17:11:33 +01001102int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001103{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001104 struct drbd_socket *sock;
1105 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001106 sector_t d_size, u_size;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001107 int q_order_type, max_bio_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001108
1109 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
1110 D_ASSERT(mdev->ldev->backing_bdev);
1111 d_size = drbd_get_max_capacity(mdev->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001112 rcu_read_lock();
1113 u_size = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
1114 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001115 q_order_type = drbd_queue_order_type(mdev);
Philipp Reisner99432fc2011-05-20 16:39:13 +02001116 max_bio_size = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
1117 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001118 put_ldev(mdev);
1119 } else {
1120 d_size = 0;
1121 u_size = 0;
1122 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001123 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001124 }
1125
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001126 sock = &mdev->tconn->data;
1127 p = drbd_prepare_command(mdev, sock);
1128 if (!p)
1129 return -EIO;
Philipp Reisner2ffca4f2011-06-30 15:43:06 +02001130
1131 if (mdev->tconn->agreed_pro_version <= 94)
1132 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
1133 else if (mdev->tconn->agreed_pro_version < 100)
1134 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE_P95);
1135
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001136 p->d_size = cpu_to_be64(d_size);
1137 p->u_size = cpu_to_be64(u_size);
1138 p->c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(mdev->this_bdev));
1139 p->max_bio_size = cpu_to_be32(max_bio_size);
1140 p->queue_order_type = cpu_to_be16(q_order_type);
1141 p->dds_flags = cpu_to_be16(flags);
1142 return drbd_send_command(mdev, sock, P_SIZES, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001143}
1144
1145/**
Philipp Reisner43de7c82011-11-10 13:16:13 +01001146 * drbd_send_current_state() - Sends the drbd state to the peer
Philipp Reisnerb411b362009-09-25 16:07:19 -07001147 * @mdev: DRBD device.
1148 */
Philipp Reisner43de7c82011-11-10 13:16:13 +01001149int drbd_send_current_state(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001150{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +01001151 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001152 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001153
Andreas Gruenbacher7c967152011-03-22 00:49:36 +01001154 sock = &mdev->tconn->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001155 p = drbd_prepare_command(mdev, sock);
1156 if (!p)
1157 return -EIO;
1158 p->state = cpu_to_be32(mdev->state.i); /* Within the send mutex */
1159 return drbd_send_command(mdev, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001160}
1161
Philipp Reisner43de7c82011-11-10 13:16:13 +01001162/**
1163 * drbd_send_state() - After a state change, sends the new state to the peer
1164 * @mdev: DRBD device.
1165 * @state: the state to send, not necessarily the current state.
1166 *
1167 * Each state change queues an "after_state_ch" work, which will eventually
1168 * send the resulting new state to the peer. If more state changes happen
1169 * between queuing and processing of the after_state_ch work, we still
1170 * want to send each intermediary state in the order it occurred.
1171 */
1172int drbd_send_state(struct drbd_conf *mdev, union drbd_state state)
1173{
1174 struct drbd_socket *sock;
1175 struct p_state *p;
1176
1177 sock = &mdev->tconn->data;
1178 p = drbd_prepare_command(mdev, sock);
1179 if (!p)
1180 return -EIO;
1181 p->state = cpu_to_be32(state.i); /* Within the send mutex */
1182 return drbd_send_command(mdev, sock, P_STATE, sizeof(*p), NULL, 0);
1183}
1184
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001185int drbd_send_state_req(struct drbd_conf *mdev, union drbd_state mask, union drbd_state val)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001186{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001187 struct drbd_socket *sock;
1188 struct p_req_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001189
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001190 sock = &mdev->tconn->data;
1191 p = drbd_prepare_command(mdev, sock);
1192 if (!p)
1193 return -EIO;
1194 p->mask = cpu_to_be32(mask.i);
1195 p->val = cpu_to_be32(val.i);
1196 return drbd_send_command(mdev, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001197}
1198
1199int conn_send_state_req(struct drbd_tconn *tconn, union drbd_state mask, union drbd_state val)
1200{
1201 enum drbd_packet cmd;
1202 struct drbd_socket *sock;
1203 struct p_req_state *p;
1204
1205 cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1206 sock = &tconn->data;
1207 p = conn_prepare_command(tconn, sock);
1208 if (!p)
1209 return -EIO;
1210 p->mask = cpu_to_be32(mask.i);
1211 p->val = cpu_to_be32(val.i);
1212 return conn_send_command(tconn, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001213}
1214
Andreas Gruenbacher2f4e7ab2011-03-16 01:20:38 +01001215void drbd_send_sr_reply(struct drbd_conf *mdev, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001216{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001217 struct drbd_socket *sock;
1218 struct p_req_state_reply *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001219
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001220 sock = &mdev->tconn->meta;
1221 p = drbd_prepare_command(mdev, sock);
1222 if (p) {
1223 p->retcode = cpu_to_be32(retcode);
1224 drbd_send_command(mdev, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
1225 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001226}
1227
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001228void conn_send_sr_reply(struct drbd_tconn *tconn, enum drbd_state_rv retcode)
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001229{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001230 struct drbd_socket *sock;
1231 struct p_req_state_reply *p;
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001232 enum drbd_packet cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
1233
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001234 sock = &tconn->meta;
1235 p = conn_prepare_command(tconn, sock);
1236 if (p) {
1237 p->retcode = cpu_to_be32(retcode);
1238 conn_send_command(tconn, sock, cmd, sizeof(*p), NULL, 0);
1239 }
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001240}
1241
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001242static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
1243{
1244 BUG_ON(code & ~0xf);
1245 p->encoding = (p->encoding & ~0xf) | code;
1246}
1247
1248static void dcbp_set_start(struct p_compressed_bm *p, int set)
1249{
1250 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1251}
1252
1253static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1254{
1255 BUG_ON(n & ~0x7);
1256 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
1257}
1258
Philipp Reisnerb411b362009-09-25 16:07:19 -07001259int fill_bitmap_rle_bits(struct drbd_conf *mdev,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001260 struct p_compressed_bm *p,
1261 unsigned int size,
1262 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001263{
1264 struct bitstream bs;
1265 unsigned long plain_bits;
1266 unsigned long tmp;
1267 unsigned long rl;
1268 unsigned len;
1269 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001270 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001271
1272 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001273 rcu_read_lock();
1274 use_rle = rcu_dereference(mdev->tconn->net_conf)->use_rle;
1275 rcu_read_unlock();
1276 if (!use_rle || mdev->tconn->agreed_pro_version < 90)
1277 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001278
1279 if (c->bit_offset >= c->bm_bits)
1280 return 0; /* nothing to do. */
1281
1282 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001283 bitstream_init(&bs, p->code, size, 0);
1284 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001285 /* plain bits covered in this code string */
1286 plain_bits = 0;
1287
1288 /* p->encoding & 0x80 stores whether the first run length is set.
1289 * bit offset is implicit.
1290 * start with toggle == 2 to be able to tell the first iteration */
1291 toggle = 2;
1292
1293 /* see how much plain bits we can stuff into one packet
1294 * using RLE and VLI. */
1295 do {
1296 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(mdev, c->bit_offset)
1297 : _drbd_bm_find_next(mdev, c->bit_offset);
1298 if (tmp == -1UL)
1299 tmp = c->bm_bits;
1300 rl = tmp - c->bit_offset;
1301
1302 if (toggle == 2) { /* first iteration */
1303 if (rl == 0) {
1304 /* the first checked bit was set,
1305 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001306 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001307 /* but skip encoding of zero run length */
1308 toggle = !toggle;
1309 continue;
1310 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001311 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001312 }
1313
1314 /* paranoia: catch zero runlength.
1315 * can only happen if bitmap is modified while we scan it. */
1316 if (rl == 0) {
1317 dev_err(DEV, "unexpected zero runlength while encoding bitmap "
1318 "t:%u bo:%lu\n", toggle, c->bit_offset);
1319 return -1;
1320 }
1321
1322 bits = vli_encode_bits(&bs, rl);
1323 if (bits == -ENOBUFS) /* buffer full */
1324 break;
1325 if (bits <= 0) {
1326 dev_err(DEV, "error while encoding bitmap: %d\n", bits);
1327 return 0;
1328 }
1329
1330 toggle = !toggle;
1331 plain_bits += rl;
1332 c->bit_offset = tmp;
1333 } while (c->bit_offset < c->bm_bits);
1334
1335 len = bs.cur.b - p->code + !!bs.cur.bit;
1336
1337 if (plain_bits < (len << 3)) {
1338 /* incompressible with this method.
1339 * we need to rewind both word and bit position. */
1340 c->bit_offset -= plain_bits;
1341 bm_xfer_ctx_bit_to_word_offset(c);
1342 c->bit_offset = c->word_offset * BITS_PER_LONG;
1343 return 0;
1344 }
1345
1346 /* RLE + VLI was able to compress it just fine.
1347 * update c->word_offset. */
1348 bm_xfer_ctx_bit_to_word_offset(c);
1349
1350 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001351 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001352
1353 return len;
1354}
1355
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001356/**
1357 * send_bitmap_rle_or_plain
1358 *
1359 * Return 0 when done, 1 when another iteration is needed, and a negative error
1360 * code upon failure.
1361 */
1362static int
Andreas Gruenbacher79ed9bd2011-03-24 21:31:38 +01001363send_bitmap_rle_or_plain(struct drbd_conf *mdev, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001364{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001365 struct drbd_socket *sock = &mdev->tconn->data;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001366 unsigned int header_size = drbd_header_size(mdev->tconn);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001367 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001368 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001369
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001370 len = fill_bitmap_rle_bits(mdev, p,
1371 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001372 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001373 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001374
1375 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001376 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001377 err = __send_command(mdev->tconn, mdev->vnr, sock,
1378 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1379 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001380 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001381 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001382
1383 if (c->bit_offset >= c->bm_bits)
1384 len = 0; /* DONE */
1385 } else {
1386 /* was not compressible.
1387 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001388 unsigned int data_size;
1389 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001390 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001391
1392 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001393 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001394 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001395 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001396 if (len)
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001397 drbd_bm_get_lel(mdev, c->word_offset, num_words, p);
1398 err = __send_command(mdev->tconn, mdev->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001399 c->word_offset += num_words;
1400 c->bit_offset = c->word_offset * BITS_PER_LONG;
1401
1402 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001403 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001404
1405 if (c->bit_offset > c->bm_bits)
1406 c->bit_offset = c->bm_bits;
1407 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001408 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001409 if (len == 0) {
1410 INFO_bm_xfer_stats(mdev, "send", c);
1411 return 0;
1412 } else
1413 return 1;
1414 }
1415 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001416}
1417
1418/* See the comment at receive_bitmap() */
Andreas Gruenbacher058820c2011-03-22 16:03:43 +01001419static int _drbd_send_bitmap(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001420{
1421 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001422 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001423
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001424 if (!expect(mdev->bitmap))
1425 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001426
Philipp Reisnerb411b362009-09-25 16:07:19 -07001427 if (get_ldev(mdev)) {
1428 if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC)) {
1429 dev_info(DEV, "Writing the whole bitmap, MDF_FullSync was set.\n");
1430 drbd_bm_set_all(mdev);
1431 if (drbd_bm_write(mdev)) {
1432 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1433 * but otherwise process as per normal - need to tell other
1434 * side that a full resync is required! */
1435 dev_err(DEV, "Failed to write bitmap to disk!\n");
1436 } else {
1437 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
1438 drbd_md_sync(mdev);
1439 }
1440 }
1441 put_ldev(mdev);
1442 }
1443
1444 c = (struct bm_xfer_ctx) {
1445 .bm_bits = drbd_bm_bits(mdev),
1446 .bm_words = drbd_bm_words(mdev),
1447 };
1448
1449 do {
Andreas Gruenbacher79ed9bd2011-03-24 21:31:38 +01001450 err = send_bitmap_rle_or_plain(mdev, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001451 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001452
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001453 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001454}
1455
1456int drbd_send_bitmap(struct drbd_conf *mdev)
1457{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001458 struct drbd_socket *sock = &mdev->tconn->data;
1459 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001460
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001461 mutex_lock(&sock->mutex);
1462 if (sock->socket)
1463 err = !_drbd_send_bitmap(mdev);
1464 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001465 return err;
1466}
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001467
Andreas Gruenbacherd4e67d72011-03-16 01:25:28 +01001468void drbd_send_b_ack(struct drbd_conf *mdev, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001469{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001470 struct drbd_socket *sock;
1471 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001472
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001473 if (mdev->state.conn < C_CONNECTED)
1474 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001475
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001476 sock = &mdev->tconn->meta;
1477 p = drbd_prepare_command(mdev, sock);
1478 if (!p)
1479 return;
1480 p->barrier = barrier_nr;
1481 p->set_size = cpu_to_be32(set_size);
1482 drbd_send_command(mdev, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001483}
1484
1485/**
1486 * _drbd_send_ack() - Sends an ack packet
1487 * @mdev: DRBD device.
1488 * @cmd: Packet command code.
1489 * @sector: sector, needs to be in big endian byte order
1490 * @blksize: size in byte, needs to be in big endian byte order
1491 * @block_id: Id, big endian byte order
1492 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001493static int _drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
1494 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001495{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001496 struct drbd_socket *sock;
1497 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001498
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001499 if (mdev->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001500 return -EIO;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001501
1502 sock = &mdev->tconn->meta;
1503 p = drbd_prepare_command(mdev, sock);
1504 if (!p)
1505 return -EIO;
1506 p->sector = sector;
1507 p->block_id = block_id;
1508 p->blksize = blksize;
1509 p->seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
1510 return drbd_send_command(mdev, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001511}
1512
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001513/* dp->sector and dp->block_id already/still in network byte order,
1514 * data_size is payload size according to dp->head,
1515 * and may need to be corrected for digest size. */
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001516void drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packet cmd,
1517 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001518{
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02001519 if (mdev->tconn->peer_integrity_tfm)
1520 data_size -= crypto_hash_digestsize(mdev->tconn->peer_integrity_tfm);
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001521 _drbd_send_ack(mdev, cmd, dp->sector, cpu_to_be32(data_size),
1522 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001523}
1524
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001525void drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packet cmd,
1526 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001527{
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001528 _drbd_send_ack(mdev, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001529}
1530
1531/**
1532 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001533 * @mdev: DRBD device
1534 * @cmd: packet command code
1535 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001536 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001537int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001538 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001539{
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001540 return _drbd_send_ack(mdev, cmd,
1541 cpu_to_be64(peer_req->i.sector),
1542 cpu_to_be32(peer_req->i.size),
1543 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001544}
1545
1546/* This function misuses the block_id field to signal if the blocks
1547 * are is sync or not. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001548int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001549 sector_t sector, int blksize, u64 block_id)
1550{
Andreas Gruenbacherfa79abd2011-03-16 01:31:39 +01001551 return _drbd_send_ack(mdev, cmd,
1552 cpu_to_be64(sector),
1553 cpu_to_be32(blksize),
1554 cpu_to_be64(block_id));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001555}
1556
1557int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1558 sector_t sector, int size, u64 block_id)
1559{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001560 struct drbd_socket *sock;
1561 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001562
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001563 sock = &mdev->tconn->data;
1564 p = drbd_prepare_command(mdev, sock);
1565 if (!p)
1566 return -EIO;
1567 p->sector = cpu_to_be64(sector);
1568 p->block_id = block_id;
1569 p->blksize = cpu_to_be32(size);
1570 return drbd_send_command(mdev, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001571}
1572
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001573int drbd_send_drequest_csum(struct drbd_conf *mdev, sector_t sector, int size,
1574 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001575{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001576 struct drbd_socket *sock;
1577 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001578
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001579 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001580
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001581 sock = &mdev->tconn->data;
1582 p = drbd_prepare_command(mdev, sock);
1583 if (!p)
1584 return -EIO;
1585 p->sector = cpu_to_be64(sector);
1586 p->block_id = ID_SYNCER /* unused */;
1587 p->blksize = cpu_to_be32(size);
1588 return drbd_send_command(mdev, sock, cmd, sizeof(*p),
1589 digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001590}
1591
1592int drbd_send_ov_request(struct drbd_conf *mdev, sector_t sector, int size)
1593{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001594 struct drbd_socket *sock;
1595 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001596
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001597 sock = &mdev->tconn->data;
1598 p = drbd_prepare_command(mdev, sock);
1599 if (!p)
1600 return -EIO;
1601 p->sector = cpu_to_be64(sector);
1602 p->block_id = ID_SYNCER /* unused */;
1603 p->blksize = cpu_to_be32(size);
1604 return drbd_send_command(mdev, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001605}
1606
1607/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001608 * returns false if we should retry,
1609 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001610 */
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001611static int we_should_drop_the_connection(struct drbd_tconn *tconn, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001612{
1613 int drop_it;
1614 /* long elapsed = (long)(jiffies - mdev->last_received); */
1615
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001616 drop_it = tconn->meta.socket == sock
1617 || !tconn->asender.task
1618 || get_t_state(&tconn->asender) != RUNNING
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001619 || tconn->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001620
1621 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001622 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001623
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001624 drop_it = !--tconn->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001625 if (!drop_it) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001626 conn_err(tconn, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1627 current->comm, current->pid, tconn->ko_count);
1628 request_ping(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001629 }
1630
1631 return drop_it; /* && (mdev->state == R_PRIMARY) */;
1632}
1633
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001634static void drbd_update_congested(struct drbd_tconn *tconn)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001635{
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001636 struct sock *sk = tconn->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001637 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001638 set_bit(NET_CONGESTED, &tconn->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001639}
1640
Philipp Reisnerb411b362009-09-25 16:07:19 -07001641/* The idea of sendpage seems to be to put some kind of reference
1642 * to the page into the skb, and to hand it over to the NIC. In
1643 * this process get_page() gets called.
1644 *
1645 * As soon as the page was really sent over the network put_page()
1646 * gets called by some part of the network layer. [ NIC driver? ]
1647 *
1648 * [ get_page() / put_page() increment/decrement the count. If count
1649 * reaches 0 the page will be freed. ]
1650 *
1651 * This works nicely with pages from FSs.
1652 * But this means that in protocol A we might signal IO completion too early!
1653 *
1654 * In order not to corrupt data during a resync we must make sure
1655 * that we do not reuse our own buffer pages (EEs) to early, therefore
1656 * we have the net_ee list.
1657 *
1658 * XFS seems to have problems, still, it submits pages with page_count == 0!
1659 * As a workaround, we disable sendpage on pages
1660 * with page_count == 0 or PageSlab.
1661 */
1662static int _drbd_no_send_page(struct drbd_conf *mdev, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001663 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001664{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001665 struct socket *socket;
1666 void *addr;
1667 int err;
1668
1669 socket = mdev->tconn->data.socket;
1670 addr = kmap(page) + offset;
1671 err = drbd_send_all(mdev->tconn, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001672 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001673 if (!err)
1674 mdev->send_cnt += size >> 9;
1675 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001676}
1677
1678static int _drbd_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001679 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001680{
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001681 struct socket *socket = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001682 mm_segment_t oldfs = get_fs();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001683 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001684 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001685
1686 /* e.g. XFS meta- & log-data is in slab pages, which have a
1687 * page_count of 0 and/or have PageSlab() set.
1688 * we cannot use send_page for those, as that does get_page();
1689 * put_page(); and would cause either a VM_BUG directly, or
1690 * __page_cache_release a page that would actually still be referenced
1691 * by someone, leading to some obscure delayed Oops somewhere else. */
1692 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001693 return _drbd_no_send_page(mdev, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001694
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001695 msg_flags |= MSG_NOSIGNAL;
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001696 drbd_update_congested(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001697 set_fs(KERNEL_DS);
1698 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001699 int sent;
1700
1701 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001702 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001703 if (sent == -EAGAIN) {
1704 if (we_should_drop_the_connection(mdev->tconn, socket))
1705 break;
1706 continue;
1707 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001708 dev_warn(DEV, "%s: size=%d len=%d sent=%d\n",
1709 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001710 if (sent < 0)
1711 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001712 break;
1713 }
1714 len -= sent;
1715 offset += sent;
1716 } while (len > 0 /* THINK && mdev->cstate >= C_CONNECTED*/);
1717 set_fs(oldfs);
Philipp Reisner01a311a2011-02-07 14:30:33 +01001718 clear_bit(NET_CONGESTED, &mdev->tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001719
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001720 if (len == 0) {
1721 err = 0;
1722 mdev->send_cnt += size >> 9;
1723 }
1724 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001725}
1726
1727static int _drbd_send_bio(struct drbd_conf *mdev, struct bio *bio)
1728{
1729 struct bio_vec *bvec;
1730 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001731 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001732 __bio_for_each_segment(bvec, bio, i, 0) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001733 int err;
1734
1735 err = _drbd_no_send_page(mdev, bvec->bv_page,
1736 bvec->bv_offset, bvec->bv_len,
1737 i == bio->bi_vcnt - 1 ? 0 : MSG_MORE);
1738 if (err)
1739 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001740 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001741 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001742}
1743
1744static int _drbd_send_zc_bio(struct drbd_conf *mdev, struct bio *bio)
1745{
1746 struct bio_vec *bvec;
1747 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001748 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001749 __bio_for_each_segment(bvec, bio, i, 0) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001750 int err;
1751
1752 err = _drbd_send_page(mdev, bvec->bv_page,
1753 bvec->bv_offset, bvec->bv_len,
1754 i == bio->bi_vcnt - 1 ? 0 : MSG_MORE);
1755 if (err)
1756 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001757 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001758 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001759}
1760
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001761static int _drbd_send_zc_ee(struct drbd_conf *mdev,
1762 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001763{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001764 struct page *page = peer_req->pages;
1765 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001766 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001767
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001768 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001769 page_chain_for_each(page) {
1770 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001771
1772 err = _drbd_send_page(mdev, page, 0, l,
1773 page_chain_next(page) ? MSG_MORE : 0);
1774 if (err)
1775 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001776 len -= l;
1777 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001778 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001779}
1780
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001781static u32 bio_flags_to_wire(struct drbd_conf *mdev, unsigned long bi_rw)
1782{
Philipp Reisner31890f42011-01-19 14:12:51 +01001783 if (mdev->tconn->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001784 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001785 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1786 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1787 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1788 else
Jens Axboe721a9602011-03-09 11:56:30 +01001789 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001790}
1791
Philipp Reisnerb411b362009-09-25 16:07:19 -07001792/* Used to send write requests
1793 * R_PRIMARY -> Peer (P_DATA)
1794 */
1795int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
1796{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001797 struct drbd_socket *sock;
1798 struct p_data *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001799 unsigned int dp_flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001800 int dgs;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001801 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001802
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001803 sock = &mdev->tconn->data;
1804 p = drbd_prepare_command(mdev, sock);
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001805 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001806
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001807 if (!p)
1808 return -EIO;
1809 p->sector = cpu_to_be64(req->i.sector);
1810 p->block_id = (unsigned long)req;
1811 p->seq_num = cpu_to_be32(req->seq_num = atomic_inc_return(&mdev->packet_seq));
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001812 dp_flags = bio_flags_to_wire(mdev, req->master_bio->bi_rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001813 if (mdev->state.conn >= C_SYNC_SOURCE &&
1814 mdev->state.conn <= C_PAUSED_SYNC_T)
1815 dp_flags |= DP_MAY_SET_IN_SYNC;
Philipp Reisner303d1442011-04-13 16:24:47 -07001816 if (mdev->tconn->agreed_pro_version >= 100) {
1817 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1818 dp_flags |= DP_SEND_RECEIVE_ACK;
1819 if (req->rq_state & RQ_EXP_WRITE_ACK)
1820 dp_flags |= DP_SEND_WRITE_ACK;
1821 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001822 p->dp_flags = cpu_to_be32(dp_flags);
1823 if (dgs)
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001824 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001825 err = __send_command(mdev->tconn, mdev->vnr, sock, P_DATA, sizeof(*p) + dgs, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001826 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001827 /* For protocol A, we have to memcpy the payload into
1828 * socket buffers, as we may complete right away
1829 * as soon as we handed it over to tcp, at which point the data
1830 * pages may become invalid.
1831 *
1832 * For data-integrity enabled, we copy it as well, so we can be
1833 * sure that even if the bio pages may still be modified, it
1834 * won't change the data on the wire, thus if the digest checks
1835 * out ok after sending on this side, but does not fit on the
1836 * receiving side, we sure have detected corruption elsewhere.
1837 */
Philipp Reisner303d1442011-04-13 16:24:47 -07001838 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || dgs)
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001839 err = _drbd_send_bio(mdev, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001840 else
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001841 err = _drbd_send_zc_bio(mdev, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001842
1843 /* double check digest, sometimes buffers have been modified in flight. */
1844 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001845 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001846 * currently supported in kernel crypto. */
1847 unsigned char digest[64];
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001848 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001849 if (memcmp(p + 1, digest, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001850 dev_warn(DEV,
1851 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001852 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001853 }
1854 } /* else if (dgs > 64) {
1855 ... Be noisy about digest too large ...
1856 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001857 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001858 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001859
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001860 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001861}
1862
1863/* answer packet, used to send data back for read requests:
1864 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1865 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1866 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001867int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001868 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001869{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001870 struct drbd_socket *sock;
1871 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001872 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001873 int dgs;
1874
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001875 sock = &mdev->tconn->data;
1876 p = drbd_prepare_command(mdev, sock);
1877
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001878 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001879
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001880 if (!p)
1881 return -EIO;
1882 p->sector = cpu_to_be64(peer_req->i.sector);
1883 p->block_id = peer_req->block_id;
1884 p->seq_num = 0; /* unused */
1885 if (dgs)
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001886 drbd_csum_ee(mdev, mdev->tconn->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001887 err = __send_command(mdev->tconn, mdev->vnr, sock, cmd, sizeof(*p) + dgs, NULL, peer_req->i.size);
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001888 if (!err)
1889 err = _drbd_send_zc_ee(mdev, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001890 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001891
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001892 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001893}
1894
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +01001895int drbd_send_out_of_sync(struct drbd_conf *mdev, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001896{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001897 struct drbd_socket *sock;
1898 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001899
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001900 sock = &mdev->tconn->data;
1901 p = drbd_prepare_command(mdev, sock);
1902 if (!p)
1903 return -EIO;
1904 p->sector = cpu_to_be64(req->i.sector);
1905 p->blksize = cpu_to_be32(req->i.size);
1906 return drbd_send_command(mdev, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001907}
1908
Philipp Reisnerb411b362009-09-25 16:07:19 -07001909/*
1910 drbd_send distinguishes two cases:
1911
1912 Packets sent via the data socket "sock"
1913 and packets sent via the meta data socket "msock"
1914
1915 sock msock
1916 -----------------+-------------------------+------------------------------
1917 timeout conf.timeout / 2 conf.timeout / 2
1918 timeout action send a ping via msock Abort communication
1919 and close all sockets
1920*/
1921
1922/*
1923 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1924 */
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001925int drbd_send(struct drbd_tconn *tconn, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001926 void *buf, size_t size, unsigned msg_flags)
1927{
1928 struct kvec iov;
1929 struct msghdr msg;
1930 int rv, sent = 0;
1931
1932 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001933 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001934
1935 /* THINK if (signal_pending) return ... ? */
1936
1937 iov.iov_base = buf;
1938 iov.iov_len = size;
1939
1940 msg.msg_name = NULL;
1941 msg.msg_namelen = 0;
1942 msg.msg_control = NULL;
1943 msg.msg_controllen = 0;
1944 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1945
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001946 if (sock == tconn->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001947 rcu_read_lock();
1948 tconn->ko_count = rcu_dereference(tconn->net_conf)->ko_count;
1949 rcu_read_unlock();
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001950 drbd_update_congested(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001951 }
1952 do {
1953 /* STRANGE
1954 * tcp_sendmsg does _not_ use its size parameter at all ?
1955 *
1956 * -EAGAIN on timeout, -EINTR on signal.
1957 */
1958/* THINK
1959 * do we need to block DRBD_SIG if sock == &meta.socket ??
1960 * otherwise wake_asender() might interrupt some send_*Ack !
1961 */
1962 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1963 if (rv == -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001964 if (we_should_drop_the_connection(tconn, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001965 break;
1966 else
1967 continue;
1968 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001969 if (rv == -EINTR) {
1970 flush_signals(current);
1971 rv = 0;
1972 }
1973 if (rv < 0)
1974 break;
1975 sent += rv;
1976 iov.iov_base += rv;
1977 iov.iov_len -= rv;
1978 } while (sent < size);
1979
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001980 if (sock == tconn->data.socket)
1981 clear_bit(NET_CONGESTED, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001982
1983 if (rv <= 0) {
1984 if (rv != -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001985 conn_err(tconn, "%s_sendmsg returned %d\n",
1986 sock == tconn->meta.socket ? "msock" : "sock",
1987 rv);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001988 conn_request_state(tconn, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001989 } else
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001990 conn_request_state(tconn, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001991 }
1992
1993 return sent;
1994}
1995
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001996/**
1997 * drbd_send_all - Send an entire buffer
1998 *
1999 * Returns 0 upon success and a negative error value otherwise.
2000 */
2001int drbd_send_all(struct drbd_tconn *tconn, struct socket *sock, void *buffer,
2002 size_t size, unsigned msg_flags)
2003{
2004 int err;
2005
2006 err = drbd_send(tconn, sock, buffer, size, msg_flags);
2007 if (err < 0)
2008 return err;
2009 if (err != size)
2010 return -EIO;
2011 return 0;
2012}
2013
Philipp Reisnerb411b362009-09-25 16:07:19 -07002014static int drbd_open(struct block_device *bdev, fmode_t mode)
2015{
2016 struct drbd_conf *mdev = bdev->bd_disk->private_data;
2017 unsigned long flags;
2018 int rv = 0;
2019
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002020 mutex_lock(&drbd_main_mutex);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002021 spin_lock_irqsave(&mdev->tconn->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002022 /* to have a stable mdev->state.role
2023 * and no race with updating open_cnt */
2024
2025 if (mdev->state.role != R_PRIMARY) {
2026 if (mode & FMODE_WRITE)
2027 rv = -EROFS;
2028 else if (!allow_oos)
2029 rv = -EMEDIUMTYPE;
2030 }
2031
2032 if (!rv)
2033 mdev->open_cnt++;
Philipp Reisner87eeee42011-01-19 14:16:30 +01002034 spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002035 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002036
2037 return rv;
2038}
2039
2040static int drbd_release(struct gendisk *gd, fmode_t mode)
2041{
2042 struct drbd_conf *mdev = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002043 mutex_lock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002044 mdev->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002045 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002046 return 0;
2047}
2048
Philipp Reisnerb411b362009-09-25 16:07:19 -07002049static void drbd_set_defaults(struct drbd_conf *mdev)
2050{
Lars Ellenbergf3990022011-03-23 14:31:09 +01002051 /* Beware! The actual layout differs
2052 * between big endian and little endian */
Philipp Reisnerda9fbc22011-03-29 10:52:01 +02002053 mdev->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002054 { .role = R_SECONDARY,
2055 .peer = R_UNKNOWN,
2056 .conn = C_STANDALONE,
2057 .disk = D_DISKLESS,
2058 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07002059 } };
2060}
2061
2062void drbd_init_set_defaults(struct drbd_conf *mdev)
2063{
2064 /* the memset(,0,) did most of this.
2065 * note: only assignments, no allocation in here */
2066
2067 drbd_set_defaults(mdev);
2068
Philipp Reisnerb411b362009-09-25 16:07:19 -07002069 atomic_set(&mdev->ap_bio_cnt, 0);
2070 atomic_set(&mdev->ap_pending_cnt, 0);
2071 atomic_set(&mdev->rs_pending_cnt, 0);
2072 atomic_set(&mdev->unacked_cnt, 0);
2073 atomic_set(&mdev->local_cnt, 0);
Lars Ellenberg435f0742010-09-06 12:30:25 +02002074 atomic_set(&mdev->pp_in_use_by_net, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02002075 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002076 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner759fbdf2010-10-26 16:02:27 +02002077 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisnercdfda632011-07-05 15:38:59 +02002078 atomic_set(&mdev->md_io_in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002079
Philipp Reisner8410da8f02011-02-11 20:11:10 +01002080 mutex_init(&mdev->own_state_mutex);
2081 mdev->state_mutex = &mdev->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002082
Philipp Reisnerb411b362009-09-25 16:07:19 -07002083 spin_lock_init(&mdev->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002084 spin_lock_init(&mdev->peer_seq_lock);
2085 spin_lock_init(&mdev->epoch_lock);
2086
2087 INIT_LIST_HEAD(&mdev->active_ee);
2088 INIT_LIST_HEAD(&mdev->sync_ee);
2089 INIT_LIST_HEAD(&mdev->done_ee);
2090 INIT_LIST_HEAD(&mdev->read_ee);
2091 INIT_LIST_HEAD(&mdev->net_ee);
2092 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002093 INIT_LIST_HEAD(&mdev->resync_work.list);
2094 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002095 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002096 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02002097 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002098 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02002099
Philipp Reisner794abb72010-12-27 11:51:23 +01002100 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002101 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002102 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002103 mdev->md_sync_work.cb = w_md_sync;
2104 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01002105 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01002106
2107 mdev->resync_work.mdev = mdev;
2108 mdev->unplug_work.mdev = mdev;
2109 mdev->go_diskless.mdev = mdev;
2110 mdev->md_sync_work.mdev = mdev;
2111 mdev->bm_io_work.w.mdev = mdev;
2112 mdev->start_resync_work.mdev = mdev;
2113
Philipp Reisnerb411b362009-09-25 16:07:19 -07002114 init_timer(&mdev->resync_timer);
2115 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01002116 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01002117 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002118 mdev->resync_timer.function = resync_timer_fn;
2119 mdev->resync_timer.data = (unsigned long) mdev;
2120 mdev->md_sync_timer.function = md_sync_timer_fn;
2121 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01002122 mdev->start_resync_timer.function = start_resync_timer_fn;
2123 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01002124 mdev->request_timer.function = request_timer_fn;
2125 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002126
2127 init_waitqueue_head(&mdev->misc_wait);
2128 init_waitqueue_head(&mdev->state_wait);
2129 init_waitqueue_head(&mdev->ee_wait);
2130 init_waitqueue_head(&mdev->al_wait);
2131 init_waitqueue_head(&mdev->seq_wait);
2132
Philipp Reisner2451fc32010-08-24 13:43:11 +02002133 mdev->write_ordering = WO_bdev_flush;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002134 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02002135 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
2136 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002137}
2138
2139void drbd_mdev_cleanup(struct drbd_conf *mdev)
2140{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002141 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002142 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002143 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002144 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002145
2146 /* no need to lock it, I'm the only thread alive */
2147 if (atomic_read(&mdev->current_epoch->epoch_size) != 0)
2148 dev_err(DEV, "epoch_size:%d\n", atomic_read(&mdev->current_epoch->epoch_size));
2149 mdev->al_writ_cnt =
2150 mdev->bm_writ_cnt =
2151 mdev->read_cnt =
2152 mdev->recv_cnt =
2153 mdev->send_cnt =
2154 mdev->writ_cnt =
2155 mdev->p_size =
2156 mdev->rs_start =
2157 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002158 mdev->rs_failed = 0;
2159 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002160 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002161 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
2162 mdev->rs_mark_left[i] = 0;
2163 mdev->rs_mark_time[i] = 0;
2164 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01002165 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002166
2167 drbd_set_my_capacity(mdev, 0);
2168 if (mdev->bitmap) {
2169 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01002170 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002171 drbd_bm_cleanup(mdev);
2172 }
2173
Philipp Reisner1d041222011-04-22 15:20:23 +02002174 drbd_free_bc(mdev->ldev);
2175 mdev->ldev = NULL;
2176
Philipp Reisner07782862010-08-31 12:00:50 +02002177 clear_bit(AL_SUSPENDED, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002178
Philipp Reisnerb411b362009-09-25 16:07:19 -07002179 D_ASSERT(list_empty(&mdev->active_ee));
2180 D_ASSERT(list_empty(&mdev->sync_ee));
2181 D_ASSERT(list_empty(&mdev->done_ee));
2182 D_ASSERT(list_empty(&mdev->read_ee));
2183 D_ASSERT(list_empty(&mdev->net_ee));
2184 D_ASSERT(list_empty(&mdev->resync_reads));
Philipp Reisnere42325a2011-01-19 13:55:45 +01002185 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
2186 D_ASSERT(list_empty(&mdev->tconn->meta.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002187 D_ASSERT(list_empty(&mdev->resync_work.list));
2188 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002189 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002190
2191 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002192}
2193
2194
2195static void drbd_destroy_mempools(void)
2196{
2197 struct page *page;
2198
2199 while (drbd_pp_pool) {
2200 page = drbd_pp_pool;
2201 drbd_pp_pool = (struct page *)page_private(page);
2202 __free_page(page);
2203 drbd_pp_vacant--;
2204 }
2205
2206 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
2207
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002208 if (drbd_md_io_bio_set)
2209 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg35abf592011-02-23 12:39:46 +01002210 if (drbd_md_io_page_pool)
2211 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002212 if (drbd_ee_mempool)
2213 mempool_destroy(drbd_ee_mempool);
2214 if (drbd_request_mempool)
2215 mempool_destroy(drbd_request_mempool);
2216 if (drbd_ee_cache)
2217 kmem_cache_destroy(drbd_ee_cache);
2218 if (drbd_request_cache)
2219 kmem_cache_destroy(drbd_request_cache);
2220 if (drbd_bm_ext_cache)
2221 kmem_cache_destroy(drbd_bm_ext_cache);
2222 if (drbd_al_ext_cache)
2223 kmem_cache_destroy(drbd_al_ext_cache);
2224
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002225 drbd_md_io_bio_set = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002226 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002227 drbd_ee_mempool = NULL;
2228 drbd_request_mempool = NULL;
2229 drbd_ee_cache = NULL;
2230 drbd_request_cache = NULL;
2231 drbd_bm_ext_cache = NULL;
2232 drbd_al_ext_cache = NULL;
2233
2234 return;
2235}
2236
2237static int drbd_create_mempools(void)
2238{
2239 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01002240 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002241 int i;
2242
2243 /* prepare our caches and mempools */
2244 drbd_request_mempool = NULL;
2245 drbd_ee_cache = NULL;
2246 drbd_request_cache = NULL;
2247 drbd_bm_ext_cache = NULL;
2248 drbd_al_ext_cache = NULL;
2249 drbd_pp_pool = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002250 drbd_md_io_page_pool = NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002251 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002252
2253 /* caches */
2254 drbd_request_cache = kmem_cache_create(
2255 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2256 if (drbd_request_cache == NULL)
2257 goto Enomem;
2258
2259 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002260 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002261 if (drbd_ee_cache == NULL)
2262 goto Enomem;
2263
2264 drbd_bm_ext_cache = kmem_cache_create(
2265 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2266 if (drbd_bm_ext_cache == NULL)
2267 goto Enomem;
2268
2269 drbd_al_ext_cache = kmem_cache_create(
2270 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2271 if (drbd_al_ext_cache == NULL)
2272 goto Enomem;
2273
2274 /* mempools */
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002275 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2276 if (drbd_md_io_bio_set == NULL)
2277 goto Enomem;
2278
Lars Ellenberg35abf592011-02-23 12:39:46 +01002279 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2280 if (drbd_md_io_page_pool == NULL)
2281 goto Enomem;
2282
Philipp Reisnerb411b362009-09-25 16:07:19 -07002283 drbd_request_mempool = mempool_create(number,
2284 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2285 if (drbd_request_mempool == NULL)
2286 goto Enomem;
2287
2288 drbd_ee_mempool = mempool_create(number,
2289 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002290 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002291 goto Enomem;
2292
2293 /* drbd's page pool */
2294 spin_lock_init(&drbd_pp_lock);
2295
2296 for (i = 0; i < number; i++) {
2297 page = alloc_page(GFP_HIGHUSER);
2298 if (!page)
2299 goto Enomem;
2300 set_page_private(page, (unsigned long)drbd_pp_pool);
2301 drbd_pp_pool = page;
2302 }
2303 drbd_pp_vacant = number;
2304
2305 return 0;
2306
2307Enomem:
2308 drbd_destroy_mempools(); /* in case we allocated some */
2309 return -ENOMEM;
2310}
2311
2312static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2313 void *unused)
2314{
2315 /* just so we have it. you never know what interesting things we
2316 * might want to do here some day...
2317 */
2318
2319 return NOTIFY_DONE;
2320}
2321
2322static struct notifier_block drbd_notifier = {
2323 .notifier_call = drbd_notify_sys,
2324};
2325
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002326static void drbd_release_all_peer_reqs(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002327{
2328 int rr;
2329
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002330 rr = drbd_free_peer_reqs(mdev, &mdev->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002331 if (rr)
2332 dev_err(DEV, "%d EEs in active list found!\n", rr);
2333
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002334 rr = drbd_free_peer_reqs(mdev, &mdev->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002335 if (rr)
2336 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2337
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002338 rr = drbd_free_peer_reqs(mdev, &mdev->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002339 if (rr)
2340 dev_err(DEV, "%d EEs in read list found!\n", rr);
2341
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002342 rr = drbd_free_peer_reqs(mdev, &mdev->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002343 if (rr)
2344 dev_err(DEV, "%d EEs in done list found!\n", rr);
2345
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002346 rr = drbd_free_peer_reqs(mdev, &mdev->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002347 if (rr)
2348 dev_err(DEV, "%d EEs in net list found!\n", rr);
2349}
2350
Philipp Reisner774b3052011-02-22 02:07:03 -05002351/* caution. no locking. */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002352void drbd_minor_destroy(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002353{
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002354 struct drbd_conf *mdev = container_of(kref, struct drbd_conf, kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002355 struct drbd_tconn *tconn = mdev->tconn;
2356
Philipp Reisnercdfda632011-07-05 15:38:59 +02002357 del_timer_sync(&mdev->request_timer);
2358
Philipp Reisnerb411b362009-09-25 16:07:19 -07002359 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002360 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnere42325a2011-01-19 13:55:45 +01002361 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002362 /* end paranoia asserts */
2363
Philipp Reisnerb411b362009-09-25 16:07:19 -07002364 /* cleanup stuff that may have been allocated during
2365 * device (re-)configuration or state changes */
2366
2367 if (mdev->this_bdev)
2368 bdput(mdev->this_bdev);
2369
Philipp Reisner1d041222011-04-22 15:20:23 +02002370 drbd_free_bc(mdev->ldev);
2371 mdev->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002372
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002373 drbd_release_all_peer_reqs(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002374
Philipp Reisnerb411b362009-09-25 16:07:19 -07002375 lc_destroy(mdev->act_log);
2376 lc_destroy(mdev->resync);
2377
2378 kfree(mdev->p_uuid);
2379 /* mdev->p_uuid = NULL; */
2380
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002381 kfree(mdev->current_epoch);
2382 if (mdev->bitmap) /* should no longer be there. */
2383 drbd_bm_cleanup(mdev);
2384 __free_page(mdev->md_io_page);
2385 put_disk(mdev->vdisk);
2386 blk_cleanup_queue(mdev->rq_queue);
Philipp Reisner9958c852011-05-03 16:19:31 +02002387 kfree(mdev->rs_plan_s);
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002388 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002389
2390 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002391}
2392
2393static void drbd_cleanup(void)
2394{
2395 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002396 struct drbd_conf *mdev;
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002397 struct drbd_tconn *tconn, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002398
2399 unregister_reboot_notifier(&drbd_notifier);
2400
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002401 /* first remove proc,
2402 * drbdsetup uses it's presence to detect
2403 * whether DRBD is loaded.
2404 * If we would get stuck in proc removal,
2405 * but have netlink already deregistered,
2406 * some drbdsetup commands may wait forever
2407 * for an answer.
2408 */
2409 if (drbd_proc)
2410 remove_proc_entry("drbd", NULL);
2411
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002412 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002413
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002414 idr_for_each_entry(&minors, mdev, i) {
2415 idr_remove(&minors, mdev_to_minor(mdev));
2416 idr_remove(&mdev->tconn->volumes, mdev->vnr);
2417 del_gendisk(mdev->vdisk);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002418 /* synchronize_rcu(); No other threads running at this point */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002419 kref_put(&mdev->kref, &drbd_minor_destroy);
2420 }
2421
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002422 /* not _rcu since, no other updater anymore. Genl already unregistered */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002423 list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002424 list_del(&tconn->all_tconn); /* not _rcu no proc, not other threads */
2425 /* synchronize_rcu(); */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002426 kref_put(&tconn->kref, &conn_destroy);
2427 }
Philipp Reisnerff370e52011-04-11 21:10:11 -07002428
Philipp Reisner81a5d602011-02-22 19:53:16 -05002429 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002430 unregister_blkdev(DRBD_MAJOR, "drbd");
2431
Philipp Reisner81a5d602011-02-22 19:53:16 -05002432 idr_destroy(&minors);
2433
Philipp Reisnerb411b362009-09-25 16:07:19 -07002434 printk(KERN_INFO "drbd: module cleanup done.\n");
2435}
2436
2437/**
2438 * drbd_congested() - Callback for pdflush
2439 * @congested_data: User data
2440 * @bdi_bits: Bits pdflush is currently interested in
2441 *
2442 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2443 */
2444static int drbd_congested(void *congested_data, int bdi_bits)
2445{
2446 struct drbd_conf *mdev = congested_data;
2447 struct request_queue *q;
2448 char reason = '-';
2449 int r = 0;
2450
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002451 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002452 /* DRBD has frozen IO */
2453 r = bdi_bits;
2454 reason = 'd';
2455 goto out;
2456 }
2457
2458 if (get_ldev(mdev)) {
2459 q = bdev_get_queue(mdev->ldev->backing_bdev);
2460 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2461 put_ldev(mdev);
2462 if (r)
2463 reason = 'b';
2464 }
2465
Philipp Reisner01a311a2011-02-07 14:30:33 +01002466 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002467 r |= (1 << BDI_async_congested);
2468 reason = reason == 'b' ? 'a' : 'n';
2469 }
2470
2471out:
2472 mdev->congestion_reason = reason;
2473 return r;
2474}
2475
Philipp Reisner6699b652011-02-09 11:10:24 +01002476static void drbd_init_workqueue(struct drbd_work_queue* wq)
2477{
2478 sema_init(&wq->s, 0);
2479 spin_lock_init(&wq->q_lock);
2480 INIT_LIST_HEAD(&wq->q);
2481}
2482
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002483struct drbd_tconn *conn_get_by_name(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002484{
2485 struct drbd_tconn *tconn;
2486
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002487 if (!name || !name[0])
2488 return NULL;
2489
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002490 rcu_read_lock();
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002491 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002492 if (!strcmp(tconn->name, name)) {
2493 kref_get(&tconn->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002494 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002495 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002496 }
2497 tconn = NULL;
2498found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002499 rcu_read_unlock();
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002500 return tconn;
2501}
2502
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002503struct drbd_tconn *conn_get_by_addrs(void *my_addr, int my_addr_len,
2504 void *peer_addr, int peer_addr_len)
2505{
2506 struct drbd_tconn *tconn;
2507
2508 rcu_read_lock();
2509 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
2510 if (tconn->my_addr_len == my_addr_len &&
2511 tconn->peer_addr_len == peer_addr_len &&
2512 !memcmp(&tconn->my_addr, my_addr, my_addr_len) &&
2513 !memcmp(&tconn->peer_addr, peer_addr, peer_addr_len)) {
2514 kref_get(&tconn->kref);
2515 goto found;
2516 }
2517 }
2518 tconn = NULL;
2519found:
2520 rcu_read_unlock();
2521 return tconn;
2522}
2523
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002524static int drbd_alloc_socket(struct drbd_socket *socket)
2525{
2526 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2527 if (!socket->rbuf)
2528 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002529 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2530 if (!socket->sbuf)
2531 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002532 return 0;
2533}
2534
2535static void drbd_free_socket(struct drbd_socket *socket)
2536{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002537 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002538 free_page((unsigned long) socket->rbuf);
2539}
2540
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002541void conn_free_crypto(struct drbd_tconn *tconn)
2542{
Philipp Reisner1d041222011-04-22 15:20:23 +02002543 drbd_free_sock(tconn);
2544
2545 crypto_free_hash(tconn->csums_tfm);
2546 crypto_free_hash(tconn->verify_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002547 crypto_free_hash(tconn->cram_hmac_tfm);
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002548 crypto_free_hash(tconn->integrity_tfm);
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002549 crypto_free_hash(tconn->peer_integrity_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002550 kfree(tconn->int_dig_in);
2551 kfree(tconn->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002552
2553 tconn->csums_tfm = NULL;
2554 tconn->verify_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002555 tconn->cram_hmac_tfm = NULL;
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002556 tconn->integrity_tfm = NULL;
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002557 tconn->peer_integrity_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002558 tconn->int_dig_in = NULL;
2559 tconn->int_dig_vv = NULL;
2560}
2561
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002562int set_resource_options(struct drbd_tconn *tconn, struct res_opts *res_opts)
2563{
2564 cpumask_var_t new_cpu_mask;
2565 int err;
2566
2567 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2568 return -ENOMEM;
2569 /*
2570 retcode = ERR_NOMEM;
2571 drbd_msg_put_info("unable to allocate cpumask");
2572 */
2573
2574 /* silently ignore cpu mask on UP kernel */
2575 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
2576 /* FIXME: Get rid of constant 32 here */
2577 err = __bitmap_parse(res_opts->cpu_mask, 32, 0,
2578 cpumask_bits(new_cpu_mask), nr_cpu_ids);
2579 if (err) {
2580 conn_warn(tconn, "__bitmap_parse() failed with %d\n", err);
2581 /* retcode = ERR_CPU_MASK_PARSE; */
2582 goto fail;
2583 }
2584 }
2585 tconn->res_opts = *res_opts;
2586 if (!cpumask_equal(tconn->cpu_mask, new_cpu_mask)) {
2587 cpumask_copy(tconn->cpu_mask, new_cpu_mask);
2588 drbd_calc_cpu_mask(tconn);
2589 tconn->receiver.reset_cpu_mask = 1;
2590 tconn->asender.reset_cpu_mask = 1;
2591 tconn->worker.reset_cpu_mask = 1;
2592 }
2593 err = 0;
2594
2595fail:
2596 free_cpumask_var(new_cpu_mask);
2597 return err;
2598
2599}
2600
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002601/* caller must be under genl_lock() */
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002602struct drbd_tconn *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002603{
2604 struct drbd_tconn *tconn;
2605
2606 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2607 if (!tconn)
2608 return NULL;
2609
2610 tconn->name = kstrdup(name, GFP_KERNEL);
2611 if (!tconn->name)
2612 goto fail;
2613
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002614 if (drbd_alloc_socket(&tconn->data))
2615 goto fail;
2616 if (drbd_alloc_socket(&tconn->meta))
2617 goto fail;
2618
Philipp Reisner774b3052011-02-22 02:07:03 -05002619 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2620 goto fail;
2621
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002622 if (set_resource_options(tconn, res_opts))
2623 goto fail;
2624
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002625 if (!tl_init(tconn))
2626 goto fail;
2627
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002628 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da8f02011-02-11 20:11:10 +01002629 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002630 spin_lock_init(&tconn->req_lock);
Philipp Reisnera0095502011-05-03 13:14:15 +02002631 mutex_init(&tconn->conf_update);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002632 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002633 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002634
Philipp Reisner6699b652011-02-09 11:10:24 +01002635 drbd_init_workqueue(&tconn->data.work);
2636 mutex_init(&tconn->data.mutex);
2637
2638 drbd_init_workqueue(&tconn->meta.work);
2639 mutex_init(&tconn->meta.mutex);
2640
Philipp Reisner392c8802011-02-09 10:33:31 +01002641 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2642 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2643 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2644
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002645 kref_init(&tconn->kref);
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002646 list_add_tail_rcu(&tconn->all_tconn, &drbd_tconns);
Philipp Reisner21114382011-01-19 12:26:59 +01002647
2648 return tconn;
2649
2650fail:
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002651 tl_cleanup(tconn);
Philipp Reisner774b3052011-02-22 02:07:03 -05002652 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002653 drbd_free_socket(&tconn->meta);
2654 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002655 kfree(tconn->name);
2656 kfree(tconn);
2657
2658 return NULL;
2659}
2660
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002661void conn_destroy(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002662{
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002663 struct drbd_tconn *tconn = container_of(kref, struct drbd_tconn, kref);
2664
Philipp Reisner062e8792011-02-08 11:09:18 +01002665 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002666
Philipp Reisner774b3052011-02-22 02:07:03 -05002667 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002668 drbd_free_socket(&tconn->meta);
2669 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002670 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002671 kfree(tconn->int_dig_in);
2672 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002673 kfree(tconn);
2674}
2675
Philipp Reisner774b3052011-02-22 02:07:03 -05002676enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002677{
2678 struct drbd_conf *mdev;
2679 struct gendisk *disk;
2680 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002681 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002682 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002683 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002684
2685 mdev = minor_to_mdev(minor);
2686 if (mdev)
2687 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002688
2689 /* GFP_KERNEL, we are outside of all write-out paths */
2690 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2691 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002692 return ERR_NOMEM;
2693
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002694 kref_get(&tconn->kref);
Philipp Reisner774b3052011-02-22 02:07:03 -05002695 mdev->tconn = tconn;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002696
Philipp Reisnerb411b362009-09-25 16:07:19 -07002697 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002698 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002699
2700 drbd_init_set_defaults(mdev);
2701
2702 q = blk_alloc_queue(GFP_KERNEL);
2703 if (!q)
2704 goto out_no_q;
2705 mdev->rq_queue = q;
2706 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002707
2708 disk = alloc_disk(1);
2709 if (!disk)
2710 goto out_no_disk;
2711 mdev->vdisk = disk;
2712
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002713 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002714
2715 disk->queue = q;
2716 disk->major = DRBD_MAJOR;
2717 disk->first_minor = minor;
2718 disk->fops = &drbd_ops;
2719 sprintf(disk->disk_name, "drbd%d", minor);
2720 disk->private_data = mdev;
2721
2722 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2723 /* we have no partitions. we contain only ourselves. */
2724 mdev->this_bdev->bd_contains = mdev->this_bdev;
2725
2726 q->backing_dev_info.congested_fn = drbd_congested;
2727 q->backing_dev_info.congested_data = mdev;
2728
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002729 blk_queue_make_request(q, drbd_make_request);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002730 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2731 This triggers a max_bio_size message upon first attach or connect */
2732 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002733 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2734 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002735 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002736
2737 mdev->md_io_page = alloc_page(GFP_KERNEL);
2738 if (!mdev->md_io_page)
2739 goto out_no_io_page;
2740
2741 if (drbd_bm_init(mdev))
2742 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002743 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002744 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002745
Philipp Reisnerb411b362009-09-25 16:07:19 -07002746 mdev->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2747 if (!mdev->current_epoch)
2748 goto out_no_epoch;
2749
2750 INIT_LIST_HEAD(&mdev->current_epoch->list);
2751 mdev->epochs = 1;
2752
Lars Ellenberg8432b312011-03-08 16:11:16 +01002753 if (!idr_pre_get(&minors, GFP_KERNEL))
2754 goto out_no_minor_idr;
2755 if (idr_get_new_above(&minors, mdev, minor, &minor_got))
2756 goto out_no_minor_idr;
2757 if (minor_got != minor) {
2758 err = ERR_MINOR_EXISTS;
2759 drbd_msg_put_info("requested minor exists already");
2760 goto out_idr_remove_minor;
Lars Ellenberg569083c2011-03-07 09:49:02 +01002761 }
2762
Lars Ellenberg8432b312011-03-08 16:11:16 +01002763 if (!idr_pre_get(&tconn->volumes, GFP_KERNEL))
Lars Ellenberg569083c2011-03-07 09:49:02 +01002764 goto out_idr_remove_minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002765 if (idr_get_new_above(&tconn->volumes, mdev, vnr, &vnr_got))
2766 goto out_idr_remove_minor;
2767 if (vnr_got != vnr) {
2768 err = ERR_INVALID_REQUEST;
2769 drbd_msg_put_info("requested volume exists already");
2770 goto out_idr_remove_vol;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002771 }
Philipp Reisner774b3052011-02-22 02:07:03 -05002772 add_disk(disk);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002773 kref_init(&mdev->kref); /* one ref for both idrs and the the add_disk */
Philipp Reisner774b3052011-02-22 02:07:03 -05002774
Philipp Reisner2325eb62011-03-15 16:56:18 +01002775 /* inherit the connection state */
2776 mdev->state.conn = tconn->cstate;
2777 if (mdev->state.conn == C_WF_REPORT_PARAMS)
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002778 drbd_connected(mdev);
Philipp Reisner2325eb62011-03-15 16:56:18 +01002779
Philipp Reisner774b3052011-02-22 02:07:03 -05002780 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002781
Lars Ellenberg569083c2011-03-07 09:49:02 +01002782out_idr_remove_vol:
2783 idr_remove(&tconn->volumes, vnr_got);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002784out_idr_remove_minor:
2785 idr_remove(&minors, minor_got);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002786 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002787out_no_minor_idr:
Philipp Reisner81a5d602011-02-22 19:53:16 -05002788 kfree(mdev->current_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002789out_no_epoch:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002790 drbd_bm_cleanup(mdev);
2791out_no_bitmap:
2792 __free_page(mdev->md_io_page);
2793out_no_io_page:
2794 put_disk(disk);
2795out_no_disk:
2796 blk_cleanup_queue(q);
2797out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002798 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002799 kref_put(&tconn->kref, &conn_destroy);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002800 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002801}
2802
Philipp Reisnerb411b362009-09-25 16:07:19 -07002803int __init drbd_init(void)
2804{
2805 int err;
2806
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002807 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002808 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002809 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002810#ifdef MODULE
2811 return -EINVAL;
2812#else
Andreas Gruenbacher46530e82011-05-31 13:08:53 +02002813 minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002814#endif
2815 }
2816
Philipp Reisnerb411b362009-09-25 16:07:19 -07002817 err = register_blkdev(DRBD_MAJOR, "drbd");
2818 if (err) {
2819 printk(KERN_ERR
2820 "drbd: unable to register block device major %d\n",
2821 DRBD_MAJOR);
2822 return err;
2823 }
2824
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002825 err = drbd_genl_register();
2826 if (err) {
2827 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2828 goto fail;
2829 }
2830
2831
Philipp Reisnerb411b362009-09-25 16:07:19 -07002832 register_reboot_notifier(&drbd_notifier);
2833
2834 /*
2835 * allocate all necessary structs
2836 */
2837 err = -ENOMEM;
2838
2839 init_waitqueue_head(&drbd_pp_wait);
2840
2841 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002842 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002843
2844 err = drbd_create_mempools();
2845 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002846 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002847
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002848 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002849 if (!drbd_proc) {
2850 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002851 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002852 }
2853
2854 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002855 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002856
2857 printk(KERN_INFO "drbd: initialized. "
2858 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2859 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2860 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2861 printk(KERN_INFO "drbd: registered as block device major %d\n",
2862 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002863
2864 return 0; /* Success! */
2865
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002866fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002867 drbd_cleanup();
2868 if (err == -ENOMEM)
2869 /* currently always the case */
2870 printk(KERN_ERR "drbd: ran out of memory\n");
2871 else
2872 printk(KERN_ERR "drbd: initialization failure\n");
2873 return err;
2874}
2875
2876void drbd_free_bc(struct drbd_backing_dev *ldev)
2877{
2878 if (ldev == NULL)
2879 return;
2880
Tejun Heoe525fd82010-11-13 11:55:17 +01002881 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2882 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002883
2884 kfree(ldev);
2885}
2886
Philipp Reisner360cc742011-02-08 14:29:53 +01002887void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002888{
Philipp Reisner360cc742011-02-08 14:29:53 +01002889 if (tconn->data.socket) {
2890 mutex_lock(&tconn->data.mutex);
2891 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2892 sock_release(tconn->data.socket);
2893 tconn->data.socket = NULL;
2894 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002895 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002896 if (tconn->meta.socket) {
2897 mutex_lock(&tconn->meta.mutex);
2898 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2899 sock_release(tconn->meta.socket);
2900 tconn->meta.socket = NULL;
2901 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002902 }
2903}
2904
Philipp Reisnerb411b362009-09-25 16:07:19 -07002905/* meta data management */
2906
2907struct meta_data_on_disk {
2908 u64 la_size; /* last agreed size. */
2909 u64 uuid[UI_SIZE]; /* UUIDs. */
2910 u64 device_uuid;
2911 u64 reserved_u64_1;
2912 u32 flags; /* MDF */
2913 u32 magic;
2914 u32 md_size_sect;
2915 u32 al_offset; /* offset to this block */
2916 u32 al_nr_extents; /* important for restoring the AL */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002917 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002918 u32 bm_offset; /* offset to the bitmap, from here */
2919 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002920 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2921 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002922
2923} __packed;
2924
2925/**
2926 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2927 * @mdev: DRBD device.
2928 */
2929void drbd_md_sync(struct drbd_conf *mdev)
2930{
2931 struct meta_data_on_disk *buffer;
2932 sector_t sector;
2933 int i;
2934
Lars Ellenbergee15b032010-09-03 10:00:09 +02002935 del_timer(&mdev->md_sync_timer);
2936 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002937 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
2938 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002939
2940 /* We use here D_FAILED and not D_ATTACHING because we try to write
2941 * metadata even if we detach due to a disk failure! */
2942 if (!get_ldev_if_state(mdev, D_FAILED))
2943 return;
2944
Philipp Reisnercdfda632011-07-05 15:38:59 +02002945 buffer = drbd_md_get_buffer(mdev);
2946 if (!buffer)
2947 goto out;
2948
Philipp Reisnerb411b362009-09-25 16:07:19 -07002949 memset(buffer, 0, 512);
2950
2951 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
2952 for (i = UI_CURRENT; i < UI_SIZE; i++)
2953 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
2954 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002955 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002956
2957 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
2958 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
2959 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
2960 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
2961 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
2962
2963 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002964 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002965
2966 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
2967 sector = mdev->ldev->md.md_offset;
2968
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01002969 if (drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002970 /* this was a try anyways ... */
2971 dev_err(DEV, "meta data update failed!\n");
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002972 drbd_chk_io_error(mdev, 1, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002973 }
2974
2975 /* Update mdev->ldev->md.la_size_sect,
2976 * since we updated it on metadata. */
2977 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
2978
Philipp Reisnercdfda632011-07-05 15:38:59 +02002979 drbd_md_put_buffer(mdev);
2980out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002981 put_ldev(mdev);
2982}
2983
2984/**
2985 * drbd_md_read() - Reads in the meta data super block
2986 * @mdev: DRBD device.
2987 * @bdev: Device from which the meta data should be read in.
2988 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01002989 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002990 * something goes wrong.
Philipp Reisnerb411b362009-09-25 16:07:19 -07002991 */
2992int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
2993{
2994 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002995 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002996 int i, rv = NO_ERROR;
2997
2998 if (!get_ldev_if_state(mdev, D_ATTACHING))
2999 return ERR_IO_MD_DISK;
3000
Philipp Reisnercdfda632011-07-05 15:38:59 +02003001 buffer = drbd_md_get_buffer(mdev);
3002 if (!buffer)
3003 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003004
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01003005 if (drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003006 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003007 called BEFORE disk is attached */
3008 dev_err(DEV, "Error while reading metadata.\n");
3009 rv = ERR_IO_MD_DISK;
3010 goto err;
3011 }
3012
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003013 magic = be32_to_cpu(buffer->magic);
3014 flags = be32_to_cpu(buffer->flags);
3015 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3016 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3017 /* btw: that's Activity Log clean, not "all" clean. */
3018 dev_err(DEV, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
3019 rv = ERR_MD_UNCLEAN;
3020 goto err;
3021 }
3022 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003023 if (magic == DRBD_MD_MAGIC_07)
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003024 dev_err(DEV, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
3025 else
3026 dev_err(DEV, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003027 rv = ERR_MD_INVALID;
3028 goto err;
3029 }
3030 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
3031 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
3032 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
3033 rv = ERR_MD_INVALID;
3034 goto err;
3035 }
3036 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
3037 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
3038 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
3039 rv = ERR_MD_INVALID;
3040 goto err;
3041 }
3042 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
3043 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
3044 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
3045 rv = ERR_MD_INVALID;
3046 goto err;
3047 }
3048
3049 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
3050 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
3051 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
3052 rv = ERR_MD_INVALID;
3053 goto err;
3054 }
3055
3056 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
3057 for (i = UI_CURRENT; i < UI_SIZE; i++)
3058 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3059 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003060 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3061
Philipp Reisner87eeee42011-01-19 14:16:30 +01003062 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003063 if (mdev->state.conn < C_CONNECTED) {
3064 int peer;
3065 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
3066 peer = max_t(int, peer, DRBD_MAX_BIO_SIZE_SAFE);
3067 mdev->peer_max_bio_size = peer;
3068 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003069 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003070
Philipp Reisnerb411b362009-09-25 16:07:19 -07003071 err:
Philipp Reisnercdfda632011-07-05 15:38:59 +02003072 drbd_md_put_buffer(mdev);
3073 out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07003074 put_ldev(mdev);
3075
3076 return rv;
3077}
3078
3079/**
3080 * drbd_md_mark_dirty() - Mark meta data super block as dirty
3081 * @mdev: DRBD device.
3082 *
3083 * Call this function if you change anything that should be written to
3084 * the meta-data super block. This function sets MD_DIRTY, and starts a
3085 * timer that ensures that within five seconds you have to call drbd_md_sync().
3086 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003087#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02003088void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
3089{
3090 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
3091 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
3092 mdev->last_md_mark_dirty.line = line;
3093 mdev->last_md_mark_dirty.func = func;
3094 }
3095}
3096#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07003097void drbd_md_mark_dirty(struct drbd_conf *mdev)
3098{
Lars Ellenbergee15b032010-09-03 10:00:09 +02003099 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003100 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003101}
Lars Ellenbergee15b032010-09-03 10:00:09 +02003102#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003103
3104static void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
3105{
3106 int i;
3107
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003108 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003109 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003110}
3111
3112void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3113{
3114 if (idx == UI_CURRENT) {
3115 if (mdev->state.role == R_PRIMARY)
3116 val |= 1;
3117 else
3118 val &= ~((u64)1);
3119
3120 drbd_set_ed_uuid(mdev, val);
3121 }
3122
3123 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003124 drbd_md_mark_dirty(mdev);
3125}
3126
3127
3128void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3129{
3130 if (mdev->ldev->md.uuid[idx]) {
3131 drbd_uuid_move_history(mdev);
3132 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003133 }
3134 _drbd_uuid_set(mdev, idx, val);
3135}
3136
3137/**
3138 * drbd_uuid_new_current() - Creates a new current UUID
3139 * @mdev: DRBD device.
3140 *
3141 * Creates a new current UUID, and rotates the old current UUID into
3142 * the bitmap slot. Causes an incremental resync upon next connect.
3143 */
3144void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
3145{
3146 u64 val;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003147 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003148
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003149 if (bm_uuid)
3150 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
3151
Philipp Reisnerb411b362009-09-25 16:07:19 -07003152 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003153
3154 get_random_bytes(&val, sizeof(u64));
3155 _drbd_uuid_set(mdev, UI_CURRENT, val);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003156 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003157 /* get it to stable storage _now_ */
3158 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003159}
3160
3161void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
3162{
3163 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
3164 return;
3165
3166 if (val == 0) {
3167 drbd_uuid_move_history(mdev);
3168 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
3169 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003170 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003171 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
3172 if (bm_uuid)
3173 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003174
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003175 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003176 }
3177 drbd_md_mark_dirty(mdev);
3178}
3179
3180/**
3181 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3182 * @mdev: DRBD device.
3183 *
3184 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3185 */
3186int drbd_bmio_set_n_write(struct drbd_conf *mdev)
3187{
3188 int rv = -EIO;
3189
3190 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3191 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
3192 drbd_md_sync(mdev);
3193 drbd_bm_set_all(mdev);
3194
3195 rv = drbd_bm_write(mdev);
3196
3197 if (!rv) {
3198 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
3199 drbd_md_sync(mdev);
3200 }
3201
3202 put_ldev(mdev);
3203 }
3204
3205 return rv;
3206}
3207
3208/**
3209 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3210 * @mdev: DRBD device.
3211 *
3212 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3213 */
3214int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
3215{
3216 int rv = -EIO;
3217
Philipp Reisner07782862010-08-31 12:00:50 +02003218 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003219 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3220 drbd_bm_clear_all(mdev);
3221 rv = drbd_bm_write(mdev);
3222 put_ldev(mdev);
3223 }
3224
3225 return rv;
3226}
3227
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003228static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003229{
3230 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01003231 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003232 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003233
3234 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
3235
Lars Ellenberg02851e92010-12-16 14:47:39 +01003236 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003237 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003238 rv = work->io_fn(mdev);
3239 drbd_bm_unlock(mdev);
3240 put_ldev(mdev);
3241 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003242
Lars Ellenberg4738fa12011-02-21 13:20:55 +01003243 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003244 wake_up(&mdev->misc_wait);
3245
3246 if (work->done)
3247 work->done(mdev, rv);
3248
3249 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
3250 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003251 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003252
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003253 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003254}
3255
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003256void drbd_ldev_destroy(struct drbd_conf *mdev)
3257{
3258 lc_destroy(mdev->resync);
3259 mdev->resync = NULL;
3260 lc_destroy(mdev->act_log);
3261 mdev->act_log = NULL;
3262 __no_warn(local,
3263 drbd_free_bc(mdev->ldev);
3264 mdev->ldev = NULL;);
3265
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003266 clear_bit(GO_DISKLESS, &mdev->flags);
3267}
3268
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003269static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003270{
Philipp Reisner00d56942011-02-09 18:09:48 +01003271 struct drbd_conf *mdev = w->mdev;
3272
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003273 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02003274 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
3275 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003276 * the protected members anymore, though, so once put_ldev reaches zero
3277 * again, it will be safe to free them. */
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003278 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003279 return 0;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003280}
3281
3282void drbd_go_diskless(struct drbd_conf *mdev)
3283{
3284 D_ASSERT(mdev->state.disk == D_FAILED);
3285 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01003286 drbd_queue_work(&mdev->tconn->data.work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003287}
3288
Philipp Reisnerb411b362009-09-25 16:07:19 -07003289/**
3290 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
3291 * @mdev: DRBD device.
3292 * @io_fn: IO callback to be called when bitmap IO is possible
3293 * @done: callback to be called after the bitmap IO was performed
3294 * @why: Descriptive text of the reason for doing the IO
3295 *
3296 * While IO on the bitmap happens we freeze application IO thus we ensure
3297 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3298 * called from worker context. It MUST NOT be used while a previous such
3299 * work is still pending!
3300 */
3301void drbd_queue_bitmap_io(struct drbd_conf *mdev,
3302 int (*io_fn)(struct drbd_conf *),
3303 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003304 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003305{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003306 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003307
3308 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
3309 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
3310 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
3311 if (mdev->bm_io_work.why)
3312 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
3313 why, mdev->bm_io_work.why);
3314
3315 mdev->bm_io_work.io_fn = io_fn;
3316 mdev->bm_io_work.done = done;
3317 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003318 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003319
Philipp Reisner87eeee42011-01-19 14:16:30 +01003320 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003321 set_bit(BITMAP_IO, &mdev->flags);
3322 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01003323 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01003324 drbd_queue_work(&mdev->tconn->data.work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003325 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003326 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003327}
3328
3329/**
3330 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
3331 * @mdev: DRBD device.
3332 * @io_fn: IO callback to be called when bitmap IO is possible
3333 * @why: Descriptive text of the reason for doing the IO
3334 *
3335 * freezes application IO while that the actual IO operations runs. This
3336 * functions MAY NOT be called from worker context.
3337 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003338int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
3339 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003340{
3341 int rv;
3342
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003343 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003344
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003345 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3346 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003347
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003348 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003349 rv = io_fn(mdev);
3350 drbd_bm_unlock(mdev);
3351
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003352 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3353 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003354
3355 return rv;
3356}
3357
3358void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3359{
3360 if ((mdev->ldev->md.flags & flag) != flag) {
3361 drbd_md_mark_dirty(mdev);
3362 mdev->ldev->md.flags |= flag;
3363 }
3364}
3365
3366void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3367{
3368 if ((mdev->ldev->md.flags & flag) != 0) {
3369 drbd_md_mark_dirty(mdev);
3370 mdev->ldev->md.flags &= ~flag;
3371 }
3372}
3373int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3374{
3375 return (bdev->md.flags & flag) != 0;
3376}
3377
3378static void md_sync_timer_fn(unsigned long data)
3379{
3380 struct drbd_conf *mdev = (struct drbd_conf *) data;
3381
Philipp Reisnere42325a2011-01-19 13:55:45 +01003382 drbd_queue_work_front(&mdev->tconn->data.work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003383}
3384
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003385static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003386{
Philipp Reisner00d56942011-02-09 18:09:48 +01003387 struct drbd_conf *mdev = w->mdev;
3388
Philipp Reisnerb411b362009-09-25 16:07:19 -07003389 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003390#ifdef DEBUG
3391 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3392 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3393#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003394 drbd_md_sync(mdev);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003395 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003396}
3397
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003398const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003399{
3400 /* THINK may need to become several global tables
3401 * when we want to support more than
3402 * one PRO_VERSION */
3403 static const char *cmdnames[] = {
3404 [P_DATA] = "Data",
3405 [P_DATA_REPLY] = "DataReply",
3406 [P_RS_DATA_REPLY] = "RSDataReply",
3407 [P_BARRIER] = "Barrier",
3408 [P_BITMAP] = "ReportBitMap",
3409 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3410 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3411 [P_UNPLUG_REMOTE] = "UnplugRemote",
3412 [P_DATA_REQUEST] = "DataRequest",
3413 [P_RS_DATA_REQUEST] = "RSDataRequest",
3414 [P_SYNC_PARAM] = "SyncParam",
3415 [P_SYNC_PARAM89] = "SyncParam89",
3416 [P_PROTOCOL] = "ReportProtocol",
3417 [P_UUIDS] = "ReportUUIDs",
3418 [P_SIZES] = "ReportSizes",
3419 [P_STATE] = "ReportState",
3420 [P_SYNC_UUID] = "ReportSyncUUID",
3421 [P_AUTH_CHALLENGE] = "AuthChallenge",
3422 [P_AUTH_RESPONSE] = "AuthResponse",
3423 [P_PING] = "Ping",
3424 [P_PING_ACK] = "PingAck",
3425 [P_RECV_ACK] = "RecvAck",
3426 [P_WRITE_ACK] = "WriteAck",
3427 [P_RS_WRITE_ACK] = "RSWriteAck",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003428 [P_DISCARD_WRITE] = "DiscardWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003429 [P_NEG_ACK] = "NegAck",
3430 [P_NEG_DREPLY] = "NegDReply",
3431 [P_NEG_RS_DREPLY] = "NegRSDReply",
3432 [P_BARRIER_ACK] = "BarrierAck",
3433 [P_STATE_CHG_REQ] = "StateChgRequest",
3434 [P_STATE_CHG_REPLY] = "StateChgReply",
3435 [P_OV_REQUEST] = "OVRequest",
3436 [P_OV_REPLY] = "OVReply",
3437 [P_OV_RESULT] = "OVResult",
3438 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3439 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3440 [P_COMPRESSED_BITMAP] = "CBitmap",
3441 [P_DELAY_PROBE] = "DelayProbe",
3442 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003443 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003444 [P_RS_CANCEL] = "RSCancel",
3445 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3446 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003447 [P_RETRY_WRITE] = "retry_write",
3448 [P_PROTOCOL_UPDATE] = "protocol_update",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003449
3450 /* enum drbd_packet, but not commands - obsoleted flags:
3451 * P_MAY_IGNORE
3452 * P_MAX_OPT_CMD
3453 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003454 };
3455
Lars Ellenbergae25b332011-04-24 00:01:16 +02003456 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003457 if (cmd == P_INITIAL_META)
3458 return "InitialMeta";
3459 if (cmd == P_INITIAL_DATA)
3460 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003461 if (cmd == P_CONNECTION_FEATURES)
3462 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003463 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003464 return "Unknown";
3465 return cmdnames[cmd];
3466}
3467
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003468/**
3469 * drbd_wait_misc - wait for a request to make progress
3470 * @mdev: device associated with the request
3471 * @i: the struct drbd_interval embedded in struct drbd_request or
3472 * struct drbd_peer_request
3473 */
3474int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3475{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003476 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003477 DEFINE_WAIT(wait);
3478 long timeout;
3479
Philipp Reisner44ed1672011-04-19 17:10:19 +02003480 rcu_read_lock();
3481 nc = rcu_dereference(mdev->tconn->net_conf);
3482 if (!nc) {
3483 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003484 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003485 }
3486 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3487 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003488
3489 /* Indicate to wake up mdev->misc_wait on progress. */
3490 i->waiting = true;
3491 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3492 spin_unlock_irq(&mdev->tconn->req_lock);
3493 timeout = schedule_timeout(timeout);
3494 finish_wait(&mdev->misc_wait, &wait);
3495 spin_lock_irq(&mdev->tconn->req_lock);
3496 if (!timeout || mdev->state.conn < C_CONNECTED)
3497 return -ETIMEDOUT;
3498 if (signal_pending(current))
3499 return -ERESTARTSYS;
3500 return 0;
3501}
3502
Philipp Reisnerb411b362009-09-25 16:07:19 -07003503#ifdef CONFIG_DRBD_FAULT_INJECTION
3504/* Fault insertion support including random number generator shamelessly
3505 * stolen from kernel/rcutorture.c */
3506struct fault_random_state {
3507 unsigned long state;
3508 unsigned long count;
3509};
3510
3511#define FAULT_RANDOM_MULT 39916801 /* prime */
3512#define FAULT_RANDOM_ADD 479001701 /* prime */
3513#define FAULT_RANDOM_REFRESH 10000
3514
3515/*
3516 * Crude but fast random-number generator. Uses a linear congruential
3517 * generator, with occasional help from get_random_bytes().
3518 */
3519static unsigned long
3520_drbd_fault_random(struct fault_random_state *rsp)
3521{
3522 long refresh;
3523
Roel Kluin49829ea2009-12-15 22:55:44 +01003524 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003525 get_random_bytes(&refresh, sizeof(refresh));
3526 rsp->state += refresh;
3527 rsp->count = FAULT_RANDOM_REFRESH;
3528 }
3529 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3530 return swahw32(rsp->state);
3531}
3532
3533static char *
3534_drbd_fault_str(unsigned int type) {
3535 static char *_faults[] = {
3536 [DRBD_FAULT_MD_WR] = "Meta-data write",
3537 [DRBD_FAULT_MD_RD] = "Meta-data read",
3538 [DRBD_FAULT_RS_WR] = "Resync write",
3539 [DRBD_FAULT_RS_RD] = "Resync read",
3540 [DRBD_FAULT_DT_WR] = "Data write",
3541 [DRBD_FAULT_DT_RD] = "Data read",
3542 [DRBD_FAULT_DT_RA] = "Data read ahead",
3543 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003544 [DRBD_FAULT_AL_EE] = "EE allocation",
3545 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003546 };
3547
3548 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3549}
3550
3551unsigned int
3552_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3553{
3554 static struct fault_random_state rrs = {0, 0};
3555
3556 unsigned int ret = (
3557 (fault_devs == 0 ||
3558 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3559 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3560
3561 if (ret) {
3562 fault_count++;
3563
Lars Ellenberg73835062010-05-27 11:51:56 +02003564 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003565 dev_warn(DEV, "***Simulating %s failure\n",
3566 _drbd_fault_str(type));
3567 }
3568
3569 return ret;
3570}
3571#endif
3572
3573const char *drbd_buildtag(void)
3574{
3575 /* DRBD built from external sources has here a reference to the
3576 git hash of the source code. */
3577
3578 static char buildtag[38] = "\0uilt-in";
3579
3580 if (buildtag[0] == 0) {
3581#ifdef CONFIG_MODULES
3582 if (THIS_MODULE != NULL)
3583 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3584 else
3585#endif
3586 buildtag[0] = 'b';
3587 }
3588
3589 return buildtag;
3590}
3591
3592module_init(drbd_init)
3593module_exit(drbd_cleanup)
3594
Philipp Reisnerb411b362009-09-25 16:07:19 -07003595EXPORT_SYMBOL(drbd_conn_str);
3596EXPORT_SYMBOL(drbd_role_str);
3597EXPORT_SYMBOL(drbd_disk_str);
3598EXPORT_SYMBOL(drbd_set_st_err_str);