blob: 8b99f4e28ccc2cdc5ff03df07aad7853fda73eaa [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);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002085
2086 INIT_LIST_HEAD(&mdev->active_ee);
2087 INIT_LIST_HEAD(&mdev->sync_ee);
2088 INIT_LIST_HEAD(&mdev->done_ee);
2089 INIT_LIST_HEAD(&mdev->read_ee);
2090 INIT_LIST_HEAD(&mdev->net_ee);
2091 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002092 INIT_LIST_HEAD(&mdev->resync_work.list);
2093 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002094 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002095 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02002096 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002097 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02002098
Philipp Reisner794abb72010-12-27 11:51:23 +01002099 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002100 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002101 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002102 mdev->md_sync_work.cb = w_md_sync;
2103 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01002104 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01002105
2106 mdev->resync_work.mdev = mdev;
2107 mdev->unplug_work.mdev = mdev;
2108 mdev->go_diskless.mdev = mdev;
2109 mdev->md_sync_work.mdev = mdev;
2110 mdev->bm_io_work.w.mdev = mdev;
2111 mdev->start_resync_work.mdev = mdev;
2112
Philipp Reisnerb411b362009-09-25 16:07:19 -07002113 init_timer(&mdev->resync_timer);
2114 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01002115 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01002116 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002117 mdev->resync_timer.function = resync_timer_fn;
2118 mdev->resync_timer.data = (unsigned long) mdev;
2119 mdev->md_sync_timer.function = md_sync_timer_fn;
2120 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01002121 mdev->start_resync_timer.function = start_resync_timer_fn;
2122 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01002123 mdev->request_timer.function = request_timer_fn;
2124 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002125
2126 init_waitqueue_head(&mdev->misc_wait);
2127 init_waitqueue_head(&mdev->state_wait);
2128 init_waitqueue_head(&mdev->ee_wait);
2129 init_waitqueue_head(&mdev->al_wait);
2130 init_waitqueue_head(&mdev->seq_wait);
2131
Philipp Reisnerb411b362009-09-25 16:07:19 -07002132 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02002133 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
2134 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002135}
2136
2137void drbd_mdev_cleanup(struct drbd_conf *mdev)
2138{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002139 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002140 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002141 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002142 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002143
Philipp Reisnerb411b362009-09-25 16:07:19 -07002144 mdev->al_writ_cnt =
2145 mdev->bm_writ_cnt =
2146 mdev->read_cnt =
2147 mdev->recv_cnt =
2148 mdev->send_cnt =
2149 mdev->writ_cnt =
2150 mdev->p_size =
2151 mdev->rs_start =
2152 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002153 mdev->rs_failed = 0;
2154 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002155 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002156 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
2157 mdev->rs_mark_left[i] = 0;
2158 mdev->rs_mark_time[i] = 0;
2159 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01002160 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002161
2162 drbd_set_my_capacity(mdev, 0);
2163 if (mdev->bitmap) {
2164 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01002165 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002166 drbd_bm_cleanup(mdev);
2167 }
2168
Philipp Reisner1d041222011-04-22 15:20:23 +02002169 drbd_free_bc(mdev->ldev);
2170 mdev->ldev = NULL;
2171
Philipp Reisner07782862010-08-31 12:00:50 +02002172 clear_bit(AL_SUSPENDED, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002173
Philipp Reisnerb411b362009-09-25 16:07:19 -07002174 D_ASSERT(list_empty(&mdev->active_ee));
2175 D_ASSERT(list_empty(&mdev->sync_ee));
2176 D_ASSERT(list_empty(&mdev->done_ee));
2177 D_ASSERT(list_empty(&mdev->read_ee));
2178 D_ASSERT(list_empty(&mdev->net_ee));
2179 D_ASSERT(list_empty(&mdev->resync_reads));
Philipp Reisnere42325a2011-01-19 13:55:45 +01002180 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
2181 D_ASSERT(list_empty(&mdev->tconn->meta.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002182 D_ASSERT(list_empty(&mdev->resync_work.list));
2183 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002184 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002185
2186 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002187}
2188
2189
2190static void drbd_destroy_mempools(void)
2191{
2192 struct page *page;
2193
2194 while (drbd_pp_pool) {
2195 page = drbd_pp_pool;
2196 drbd_pp_pool = (struct page *)page_private(page);
2197 __free_page(page);
2198 drbd_pp_vacant--;
2199 }
2200
2201 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
2202
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002203 if (drbd_md_io_bio_set)
2204 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg35abf592011-02-23 12:39:46 +01002205 if (drbd_md_io_page_pool)
2206 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002207 if (drbd_ee_mempool)
2208 mempool_destroy(drbd_ee_mempool);
2209 if (drbd_request_mempool)
2210 mempool_destroy(drbd_request_mempool);
2211 if (drbd_ee_cache)
2212 kmem_cache_destroy(drbd_ee_cache);
2213 if (drbd_request_cache)
2214 kmem_cache_destroy(drbd_request_cache);
2215 if (drbd_bm_ext_cache)
2216 kmem_cache_destroy(drbd_bm_ext_cache);
2217 if (drbd_al_ext_cache)
2218 kmem_cache_destroy(drbd_al_ext_cache);
2219
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002220 drbd_md_io_bio_set = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002221 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002222 drbd_ee_mempool = NULL;
2223 drbd_request_mempool = NULL;
2224 drbd_ee_cache = NULL;
2225 drbd_request_cache = NULL;
2226 drbd_bm_ext_cache = NULL;
2227 drbd_al_ext_cache = NULL;
2228
2229 return;
2230}
2231
2232static int drbd_create_mempools(void)
2233{
2234 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01002235 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002236 int i;
2237
2238 /* prepare our caches and mempools */
2239 drbd_request_mempool = NULL;
2240 drbd_ee_cache = NULL;
2241 drbd_request_cache = NULL;
2242 drbd_bm_ext_cache = NULL;
2243 drbd_al_ext_cache = NULL;
2244 drbd_pp_pool = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002245 drbd_md_io_page_pool = NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002246 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002247
2248 /* caches */
2249 drbd_request_cache = kmem_cache_create(
2250 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2251 if (drbd_request_cache == NULL)
2252 goto Enomem;
2253
2254 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002255 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002256 if (drbd_ee_cache == NULL)
2257 goto Enomem;
2258
2259 drbd_bm_ext_cache = kmem_cache_create(
2260 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2261 if (drbd_bm_ext_cache == NULL)
2262 goto Enomem;
2263
2264 drbd_al_ext_cache = kmem_cache_create(
2265 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2266 if (drbd_al_ext_cache == NULL)
2267 goto Enomem;
2268
2269 /* mempools */
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002270 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2271 if (drbd_md_io_bio_set == NULL)
2272 goto Enomem;
2273
Lars Ellenberg35abf592011-02-23 12:39:46 +01002274 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2275 if (drbd_md_io_page_pool == NULL)
2276 goto Enomem;
2277
Philipp Reisnerb411b362009-09-25 16:07:19 -07002278 drbd_request_mempool = mempool_create(number,
2279 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2280 if (drbd_request_mempool == NULL)
2281 goto Enomem;
2282
2283 drbd_ee_mempool = mempool_create(number,
2284 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002285 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002286 goto Enomem;
2287
2288 /* drbd's page pool */
2289 spin_lock_init(&drbd_pp_lock);
2290
2291 for (i = 0; i < number; i++) {
2292 page = alloc_page(GFP_HIGHUSER);
2293 if (!page)
2294 goto Enomem;
2295 set_page_private(page, (unsigned long)drbd_pp_pool);
2296 drbd_pp_pool = page;
2297 }
2298 drbd_pp_vacant = number;
2299
2300 return 0;
2301
2302Enomem:
2303 drbd_destroy_mempools(); /* in case we allocated some */
2304 return -ENOMEM;
2305}
2306
2307static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2308 void *unused)
2309{
2310 /* just so we have it. you never know what interesting things we
2311 * might want to do here some day...
2312 */
2313
2314 return NOTIFY_DONE;
2315}
2316
2317static struct notifier_block drbd_notifier = {
2318 .notifier_call = drbd_notify_sys,
2319};
2320
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002321static void drbd_release_all_peer_reqs(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002322{
2323 int rr;
2324
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002325 rr = drbd_free_peer_reqs(mdev, &mdev->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002326 if (rr)
2327 dev_err(DEV, "%d EEs in active list found!\n", rr);
2328
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002329 rr = drbd_free_peer_reqs(mdev, &mdev->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002330 if (rr)
2331 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2332
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002333 rr = drbd_free_peer_reqs(mdev, &mdev->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002334 if (rr)
2335 dev_err(DEV, "%d EEs in read list found!\n", rr);
2336
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002337 rr = drbd_free_peer_reqs(mdev, &mdev->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002338 if (rr)
2339 dev_err(DEV, "%d EEs in done list found!\n", rr);
2340
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002341 rr = drbd_free_peer_reqs(mdev, &mdev->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002342 if (rr)
2343 dev_err(DEV, "%d EEs in net list found!\n", rr);
2344}
2345
Philipp Reisner774b3052011-02-22 02:07:03 -05002346/* caution. no locking. */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002347void drbd_minor_destroy(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002348{
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002349 struct drbd_conf *mdev = container_of(kref, struct drbd_conf, kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002350 struct drbd_tconn *tconn = mdev->tconn;
2351
Philipp Reisnercdfda632011-07-05 15:38:59 +02002352 del_timer_sync(&mdev->request_timer);
2353
Philipp Reisnerb411b362009-09-25 16:07:19 -07002354 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002355 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnere42325a2011-01-19 13:55:45 +01002356 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002357 /* end paranoia asserts */
2358
Philipp Reisnerb411b362009-09-25 16:07:19 -07002359 /* cleanup stuff that may have been allocated during
2360 * device (re-)configuration or state changes */
2361
2362 if (mdev->this_bdev)
2363 bdput(mdev->this_bdev);
2364
Philipp Reisner1d041222011-04-22 15:20:23 +02002365 drbd_free_bc(mdev->ldev);
2366 mdev->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002367
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002368 drbd_release_all_peer_reqs(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002369
Philipp Reisnerb411b362009-09-25 16:07:19 -07002370 lc_destroy(mdev->act_log);
2371 lc_destroy(mdev->resync);
2372
2373 kfree(mdev->p_uuid);
2374 /* mdev->p_uuid = NULL; */
2375
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002376 if (mdev->bitmap) /* should no longer be there. */
2377 drbd_bm_cleanup(mdev);
2378 __free_page(mdev->md_io_page);
2379 put_disk(mdev->vdisk);
2380 blk_cleanup_queue(mdev->rq_queue);
Philipp Reisner9958c852011-05-03 16:19:31 +02002381 kfree(mdev->rs_plan_s);
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002382 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002383
2384 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002385}
2386
2387static void drbd_cleanup(void)
2388{
2389 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002390 struct drbd_conf *mdev;
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002391 struct drbd_tconn *tconn, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002392
2393 unregister_reboot_notifier(&drbd_notifier);
2394
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002395 /* first remove proc,
2396 * drbdsetup uses it's presence to detect
2397 * whether DRBD is loaded.
2398 * If we would get stuck in proc removal,
2399 * but have netlink already deregistered,
2400 * some drbdsetup commands may wait forever
2401 * for an answer.
2402 */
2403 if (drbd_proc)
2404 remove_proc_entry("drbd", NULL);
2405
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002406 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002407
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002408 idr_for_each_entry(&minors, mdev, i) {
2409 idr_remove(&minors, mdev_to_minor(mdev));
2410 idr_remove(&mdev->tconn->volumes, mdev->vnr);
2411 del_gendisk(mdev->vdisk);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002412 /* synchronize_rcu(); No other threads running at this point */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002413 kref_put(&mdev->kref, &drbd_minor_destroy);
2414 }
2415
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002416 /* not _rcu since, no other updater anymore. Genl already unregistered */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002417 list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002418 list_del(&tconn->all_tconn); /* not _rcu no proc, not other threads */
2419 /* synchronize_rcu(); */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002420 kref_put(&tconn->kref, &conn_destroy);
2421 }
Philipp Reisnerff370e52011-04-11 21:10:11 -07002422
Philipp Reisner81a5d602011-02-22 19:53:16 -05002423 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002424 unregister_blkdev(DRBD_MAJOR, "drbd");
2425
Philipp Reisner81a5d602011-02-22 19:53:16 -05002426 idr_destroy(&minors);
2427
Philipp Reisnerb411b362009-09-25 16:07:19 -07002428 printk(KERN_INFO "drbd: module cleanup done.\n");
2429}
2430
2431/**
2432 * drbd_congested() - Callback for pdflush
2433 * @congested_data: User data
2434 * @bdi_bits: Bits pdflush is currently interested in
2435 *
2436 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2437 */
2438static int drbd_congested(void *congested_data, int bdi_bits)
2439{
2440 struct drbd_conf *mdev = congested_data;
2441 struct request_queue *q;
2442 char reason = '-';
2443 int r = 0;
2444
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002445 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002446 /* DRBD has frozen IO */
2447 r = bdi_bits;
2448 reason = 'd';
2449 goto out;
2450 }
2451
2452 if (get_ldev(mdev)) {
2453 q = bdev_get_queue(mdev->ldev->backing_bdev);
2454 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2455 put_ldev(mdev);
2456 if (r)
2457 reason = 'b';
2458 }
2459
Philipp Reisner01a311a2011-02-07 14:30:33 +01002460 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002461 r |= (1 << BDI_async_congested);
2462 reason = reason == 'b' ? 'a' : 'n';
2463 }
2464
2465out:
2466 mdev->congestion_reason = reason;
2467 return r;
2468}
2469
Philipp Reisner6699b652011-02-09 11:10:24 +01002470static void drbd_init_workqueue(struct drbd_work_queue* wq)
2471{
2472 sema_init(&wq->s, 0);
2473 spin_lock_init(&wq->q_lock);
2474 INIT_LIST_HEAD(&wq->q);
2475}
2476
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002477struct drbd_tconn *conn_get_by_name(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002478{
2479 struct drbd_tconn *tconn;
2480
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002481 if (!name || !name[0])
2482 return NULL;
2483
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002484 rcu_read_lock();
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002485 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002486 if (!strcmp(tconn->name, name)) {
2487 kref_get(&tconn->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002488 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002489 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002490 }
2491 tconn = NULL;
2492found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002493 rcu_read_unlock();
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002494 return tconn;
2495}
2496
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002497struct drbd_tconn *conn_get_by_addrs(void *my_addr, int my_addr_len,
2498 void *peer_addr, int peer_addr_len)
2499{
2500 struct drbd_tconn *tconn;
2501
2502 rcu_read_lock();
2503 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
2504 if (tconn->my_addr_len == my_addr_len &&
2505 tconn->peer_addr_len == peer_addr_len &&
2506 !memcmp(&tconn->my_addr, my_addr, my_addr_len) &&
2507 !memcmp(&tconn->peer_addr, peer_addr, peer_addr_len)) {
2508 kref_get(&tconn->kref);
2509 goto found;
2510 }
2511 }
2512 tconn = NULL;
2513found:
2514 rcu_read_unlock();
2515 return tconn;
2516}
2517
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002518static int drbd_alloc_socket(struct drbd_socket *socket)
2519{
2520 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2521 if (!socket->rbuf)
2522 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002523 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2524 if (!socket->sbuf)
2525 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002526 return 0;
2527}
2528
2529static void drbd_free_socket(struct drbd_socket *socket)
2530{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002531 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002532 free_page((unsigned long) socket->rbuf);
2533}
2534
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002535void conn_free_crypto(struct drbd_tconn *tconn)
2536{
Philipp Reisner1d041222011-04-22 15:20:23 +02002537 drbd_free_sock(tconn);
2538
2539 crypto_free_hash(tconn->csums_tfm);
2540 crypto_free_hash(tconn->verify_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002541 crypto_free_hash(tconn->cram_hmac_tfm);
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002542 crypto_free_hash(tconn->integrity_tfm);
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002543 crypto_free_hash(tconn->peer_integrity_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002544 kfree(tconn->int_dig_in);
2545 kfree(tconn->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002546
2547 tconn->csums_tfm = NULL;
2548 tconn->verify_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002549 tconn->cram_hmac_tfm = NULL;
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002550 tconn->integrity_tfm = NULL;
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002551 tconn->peer_integrity_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002552 tconn->int_dig_in = NULL;
2553 tconn->int_dig_vv = NULL;
2554}
2555
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002556int set_resource_options(struct drbd_tconn *tconn, struct res_opts *res_opts)
2557{
2558 cpumask_var_t new_cpu_mask;
2559 int err;
2560
2561 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2562 return -ENOMEM;
2563 /*
2564 retcode = ERR_NOMEM;
2565 drbd_msg_put_info("unable to allocate cpumask");
2566 */
2567
2568 /* silently ignore cpu mask on UP kernel */
2569 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
2570 /* FIXME: Get rid of constant 32 here */
2571 err = __bitmap_parse(res_opts->cpu_mask, 32, 0,
2572 cpumask_bits(new_cpu_mask), nr_cpu_ids);
2573 if (err) {
2574 conn_warn(tconn, "__bitmap_parse() failed with %d\n", err);
2575 /* retcode = ERR_CPU_MASK_PARSE; */
2576 goto fail;
2577 }
2578 }
2579 tconn->res_opts = *res_opts;
2580 if (!cpumask_equal(tconn->cpu_mask, new_cpu_mask)) {
2581 cpumask_copy(tconn->cpu_mask, new_cpu_mask);
2582 drbd_calc_cpu_mask(tconn);
2583 tconn->receiver.reset_cpu_mask = 1;
2584 tconn->asender.reset_cpu_mask = 1;
2585 tconn->worker.reset_cpu_mask = 1;
2586 }
2587 err = 0;
2588
2589fail:
2590 free_cpumask_var(new_cpu_mask);
2591 return err;
2592
2593}
2594
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002595/* caller must be under genl_lock() */
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002596struct drbd_tconn *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002597{
2598 struct drbd_tconn *tconn;
2599
2600 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2601 if (!tconn)
2602 return NULL;
2603
2604 tconn->name = kstrdup(name, GFP_KERNEL);
2605 if (!tconn->name)
2606 goto fail;
2607
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002608 if (drbd_alloc_socket(&tconn->data))
2609 goto fail;
2610 if (drbd_alloc_socket(&tconn->meta))
2611 goto fail;
2612
Philipp Reisner774b3052011-02-22 02:07:03 -05002613 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2614 goto fail;
2615
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002616 if (set_resource_options(tconn, res_opts))
2617 goto fail;
2618
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002619 if (!tl_init(tconn))
2620 goto fail;
2621
Philipp Reisner12038a32011-11-09 19:18:00 +01002622 tconn->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2623 if (!tconn->current_epoch)
2624 goto fail;
2625 INIT_LIST_HEAD(&tconn->current_epoch->list);
2626 tconn->epochs = 1;
2627 spin_lock_init(&tconn->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002628 tconn->write_ordering = WO_bdev_flush;
2629
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002630 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da8f02011-02-11 20:11:10 +01002631 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002632 spin_lock_init(&tconn->req_lock);
Philipp Reisnera0095502011-05-03 13:14:15 +02002633 mutex_init(&tconn->conf_update);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002634 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002635 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002636
Philipp Reisner6699b652011-02-09 11:10:24 +01002637 drbd_init_workqueue(&tconn->data.work);
2638 mutex_init(&tconn->data.mutex);
2639
2640 drbd_init_workqueue(&tconn->meta.work);
2641 mutex_init(&tconn->meta.mutex);
2642
Philipp Reisner392c8802011-02-09 10:33:31 +01002643 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2644 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2645 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2646
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002647 kref_init(&tconn->kref);
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002648 list_add_tail_rcu(&tconn->all_tconn, &drbd_tconns);
Philipp Reisner21114382011-01-19 12:26:59 +01002649
2650 return tconn;
2651
2652fail:
Philipp Reisner12038a32011-11-09 19:18:00 +01002653 kfree(tconn->current_epoch);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002654 tl_cleanup(tconn);
Philipp Reisner774b3052011-02-22 02:07:03 -05002655 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002656 drbd_free_socket(&tconn->meta);
2657 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002658 kfree(tconn->name);
2659 kfree(tconn);
2660
2661 return NULL;
2662}
2663
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002664void conn_destroy(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002665{
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002666 struct drbd_tconn *tconn = container_of(kref, struct drbd_tconn, kref);
2667
Philipp Reisner12038a32011-11-09 19:18:00 +01002668 if (atomic_read(&tconn->current_epoch->epoch_size) != 0)
2669 conn_err(tconn, "epoch_size:%d\n", atomic_read(&tconn->current_epoch->epoch_size));
2670 kfree(tconn->current_epoch);
2671
Philipp Reisner062e8792011-02-08 11:09:18 +01002672 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002673
Philipp Reisner774b3052011-02-22 02:07:03 -05002674 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002675 drbd_free_socket(&tconn->meta);
2676 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002677 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002678 kfree(tconn->int_dig_in);
2679 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002680 kfree(tconn);
2681}
2682
Philipp Reisner774b3052011-02-22 02:07:03 -05002683enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002684{
2685 struct drbd_conf *mdev;
2686 struct gendisk *disk;
2687 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002688 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002689 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002690 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002691
2692 mdev = minor_to_mdev(minor);
2693 if (mdev)
2694 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002695
2696 /* GFP_KERNEL, we are outside of all write-out paths */
2697 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2698 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002699 return ERR_NOMEM;
2700
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002701 kref_get(&tconn->kref);
Philipp Reisner774b3052011-02-22 02:07:03 -05002702 mdev->tconn = tconn;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002703
Philipp Reisnerb411b362009-09-25 16:07:19 -07002704 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002705 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002706
2707 drbd_init_set_defaults(mdev);
2708
2709 q = blk_alloc_queue(GFP_KERNEL);
2710 if (!q)
2711 goto out_no_q;
2712 mdev->rq_queue = q;
2713 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002714
2715 disk = alloc_disk(1);
2716 if (!disk)
2717 goto out_no_disk;
2718 mdev->vdisk = disk;
2719
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002720 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002721
2722 disk->queue = q;
2723 disk->major = DRBD_MAJOR;
2724 disk->first_minor = minor;
2725 disk->fops = &drbd_ops;
2726 sprintf(disk->disk_name, "drbd%d", minor);
2727 disk->private_data = mdev;
2728
2729 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2730 /* we have no partitions. we contain only ourselves. */
2731 mdev->this_bdev->bd_contains = mdev->this_bdev;
2732
2733 q->backing_dev_info.congested_fn = drbd_congested;
2734 q->backing_dev_info.congested_data = mdev;
2735
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002736 blk_queue_make_request(q, drbd_make_request);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002737 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2738 This triggers a max_bio_size message upon first attach or connect */
2739 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002740 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2741 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002742 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002743
2744 mdev->md_io_page = alloc_page(GFP_KERNEL);
2745 if (!mdev->md_io_page)
2746 goto out_no_io_page;
2747
2748 if (drbd_bm_init(mdev))
2749 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002750 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002751 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002752
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 Reisnerb411b362009-09-25 16:07:19 -07002788 drbd_bm_cleanup(mdev);
2789out_no_bitmap:
2790 __free_page(mdev->md_io_page);
2791out_no_io_page:
2792 put_disk(disk);
2793out_no_disk:
2794 blk_cleanup_queue(q);
2795out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002796 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002797 kref_put(&tconn->kref, &conn_destroy);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002798 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002799}
2800
Philipp Reisnerb411b362009-09-25 16:07:19 -07002801int __init drbd_init(void)
2802{
2803 int err;
2804
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002805 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002806 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002807 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002808#ifdef MODULE
2809 return -EINVAL;
2810#else
Andreas Gruenbacher46530e82011-05-31 13:08:53 +02002811 minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002812#endif
2813 }
2814
Philipp Reisnerb411b362009-09-25 16:07:19 -07002815 err = register_blkdev(DRBD_MAJOR, "drbd");
2816 if (err) {
2817 printk(KERN_ERR
2818 "drbd: unable to register block device major %d\n",
2819 DRBD_MAJOR);
2820 return err;
2821 }
2822
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002823 err = drbd_genl_register();
2824 if (err) {
2825 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2826 goto fail;
2827 }
2828
2829
Philipp Reisnerb411b362009-09-25 16:07:19 -07002830 register_reboot_notifier(&drbd_notifier);
2831
2832 /*
2833 * allocate all necessary structs
2834 */
2835 err = -ENOMEM;
2836
2837 init_waitqueue_head(&drbd_pp_wait);
2838
2839 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002840 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002841
2842 err = drbd_create_mempools();
2843 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002844 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002845
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002846 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002847 if (!drbd_proc) {
2848 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002849 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002850 }
2851
2852 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002853 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002854
2855 printk(KERN_INFO "drbd: initialized. "
2856 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2857 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2858 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2859 printk(KERN_INFO "drbd: registered as block device major %d\n",
2860 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002861
2862 return 0; /* Success! */
2863
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002864fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002865 drbd_cleanup();
2866 if (err == -ENOMEM)
2867 /* currently always the case */
2868 printk(KERN_ERR "drbd: ran out of memory\n");
2869 else
2870 printk(KERN_ERR "drbd: initialization failure\n");
2871 return err;
2872}
2873
2874void drbd_free_bc(struct drbd_backing_dev *ldev)
2875{
2876 if (ldev == NULL)
2877 return;
2878
Tejun Heoe525fd82010-11-13 11:55:17 +01002879 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2880 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002881
2882 kfree(ldev);
2883}
2884
Philipp Reisner360cc742011-02-08 14:29:53 +01002885void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002886{
Philipp Reisner360cc742011-02-08 14:29:53 +01002887 if (tconn->data.socket) {
2888 mutex_lock(&tconn->data.mutex);
2889 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2890 sock_release(tconn->data.socket);
2891 tconn->data.socket = NULL;
2892 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002893 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002894 if (tconn->meta.socket) {
2895 mutex_lock(&tconn->meta.mutex);
2896 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2897 sock_release(tconn->meta.socket);
2898 tconn->meta.socket = NULL;
2899 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002900 }
2901}
2902
Philipp Reisnerb411b362009-09-25 16:07:19 -07002903/* meta data management */
2904
2905struct meta_data_on_disk {
2906 u64 la_size; /* last agreed size. */
2907 u64 uuid[UI_SIZE]; /* UUIDs. */
2908 u64 device_uuid;
2909 u64 reserved_u64_1;
2910 u32 flags; /* MDF */
2911 u32 magic;
2912 u32 md_size_sect;
2913 u32 al_offset; /* offset to this block */
2914 u32 al_nr_extents; /* important for restoring the AL */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002915 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002916 u32 bm_offset; /* offset to the bitmap, from here */
2917 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002918 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2919 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002920
2921} __packed;
2922
2923/**
2924 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2925 * @mdev: DRBD device.
2926 */
2927void drbd_md_sync(struct drbd_conf *mdev)
2928{
2929 struct meta_data_on_disk *buffer;
2930 sector_t sector;
2931 int i;
2932
Lars Ellenbergee15b032010-09-03 10:00:09 +02002933 del_timer(&mdev->md_sync_timer);
2934 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002935 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
2936 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002937
2938 /* We use here D_FAILED and not D_ATTACHING because we try to write
2939 * metadata even if we detach due to a disk failure! */
2940 if (!get_ldev_if_state(mdev, D_FAILED))
2941 return;
2942
Philipp Reisnercdfda632011-07-05 15:38:59 +02002943 buffer = drbd_md_get_buffer(mdev);
2944 if (!buffer)
2945 goto out;
2946
Philipp Reisnerb411b362009-09-25 16:07:19 -07002947 memset(buffer, 0, 512);
2948
2949 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
2950 for (i = UI_CURRENT; i < UI_SIZE; i++)
2951 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
2952 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002953 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002954
2955 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
2956 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
2957 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
2958 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
2959 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
2960
2961 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002962 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002963
2964 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
2965 sector = mdev->ldev->md.md_offset;
2966
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01002967 if (drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002968 /* this was a try anyways ... */
2969 dev_err(DEV, "meta data update failed!\n");
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002970 drbd_chk_io_error(mdev, 1, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002971 }
2972
2973 /* Update mdev->ldev->md.la_size_sect,
2974 * since we updated it on metadata. */
2975 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
2976
Philipp Reisnercdfda632011-07-05 15:38:59 +02002977 drbd_md_put_buffer(mdev);
2978out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002979 put_ldev(mdev);
2980}
2981
2982/**
2983 * drbd_md_read() - Reads in the meta data super block
2984 * @mdev: DRBD device.
2985 * @bdev: Device from which the meta data should be read in.
2986 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01002987 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002988 * something goes wrong.
Philipp Reisnerb411b362009-09-25 16:07:19 -07002989 */
2990int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
2991{
2992 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002993 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002994 int i, rv = NO_ERROR;
2995
2996 if (!get_ldev_if_state(mdev, D_ATTACHING))
2997 return ERR_IO_MD_DISK;
2998
Philipp Reisnercdfda632011-07-05 15:38:59 +02002999 buffer = drbd_md_get_buffer(mdev);
3000 if (!buffer)
3001 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003002
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01003003 if (drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003004 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003005 called BEFORE disk is attached */
3006 dev_err(DEV, "Error while reading metadata.\n");
3007 rv = ERR_IO_MD_DISK;
3008 goto err;
3009 }
3010
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003011 magic = be32_to_cpu(buffer->magic);
3012 flags = be32_to_cpu(buffer->flags);
3013 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3014 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3015 /* btw: that's Activity Log clean, not "all" clean. */
3016 dev_err(DEV, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
3017 rv = ERR_MD_UNCLEAN;
3018 goto err;
3019 }
3020 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003021 if (magic == DRBD_MD_MAGIC_07)
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003022 dev_err(DEV, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
3023 else
3024 dev_err(DEV, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003025 rv = ERR_MD_INVALID;
3026 goto err;
3027 }
3028 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
3029 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
3030 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
3031 rv = ERR_MD_INVALID;
3032 goto err;
3033 }
3034 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
3035 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
3036 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
3037 rv = ERR_MD_INVALID;
3038 goto err;
3039 }
3040 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
3041 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
3042 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
3043 rv = ERR_MD_INVALID;
3044 goto err;
3045 }
3046
3047 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
3048 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
3049 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
3050 rv = ERR_MD_INVALID;
3051 goto err;
3052 }
3053
3054 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
3055 for (i = UI_CURRENT; i < UI_SIZE; i++)
3056 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3057 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003058 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3059
Philipp Reisner87eeee42011-01-19 14:16:30 +01003060 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003061 if (mdev->state.conn < C_CONNECTED) {
3062 int peer;
3063 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
3064 peer = max_t(int, peer, DRBD_MAX_BIO_SIZE_SAFE);
3065 mdev->peer_max_bio_size = peer;
3066 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003067 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003068
Philipp Reisnerb411b362009-09-25 16:07:19 -07003069 err:
Philipp Reisnercdfda632011-07-05 15:38:59 +02003070 drbd_md_put_buffer(mdev);
3071 out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07003072 put_ldev(mdev);
3073
3074 return rv;
3075}
3076
3077/**
3078 * drbd_md_mark_dirty() - Mark meta data super block as dirty
3079 * @mdev: DRBD device.
3080 *
3081 * Call this function if you change anything that should be written to
3082 * the meta-data super block. This function sets MD_DIRTY, and starts a
3083 * timer that ensures that within five seconds you have to call drbd_md_sync().
3084 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003085#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02003086void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
3087{
3088 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
3089 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
3090 mdev->last_md_mark_dirty.line = line;
3091 mdev->last_md_mark_dirty.func = func;
3092 }
3093}
3094#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07003095void drbd_md_mark_dirty(struct drbd_conf *mdev)
3096{
Lars Ellenbergee15b032010-09-03 10:00:09 +02003097 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003098 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003099}
Lars Ellenbergee15b032010-09-03 10:00:09 +02003100#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003101
3102static void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
3103{
3104 int i;
3105
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003106 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003107 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003108}
3109
3110void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3111{
3112 if (idx == UI_CURRENT) {
3113 if (mdev->state.role == R_PRIMARY)
3114 val |= 1;
3115 else
3116 val &= ~((u64)1);
3117
3118 drbd_set_ed_uuid(mdev, val);
3119 }
3120
3121 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003122 drbd_md_mark_dirty(mdev);
3123}
3124
3125
3126void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3127{
3128 if (mdev->ldev->md.uuid[idx]) {
3129 drbd_uuid_move_history(mdev);
3130 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003131 }
3132 _drbd_uuid_set(mdev, idx, val);
3133}
3134
3135/**
3136 * drbd_uuid_new_current() - Creates a new current UUID
3137 * @mdev: DRBD device.
3138 *
3139 * Creates a new current UUID, and rotates the old current UUID into
3140 * the bitmap slot. Causes an incremental resync upon next connect.
3141 */
3142void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
3143{
3144 u64 val;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003145 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003146
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003147 if (bm_uuid)
3148 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
3149
Philipp Reisnerb411b362009-09-25 16:07:19 -07003150 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003151
3152 get_random_bytes(&val, sizeof(u64));
3153 _drbd_uuid_set(mdev, UI_CURRENT, val);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003154 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003155 /* get it to stable storage _now_ */
3156 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003157}
3158
3159void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
3160{
3161 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
3162 return;
3163
3164 if (val == 0) {
3165 drbd_uuid_move_history(mdev);
3166 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
3167 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003168 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003169 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
3170 if (bm_uuid)
3171 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003172
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003173 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003174 }
3175 drbd_md_mark_dirty(mdev);
3176}
3177
3178/**
3179 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3180 * @mdev: DRBD device.
3181 *
3182 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3183 */
3184int drbd_bmio_set_n_write(struct drbd_conf *mdev)
3185{
3186 int rv = -EIO;
3187
3188 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3189 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
3190 drbd_md_sync(mdev);
3191 drbd_bm_set_all(mdev);
3192
3193 rv = drbd_bm_write(mdev);
3194
3195 if (!rv) {
3196 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
3197 drbd_md_sync(mdev);
3198 }
3199
3200 put_ldev(mdev);
3201 }
3202
3203 return rv;
3204}
3205
3206/**
3207 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3208 * @mdev: DRBD device.
3209 *
3210 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3211 */
3212int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
3213{
3214 int rv = -EIO;
3215
Philipp Reisner07782862010-08-31 12:00:50 +02003216 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003217 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3218 drbd_bm_clear_all(mdev);
3219 rv = drbd_bm_write(mdev);
3220 put_ldev(mdev);
3221 }
3222
3223 return rv;
3224}
3225
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003226static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003227{
3228 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01003229 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003230 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003231
3232 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
3233
Lars Ellenberg02851e92010-12-16 14:47:39 +01003234 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003235 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003236 rv = work->io_fn(mdev);
3237 drbd_bm_unlock(mdev);
3238 put_ldev(mdev);
3239 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003240
Lars Ellenberg4738fa12011-02-21 13:20:55 +01003241 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003242 wake_up(&mdev->misc_wait);
3243
3244 if (work->done)
3245 work->done(mdev, rv);
3246
3247 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
3248 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003249 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003250
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003251 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003252}
3253
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003254void drbd_ldev_destroy(struct drbd_conf *mdev)
3255{
3256 lc_destroy(mdev->resync);
3257 mdev->resync = NULL;
3258 lc_destroy(mdev->act_log);
3259 mdev->act_log = NULL;
3260 __no_warn(local,
3261 drbd_free_bc(mdev->ldev);
3262 mdev->ldev = NULL;);
3263
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003264 clear_bit(GO_DISKLESS, &mdev->flags);
3265}
3266
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003267static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003268{
Philipp Reisner00d56942011-02-09 18:09:48 +01003269 struct drbd_conf *mdev = w->mdev;
3270
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003271 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02003272 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
3273 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003274 * the protected members anymore, though, so once put_ldev reaches zero
3275 * again, it will be safe to free them. */
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003276 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003277 return 0;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003278}
3279
3280void drbd_go_diskless(struct drbd_conf *mdev)
3281{
3282 D_ASSERT(mdev->state.disk == D_FAILED);
3283 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01003284 drbd_queue_work(&mdev->tconn->data.work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003285}
3286
Philipp Reisnerb411b362009-09-25 16:07:19 -07003287/**
3288 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
3289 * @mdev: DRBD device.
3290 * @io_fn: IO callback to be called when bitmap IO is possible
3291 * @done: callback to be called after the bitmap IO was performed
3292 * @why: Descriptive text of the reason for doing the IO
3293 *
3294 * While IO on the bitmap happens we freeze application IO thus we ensure
3295 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3296 * called from worker context. It MUST NOT be used while a previous such
3297 * work is still pending!
3298 */
3299void drbd_queue_bitmap_io(struct drbd_conf *mdev,
3300 int (*io_fn)(struct drbd_conf *),
3301 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003302 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003303{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003304 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003305
3306 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
3307 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
3308 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
3309 if (mdev->bm_io_work.why)
3310 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
3311 why, mdev->bm_io_work.why);
3312
3313 mdev->bm_io_work.io_fn = io_fn;
3314 mdev->bm_io_work.done = done;
3315 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003316 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003317
Philipp Reisner87eeee42011-01-19 14:16:30 +01003318 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003319 set_bit(BITMAP_IO, &mdev->flags);
3320 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01003321 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01003322 drbd_queue_work(&mdev->tconn->data.work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003323 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003324 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003325}
3326
3327/**
3328 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
3329 * @mdev: DRBD device.
3330 * @io_fn: IO callback to be called when bitmap IO is possible
3331 * @why: Descriptive text of the reason for doing the IO
3332 *
3333 * freezes application IO while that the actual IO operations runs. This
3334 * functions MAY NOT be called from worker context.
3335 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003336int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
3337 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003338{
3339 int rv;
3340
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003341 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003342
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003343 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3344 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003345
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003346 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003347 rv = io_fn(mdev);
3348 drbd_bm_unlock(mdev);
3349
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003350 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3351 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003352
3353 return rv;
3354}
3355
3356void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3357{
3358 if ((mdev->ldev->md.flags & flag) != flag) {
3359 drbd_md_mark_dirty(mdev);
3360 mdev->ldev->md.flags |= flag;
3361 }
3362}
3363
3364void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3365{
3366 if ((mdev->ldev->md.flags & flag) != 0) {
3367 drbd_md_mark_dirty(mdev);
3368 mdev->ldev->md.flags &= ~flag;
3369 }
3370}
3371int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3372{
3373 return (bdev->md.flags & flag) != 0;
3374}
3375
3376static void md_sync_timer_fn(unsigned long data)
3377{
3378 struct drbd_conf *mdev = (struct drbd_conf *) data;
3379
Philipp Reisnere42325a2011-01-19 13:55:45 +01003380 drbd_queue_work_front(&mdev->tconn->data.work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003381}
3382
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003383static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003384{
Philipp Reisner00d56942011-02-09 18:09:48 +01003385 struct drbd_conf *mdev = w->mdev;
3386
Philipp Reisnerb411b362009-09-25 16:07:19 -07003387 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003388#ifdef DEBUG
3389 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3390 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3391#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003392 drbd_md_sync(mdev);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003393 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003394}
3395
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003396const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003397{
3398 /* THINK may need to become several global tables
3399 * when we want to support more than
3400 * one PRO_VERSION */
3401 static const char *cmdnames[] = {
3402 [P_DATA] = "Data",
3403 [P_DATA_REPLY] = "DataReply",
3404 [P_RS_DATA_REPLY] = "RSDataReply",
3405 [P_BARRIER] = "Barrier",
3406 [P_BITMAP] = "ReportBitMap",
3407 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3408 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3409 [P_UNPLUG_REMOTE] = "UnplugRemote",
3410 [P_DATA_REQUEST] = "DataRequest",
3411 [P_RS_DATA_REQUEST] = "RSDataRequest",
3412 [P_SYNC_PARAM] = "SyncParam",
3413 [P_SYNC_PARAM89] = "SyncParam89",
3414 [P_PROTOCOL] = "ReportProtocol",
3415 [P_UUIDS] = "ReportUUIDs",
3416 [P_SIZES] = "ReportSizes",
3417 [P_STATE] = "ReportState",
3418 [P_SYNC_UUID] = "ReportSyncUUID",
3419 [P_AUTH_CHALLENGE] = "AuthChallenge",
3420 [P_AUTH_RESPONSE] = "AuthResponse",
3421 [P_PING] = "Ping",
3422 [P_PING_ACK] = "PingAck",
3423 [P_RECV_ACK] = "RecvAck",
3424 [P_WRITE_ACK] = "WriteAck",
3425 [P_RS_WRITE_ACK] = "RSWriteAck",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003426 [P_DISCARD_WRITE] = "DiscardWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003427 [P_NEG_ACK] = "NegAck",
3428 [P_NEG_DREPLY] = "NegDReply",
3429 [P_NEG_RS_DREPLY] = "NegRSDReply",
3430 [P_BARRIER_ACK] = "BarrierAck",
3431 [P_STATE_CHG_REQ] = "StateChgRequest",
3432 [P_STATE_CHG_REPLY] = "StateChgReply",
3433 [P_OV_REQUEST] = "OVRequest",
3434 [P_OV_REPLY] = "OVReply",
3435 [P_OV_RESULT] = "OVResult",
3436 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3437 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3438 [P_COMPRESSED_BITMAP] = "CBitmap",
3439 [P_DELAY_PROBE] = "DelayProbe",
3440 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003441 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003442 [P_RS_CANCEL] = "RSCancel",
3443 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3444 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003445 [P_RETRY_WRITE] = "retry_write",
3446 [P_PROTOCOL_UPDATE] = "protocol_update",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003447
3448 /* enum drbd_packet, but not commands - obsoleted flags:
3449 * P_MAY_IGNORE
3450 * P_MAX_OPT_CMD
3451 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003452 };
3453
Lars Ellenbergae25b332011-04-24 00:01:16 +02003454 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003455 if (cmd == P_INITIAL_META)
3456 return "InitialMeta";
3457 if (cmd == P_INITIAL_DATA)
3458 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003459 if (cmd == P_CONNECTION_FEATURES)
3460 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003461 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003462 return "Unknown";
3463 return cmdnames[cmd];
3464}
3465
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003466/**
3467 * drbd_wait_misc - wait for a request to make progress
3468 * @mdev: device associated with the request
3469 * @i: the struct drbd_interval embedded in struct drbd_request or
3470 * struct drbd_peer_request
3471 */
3472int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3473{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003474 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003475 DEFINE_WAIT(wait);
3476 long timeout;
3477
Philipp Reisner44ed1672011-04-19 17:10:19 +02003478 rcu_read_lock();
3479 nc = rcu_dereference(mdev->tconn->net_conf);
3480 if (!nc) {
3481 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003482 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003483 }
3484 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3485 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003486
3487 /* Indicate to wake up mdev->misc_wait on progress. */
3488 i->waiting = true;
3489 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3490 spin_unlock_irq(&mdev->tconn->req_lock);
3491 timeout = schedule_timeout(timeout);
3492 finish_wait(&mdev->misc_wait, &wait);
3493 spin_lock_irq(&mdev->tconn->req_lock);
3494 if (!timeout || mdev->state.conn < C_CONNECTED)
3495 return -ETIMEDOUT;
3496 if (signal_pending(current))
3497 return -ERESTARTSYS;
3498 return 0;
3499}
3500
Philipp Reisnerb411b362009-09-25 16:07:19 -07003501#ifdef CONFIG_DRBD_FAULT_INJECTION
3502/* Fault insertion support including random number generator shamelessly
3503 * stolen from kernel/rcutorture.c */
3504struct fault_random_state {
3505 unsigned long state;
3506 unsigned long count;
3507};
3508
3509#define FAULT_RANDOM_MULT 39916801 /* prime */
3510#define FAULT_RANDOM_ADD 479001701 /* prime */
3511#define FAULT_RANDOM_REFRESH 10000
3512
3513/*
3514 * Crude but fast random-number generator. Uses a linear congruential
3515 * generator, with occasional help from get_random_bytes().
3516 */
3517static unsigned long
3518_drbd_fault_random(struct fault_random_state *rsp)
3519{
3520 long refresh;
3521
Roel Kluin49829ea2009-12-15 22:55:44 +01003522 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003523 get_random_bytes(&refresh, sizeof(refresh));
3524 rsp->state += refresh;
3525 rsp->count = FAULT_RANDOM_REFRESH;
3526 }
3527 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3528 return swahw32(rsp->state);
3529}
3530
3531static char *
3532_drbd_fault_str(unsigned int type) {
3533 static char *_faults[] = {
3534 [DRBD_FAULT_MD_WR] = "Meta-data write",
3535 [DRBD_FAULT_MD_RD] = "Meta-data read",
3536 [DRBD_FAULT_RS_WR] = "Resync write",
3537 [DRBD_FAULT_RS_RD] = "Resync read",
3538 [DRBD_FAULT_DT_WR] = "Data write",
3539 [DRBD_FAULT_DT_RD] = "Data read",
3540 [DRBD_FAULT_DT_RA] = "Data read ahead",
3541 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003542 [DRBD_FAULT_AL_EE] = "EE allocation",
3543 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003544 };
3545
3546 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3547}
3548
3549unsigned int
3550_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3551{
3552 static struct fault_random_state rrs = {0, 0};
3553
3554 unsigned int ret = (
3555 (fault_devs == 0 ||
3556 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3557 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3558
3559 if (ret) {
3560 fault_count++;
3561
Lars Ellenberg73835062010-05-27 11:51:56 +02003562 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003563 dev_warn(DEV, "***Simulating %s failure\n",
3564 _drbd_fault_str(type));
3565 }
3566
3567 return ret;
3568}
3569#endif
3570
3571const char *drbd_buildtag(void)
3572{
3573 /* DRBD built from external sources has here a reference to the
3574 git hash of the source code. */
3575
3576 static char buildtag[38] = "\0uilt-in";
3577
3578 if (buildtag[0] == 0) {
3579#ifdef CONFIG_MODULES
3580 if (THIS_MODULE != NULL)
3581 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3582 else
3583#endif
3584 buildtag[0] = 'b';
3585 }
3586
3587 return buildtag;
3588}
3589
3590module_init(drbd_init)
3591module_exit(drbd_cleanup)
3592
Philipp Reisnerb411b362009-09-25 16:07:19 -07003593EXPORT_SYMBOL(drbd_conn_str);
3594EXPORT_SYMBOL(drbd_role_str);
3595EXPORT_SYMBOL(drbd_disk_str);
3596EXPORT_SYMBOL(drbd_set_st_err_str);