blob: a0045ac880406306a12c19d8c8c4e3f4da7bd1a6 [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;
Lars Ellenbergf9916d62012-03-26 16:25:41 +0200253 new->br_number = newest_before->br_number+1;
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100254 if (tconn->newest_tle != new) {
255 tconn->newest_tle->next = new;
256 tconn->newest_tle = new;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700257 }
258}
259
260/**
261 * tl_release() - Free or recycle the oldest &struct drbd_tl_epoch object of the TL
262 * @mdev: DRBD device.
263 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
264 * @set_size: Expected number of requests before that barrier.
265 *
266 * In case the passed barrier_nr or set_size does not match the oldest
267 * &struct drbd_tl_epoch objects this function will cause a termination
268 * of the connection.
269 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100270void tl_release(struct drbd_tconn *tconn, unsigned int barrier_nr,
271 unsigned int set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700272{
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100273 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700274 struct drbd_tl_epoch *b, *nob; /* next old barrier */
275 struct list_head *le, *tle;
276 struct drbd_request *r;
277
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100278 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700279
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100280 b = tconn->oldest_tle;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700281
282 /* first some paranoia code */
283 if (b == NULL) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100284 conn_err(tconn, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
285 barrier_nr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700286 goto bail;
287 }
288 if (b->br_number != barrier_nr) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100289 conn_err(tconn, "BAD! BarrierAck #%u received, expected #%u!\n",
290 barrier_nr, b->br_number);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700291 goto bail;
292 }
Philipp Reisner7e602c02010-05-27 14:49:27 +0200293 if (b->n_writes != set_size) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100294 conn_err(tconn, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
295 barrier_nr, set_size, b->n_writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700296 goto bail;
297 }
298
299 /* Clean up list of requests processed during current epoch */
300 list_for_each_safe(le, tle, &b->requests) {
301 r = list_entry(le, struct drbd_request, tl_requests);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100302 _req_mod(r, BARRIER_ACKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700303 }
304 /* There could be requests on the list waiting for completion
305 of the write to the local disk. To avoid corruptions of
306 slab's data structures we have to remove the lists head.
307
308 Also there could have been a barrier ack out of sequence, overtaking
309 the write acks - which would be a bug and violating write ordering.
310 To not deadlock in case we lose connection while such requests are
311 still pending, we need some way to find them for the
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100312 _req_mode(CONNECTION_LOST_WHILE_PENDING).
Philipp Reisnerb411b362009-09-25 16:07:19 -0700313
314 These have been list_move'd to the out_of_sequence_requests list in
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100315 _req_mod(, BARRIER_ACKED) above.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700316 */
Philipp Reisnercdfda632011-07-05 15:38:59 +0200317 list_splice_init(&b->requests, &tconn->barrier_acked_requests);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100318 mdev = b->w.mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700319
320 nob = b->next;
Philipp Reisner6936fcb2011-11-10 18:45:36 +0100321 if (test_and_clear_bit(CREATE_BARRIER, &tconn->flags)) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100322 _tl_add_barrier(tconn, b);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700323 if (nob)
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100324 tconn->oldest_tle = nob;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700325 /* if nob == NULL b was the only barrier, and becomes the new
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100326 barrier. Therefore tconn->oldest_tle points already to b */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700327 } else {
328 D_ASSERT(nob != NULL);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100329 tconn->oldest_tle = nob;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700330 kfree(b);
331 }
332
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100333 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700334 dec_ap_pending(mdev);
335
336 return;
337
338bail:
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100339 spin_unlock_irq(&tconn->req_lock);
340 conn_request_state(tconn, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700341}
342
Philipp Reisner617049a2010-12-22 12:48:31 +0100343
Philipp Reisner11b58e72010-05-12 17:08:26 +0200344/**
345 * _tl_restart() - Walks the transfer log, and applies an action to all requests
346 * @mdev: DRBD device.
347 * @what: The action/event to perform with all request objects
348 *
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100349 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
350 * RESTART_FROZEN_DISK_IO.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200351 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100352void _tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200353{
354 struct drbd_tl_epoch *b, *tmp, **pn;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200355 struct list_head *le, *tle, carry_reads;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200356 struct drbd_request *req;
357 int rv, n_writes, n_reads;
358
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100359 b = tconn->oldest_tle;
360 pn = &tconn->oldest_tle;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200361 while (b) {
362 n_writes = 0;
363 n_reads = 0;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200364 INIT_LIST_HEAD(&carry_reads);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200365 list_for_each_safe(le, tle, &b->requests) {
366 req = list_entry(le, struct drbd_request, tl_requests);
367 rv = _req_mod(req, what);
368
Andreas Gruenbacherf4976092011-07-17 23:06:12 +0200369 if (rv & MR_WRITE)
370 n_writes++;
371 if (rv & MR_READ)
372 n_reads++;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200373 }
374 tmp = b->next;
375
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200376 if (n_writes) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100377 if (what == RESEND) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200378 b->n_writes = n_writes;
379 if (b->w.cb == NULL) {
380 b->w.cb = w_send_barrier;
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100381 inc_ap_pending(b->w.mdev);
Philipp Reisner6936fcb2011-11-10 18:45:36 +0100382 set_bit(CREATE_BARRIER, &tconn->flags);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200383 }
384
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100385 drbd_queue_work(&tconn->data.work, &b->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200386 }
387 pn = &b->next;
388 } else {
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200389 if (n_reads)
390 list_add(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200391 /* there could still be requests on that ring list,
392 * in case local io is still pending */
393 list_del(&b->requests);
394
395 /* dec_ap_pending corresponding to queue_barrier.
396 * the newest barrier may not have been queued yet,
397 * in which case w.cb is still NULL. */
398 if (b->w.cb != NULL)
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100399 dec_ap_pending(b->w.mdev);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200400
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100401 if (b == tconn->newest_tle) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200402 /* recycle, but reinit! */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100403 if (tmp != NULL)
404 conn_err(tconn, "ASSERT FAILED tmp == NULL");
Philipp Reisner11b58e72010-05-12 17:08:26 +0200405 INIT_LIST_HEAD(&b->requests);
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200406 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200407 INIT_LIST_HEAD(&b->w.list);
408 b->w.cb = NULL;
409 b->br_number = net_random();
410 b->n_writes = 0;
411
412 *pn = b;
413 break;
414 }
415 *pn = tmp;
416 kfree(b);
417 }
418 b = tmp;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200419 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200420 }
Philipp Reisner11b58e72010-05-12 17:08:26 +0200421
Philipp Reisnercdfda632011-07-05 15:38:59 +0200422 /* Actions operating on the disk state, also want to work on
423 requests that got barrier acked. */
424 switch (what) {
425 case FAIL_FROZEN_DISK_IO:
426 case RESTART_FROZEN_DISK_IO:
427 list_for_each_safe(le, tle, &tconn->barrier_acked_requests) {
428 req = list_entry(le, struct drbd_request, tl_requests);
429 _req_mod(req, what);
430 }
431 case CONNECTION_LOST_WHILE_PENDING:
432 case RESEND:
433 break;
434 default:
435 conn_err(tconn, "what = %d in _tl_restart()\n", what);
436 }
437}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700438
439/**
440 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
441 * @mdev: DRBD device.
442 *
443 * This is called after the connection to the peer was lost. The storage covered
444 * by the requests on the transfer gets marked as our of sync. Called from the
445 * receiver thread and the worker thread.
446 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100447void tl_clear(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700448{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700449 struct list_head *le, *tle;
450 struct drbd_request *r;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700451
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100452 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700453
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100454 _tl_restart(tconn, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700455
456 /* we expect this list to be empty. */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100457 if (!list_empty(&tconn->out_of_sequence_requests))
458 conn_err(tconn, "ASSERT FAILED list_empty(&out_of_sequence_requests)\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700459
460 /* but just in case, clean it up anyways! */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100461 list_for_each_safe(le, tle, &tconn->out_of_sequence_requests) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700462 r = list_entry(le, struct drbd_request, tl_requests);
463 /* It would be nice to complete outside of spinlock.
464 * But this is easier for now. */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100465 _req_mod(r, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700466 }
467
468 /* ensure bit indicating barrier is required is clear */
Philipp Reisner6936fcb2011-11-10 18:45:36 +0100469 clear_bit(CREATE_BARRIER, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700470
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100471 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700472}
473
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100474void tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200475{
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100476 spin_lock_irq(&tconn->req_lock);
477 _tl_restart(tconn, what);
478 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700479}
480
Philipp Reisnercdfda632011-07-05 15:38:59 +0200481/**
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200482 * 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 +0200483 * @mdev: DRBD device.
Philipp Reisnercdfda632011-07-05 15:38:59 +0200484 */
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200485void tl_abort_disk_io(struct drbd_conf *mdev)
Philipp Reisnercdfda632011-07-05 15:38:59 +0200486{
487 struct drbd_tconn *tconn = mdev->tconn;
488 struct drbd_tl_epoch *b;
489 struct list_head *le, *tle;
490 struct drbd_request *req;
491
Philipp Reisnercdfda632011-07-05 15:38:59 +0200492 spin_lock_irq(&tconn->req_lock);
493 b = tconn->oldest_tle;
494 while (b) {
495 list_for_each_safe(le, tle, &b->requests) {
496 req = list_entry(le, struct drbd_request, tl_requests);
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200497 if (!(req->rq_state & RQ_LOCAL_PENDING))
498 continue;
Philipp Reisnercdfda632011-07-05 15:38:59 +0200499 if (req->w.mdev == mdev)
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200500 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200501 }
502 b = b->next;
503 }
504
505 list_for_each_safe(le, tle, &tconn->barrier_acked_requests) {
506 req = list_entry(le, struct drbd_request, tl_requests);
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200507 if (!(req->rq_state & RQ_LOCAL_PENDING))
508 continue;
Philipp Reisnercdfda632011-07-05 15:38:59 +0200509 if (req->w.mdev == mdev)
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200510 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200511 }
512
513 spin_unlock_irq(&tconn->req_lock);
514}
515
Philipp Reisnerb411b362009-09-25 16:07:19 -0700516static int drbd_thread_setup(void *arg)
517{
518 struct drbd_thread *thi = (struct drbd_thread *) arg;
Philipp Reisner392c8802011-02-09 10:33:31 +0100519 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700520 unsigned long flags;
521 int retval;
522
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100523 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
Philipp Reisner392c8802011-02-09 10:33:31 +0100524 thi->name[0], thi->tconn->name);
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100525
Philipp Reisnerb411b362009-09-25 16:07:19 -0700526restart:
527 retval = thi->function(thi);
528
529 spin_lock_irqsave(&thi->t_lock, flags);
530
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100531 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700532 * was set the conn state to "StandAlone",
533 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
534 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100535 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700536 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100537 * so either thread_start sees EXITING, and can remap to RESTARTING,
538 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700539 */
540
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100541 if (thi->t_state == RESTARTING) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100542 conn_info(tconn, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100543 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700544 spin_unlock_irqrestore(&thi->t_lock, flags);
545 goto restart;
546 }
547
548 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100549 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700550 smp_mb();
Lars Ellenberg992d6e92011-05-02 11:47:18 +0200551 complete_all(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700552 spin_unlock_irqrestore(&thi->t_lock, flags);
553
Philipp Reisner392c8802011-02-09 10:33:31 +0100554 conn_info(tconn, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700555
556 /* Release mod reference taken when thread was started */
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200557
558 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700559 module_put(THIS_MODULE);
560 return retval;
561}
562
Philipp Reisner392c8802011-02-09 10:33:31 +0100563static void drbd_thread_init(struct drbd_tconn *tconn, struct drbd_thread *thi,
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100564 int (*func) (struct drbd_thread *), char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700565{
566 spin_lock_init(&thi->t_lock);
567 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100568 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700569 thi->function = func;
Philipp Reisner392c8802011-02-09 10:33:31 +0100570 thi->tconn = tconn;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100571 strncpy(thi->name, name, ARRAY_SIZE(thi->name));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700572}
573
574int drbd_thread_start(struct drbd_thread *thi)
575{
Philipp Reisner392c8802011-02-09 10:33:31 +0100576 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700577 struct task_struct *nt;
578 unsigned long flags;
579
Philipp Reisnerb411b362009-09-25 16:07:19 -0700580 /* is used from state engine doing drbd_thread_stop_nowait,
581 * while holding the req lock irqsave */
582 spin_lock_irqsave(&thi->t_lock, flags);
583
584 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100585 case NONE:
Philipp Reisner392c8802011-02-09 10:33:31 +0100586 conn_info(tconn, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100587 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700588
589 /* Get ref on module for thread - this is released when thread exits */
590 if (!try_module_get(THIS_MODULE)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100591 conn_err(tconn, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700592 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100593 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700594 }
595
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200596 kref_get(&thi->tconn->kref);
597
Philipp Reisnerb411b362009-09-25 16:07:19 -0700598 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700599 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100600 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700601 spin_unlock_irqrestore(&thi->t_lock, flags);
602 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
603
604 nt = kthread_create(drbd_thread_setup, (void *) thi,
Philipp Reisner392c8802011-02-09 10:33:31 +0100605 "drbd_%c_%s", thi->name[0], thi->tconn->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700606
607 if (IS_ERR(nt)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100608 conn_err(tconn, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700609
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200610 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700611 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100612 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700613 }
614 spin_lock_irqsave(&thi->t_lock, flags);
615 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100616 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700617 spin_unlock_irqrestore(&thi->t_lock, flags);
618 wake_up_process(nt);
619 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100620 case EXITING:
621 thi->t_state = RESTARTING;
Philipp Reisner392c8802011-02-09 10:33:31 +0100622 conn_info(tconn, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100623 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700624 /* fall through */
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100625 case RUNNING:
626 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700627 default:
628 spin_unlock_irqrestore(&thi->t_lock, flags);
629 break;
630 }
631
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100632 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700633}
634
635
636void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
637{
638 unsigned long flags;
639
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100640 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700641
642 /* may be called from state engine, holding the req lock irqsave */
643 spin_lock_irqsave(&thi->t_lock, flags);
644
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100645 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700646 spin_unlock_irqrestore(&thi->t_lock, flags);
647 if (restart)
648 drbd_thread_start(thi);
649 return;
650 }
651
652 if (thi->t_state != ns) {
653 if (thi->task == NULL) {
654 spin_unlock_irqrestore(&thi->t_lock, flags);
655 return;
656 }
657
658 thi->t_state = ns;
659 smp_mb();
660 init_completion(&thi->stop);
661 if (thi->task != current)
662 force_sig(DRBD_SIGKILL, thi->task);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700663 }
664
665 spin_unlock_irqrestore(&thi->t_lock, flags);
666
667 if (wait)
668 wait_for_completion(&thi->stop);
669}
670
Philipp Reisner392c8802011-02-09 10:33:31 +0100671static struct drbd_thread *drbd_task_to_thread(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100672{
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100673 struct drbd_thread *thi =
674 task == tconn->receiver.task ? &tconn->receiver :
675 task == tconn->asender.task ? &tconn->asender :
676 task == tconn->worker.task ? &tconn->worker : NULL;
677
678 return thi;
679}
680
Philipp Reisner392c8802011-02-09 10:33:31 +0100681char *drbd_task_to_thread_name(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100682{
Philipp Reisner392c8802011-02-09 10:33:31 +0100683 struct drbd_thread *thi = drbd_task_to_thread(tconn, task);
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100684 return thi ? thi->name : task->comm;
685}
686
Philipp Reisner80883192011-02-18 14:56:45 +0100687int conn_lowest_minor(struct drbd_tconn *tconn)
Philipp Reisner80822282011-02-08 12:46:30 +0100688{
Philipp Reisnere90285e2011-03-22 12:51:21 +0100689 struct drbd_conf *mdev;
Philipp Reisner695d08f2011-04-11 22:53:32 -0700690 int vnr = 0, m;
Philipp Reisner774b3052011-02-22 02:07:03 -0500691
Philipp Reisner695d08f2011-04-11 22:53:32 -0700692 rcu_read_lock();
Philipp Reisnere90285e2011-03-22 12:51:21 +0100693 mdev = idr_get_next(&tconn->volumes, &vnr);
Philipp Reisner695d08f2011-04-11 22:53:32 -0700694 m = mdev ? mdev_to_minor(mdev) : -1;
695 rcu_read_unlock();
696
697 return m;
Philipp Reisner80822282011-02-08 12:46:30 +0100698}
Philipp Reisner774b3052011-02-22 02:07:03 -0500699
700#ifdef CONFIG_SMP
Philipp Reisnerb411b362009-09-25 16:07:19 -0700701/**
702 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
703 * @mdev: DRBD device.
704 *
705 * Forces all threads of a device onto the same CPU. This is beneficial for
706 * DRBD's performance. May be overwritten by user's configuration.
707 */
Philipp Reisner80822282011-02-08 12:46:30 +0100708void drbd_calc_cpu_mask(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700709{
710 int ord, cpu;
711
712 /* user override. */
Philipp Reisner80822282011-02-08 12:46:30 +0100713 if (cpumask_weight(tconn->cpu_mask))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700714 return;
715
Philipp Reisner80822282011-02-08 12:46:30 +0100716 ord = conn_lowest_minor(tconn) % cpumask_weight(cpu_online_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700717 for_each_online_cpu(cpu) {
718 if (ord-- == 0) {
Philipp Reisner80822282011-02-08 12:46:30 +0100719 cpumask_set_cpu(cpu, tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700720 return;
721 }
722 }
723 /* should not be reached */
Philipp Reisner80822282011-02-08 12:46:30 +0100724 cpumask_setall(tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700725}
726
727/**
728 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
729 * @mdev: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100730 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700731 *
732 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
733 * prematurely.
734 */
Philipp Reisner80822282011-02-08 12:46:30 +0100735void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700736{
737 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100738
Philipp Reisnerb411b362009-09-25 16:07:19 -0700739 if (!thi->reset_cpu_mask)
740 return;
741 thi->reset_cpu_mask = 0;
Philipp Reisner392c8802011-02-09 10:33:31 +0100742 set_cpus_allowed_ptr(p, thi->tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700743}
744#endif
745
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200746/**
747 * drbd_header_size - size of a packet header
748 *
749 * The header size is a multiple of 8, so any payload following the header is
750 * word aligned on 64-bit architectures. (The bitmap send and receive code
751 * relies on this.)
752 */
753unsigned int drbd_header_size(struct drbd_tconn *tconn)
754{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200755 if (tconn->agreed_pro_version >= 100) {
756 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
757 return sizeof(struct p_header100);
758 } else {
759 BUILD_BUG_ON(sizeof(struct p_header80) !=
760 sizeof(struct p_header95));
761 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
762 return sizeof(struct p_header80);
763 }
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200764}
765
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200766static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100767{
768 h->magic = cpu_to_be32(DRBD_MAGIC);
769 h->command = cpu_to_be16(cmd);
770 h->length = cpu_to_be16(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200771 return sizeof(struct p_header80);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100772}
773
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200774static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100775{
776 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
777 h->command = cpu_to_be16(cmd);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +0100778 h->length = cpu_to_be32(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200779 return sizeof(struct p_header95);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100780}
781
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200782static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
783 int size, int vnr)
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100784{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200785 h->magic = cpu_to_be32(DRBD_MAGIC_100);
786 h->volume = cpu_to_be16(vnr);
787 h->command = cpu_to_be16(cmd);
788 h->length = cpu_to_be32(size);
789 h->pad = 0;
790 return sizeof(struct p_header100);
791}
792
793static unsigned int prepare_header(struct drbd_tconn *tconn, int vnr,
794 void *buffer, enum drbd_packet cmd, int size)
795{
796 if (tconn->agreed_pro_version >= 100)
797 return prepare_header100(buffer, cmd, size, vnr);
798 else if (tconn->agreed_pro_version >= 95 &&
799 size > DRBD_MAX_SIZE_H80_PACKET)
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200800 return prepare_header95(buffer, cmd, size);
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100801 else
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200802 return prepare_header80(buffer, cmd, size);
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100803}
804
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200805static void *__conn_prepare_command(struct drbd_tconn *tconn,
806 struct drbd_socket *sock)
807{
808 if (!sock->socket)
809 return NULL;
810 return sock->sbuf + drbd_header_size(tconn);
811}
812
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200813void *conn_prepare_command(struct drbd_tconn *tconn, struct drbd_socket *sock)
814{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200815 void *p;
816
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200817 mutex_lock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200818 p = __conn_prepare_command(tconn, sock);
819 if (!p)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200820 mutex_unlock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200821
822 return p;
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200823}
824
825void *drbd_prepare_command(struct drbd_conf *mdev, struct drbd_socket *sock)
826{
827 return conn_prepare_command(mdev->tconn, sock);
828}
829
830static int __send_command(struct drbd_tconn *tconn, int vnr,
831 struct drbd_socket *sock, enum drbd_packet cmd,
832 unsigned int header_size, void *data,
833 unsigned int size)
834{
835 int msg_flags;
836 int err;
837
838 /*
839 * Called with @data == NULL and the size of the data blocks in @size
840 * for commands that send data blocks. For those commands, omit the
841 * MSG_MORE flag: this will increase the likelihood that data blocks
842 * which are page aligned on the sender will end up page aligned on the
843 * receiver.
844 */
845 msg_flags = data ? MSG_MORE : 0;
846
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200847 header_size += prepare_header(tconn, vnr, sock->sbuf, cmd,
848 header_size + size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200849 err = drbd_send_all(tconn, sock->socket, sock->sbuf, header_size,
850 msg_flags);
851 if (data && !err)
852 err = drbd_send_all(tconn, sock->socket, data, size, 0);
853 return err;
854}
855
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200856static int __conn_send_command(struct drbd_tconn *tconn, struct drbd_socket *sock,
857 enum drbd_packet cmd, unsigned int header_size,
858 void *data, unsigned int size)
859{
860 return __send_command(tconn, 0, sock, cmd, header_size, data, size);
861}
862
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200863int conn_send_command(struct drbd_tconn *tconn, struct drbd_socket *sock,
864 enum drbd_packet cmd, unsigned int header_size,
865 void *data, unsigned int size)
866{
867 int err;
868
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200869 err = __conn_send_command(tconn, sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200870 mutex_unlock(&sock->mutex);
871 return err;
872}
873
874int drbd_send_command(struct drbd_conf *mdev, struct drbd_socket *sock,
875 enum drbd_packet cmd, unsigned int header_size,
876 void *data, unsigned int size)
877{
878 int err;
879
880 err = __send_command(mdev->tconn, mdev->vnr, sock, cmd, header_size,
881 data, size);
882 mutex_unlock(&sock->mutex);
883 return err;
884}
885
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100886int drbd_send_ping(struct drbd_tconn *tconn)
887{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200888 struct drbd_socket *sock;
889
890 sock = &tconn->meta;
891 if (!conn_prepare_command(tconn, sock))
892 return -EIO;
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200893 return conn_send_command(tconn, sock, P_PING, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100894}
895
896int drbd_send_ping_ack(struct drbd_tconn *tconn)
897{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200898 struct drbd_socket *sock;
899
900 sock = &tconn->meta;
901 if (!conn_prepare_command(tconn, sock))
902 return -EIO;
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200903 return conn_send_command(tconn, sock, P_PING_ACK, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100904}
905
Lars Ellenbergf3990022011-03-23 14:31:09 +0100906int drbd_send_sync_param(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700907{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100908 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200909 struct p_rs_param_95 *p;
910 int size;
Philipp Reisner31890f42011-01-19 14:12:51 +0100911 const int apv = mdev->tconn->agreed_pro_version;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200912 enum drbd_packet cmd;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200913 struct net_conf *nc;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200914 struct disk_conf *dc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200915
916 sock = &mdev->tconn->data;
917 p = drbd_prepare_command(mdev, sock);
918 if (!p)
919 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700920
Philipp Reisner44ed1672011-04-19 17:10:19 +0200921 rcu_read_lock();
922 nc = rcu_dereference(mdev->tconn->net_conf);
923
Philipp Reisnerb411b362009-09-25 16:07:19 -0700924 size = apv <= 87 ? sizeof(struct p_rs_param)
925 : apv == 88 ? sizeof(struct p_rs_param)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200926 + strlen(nc->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200927 : apv <= 94 ? sizeof(struct p_rs_param_89)
928 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700929
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200930 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700931
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200932 /* initialize verify_alg and csums_alg */
933 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700934
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200935 if (get_ldev(mdev)) {
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200936 dc = rcu_dereference(mdev->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200937 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200938 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
939 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
940 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
941 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200942 put_ldev(mdev);
943 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200944 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200945 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
946 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
947 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
948 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
949 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700950
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200951 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200952 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200953 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200954 strcpy(p->csums_alg, nc->csums_alg);
955 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700956
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200957 return drbd_send_command(mdev, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700958}
959
Philipp Reisnerd659f2a2011-05-16 17:38:45 +0200960int __drbd_send_protocol(struct drbd_tconn *tconn, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700961{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200962 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700963 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200964 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200965 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700966
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200967 sock = &tconn->data;
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200968 p = __conn_prepare_command(tconn, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200969 if (!p)
970 return -EIO;
971
Philipp Reisner44ed1672011-04-19 17:10:19 +0200972 rcu_read_lock();
973 nc = rcu_dereference(tconn->net_conf);
974
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200975 if (nc->tentative && tconn->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200976 rcu_read_unlock();
977 mutex_unlock(&sock->mutex);
978 conn_err(tconn, "--dry-run is not supported by peer");
979 return -EOPNOTSUPP;
980 }
981
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200982 size = sizeof(*p);
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100983 if (tconn->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200984 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700985
Philipp Reisner44ed1672011-04-19 17:10:19 +0200986 p->protocol = cpu_to_be32(nc->wire_protocol);
987 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
988 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
989 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
990 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100991 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200992 if (nc->discard_my_data)
993 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200994 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200995 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100996 p->conn_flags = cpu_to_be32(cf);
997
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100998 if (tconn->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200999 strcpy(p->integrity_alg, nc->integrity_alg);
1000 rcu_read_unlock();
1001
Philipp Reisnerd659f2a2011-05-16 17:38:45 +02001002 return __conn_send_command(tconn, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +02001003}
1004
1005int drbd_send_protocol(struct drbd_tconn *tconn)
1006{
1007 int err;
1008
1009 mutex_lock(&tconn->data.mutex);
Philipp Reisnerd659f2a2011-05-16 17:38:45 +02001010 err = __drbd_send_protocol(tconn, P_PROTOCOL);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +02001011 mutex_unlock(&tconn->data.mutex);
1012
1013 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001014}
1015
1016int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
1017{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001018 struct drbd_socket *sock;
1019 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001020 int i;
1021
1022 if (!get_ldev_if_state(mdev, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +01001023 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001024
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001025 sock = &mdev->tconn->data;
1026 p = drbd_prepare_command(mdev, sock);
1027 if (!p) {
1028 put_ldev(mdev);
1029 return -EIO;
1030 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001031 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001032 p->uuid[i] = mdev->ldev ? cpu_to_be64(mdev->ldev->md.uuid[i]) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001033
1034 mdev->comm_bm_set = drbd_bm_total_weight(mdev);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001035 p->uuid[UI_SIZE] = cpu_to_be64(mdev->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +02001036 rcu_read_lock();
Andreas Gruenbacher6139f602011-05-06 20:00:02 +02001037 uuid_flags |= rcu_dereference(mdev->tconn->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001038 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001039 uuid_flags |= test_bit(CRASHED_PRIMARY, &mdev->flags) ? 2 : 0;
1040 uuid_flags |= mdev->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001041 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001042
1043 put_ldev(mdev);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001044 return drbd_send_command(mdev, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001045}
1046
1047int drbd_send_uuids(struct drbd_conf *mdev)
1048{
1049 return _drbd_send_uuids(mdev, 0);
1050}
1051
1052int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev)
1053{
1054 return _drbd_send_uuids(mdev, 8);
1055}
1056
Lars Ellenberg62b0da32011-01-20 13:25:21 +01001057void drbd_print_uuids(struct drbd_conf *mdev, const char *text)
1058{
1059 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
1060 u64 *uuid = mdev->ldev->md.uuid;
1061 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX\n",
1062 text,
1063 (unsigned long long)uuid[UI_CURRENT],
1064 (unsigned long long)uuid[UI_BITMAP],
1065 (unsigned long long)uuid[UI_HISTORY_START],
1066 (unsigned long long)uuid[UI_HISTORY_END]);
1067 put_ldev(mdev);
1068 } else {
1069 dev_info(DEV, "%s effective data uuid: %016llX\n",
1070 text,
1071 (unsigned long long)mdev->ed_uuid);
1072 }
1073}
1074
Andreas Gruenbacher9c1b7f72011-03-16 01:09:01 +01001075void drbd_gen_and_send_sync_uuid(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001076{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001077 struct drbd_socket *sock;
1078 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001079 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001080
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001081 D_ASSERT(mdev->state.disk == D_UP_TO_DATE);
1082
Philipp Reisner0cfac5d2011-11-10 12:12:52 +01001083 uuid = mdev->ldev->md.uuid[UI_BITMAP];
1084 if (uuid && uuid != UUID_JUST_CREATED)
1085 uuid = uuid + UUID_NEW_BM_OFFSET;
1086 else
1087 get_random_bytes(&uuid, sizeof(u64));
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001088 drbd_uuid_set(mdev, UI_BITMAP, uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01001089 drbd_print_uuids(mdev, "updated sync UUID");
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001090 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001091
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001092 sock = &mdev->tconn->data;
1093 p = drbd_prepare_command(mdev, sock);
1094 if (p) {
1095 p->uuid = cpu_to_be64(uuid);
1096 drbd_send_command(mdev, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
1097 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001098}
1099
Philipp Reisnere89b5912010-03-24 17:11:33 +01001100int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001101{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001102 struct drbd_socket *sock;
1103 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001104 sector_t d_size, u_size;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001105 int q_order_type, max_bio_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001106
1107 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
1108 D_ASSERT(mdev->ldev->backing_bdev);
1109 d_size = drbd_get_max_capacity(mdev->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001110 rcu_read_lock();
1111 u_size = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
1112 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001113 q_order_type = drbd_queue_order_type(mdev);
Philipp Reisner99432fc2011-05-20 16:39:13 +02001114 max_bio_size = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
1115 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001116 put_ldev(mdev);
1117 } else {
1118 d_size = 0;
1119 u_size = 0;
1120 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001121 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001122 }
1123
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001124 sock = &mdev->tconn->data;
1125 p = drbd_prepare_command(mdev, sock);
1126 if (!p)
1127 return -EIO;
Philipp Reisner2ffca4f2011-06-30 15:43:06 +02001128
1129 if (mdev->tconn->agreed_pro_version <= 94)
1130 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
1131 else if (mdev->tconn->agreed_pro_version < 100)
1132 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE_P95);
1133
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001134 p->d_size = cpu_to_be64(d_size);
1135 p->u_size = cpu_to_be64(u_size);
1136 p->c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(mdev->this_bdev));
1137 p->max_bio_size = cpu_to_be32(max_bio_size);
1138 p->queue_order_type = cpu_to_be16(q_order_type);
1139 p->dds_flags = cpu_to_be16(flags);
1140 return drbd_send_command(mdev, sock, P_SIZES, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001141}
1142
1143/**
Philipp Reisner43de7c82011-11-10 13:16:13 +01001144 * drbd_send_current_state() - Sends the drbd state to the peer
Philipp Reisnerb411b362009-09-25 16:07:19 -07001145 * @mdev: DRBD device.
1146 */
Philipp Reisner43de7c82011-11-10 13:16:13 +01001147int drbd_send_current_state(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001148{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +01001149 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001150 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001151
Andreas Gruenbacher7c967152011-03-22 00:49:36 +01001152 sock = &mdev->tconn->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001153 p = drbd_prepare_command(mdev, sock);
1154 if (!p)
1155 return -EIO;
1156 p->state = cpu_to_be32(mdev->state.i); /* Within the send mutex */
1157 return drbd_send_command(mdev, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001158}
1159
Philipp Reisner43de7c82011-11-10 13:16:13 +01001160/**
1161 * drbd_send_state() - After a state change, sends the new state to the peer
1162 * @mdev: DRBD device.
1163 * @state: the state to send, not necessarily the current state.
1164 *
1165 * Each state change queues an "after_state_ch" work, which will eventually
1166 * send the resulting new state to the peer. If more state changes happen
1167 * between queuing and processing of the after_state_ch work, we still
1168 * want to send each intermediary state in the order it occurred.
1169 */
1170int drbd_send_state(struct drbd_conf *mdev, union drbd_state state)
1171{
1172 struct drbd_socket *sock;
1173 struct p_state *p;
1174
1175 sock = &mdev->tconn->data;
1176 p = drbd_prepare_command(mdev, sock);
1177 if (!p)
1178 return -EIO;
1179 p->state = cpu_to_be32(state.i); /* Within the send mutex */
1180 return drbd_send_command(mdev, sock, P_STATE, sizeof(*p), NULL, 0);
1181}
1182
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001183int drbd_send_state_req(struct drbd_conf *mdev, union drbd_state mask, union drbd_state val)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001184{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001185 struct drbd_socket *sock;
1186 struct p_req_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001187
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001188 sock = &mdev->tconn->data;
1189 p = drbd_prepare_command(mdev, sock);
1190 if (!p)
1191 return -EIO;
1192 p->mask = cpu_to_be32(mask.i);
1193 p->val = cpu_to_be32(val.i);
1194 return drbd_send_command(mdev, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001195}
1196
1197int conn_send_state_req(struct drbd_tconn *tconn, union drbd_state mask, union drbd_state val)
1198{
1199 enum drbd_packet cmd;
1200 struct drbd_socket *sock;
1201 struct p_req_state *p;
1202
1203 cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1204 sock = &tconn->data;
1205 p = conn_prepare_command(tconn, sock);
1206 if (!p)
1207 return -EIO;
1208 p->mask = cpu_to_be32(mask.i);
1209 p->val = cpu_to_be32(val.i);
1210 return conn_send_command(tconn, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001211}
1212
Andreas Gruenbacher2f4e7ab2011-03-16 01:20:38 +01001213void drbd_send_sr_reply(struct drbd_conf *mdev, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001214{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001215 struct drbd_socket *sock;
1216 struct p_req_state_reply *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001217
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001218 sock = &mdev->tconn->meta;
1219 p = drbd_prepare_command(mdev, sock);
1220 if (p) {
1221 p->retcode = cpu_to_be32(retcode);
1222 drbd_send_command(mdev, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
1223 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001224}
1225
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001226void conn_send_sr_reply(struct drbd_tconn *tconn, enum drbd_state_rv retcode)
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001227{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001228 struct drbd_socket *sock;
1229 struct p_req_state_reply *p;
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001230 enum drbd_packet cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
1231
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001232 sock = &tconn->meta;
1233 p = conn_prepare_command(tconn, sock);
1234 if (p) {
1235 p->retcode = cpu_to_be32(retcode);
1236 conn_send_command(tconn, sock, cmd, sizeof(*p), NULL, 0);
1237 }
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001238}
1239
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001240static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
1241{
1242 BUG_ON(code & ~0xf);
1243 p->encoding = (p->encoding & ~0xf) | code;
1244}
1245
1246static void dcbp_set_start(struct p_compressed_bm *p, int set)
1247{
1248 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1249}
1250
1251static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1252{
1253 BUG_ON(n & ~0x7);
1254 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
1255}
1256
Philipp Reisnerb411b362009-09-25 16:07:19 -07001257int fill_bitmap_rle_bits(struct drbd_conf *mdev,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001258 struct p_compressed_bm *p,
1259 unsigned int size,
1260 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001261{
1262 struct bitstream bs;
1263 unsigned long plain_bits;
1264 unsigned long tmp;
1265 unsigned long rl;
1266 unsigned len;
1267 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001268 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001269
1270 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001271 rcu_read_lock();
1272 use_rle = rcu_dereference(mdev->tconn->net_conf)->use_rle;
1273 rcu_read_unlock();
1274 if (!use_rle || mdev->tconn->agreed_pro_version < 90)
1275 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001276
1277 if (c->bit_offset >= c->bm_bits)
1278 return 0; /* nothing to do. */
1279
1280 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001281 bitstream_init(&bs, p->code, size, 0);
1282 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001283 /* plain bits covered in this code string */
1284 plain_bits = 0;
1285
1286 /* p->encoding & 0x80 stores whether the first run length is set.
1287 * bit offset is implicit.
1288 * start with toggle == 2 to be able to tell the first iteration */
1289 toggle = 2;
1290
1291 /* see how much plain bits we can stuff into one packet
1292 * using RLE and VLI. */
1293 do {
1294 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(mdev, c->bit_offset)
1295 : _drbd_bm_find_next(mdev, c->bit_offset);
1296 if (tmp == -1UL)
1297 tmp = c->bm_bits;
1298 rl = tmp - c->bit_offset;
1299
1300 if (toggle == 2) { /* first iteration */
1301 if (rl == 0) {
1302 /* the first checked bit was set,
1303 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001304 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001305 /* but skip encoding of zero run length */
1306 toggle = !toggle;
1307 continue;
1308 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001309 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001310 }
1311
1312 /* paranoia: catch zero runlength.
1313 * can only happen if bitmap is modified while we scan it. */
1314 if (rl == 0) {
1315 dev_err(DEV, "unexpected zero runlength while encoding bitmap "
1316 "t:%u bo:%lu\n", toggle, c->bit_offset);
1317 return -1;
1318 }
1319
1320 bits = vli_encode_bits(&bs, rl);
1321 if (bits == -ENOBUFS) /* buffer full */
1322 break;
1323 if (bits <= 0) {
1324 dev_err(DEV, "error while encoding bitmap: %d\n", bits);
1325 return 0;
1326 }
1327
1328 toggle = !toggle;
1329 plain_bits += rl;
1330 c->bit_offset = tmp;
1331 } while (c->bit_offset < c->bm_bits);
1332
1333 len = bs.cur.b - p->code + !!bs.cur.bit;
1334
1335 if (plain_bits < (len << 3)) {
1336 /* incompressible with this method.
1337 * we need to rewind both word and bit position. */
1338 c->bit_offset -= plain_bits;
1339 bm_xfer_ctx_bit_to_word_offset(c);
1340 c->bit_offset = c->word_offset * BITS_PER_LONG;
1341 return 0;
1342 }
1343
1344 /* RLE + VLI was able to compress it just fine.
1345 * update c->word_offset. */
1346 bm_xfer_ctx_bit_to_word_offset(c);
1347
1348 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001349 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001350
1351 return len;
1352}
1353
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001354/**
1355 * send_bitmap_rle_or_plain
1356 *
1357 * Return 0 when done, 1 when another iteration is needed, and a negative error
1358 * code upon failure.
1359 */
1360static int
Andreas Gruenbacher79ed9bd2011-03-24 21:31:38 +01001361send_bitmap_rle_or_plain(struct drbd_conf *mdev, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001362{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001363 struct drbd_socket *sock = &mdev->tconn->data;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001364 unsigned int header_size = drbd_header_size(mdev->tconn);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001365 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001366 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001367
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001368 len = fill_bitmap_rle_bits(mdev, p,
1369 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001370 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001371 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001372
1373 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001374 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001375 err = __send_command(mdev->tconn, mdev->vnr, sock,
1376 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1377 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001378 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001379 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001380
1381 if (c->bit_offset >= c->bm_bits)
1382 len = 0; /* DONE */
1383 } else {
1384 /* was not compressible.
1385 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001386 unsigned int data_size;
1387 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001388 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001389
1390 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001391 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001392 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001393 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001394 if (len)
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001395 drbd_bm_get_lel(mdev, c->word_offset, num_words, p);
1396 err = __send_command(mdev->tconn, mdev->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001397 c->word_offset += num_words;
1398 c->bit_offset = c->word_offset * BITS_PER_LONG;
1399
1400 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001401 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001402
1403 if (c->bit_offset > c->bm_bits)
1404 c->bit_offset = c->bm_bits;
1405 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001406 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001407 if (len == 0) {
1408 INFO_bm_xfer_stats(mdev, "send", c);
1409 return 0;
1410 } else
1411 return 1;
1412 }
1413 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001414}
1415
1416/* See the comment at receive_bitmap() */
Andreas Gruenbacher058820c2011-03-22 16:03:43 +01001417static int _drbd_send_bitmap(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001418{
1419 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001420 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001421
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001422 if (!expect(mdev->bitmap))
1423 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001424
Philipp Reisnerb411b362009-09-25 16:07:19 -07001425 if (get_ldev(mdev)) {
1426 if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC)) {
1427 dev_info(DEV, "Writing the whole bitmap, MDF_FullSync was set.\n");
1428 drbd_bm_set_all(mdev);
1429 if (drbd_bm_write(mdev)) {
1430 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1431 * but otherwise process as per normal - need to tell other
1432 * side that a full resync is required! */
1433 dev_err(DEV, "Failed to write bitmap to disk!\n");
1434 } else {
1435 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
1436 drbd_md_sync(mdev);
1437 }
1438 }
1439 put_ldev(mdev);
1440 }
1441
1442 c = (struct bm_xfer_ctx) {
1443 .bm_bits = drbd_bm_bits(mdev),
1444 .bm_words = drbd_bm_words(mdev),
1445 };
1446
1447 do {
Andreas Gruenbacher79ed9bd2011-03-24 21:31:38 +01001448 err = send_bitmap_rle_or_plain(mdev, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001449 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001450
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001451 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001452}
1453
1454int drbd_send_bitmap(struct drbd_conf *mdev)
1455{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001456 struct drbd_socket *sock = &mdev->tconn->data;
1457 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001458
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001459 mutex_lock(&sock->mutex);
1460 if (sock->socket)
1461 err = !_drbd_send_bitmap(mdev);
1462 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001463 return err;
1464}
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001465
Andreas Gruenbacherd4e67d72011-03-16 01:25:28 +01001466void drbd_send_b_ack(struct drbd_conf *mdev, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001467{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001468 struct drbd_socket *sock;
1469 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001470
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001471 if (mdev->state.conn < C_CONNECTED)
1472 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001473
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001474 sock = &mdev->tconn->meta;
1475 p = drbd_prepare_command(mdev, sock);
1476 if (!p)
1477 return;
1478 p->barrier = barrier_nr;
1479 p->set_size = cpu_to_be32(set_size);
1480 drbd_send_command(mdev, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001481}
1482
1483/**
1484 * _drbd_send_ack() - Sends an ack packet
1485 * @mdev: DRBD device.
1486 * @cmd: Packet command code.
1487 * @sector: sector, needs to be in big endian byte order
1488 * @blksize: size in byte, needs to be in big endian byte order
1489 * @block_id: Id, big endian byte order
1490 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001491static int _drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
1492 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001493{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001494 struct drbd_socket *sock;
1495 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001496
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001497 if (mdev->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001498 return -EIO;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001499
1500 sock = &mdev->tconn->meta;
1501 p = drbd_prepare_command(mdev, sock);
1502 if (!p)
1503 return -EIO;
1504 p->sector = sector;
1505 p->block_id = block_id;
1506 p->blksize = blksize;
1507 p->seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
1508 return drbd_send_command(mdev, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001509}
1510
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001511/* dp->sector and dp->block_id already/still in network byte order,
1512 * data_size is payload size according to dp->head,
1513 * and may need to be corrected for digest size. */
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001514void drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packet cmd,
1515 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001516{
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02001517 if (mdev->tconn->peer_integrity_tfm)
1518 data_size -= crypto_hash_digestsize(mdev->tconn->peer_integrity_tfm);
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001519 _drbd_send_ack(mdev, cmd, dp->sector, cpu_to_be32(data_size),
1520 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001521}
1522
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001523void drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packet cmd,
1524 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001525{
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001526 _drbd_send_ack(mdev, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001527}
1528
1529/**
1530 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001531 * @mdev: DRBD device
1532 * @cmd: packet command code
1533 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001534 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001535int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001536 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001537{
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001538 return _drbd_send_ack(mdev, cmd,
1539 cpu_to_be64(peer_req->i.sector),
1540 cpu_to_be32(peer_req->i.size),
1541 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001542}
1543
1544/* This function misuses the block_id field to signal if the blocks
1545 * are is sync or not. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001546int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001547 sector_t sector, int blksize, u64 block_id)
1548{
Andreas Gruenbacherfa79abd2011-03-16 01:31:39 +01001549 return _drbd_send_ack(mdev, cmd,
1550 cpu_to_be64(sector),
1551 cpu_to_be32(blksize),
1552 cpu_to_be64(block_id));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001553}
1554
1555int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1556 sector_t sector, int size, u64 block_id)
1557{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001558 struct drbd_socket *sock;
1559 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001560
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001561 sock = &mdev->tconn->data;
1562 p = drbd_prepare_command(mdev, sock);
1563 if (!p)
1564 return -EIO;
1565 p->sector = cpu_to_be64(sector);
1566 p->block_id = block_id;
1567 p->blksize = cpu_to_be32(size);
1568 return drbd_send_command(mdev, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001569}
1570
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001571int drbd_send_drequest_csum(struct drbd_conf *mdev, sector_t sector, int size,
1572 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001573{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001574 struct drbd_socket *sock;
1575 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001576
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001577 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001578
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001579 sock = &mdev->tconn->data;
1580 p = drbd_prepare_command(mdev, sock);
1581 if (!p)
1582 return -EIO;
1583 p->sector = cpu_to_be64(sector);
1584 p->block_id = ID_SYNCER /* unused */;
1585 p->blksize = cpu_to_be32(size);
1586 return drbd_send_command(mdev, sock, cmd, sizeof(*p),
1587 digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001588}
1589
1590int drbd_send_ov_request(struct drbd_conf *mdev, sector_t sector, int size)
1591{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001592 struct drbd_socket *sock;
1593 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001594
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001595 sock = &mdev->tconn->data;
1596 p = drbd_prepare_command(mdev, sock);
1597 if (!p)
1598 return -EIO;
1599 p->sector = cpu_to_be64(sector);
1600 p->block_id = ID_SYNCER /* unused */;
1601 p->blksize = cpu_to_be32(size);
1602 return drbd_send_command(mdev, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001603}
1604
1605/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001606 * returns false if we should retry,
1607 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001608 */
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001609static int we_should_drop_the_connection(struct drbd_tconn *tconn, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001610{
1611 int drop_it;
1612 /* long elapsed = (long)(jiffies - mdev->last_received); */
1613
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001614 drop_it = tconn->meta.socket == sock
1615 || !tconn->asender.task
1616 || get_t_state(&tconn->asender) != RUNNING
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001617 || tconn->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001618
1619 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001620 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001621
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001622 drop_it = !--tconn->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001623 if (!drop_it) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001624 conn_err(tconn, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1625 current->comm, current->pid, tconn->ko_count);
1626 request_ping(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001627 }
1628
1629 return drop_it; /* && (mdev->state == R_PRIMARY) */;
1630}
1631
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001632static void drbd_update_congested(struct drbd_tconn *tconn)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001633{
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001634 struct sock *sk = tconn->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001635 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001636 set_bit(NET_CONGESTED, &tconn->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001637}
1638
Philipp Reisnerb411b362009-09-25 16:07:19 -07001639/* The idea of sendpage seems to be to put some kind of reference
1640 * to the page into the skb, and to hand it over to the NIC. In
1641 * this process get_page() gets called.
1642 *
1643 * As soon as the page was really sent over the network put_page()
1644 * gets called by some part of the network layer. [ NIC driver? ]
1645 *
1646 * [ get_page() / put_page() increment/decrement the count. If count
1647 * reaches 0 the page will be freed. ]
1648 *
1649 * This works nicely with pages from FSs.
1650 * But this means that in protocol A we might signal IO completion too early!
1651 *
1652 * In order not to corrupt data during a resync we must make sure
1653 * that we do not reuse our own buffer pages (EEs) to early, therefore
1654 * we have the net_ee list.
1655 *
1656 * XFS seems to have problems, still, it submits pages with page_count == 0!
1657 * As a workaround, we disable sendpage on pages
1658 * with page_count == 0 or PageSlab.
1659 */
1660static int _drbd_no_send_page(struct drbd_conf *mdev, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001661 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001662{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001663 struct socket *socket;
1664 void *addr;
1665 int err;
1666
1667 socket = mdev->tconn->data.socket;
1668 addr = kmap(page) + offset;
1669 err = drbd_send_all(mdev->tconn, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001670 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001671 if (!err)
1672 mdev->send_cnt += size >> 9;
1673 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001674}
1675
1676static int _drbd_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001677 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001678{
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001679 struct socket *socket = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001680 mm_segment_t oldfs = get_fs();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001681 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001682 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001683
1684 /* e.g. XFS meta- & log-data is in slab pages, which have a
1685 * page_count of 0 and/or have PageSlab() set.
1686 * we cannot use send_page for those, as that does get_page();
1687 * put_page(); and would cause either a VM_BUG directly, or
1688 * __page_cache_release a page that would actually still be referenced
1689 * by someone, leading to some obscure delayed Oops somewhere else. */
1690 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001691 return _drbd_no_send_page(mdev, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001692
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001693 msg_flags |= MSG_NOSIGNAL;
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001694 drbd_update_congested(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001695 set_fs(KERNEL_DS);
1696 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001697 int sent;
1698
1699 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001700 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001701 if (sent == -EAGAIN) {
1702 if (we_should_drop_the_connection(mdev->tconn, socket))
1703 break;
1704 continue;
1705 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001706 dev_warn(DEV, "%s: size=%d len=%d sent=%d\n",
1707 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001708 if (sent < 0)
1709 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001710 break;
1711 }
1712 len -= sent;
1713 offset += sent;
1714 } while (len > 0 /* THINK && mdev->cstate >= C_CONNECTED*/);
1715 set_fs(oldfs);
Philipp Reisner01a311a2011-02-07 14:30:33 +01001716 clear_bit(NET_CONGESTED, &mdev->tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001717
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001718 if (len == 0) {
1719 err = 0;
1720 mdev->send_cnt += size >> 9;
1721 }
1722 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001723}
1724
1725static int _drbd_send_bio(struct drbd_conf *mdev, struct bio *bio)
1726{
1727 struct bio_vec *bvec;
1728 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001729 /* hint all but last page with MSG_MORE */
Lars Ellenberg4b8514e2012-03-26 16:12:49 +02001730 bio_for_each_segment(bvec, bio, i) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001731 int err;
1732
1733 err = _drbd_no_send_page(mdev, bvec->bv_page,
1734 bvec->bv_offset, bvec->bv_len,
1735 i == bio->bi_vcnt - 1 ? 0 : MSG_MORE);
1736 if (err)
1737 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001738 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001739 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001740}
1741
1742static int _drbd_send_zc_bio(struct drbd_conf *mdev, struct bio *bio)
1743{
1744 struct bio_vec *bvec;
1745 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001746 /* hint all but last page with MSG_MORE */
Lars Ellenberg4b8514e2012-03-26 16:12:49 +02001747 bio_for_each_segment(bvec, bio, i) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001748 int err;
1749
1750 err = _drbd_send_page(mdev, bvec->bv_page,
1751 bvec->bv_offset, bvec->bv_len,
1752 i == bio->bi_vcnt - 1 ? 0 : MSG_MORE);
1753 if (err)
1754 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001755 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001756 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001757}
1758
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001759static int _drbd_send_zc_ee(struct drbd_conf *mdev,
1760 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001761{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001762 struct page *page = peer_req->pages;
1763 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001764 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001765
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001766 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001767 page_chain_for_each(page) {
1768 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001769
1770 err = _drbd_send_page(mdev, page, 0, l,
1771 page_chain_next(page) ? MSG_MORE : 0);
1772 if (err)
1773 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001774 len -= l;
1775 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001776 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001777}
1778
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001779static u32 bio_flags_to_wire(struct drbd_conf *mdev, unsigned long bi_rw)
1780{
Philipp Reisner31890f42011-01-19 14:12:51 +01001781 if (mdev->tconn->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001782 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001783 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1784 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1785 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1786 else
Jens Axboe721a9602011-03-09 11:56:30 +01001787 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001788}
1789
Philipp Reisnerb411b362009-09-25 16:07:19 -07001790/* Used to send write requests
1791 * R_PRIMARY -> Peer (P_DATA)
1792 */
1793int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
1794{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001795 struct drbd_socket *sock;
1796 struct p_data *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001797 unsigned int dp_flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001798 int dgs;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001799 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001800
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001801 sock = &mdev->tconn->data;
1802 p = drbd_prepare_command(mdev, sock);
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001803 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001804
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001805 if (!p)
1806 return -EIO;
1807 p->sector = cpu_to_be64(req->i.sector);
1808 p->block_id = (unsigned long)req;
Lars Ellenberg5cdb0bf32012-03-26 16:21:25 +02001809 p->seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001810 dp_flags = bio_flags_to_wire(mdev, req->master_bio->bi_rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001811 if (mdev->state.conn >= C_SYNC_SOURCE &&
1812 mdev->state.conn <= C_PAUSED_SYNC_T)
1813 dp_flags |= DP_MAY_SET_IN_SYNC;
Philipp Reisner303d1442011-04-13 16:24:47 -07001814 if (mdev->tconn->agreed_pro_version >= 100) {
1815 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1816 dp_flags |= DP_SEND_RECEIVE_ACK;
1817 if (req->rq_state & RQ_EXP_WRITE_ACK)
1818 dp_flags |= DP_SEND_WRITE_ACK;
1819 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001820 p->dp_flags = cpu_to_be32(dp_flags);
1821 if (dgs)
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001822 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001823 err = __send_command(mdev->tconn, mdev->vnr, sock, P_DATA, sizeof(*p) + dgs, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001824 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001825 /* For protocol A, we have to memcpy the payload into
1826 * socket buffers, as we may complete right away
1827 * as soon as we handed it over to tcp, at which point the data
1828 * pages may become invalid.
1829 *
1830 * For data-integrity enabled, we copy it as well, so we can be
1831 * sure that even if the bio pages may still be modified, it
1832 * won't change the data on the wire, thus if the digest checks
1833 * out ok after sending on this side, but does not fit on the
1834 * receiving side, we sure have detected corruption elsewhere.
1835 */
Philipp Reisner303d1442011-04-13 16:24:47 -07001836 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || dgs)
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001837 err = _drbd_send_bio(mdev, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001838 else
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001839 err = _drbd_send_zc_bio(mdev, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001840
1841 /* double check digest, sometimes buffers have been modified in flight. */
1842 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001843 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001844 * currently supported in kernel crypto. */
1845 unsigned char digest[64];
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001846 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001847 if (memcmp(p + 1, digest, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001848 dev_warn(DEV,
1849 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001850 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001851 }
1852 } /* else if (dgs > 64) {
1853 ... Be noisy about digest too large ...
1854 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001855 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001856 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001857
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001858 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001859}
1860
1861/* answer packet, used to send data back for read requests:
1862 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1863 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1864 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001865int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001866 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001867{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001868 struct drbd_socket *sock;
1869 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001870 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001871 int dgs;
1872
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001873 sock = &mdev->tconn->data;
1874 p = drbd_prepare_command(mdev, sock);
1875
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001876 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001877
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001878 if (!p)
1879 return -EIO;
1880 p->sector = cpu_to_be64(peer_req->i.sector);
1881 p->block_id = peer_req->block_id;
1882 p->seq_num = 0; /* unused */
Lars Ellenbergb17f33c2012-02-08 15:32:51 +01001883 p->dp_flags = 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001884 if (dgs)
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001885 drbd_csum_ee(mdev, mdev->tconn->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001886 err = __send_command(mdev->tconn, mdev->vnr, sock, cmd, sizeof(*p) + dgs, NULL, peer_req->i.size);
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001887 if (!err)
1888 err = _drbd_send_zc_ee(mdev, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001889 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001890
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001891 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001892}
1893
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +01001894int drbd_send_out_of_sync(struct drbd_conf *mdev, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001895{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001896 struct drbd_socket *sock;
1897 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001898
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001899 sock = &mdev->tconn->data;
1900 p = drbd_prepare_command(mdev, sock);
1901 if (!p)
1902 return -EIO;
1903 p->sector = cpu_to_be64(req->i.sector);
1904 p->blksize = cpu_to_be32(req->i.size);
1905 return drbd_send_command(mdev, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001906}
1907
Philipp Reisnerb411b362009-09-25 16:07:19 -07001908/*
1909 drbd_send distinguishes two cases:
1910
1911 Packets sent via the data socket "sock"
1912 and packets sent via the meta data socket "msock"
1913
1914 sock msock
1915 -----------------+-------------------------+------------------------------
1916 timeout conf.timeout / 2 conf.timeout / 2
1917 timeout action send a ping via msock Abort communication
1918 and close all sockets
1919*/
1920
1921/*
1922 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1923 */
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001924int drbd_send(struct drbd_tconn *tconn, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001925 void *buf, size_t size, unsigned msg_flags)
1926{
1927 struct kvec iov;
1928 struct msghdr msg;
1929 int rv, sent = 0;
1930
1931 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001932 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001933
1934 /* THINK if (signal_pending) return ... ? */
1935
1936 iov.iov_base = buf;
1937 iov.iov_len = size;
1938
1939 msg.msg_name = NULL;
1940 msg.msg_namelen = 0;
1941 msg.msg_control = NULL;
1942 msg.msg_controllen = 0;
1943 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1944
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001945 if (sock == tconn->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001946 rcu_read_lock();
1947 tconn->ko_count = rcu_dereference(tconn->net_conf)->ko_count;
1948 rcu_read_unlock();
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001949 drbd_update_congested(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001950 }
1951 do {
1952 /* STRANGE
1953 * tcp_sendmsg does _not_ use its size parameter at all ?
1954 *
1955 * -EAGAIN on timeout, -EINTR on signal.
1956 */
1957/* THINK
1958 * do we need to block DRBD_SIG if sock == &meta.socket ??
1959 * otherwise wake_asender() might interrupt some send_*Ack !
1960 */
1961 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1962 if (rv == -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001963 if (we_should_drop_the_connection(tconn, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001964 break;
1965 else
1966 continue;
1967 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001968 if (rv == -EINTR) {
1969 flush_signals(current);
1970 rv = 0;
1971 }
1972 if (rv < 0)
1973 break;
1974 sent += rv;
1975 iov.iov_base += rv;
1976 iov.iov_len -= rv;
1977 } while (sent < size);
1978
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001979 if (sock == tconn->data.socket)
1980 clear_bit(NET_CONGESTED, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001981
1982 if (rv <= 0) {
1983 if (rv != -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001984 conn_err(tconn, "%s_sendmsg returned %d\n",
1985 sock == tconn->meta.socket ? "msock" : "sock",
1986 rv);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001987 conn_request_state(tconn, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001988 } else
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001989 conn_request_state(tconn, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001990 }
1991
1992 return sent;
1993}
1994
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001995/**
1996 * drbd_send_all - Send an entire buffer
1997 *
1998 * Returns 0 upon success and a negative error value otherwise.
1999 */
2000int drbd_send_all(struct drbd_tconn *tconn, struct socket *sock, void *buffer,
2001 size_t size, unsigned msg_flags)
2002{
2003 int err;
2004
2005 err = drbd_send(tconn, sock, buffer, size, msg_flags);
2006 if (err < 0)
2007 return err;
2008 if (err != size)
2009 return -EIO;
2010 return 0;
2011}
2012
Philipp Reisnerb411b362009-09-25 16:07:19 -07002013static int drbd_open(struct block_device *bdev, fmode_t mode)
2014{
2015 struct drbd_conf *mdev = bdev->bd_disk->private_data;
2016 unsigned long flags;
2017 int rv = 0;
2018
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002019 mutex_lock(&drbd_main_mutex);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002020 spin_lock_irqsave(&mdev->tconn->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002021 /* to have a stable mdev->state.role
2022 * and no race with updating open_cnt */
2023
2024 if (mdev->state.role != R_PRIMARY) {
2025 if (mode & FMODE_WRITE)
2026 rv = -EROFS;
2027 else if (!allow_oos)
2028 rv = -EMEDIUMTYPE;
2029 }
2030
2031 if (!rv)
2032 mdev->open_cnt++;
Philipp Reisner87eeee42011-01-19 14:16:30 +01002033 spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002034 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002035
2036 return rv;
2037}
2038
2039static int drbd_release(struct gendisk *gd, fmode_t mode)
2040{
2041 struct drbd_conf *mdev = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002042 mutex_lock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002043 mdev->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002044 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002045 return 0;
2046}
2047
Philipp Reisnerb411b362009-09-25 16:07:19 -07002048static void drbd_set_defaults(struct drbd_conf *mdev)
2049{
Lars Ellenbergf3990022011-03-23 14:31:09 +01002050 /* Beware! The actual layout differs
2051 * between big endian and little endian */
Philipp Reisnerda9fbc22011-03-29 10:52:01 +02002052 mdev->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002053 { .role = R_SECONDARY,
2054 .peer = R_UNKNOWN,
2055 .conn = C_STANDALONE,
2056 .disk = D_DISKLESS,
2057 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07002058 } };
2059}
2060
2061void drbd_init_set_defaults(struct drbd_conf *mdev)
2062{
2063 /* the memset(,0,) did most of this.
2064 * note: only assignments, no allocation in here */
2065
2066 drbd_set_defaults(mdev);
2067
Philipp Reisnerb411b362009-09-25 16:07:19 -07002068 atomic_set(&mdev->ap_bio_cnt, 0);
2069 atomic_set(&mdev->ap_pending_cnt, 0);
2070 atomic_set(&mdev->rs_pending_cnt, 0);
2071 atomic_set(&mdev->unacked_cnt, 0);
2072 atomic_set(&mdev->local_cnt, 0);
Lars Ellenberg435f0742010-09-06 12:30:25 +02002073 atomic_set(&mdev->pp_in_use_by_net, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02002074 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002075 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner759fbdf2010-10-26 16:02:27 +02002076 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisnercdfda632011-07-05 15:38:59 +02002077 atomic_set(&mdev->md_io_in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002078
Philipp Reisner8410da82011-02-11 20:11:10 +01002079 mutex_init(&mdev->own_state_mutex);
2080 mdev->state_mutex = &mdev->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002081
Philipp Reisnerb411b362009-09-25 16:07:19 -07002082 spin_lock_init(&mdev->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002083 spin_lock_init(&mdev->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002084
2085 INIT_LIST_HEAD(&mdev->active_ee);
2086 INIT_LIST_HEAD(&mdev->sync_ee);
2087 INIT_LIST_HEAD(&mdev->done_ee);
2088 INIT_LIST_HEAD(&mdev->read_ee);
2089 INIT_LIST_HEAD(&mdev->net_ee);
2090 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002091 INIT_LIST_HEAD(&mdev->resync_work.list);
2092 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002093 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002094 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02002095 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002096 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02002097
Philipp Reisner794abb72010-12-27 11:51:23 +01002098 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002099 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002100 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002101 mdev->md_sync_work.cb = w_md_sync;
2102 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01002103 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01002104
2105 mdev->resync_work.mdev = mdev;
2106 mdev->unplug_work.mdev = mdev;
2107 mdev->go_diskless.mdev = mdev;
2108 mdev->md_sync_work.mdev = mdev;
2109 mdev->bm_io_work.w.mdev = mdev;
2110 mdev->start_resync_work.mdev = mdev;
2111
Philipp Reisnerb411b362009-09-25 16:07:19 -07002112 init_timer(&mdev->resync_timer);
2113 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01002114 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01002115 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002116 mdev->resync_timer.function = resync_timer_fn;
2117 mdev->resync_timer.data = (unsigned long) mdev;
2118 mdev->md_sync_timer.function = md_sync_timer_fn;
2119 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01002120 mdev->start_resync_timer.function = start_resync_timer_fn;
2121 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01002122 mdev->request_timer.function = request_timer_fn;
2123 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002124
2125 init_waitqueue_head(&mdev->misc_wait);
2126 init_waitqueue_head(&mdev->state_wait);
2127 init_waitqueue_head(&mdev->ee_wait);
2128 init_waitqueue_head(&mdev->al_wait);
2129 init_waitqueue_head(&mdev->seq_wait);
2130
Philipp Reisnerb411b362009-09-25 16:07:19 -07002131 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02002132 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
2133 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002134}
2135
2136void drbd_mdev_cleanup(struct drbd_conf *mdev)
2137{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002138 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002139 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002140 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002141 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002142
Philipp Reisnerb411b362009-09-25 16:07:19 -07002143 mdev->al_writ_cnt =
2144 mdev->bm_writ_cnt =
2145 mdev->read_cnt =
2146 mdev->recv_cnt =
2147 mdev->send_cnt =
2148 mdev->writ_cnt =
2149 mdev->p_size =
2150 mdev->rs_start =
2151 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002152 mdev->rs_failed = 0;
2153 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002154 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002155 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
2156 mdev->rs_mark_left[i] = 0;
2157 mdev->rs_mark_time[i] = 0;
2158 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01002159 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002160
2161 drbd_set_my_capacity(mdev, 0);
2162 if (mdev->bitmap) {
2163 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01002164 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002165 drbd_bm_cleanup(mdev);
2166 }
2167
Philipp Reisner1d041222011-04-22 15:20:23 +02002168 drbd_free_bc(mdev->ldev);
2169 mdev->ldev = NULL;
2170
Philipp Reisner07782862010-08-31 12:00:50 +02002171 clear_bit(AL_SUSPENDED, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002172
Philipp Reisnerb411b362009-09-25 16:07:19 -07002173 D_ASSERT(list_empty(&mdev->active_ee));
2174 D_ASSERT(list_empty(&mdev->sync_ee));
2175 D_ASSERT(list_empty(&mdev->done_ee));
2176 D_ASSERT(list_empty(&mdev->read_ee));
2177 D_ASSERT(list_empty(&mdev->net_ee));
2178 D_ASSERT(list_empty(&mdev->resync_reads));
Philipp Reisnere42325a2011-01-19 13:55:45 +01002179 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
2180 D_ASSERT(list_empty(&mdev->tconn->meta.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002181 D_ASSERT(list_empty(&mdev->resync_work.list));
2182 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002183 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002184
2185 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002186}
2187
2188
2189static void drbd_destroy_mempools(void)
2190{
2191 struct page *page;
2192
2193 while (drbd_pp_pool) {
2194 page = drbd_pp_pool;
2195 drbd_pp_pool = (struct page *)page_private(page);
2196 __free_page(page);
2197 drbd_pp_vacant--;
2198 }
2199
2200 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
2201
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002202 if (drbd_md_io_bio_set)
2203 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg35abf592011-02-23 12:39:46 +01002204 if (drbd_md_io_page_pool)
2205 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002206 if (drbd_ee_mempool)
2207 mempool_destroy(drbd_ee_mempool);
2208 if (drbd_request_mempool)
2209 mempool_destroy(drbd_request_mempool);
2210 if (drbd_ee_cache)
2211 kmem_cache_destroy(drbd_ee_cache);
2212 if (drbd_request_cache)
2213 kmem_cache_destroy(drbd_request_cache);
2214 if (drbd_bm_ext_cache)
2215 kmem_cache_destroy(drbd_bm_ext_cache);
2216 if (drbd_al_ext_cache)
2217 kmem_cache_destroy(drbd_al_ext_cache);
2218
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002219 drbd_md_io_bio_set = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002220 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002221 drbd_ee_mempool = NULL;
2222 drbd_request_mempool = NULL;
2223 drbd_ee_cache = NULL;
2224 drbd_request_cache = NULL;
2225 drbd_bm_ext_cache = NULL;
2226 drbd_al_ext_cache = NULL;
2227
2228 return;
2229}
2230
2231static int drbd_create_mempools(void)
2232{
2233 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01002234 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002235 int i;
2236
2237 /* prepare our caches and mempools */
2238 drbd_request_mempool = NULL;
2239 drbd_ee_cache = NULL;
2240 drbd_request_cache = NULL;
2241 drbd_bm_ext_cache = NULL;
2242 drbd_al_ext_cache = NULL;
2243 drbd_pp_pool = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002244 drbd_md_io_page_pool = NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002245 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002246
2247 /* caches */
2248 drbd_request_cache = kmem_cache_create(
2249 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2250 if (drbd_request_cache == NULL)
2251 goto Enomem;
2252
2253 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002254 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002255 if (drbd_ee_cache == NULL)
2256 goto Enomem;
2257
2258 drbd_bm_ext_cache = kmem_cache_create(
2259 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2260 if (drbd_bm_ext_cache == NULL)
2261 goto Enomem;
2262
2263 drbd_al_ext_cache = kmem_cache_create(
2264 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2265 if (drbd_al_ext_cache == NULL)
2266 goto Enomem;
2267
2268 /* mempools */
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002269 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2270 if (drbd_md_io_bio_set == NULL)
2271 goto Enomem;
2272
Lars Ellenberg35abf592011-02-23 12:39:46 +01002273 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2274 if (drbd_md_io_page_pool == NULL)
2275 goto Enomem;
2276
Philipp Reisnerb411b362009-09-25 16:07:19 -07002277 drbd_request_mempool = mempool_create(number,
2278 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2279 if (drbd_request_mempool == NULL)
2280 goto Enomem;
2281
2282 drbd_ee_mempool = mempool_create(number,
2283 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002284 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002285 goto Enomem;
2286
2287 /* drbd's page pool */
2288 spin_lock_init(&drbd_pp_lock);
2289
2290 for (i = 0; i < number; i++) {
2291 page = alloc_page(GFP_HIGHUSER);
2292 if (!page)
2293 goto Enomem;
2294 set_page_private(page, (unsigned long)drbd_pp_pool);
2295 drbd_pp_pool = page;
2296 }
2297 drbd_pp_vacant = number;
2298
2299 return 0;
2300
2301Enomem:
2302 drbd_destroy_mempools(); /* in case we allocated some */
2303 return -ENOMEM;
2304}
2305
2306static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2307 void *unused)
2308{
2309 /* just so we have it. you never know what interesting things we
2310 * might want to do here some day...
2311 */
2312
2313 return NOTIFY_DONE;
2314}
2315
2316static struct notifier_block drbd_notifier = {
2317 .notifier_call = drbd_notify_sys,
2318};
2319
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002320static void drbd_release_all_peer_reqs(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002321{
2322 int rr;
2323
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002324 rr = drbd_free_peer_reqs(mdev, &mdev->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002325 if (rr)
2326 dev_err(DEV, "%d EEs in active list found!\n", rr);
2327
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002328 rr = drbd_free_peer_reqs(mdev, &mdev->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002329 if (rr)
2330 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2331
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002332 rr = drbd_free_peer_reqs(mdev, &mdev->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002333 if (rr)
2334 dev_err(DEV, "%d EEs in read list found!\n", rr);
2335
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002336 rr = drbd_free_peer_reqs(mdev, &mdev->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002337 if (rr)
2338 dev_err(DEV, "%d EEs in done list found!\n", rr);
2339
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002340 rr = drbd_free_peer_reqs(mdev, &mdev->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002341 if (rr)
2342 dev_err(DEV, "%d EEs in net list found!\n", rr);
2343}
2344
Philipp Reisner774b3052011-02-22 02:07:03 -05002345/* caution. no locking. */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002346void drbd_minor_destroy(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002347{
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002348 struct drbd_conf *mdev = container_of(kref, struct drbd_conf, kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002349 struct drbd_tconn *tconn = mdev->tconn;
2350
Philipp Reisnercdfda632011-07-05 15:38:59 +02002351 del_timer_sync(&mdev->request_timer);
2352
Philipp Reisnerb411b362009-09-25 16:07:19 -07002353 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002354 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnere42325a2011-01-19 13:55:45 +01002355 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002356 /* end paranoia asserts */
2357
Philipp Reisnerb411b362009-09-25 16:07:19 -07002358 /* cleanup stuff that may have been allocated during
2359 * device (re-)configuration or state changes */
2360
2361 if (mdev->this_bdev)
2362 bdput(mdev->this_bdev);
2363
Philipp Reisner1d041222011-04-22 15:20:23 +02002364 drbd_free_bc(mdev->ldev);
2365 mdev->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002366
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002367 drbd_release_all_peer_reqs(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002368
Philipp Reisnerb411b362009-09-25 16:07:19 -07002369 lc_destroy(mdev->act_log);
2370 lc_destroy(mdev->resync);
2371
2372 kfree(mdev->p_uuid);
2373 /* mdev->p_uuid = NULL; */
2374
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002375 if (mdev->bitmap) /* should no longer be there. */
2376 drbd_bm_cleanup(mdev);
2377 __free_page(mdev->md_io_page);
2378 put_disk(mdev->vdisk);
2379 blk_cleanup_queue(mdev->rq_queue);
Philipp Reisner9958c852011-05-03 16:19:31 +02002380 kfree(mdev->rs_plan_s);
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002381 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002382
2383 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002384}
2385
2386static void drbd_cleanup(void)
2387{
2388 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002389 struct drbd_conf *mdev;
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002390 struct drbd_tconn *tconn, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002391
2392 unregister_reboot_notifier(&drbd_notifier);
2393
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002394 /* first remove proc,
2395 * drbdsetup uses it's presence to detect
2396 * whether DRBD is loaded.
2397 * If we would get stuck in proc removal,
2398 * but have netlink already deregistered,
2399 * some drbdsetup commands may wait forever
2400 * for an answer.
2401 */
2402 if (drbd_proc)
2403 remove_proc_entry("drbd", NULL);
2404
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002405 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002406
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002407 idr_for_each_entry(&minors, mdev, i) {
2408 idr_remove(&minors, mdev_to_minor(mdev));
2409 idr_remove(&mdev->tconn->volumes, mdev->vnr);
2410 del_gendisk(mdev->vdisk);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002411 /* synchronize_rcu(); No other threads running at this point */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002412 kref_put(&mdev->kref, &drbd_minor_destroy);
2413 }
2414
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002415 /* not _rcu since, no other updater anymore. Genl already unregistered */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002416 list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002417 list_del(&tconn->all_tconn); /* not _rcu no proc, not other threads */
2418 /* synchronize_rcu(); */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002419 kref_put(&tconn->kref, &conn_destroy);
2420 }
Philipp Reisnerff370e52011-04-11 21:10:11 -07002421
Philipp Reisner81a5d602011-02-22 19:53:16 -05002422 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002423 unregister_blkdev(DRBD_MAJOR, "drbd");
2424
Philipp Reisner81a5d602011-02-22 19:53:16 -05002425 idr_destroy(&minors);
2426
Philipp Reisnerb411b362009-09-25 16:07:19 -07002427 printk(KERN_INFO "drbd: module cleanup done.\n");
2428}
2429
2430/**
2431 * drbd_congested() - Callback for pdflush
2432 * @congested_data: User data
2433 * @bdi_bits: Bits pdflush is currently interested in
2434 *
2435 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2436 */
2437static int drbd_congested(void *congested_data, int bdi_bits)
2438{
2439 struct drbd_conf *mdev = congested_data;
2440 struct request_queue *q;
2441 char reason = '-';
2442 int r = 0;
2443
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002444 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002445 /* DRBD has frozen IO */
2446 r = bdi_bits;
2447 reason = 'd';
2448 goto out;
2449 }
2450
2451 if (get_ldev(mdev)) {
2452 q = bdev_get_queue(mdev->ldev->backing_bdev);
2453 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2454 put_ldev(mdev);
2455 if (r)
2456 reason = 'b';
2457 }
2458
Philipp Reisner01a311a2011-02-07 14:30:33 +01002459 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002460 r |= (1 << BDI_async_congested);
2461 reason = reason == 'b' ? 'a' : 'n';
2462 }
2463
2464out:
2465 mdev->congestion_reason = reason;
2466 return r;
2467}
2468
Philipp Reisner6699b652011-02-09 11:10:24 +01002469static void drbd_init_workqueue(struct drbd_work_queue* wq)
2470{
2471 sema_init(&wq->s, 0);
2472 spin_lock_init(&wq->q_lock);
2473 INIT_LIST_HEAD(&wq->q);
2474}
2475
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002476struct drbd_tconn *conn_get_by_name(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002477{
2478 struct drbd_tconn *tconn;
2479
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002480 if (!name || !name[0])
2481 return NULL;
2482
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002483 rcu_read_lock();
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002484 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002485 if (!strcmp(tconn->name, name)) {
2486 kref_get(&tconn->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002487 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002488 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002489 }
2490 tconn = NULL;
2491found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002492 rcu_read_unlock();
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002493 return tconn;
2494}
2495
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002496struct drbd_tconn *conn_get_by_addrs(void *my_addr, int my_addr_len,
2497 void *peer_addr, int peer_addr_len)
2498{
2499 struct drbd_tconn *tconn;
2500
2501 rcu_read_lock();
2502 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
2503 if (tconn->my_addr_len == my_addr_len &&
2504 tconn->peer_addr_len == peer_addr_len &&
2505 !memcmp(&tconn->my_addr, my_addr, my_addr_len) &&
2506 !memcmp(&tconn->peer_addr, peer_addr, peer_addr_len)) {
2507 kref_get(&tconn->kref);
2508 goto found;
2509 }
2510 }
2511 tconn = NULL;
2512found:
2513 rcu_read_unlock();
2514 return tconn;
2515}
2516
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002517static int drbd_alloc_socket(struct drbd_socket *socket)
2518{
2519 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2520 if (!socket->rbuf)
2521 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002522 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2523 if (!socket->sbuf)
2524 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002525 return 0;
2526}
2527
2528static void drbd_free_socket(struct drbd_socket *socket)
2529{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002530 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002531 free_page((unsigned long) socket->rbuf);
2532}
2533
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002534void conn_free_crypto(struct drbd_tconn *tconn)
2535{
Philipp Reisner1d041222011-04-22 15:20:23 +02002536 drbd_free_sock(tconn);
2537
2538 crypto_free_hash(tconn->csums_tfm);
2539 crypto_free_hash(tconn->verify_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002540 crypto_free_hash(tconn->cram_hmac_tfm);
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002541 crypto_free_hash(tconn->integrity_tfm);
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002542 crypto_free_hash(tconn->peer_integrity_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002543 kfree(tconn->int_dig_in);
2544 kfree(tconn->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002545
2546 tconn->csums_tfm = NULL;
2547 tconn->verify_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002548 tconn->cram_hmac_tfm = NULL;
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002549 tconn->integrity_tfm = NULL;
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002550 tconn->peer_integrity_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002551 tconn->int_dig_in = NULL;
2552 tconn->int_dig_vv = NULL;
2553}
2554
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002555int set_resource_options(struct drbd_tconn *tconn, struct res_opts *res_opts)
2556{
2557 cpumask_var_t new_cpu_mask;
2558 int err;
2559
2560 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2561 return -ENOMEM;
2562 /*
2563 retcode = ERR_NOMEM;
2564 drbd_msg_put_info("unable to allocate cpumask");
2565 */
2566
2567 /* silently ignore cpu mask on UP kernel */
2568 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
2569 /* FIXME: Get rid of constant 32 here */
2570 err = __bitmap_parse(res_opts->cpu_mask, 32, 0,
2571 cpumask_bits(new_cpu_mask), nr_cpu_ids);
2572 if (err) {
2573 conn_warn(tconn, "__bitmap_parse() failed with %d\n", err);
2574 /* retcode = ERR_CPU_MASK_PARSE; */
2575 goto fail;
2576 }
2577 }
2578 tconn->res_opts = *res_opts;
2579 if (!cpumask_equal(tconn->cpu_mask, new_cpu_mask)) {
2580 cpumask_copy(tconn->cpu_mask, new_cpu_mask);
2581 drbd_calc_cpu_mask(tconn);
2582 tconn->receiver.reset_cpu_mask = 1;
2583 tconn->asender.reset_cpu_mask = 1;
2584 tconn->worker.reset_cpu_mask = 1;
2585 }
2586 err = 0;
2587
2588fail:
2589 free_cpumask_var(new_cpu_mask);
2590 return err;
2591
2592}
2593
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002594/* caller must be under genl_lock() */
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002595struct drbd_tconn *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002596{
2597 struct drbd_tconn *tconn;
2598
2599 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2600 if (!tconn)
2601 return NULL;
2602
2603 tconn->name = kstrdup(name, GFP_KERNEL);
2604 if (!tconn->name)
2605 goto fail;
2606
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002607 if (drbd_alloc_socket(&tconn->data))
2608 goto fail;
2609 if (drbd_alloc_socket(&tconn->meta))
2610 goto fail;
2611
Philipp Reisner774b3052011-02-22 02:07:03 -05002612 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2613 goto fail;
2614
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002615 if (set_resource_options(tconn, res_opts))
2616 goto fail;
2617
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002618 if (!tl_init(tconn))
2619 goto fail;
2620
Philipp Reisner12038a32011-11-09 19:18:00 +01002621 tconn->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2622 if (!tconn->current_epoch)
2623 goto fail;
2624 INIT_LIST_HEAD(&tconn->current_epoch->list);
2625 tconn->epochs = 1;
2626 spin_lock_init(&tconn->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002627 tconn->write_ordering = WO_bdev_flush;
2628
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002629 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da82011-02-11 20:11:10 +01002630 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002631 spin_lock_init(&tconn->req_lock);
Philipp Reisnera0095502011-05-03 13:14:15 +02002632 mutex_init(&tconn->conf_update);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002633 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002634 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002635
Philipp Reisner6699b652011-02-09 11:10:24 +01002636 drbd_init_workqueue(&tconn->data.work);
2637 mutex_init(&tconn->data.mutex);
2638
2639 drbd_init_workqueue(&tconn->meta.work);
2640 mutex_init(&tconn->meta.mutex);
2641
Philipp Reisner392c8802011-02-09 10:33:31 +01002642 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2643 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2644 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2645
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002646 kref_init(&tconn->kref);
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002647 list_add_tail_rcu(&tconn->all_tconn, &drbd_tconns);
Philipp Reisner21114382011-01-19 12:26:59 +01002648
2649 return tconn;
2650
2651fail:
Philipp Reisner12038a32011-11-09 19:18:00 +01002652 kfree(tconn->current_epoch);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002653 tl_cleanup(tconn);
Philipp Reisner774b3052011-02-22 02:07:03 -05002654 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002655 drbd_free_socket(&tconn->meta);
2656 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002657 kfree(tconn->name);
2658 kfree(tconn);
2659
2660 return NULL;
2661}
2662
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002663void conn_destroy(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002664{
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002665 struct drbd_tconn *tconn = container_of(kref, struct drbd_tconn, kref);
2666
Philipp Reisner12038a32011-11-09 19:18:00 +01002667 if (atomic_read(&tconn->current_epoch->epoch_size) != 0)
2668 conn_err(tconn, "epoch_size:%d\n", atomic_read(&tconn->current_epoch->epoch_size));
2669 kfree(tconn->current_epoch);
2670
Philipp Reisner062e8792011-02-08 11:09:18 +01002671 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002672
Philipp Reisner774b3052011-02-22 02:07:03 -05002673 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002674 drbd_free_socket(&tconn->meta);
2675 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002676 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002677 kfree(tconn->int_dig_in);
2678 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002679 kfree(tconn);
2680}
2681
Philipp Reisner774b3052011-02-22 02:07:03 -05002682enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002683{
2684 struct drbd_conf *mdev;
2685 struct gendisk *disk;
2686 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002687 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002688 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002689 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002690
2691 mdev = minor_to_mdev(minor);
2692 if (mdev)
2693 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002694
2695 /* GFP_KERNEL, we are outside of all write-out paths */
2696 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2697 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002698 return ERR_NOMEM;
2699
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002700 kref_get(&tconn->kref);
Philipp Reisner774b3052011-02-22 02:07:03 -05002701 mdev->tconn = tconn;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002702
Philipp Reisnerb411b362009-09-25 16:07:19 -07002703 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002704 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002705
2706 drbd_init_set_defaults(mdev);
2707
2708 q = blk_alloc_queue(GFP_KERNEL);
2709 if (!q)
2710 goto out_no_q;
2711 mdev->rq_queue = q;
2712 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002713
2714 disk = alloc_disk(1);
2715 if (!disk)
2716 goto out_no_disk;
2717 mdev->vdisk = disk;
2718
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002719 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002720
2721 disk->queue = q;
2722 disk->major = DRBD_MAJOR;
2723 disk->first_minor = minor;
2724 disk->fops = &drbd_ops;
2725 sprintf(disk->disk_name, "drbd%d", minor);
2726 disk->private_data = mdev;
2727
2728 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2729 /* we have no partitions. we contain only ourselves. */
2730 mdev->this_bdev->bd_contains = mdev->this_bdev;
2731
2732 q->backing_dev_info.congested_fn = drbd_congested;
2733 q->backing_dev_info.congested_data = mdev;
2734
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002735 blk_queue_make_request(q, drbd_make_request);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002736 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2737 This triggers a max_bio_size message upon first attach or connect */
2738 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002739 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2740 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002741 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002742
2743 mdev->md_io_page = alloc_page(GFP_KERNEL);
2744 if (!mdev->md_io_page)
2745 goto out_no_io_page;
2746
2747 if (drbd_bm_init(mdev))
2748 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002749 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002750 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002751
Lars Ellenberg8432b312011-03-08 16:11:16 +01002752 if (!idr_pre_get(&minors, GFP_KERNEL))
2753 goto out_no_minor_idr;
2754 if (idr_get_new_above(&minors, mdev, minor, &minor_got))
2755 goto out_no_minor_idr;
2756 if (minor_got != minor) {
2757 err = ERR_MINOR_EXISTS;
2758 drbd_msg_put_info("requested minor exists already");
2759 goto out_idr_remove_minor;
Lars Ellenberg569083c2011-03-07 09:49:02 +01002760 }
2761
Lars Ellenberg8432b312011-03-08 16:11:16 +01002762 if (!idr_pre_get(&tconn->volumes, GFP_KERNEL))
Lars Ellenberg569083c2011-03-07 09:49:02 +01002763 goto out_idr_remove_minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002764 if (idr_get_new_above(&tconn->volumes, mdev, vnr, &vnr_got))
2765 goto out_idr_remove_minor;
2766 if (vnr_got != vnr) {
2767 err = ERR_INVALID_REQUEST;
2768 drbd_msg_put_info("requested volume exists already");
2769 goto out_idr_remove_vol;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002770 }
Philipp Reisner774b3052011-02-22 02:07:03 -05002771 add_disk(disk);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002772 kref_init(&mdev->kref); /* one ref for both idrs and the the add_disk */
Philipp Reisner774b3052011-02-22 02:07:03 -05002773
Philipp Reisner2325eb62011-03-15 16:56:18 +01002774 /* inherit the connection state */
2775 mdev->state.conn = tconn->cstate;
2776 if (mdev->state.conn == C_WF_REPORT_PARAMS)
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002777 drbd_connected(mdev);
Philipp Reisner2325eb62011-03-15 16:56:18 +01002778
Philipp Reisner774b3052011-02-22 02:07:03 -05002779 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002780
Lars Ellenberg569083c2011-03-07 09:49:02 +01002781out_idr_remove_vol:
2782 idr_remove(&tconn->volumes, vnr_got);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002783out_idr_remove_minor:
2784 idr_remove(&minors, minor_got);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002785 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002786out_no_minor_idr:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002787 drbd_bm_cleanup(mdev);
2788out_no_bitmap:
2789 __free_page(mdev->md_io_page);
2790out_no_io_page:
2791 put_disk(disk);
2792out_no_disk:
2793 blk_cleanup_queue(q);
2794out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002795 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002796 kref_put(&tconn->kref, &conn_destroy);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002797 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002798}
2799
Philipp Reisnerb411b362009-09-25 16:07:19 -07002800int __init drbd_init(void)
2801{
2802 int err;
2803
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002804 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002805 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002806 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002807#ifdef MODULE
2808 return -EINVAL;
2809#else
Andreas Gruenbacher46530e82011-05-31 13:08:53 +02002810 minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002811#endif
2812 }
2813
Philipp Reisnerb411b362009-09-25 16:07:19 -07002814 err = register_blkdev(DRBD_MAJOR, "drbd");
2815 if (err) {
2816 printk(KERN_ERR
2817 "drbd: unable to register block device major %d\n",
2818 DRBD_MAJOR);
2819 return err;
2820 }
2821
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002822 err = drbd_genl_register();
2823 if (err) {
2824 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2825 goto fail;
2826 }
2827
2828
Philipp Reisnerb411b362009-09-25 16:07:19 -07002829 register_reboot_notifier(&drbd_notifier);
2830
2831 /*
2832 * allocate all necessary structs
2833 */
2834 err = -ENOMEM;
2835
2836 init_waitqueue_head(&drbd_pp_wait);
2837
2838 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002839 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002840
2841 err = drbd_create_mempools();
2842 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002843 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002844
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002845 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002846 if (!drbd_proc) {
2847 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002848 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002849 }
2850
2851 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002852 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002853
2854 printk(KERN_INFO "drbd: initialized. "
2855 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2856 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2857 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2858 printk(KERN_INFO "drbd: registered as block device major %d\n",
2859 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002860
2861 return 0; /* Success! */
2862
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002863fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002864 drbd_cleanup();
2865 if (err == -ENOMEM)
2866 /* currently always the case */
2867 printk(KERN_ERR "drbd: ran out of memory\n");
2868 else
2869 printk(KERN_ERR "drbd: initialization failure\n");
2870 return err;
2871}
2872
2873void drbd_free_bc(struct drbd_backing_dev *ldev)
2874{
2875 if (ldev == NULL)
2876 return;
2877
Tejun Heoe525fd82010-11-13 11:55:17 +01002878 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2879 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002880
2881 kfree(ldev);
2882}
2883
Philipp Reisner360cc742011-02-08 14:29:53 +01002884void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002885{
Philipp Reisner360cc742011-02-08 14:29:53 +01002886 if (tconn->data.socket) {
2887 mutex_lock(&tconn->data.mutex);
2888 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2889 sock_release(tconn->data.socket);
2890 tconn->data.socket = NULL;
2891 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002892 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002893 if (tconn->meta.socket) {
2894 mutex_lock(&tconn->meta.mutex);
2895 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2896 sock_release(tconn->meta.socket);
2897 tconn->meta.socket = NULL;
2898 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002899 }
2900}
2901
Philipp Reisnerb411b362009-09-25 16:07:19 -07002902/* meta data management */
2903
2904struct meta_data_on_disk {
2905 u64 la_size; /* last agreed size. */
2906 u64 uuid[UI_SIZE]; /* UUIDs. */
2907 u64 device_uuid;
2908 u64 reserved_u64_1;
2909 u32 flags; /* MDF */
2910 u32 magic;
2911 u32 md_size_sect;
2912 u32 al_offset; /* offset to this block */
2913 u32 al_nr_extents; /* important for restoring the AL */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002914 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002915 u32 bm_offset; /* offset to the bitmap, from here */
2916 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002917 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2918 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002919
2920} __packed;
2921
2922/**
2923 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2924 * @mdev: DRBD device.
2925 */
2926void drbd_md_sync(struct drbd_conf *mdev)
2927{
2928 struct meta_data_on_disk *buffer;
2929 sector_t sector;
2930 int i;
2931
Lars Ellenbergee15b032010-09-03 10:00:09 +02002932 del_timer(&mdev->md_sync_timer);
2933 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002934 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
2935 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002936
2937 /* We use here D_FAILED and not D_ATTACHING because we try to write
2938 * metadata even if we detach due to a disk failure! */
2939 if (!get_ldev_if_state(mdev, D_FAILED))
2940 return;
2941
Philipp Reisnercdfda632011-07-05 15:38:59 +02002942 buffer = drbd_md_get_buffer(mdev);
2943 if (!buffer)
2944 goto out;
2945
Philipp Reisnerb411b362009-09-25 16:07:19 -07002946 memset(buffer, 0, 512);
2947
2948 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
2949 for (i = UI_CURRENT; i < UI_SIZE; i++)
2950 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
2951 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002952 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002953
2954 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
2955 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
2956 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
2957 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
2958 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
2959
2960 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002961 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002962
2963 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
2964 sector = mdev->ldev->md.md_offset;
2965
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01002966 if (drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002967 /* this was a try anyways ... */
2968 dev_err(DEV, "meta data update failed!\n");
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002969 drbd_chk_io_error(mdev, 1, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002970 }
2971
2972 /* Update mdev->ldev->md.la_size_sect,
2973 * since we updated it on metadata. */
2974 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
2975
Philipp Reisnercdfda632011-07-05 15:38:59 +02002976 drbd_md_put_buffer(mdev);
2977out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002978 put_ldev(mdev);
2979}
2980
2981/**
2982 * drbd_md_read() - Reads in the meta data super block
2983 * @mdev: DRBD device.
2984 * @bdev: Device from which the meta data should be read in.
2985 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01002986 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002987 * something goes wrong.
Philipp Reisnerb411b362009-09-25 16:07:19 -07002988 */
2989int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
2990{
2991 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002992 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002993 int i, rv = NO_ERROR;
2994
2995 if (!get_ldev_if_state(mdev, D_ATTACHING))
2996 return ERR_IO_MD_DISK;
2997
Philipp Reisnercdfda632011-07-05 15:38:59 +02002998 buffer = drbd_md_get_buffer(mdev);
2999 if (!buffer)
3000 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003001
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01003002 if (drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003003 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003004 called BEFORE disk is attached */
3005 dev_err(DEV, "Error while reading metadata.\n");
3006 rv = ERR_IO_MD_DISK;
3007 goto err;
3008 }
3009
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003010 magic = be32_to_cpu(buffer->magic);
3011 flags = be32_to_cpu(buffer->flags);
3012 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3013 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3014 /* btw: that's Activity Log clean, not "all" clean. */
3015 dev_err(DEV, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
3016 rv = ERR_MD_UNCLEAN;
3017 goto err;
3018 }
3019 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003020 if (magic == DRBD_MD_MAGIC_07)
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003021 dev_err(DEV, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
3022 else
3023 dev_err(DEV, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003024 rv = ERR_MD_INVALID;
3025 goto err;
3026 }
3027 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
3028 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
3029 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
3030 rv = ERR_MD_INVALID;
3031 goto err;
3032 }
3033 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
3034 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
3035 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
3036 rv = ERR_MD_INVALID;
3037 goto err;
3038 }
3039 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
3040 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
3041 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
3042 rv = ERR_MD_INVALID;
3043 goto err;
3044 }
3045
3046 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
3047 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
3048 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
3049 rv = ERR_MD_INVALID;
3050 goto err;
3051 }
3052
3053 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
3054 for (i = UI_CURRENT; i < UI_SIZE; i++)
3055 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3056 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003057 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3058
Philipp Reisner87eeee42011-01-19 14:16:30 +01003059 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003060 if (mdev->state.conn < C_CONNECTED) {
3061 int peer;
3062 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
3063 peer = max_t(int, peer, DRBD_MAX_BIO_SIZE_SAFE);
3064 mdev->peer_max_bio_size = peer;
3065 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003066 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003067
Philipp Reisnerb411b362009-09-25 16:07:19 -07003068 err:
Philipp Reisnercdfda632011-07-05 15:38:59 +02003069 drbd_md_put_buffer(mdev);
3070 out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07003071 put_ldev(mdev);
3072
3073 return rv;
3074}
3075
3076/**
3077 * drbd_md_mark_dirty() - Mark meta data super block as dirty
3078 * @mdev: DRBD device.
3079 *
3080 * Call this function if you change anything that should be written to
3081 * the meta-data super block. This function sets MD_DIRTY, and starts a
3082 * timer that ensures that within five seconds you have to call drbd_md_sync().
3083 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003084#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02003085void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
3086{
3087 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
3088 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
3089 mdev->last_md_mark_dirty.line = line;
3090 mdev->last_md_mark_dirty.func = func;
3091 }
3092}
3093#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07003094void drbd_md_mark_dirty(struct drbd_conf *mdev)
3095{
Lars Ellenbergee15b032010-09-03 10:00:09 +02003096 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003097 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003098}
Lars Ellenbergee15b032010-09-03 10:00:09 +02003099#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003100
3101static void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
3102{
3103 int i;
3104
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003105 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003106 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003107}
3108
3109void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3110{
3111 if (idx == UI_CURRENT) {
3112 if (mdev->state.role == R_PRIMARY)
3113 val |= 1;
3114 else
3115 val &= ~((u64)1);
3116
3117 drbd_set_ed_uuid(mdev, val);
3118 }
3119
3120 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003121 drbd_md_mark_dirty(mdev);
3122}
3123
3124
3125void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3126{
3127 if (mdev->ldev->md.uuid[idx]) {
3128 drbd_uuid_move_history(mdev);
3129 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003130 }
3131 _drbd_uuid_set(mdev, idx, val);
3132}
3133
3134/**
3135 * drbd_uuid_new_current() - Creates a new current UUID
3136 * @mdev: DRBD device.
3137 *
3138 * Creates a new current UUID, and rotates the old current UUID into
3139 * the bitmap slot. Causes an incremental resync upon next connect.
3140 */
3141void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
3142{
3143 u64 val;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003144 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003145
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003146 if (bm_uuid)
3147 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
3148
Philipp Reisnerb411b362009-09-25 16:07:19 -07003149 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003150
3151 get_random_bytes(&val, sizeof(u64));
3152 _drbd_uuid_set(mdev, UI_CURRENT, val);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003153 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003154 /* get it to stable storage _now_ */
3155 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003156}
3157
3158void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
3159{
3160 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
3161 return;
3162
3163 if (val == 0) {
3164 drbd_uuid_move_history(mdev);
3165 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
3166 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003167 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003168 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
3169 if (bm_uuid)
3170 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003171
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003172 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003173 }
3174 drbd_md_mark_dirty(mdev);
3175}
3176
3177/**
3178 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3179 * @mdev: DRBD device.
3180 *
3181 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3182 */
3183int drbd_bmio_set_n_write(struct drbd_conf *mdev)
3184{
3185 int rv = -EIO;
3186
3187 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3188 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
3189 drbd_md_sync(mdev);
3190 drbd_bm_set_all(mdev);
3191
3192 rv = drbd_bm_write(mdev);
3193
3194 if (!rv) {
3195 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
3196 drbd_md_sync(mdev);
3197 }
3198
3199 put_ldev(mdev);
3200 }
3201
3202 return rv;
3203}
3204
3205/**
3206 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3207 * @mdev: DRBD device.
3208 *
3209 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3210 */
3211int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
3212{
3213 int rv = -EIO;
3214
Philipp Reisner07782862010-08-31 12:00:50 +02003215 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003216 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3217 drbd_bm_clear_all(mdev);
3218 rv = drbd_bm_write(mdev);
3219 put_ldev(mdev);
3220 }
3221
3222 return rv;
3223}
3224
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003225static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003226{
3227 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01003228 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003229 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003230
3231 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
3232
Lars Ellenberg02851e92010-12-16 14:47:39 +01003233 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003234 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003235 rv = work->io_fn(mdev);
3236 drbd_bm_unlock(mdev);
3237 put_ldev(mdev);
3238 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003239
Lars Ellenberg4738fa12011-02-21 13:20:55 +01003240 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003241 wake_up(&mdev->misc_wait);
3242
3243 if (work->done)
3244 work->done(mdev, rv);
3245
3246 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
3247 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003248 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003249
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003250 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003251}
3252
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003253void drbd_ldev_destroy(struct drbd_conf *mdev)
3254{
3255 lc_destroy(mdev->resync);
3256 mdev->resync = NULL;
3257 lc_destroy(mdev->act_log);
3258 mdev->act_log = NULL;
3259 __no_warn(local,
3260 drbd_free_bc(mdev->ldev);
3261 mdev->ldev = NULL;);
3262
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003263 clear_bit(GO_DISKLESS, &mdev->flags);
3264}
3265
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003266static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003267{
Philipp Reisner00d56942011-02-09 18:09:48 +01003268 struct drbd_conf *mdev = w->mdev;
3269
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003270 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02003271 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
3272 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003273 * the protected members anymore, though, so once put_ldev reaches zero
3274 * again, it will be safe to free them. */
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003275 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003276 return 0;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003277}
3278
3279void drbd_go_diskless(struct drbd_conf *mdev)
3280{
3281 D_ASSERT(mdev->state.disk == D_FAILED);
3282 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01003283 drbd_queue_work(&mdev->tconn->data.work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003284}
3285
Philipp Reisnerb411b362009-09-25 16:07:19 -07003286/**
3287 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
3288 * @mdev: DRBD device.
3289 * @io_fn: IO callback to be called when bitmap IO is possible
3290 * @done: callback to be called after the bitmap IO was performed
3291 * @why: Descriptive text of the reason for doing the IO
3292 *
3293 * While IO on the bitmap happens we freeze application IO thus we ensure
3294 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3295 * called from worker context. It MUST NOT be used while a previous such
3296 * work is still pending!
3297 */
3298void drbd_queue_bitmap_io(struct drbd_conf *mdev,
3299 int (*io_fn)(struct drbd_conf *),
3300 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003301 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003302{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003303 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003304
3305 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
3306 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
3307 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
3308 if (mdev->bm_io_work.why)
3309 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
3310 why, mdev->bm_io_work.why);
3311
3312 mdev->bm_io_work.io_fn = io_fn;
3313 mdev->bm_io_work.done = done;
3314 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003315 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003316
Philipp Reisner87eeee42011-01-19 14:16:30 +01003317 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003318 set_bit(BITMAP_IO, &mdev->flags);
3319 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01003320 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01003321 drbd_queue_work(&mdev->tconn->data.work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003322 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003323 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003324}
3325
3326/**
3327 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
3328 * @mdev: DRBD device.
3329 * @io_fn: IO callback to be called when bitmap IO is possible
3330 * @why: Descriptive text of the reason for doing the IO
3331 *
3332 * freezes application IO while that the actual IO operations runs. This
3333 * functions MAY NOT be called from worker context.
3334 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003335int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
3336 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003337{
3338 int rv;
3339
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003340 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003341
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003342 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3343 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003344
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003345 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003346 rv = io_fn(mdev);
3347 drbd_bm_unlock(mdev);
3348
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003349 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3350 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003351
3352 return rv;
3353}
3354
3355void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3356{
3357 if ((mdev->ldev->md.flags & flag) != flag) {
3358 drbd_md_mark_dirty(mdev);
3359 mdev->ldev->md.flags |= flag;
3360 }
3361}
3362
3363void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3364{
3365 if ((mdev->ldev->md.flags & flag) != 0) {
3366 drbd_md_mark_dirty(mdev);
3367 mdev->ldev->md.flags &= ~flag;
3368 }
3369}
3370int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3371{
3372 return (bdev->md.flags & flag) != 0;
3373}
3374
3375static void md_sync_timer_fn(unsigned long data)
3376{
3377 struct drbd_conf *mdev = (struct drbd_conf *) data;
3378
Philipp Reisnere42325a2011-01-19 13:55:45 +01003379 drbd_queue_work_front(&mdev->tconn->data.work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003380}
3381
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003382static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003383{
Philipp Reisner00d56942011-02-09 18:09:48 +01003384 struct drbd_conf *mdev = w->mdev;
3385
Philipp Reisnerb411b362009-09-25 16:07:19 -07003386 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003387#ifdef DEBUG
3388 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3389 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3390#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003391 drbd_md_sync(mdev);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003392 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003393}
3394
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003395const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003396{
3397 /* THINK may need to become several global tables
3398 * when we want to support more than
3399 * one PRO_VERSION */
3400 static const char *cmdnames[] = {
3401 [P_DATA] = "Data",
3402 [P_DATA_REPLY] = "DataReply",
3403 [P_RS_DATA_REPLY] = "RSDataReply",
3404 [P_BARRIER] = "Barrier",
3405 [P_BITMAP] = "ReportBitMap",
3406 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3407 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3408 [P_UNPLUG_REMOTE] = "UnplugRemote",
3409 [P_DATA_REQUEST] = "DataRequest",
3410 [P_RS_DATA_REQUEST] = "RSDataRequest",
3411 [P_SYNC_PARAM] = "SyncParam",
3412 [P_SYNC_PARAM89] = "SyncParam89",
3413 [P_PROTOCOL] = "ReportProtocol",
3414 [P_UUIDS] = "ReportUUIDs",
3415 [P_SIZES] = "ReportSizes",
3416 [P_STATE] = "ReportState",
3417 [P_SYNC_UUID] = "ReportSyncUUID",
3418 [P_AUTH_CHALLENGE] = "AuthChallenge",
3419 [P_AUTH_RESPONSE] = "AuthResponse",
3420 [P_PING] = "Ping",
3421 [P_PING_ACK] = "PingAck",
3422 [P_RECV_ACK] = "RecvAck",
3423 [P_WRITE_ACK] = "WriteAck",
3424 [P_RS_WRITE_ACK] = "RSWriteAck",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003425 [P_DISCARD_WRITE] = "DiscardWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003426 [P_NEG_ACK] = "NegAck",
3427 [P_NEG_DREPLY] = "NegDReply",
3428 [P_NEG_RS_DREPLY] = "NegRSDReply",
3429 [P_BARRIER_ACK] = "BarrierAck",
3430 [P_STATE_CHG_REQ] = "StateChgRequest",
3431 [P_STATE_CHG_REPLY] = "StateChgReply",
3432 [P_OV_REQUEST] = "OVRequest",
3433 [P_OV_REPLY] = "OVReply",
3434 [P_OV_RESULT] = "OVResult",
3435 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3436 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3437 [P_COMPRESSED_BITMAP] = "CBitmap",
3438 [P_DELAY_PROBE] = "DelayProbe",
3439 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003440 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003441 [P_RS_CANCEL] = "RSCancel",
3442 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3443 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003444 [P_RETRY_WRITE] = "retry_write",
3445 [P_PROTOCOL_UPDATE] = "protocol_update",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003446
3447 /* enum drbd_packet, but not commands - obsoleted flags:
3448 * P_MAY_IGNORE
3449 * P_MAX_OPT_CMD
3450 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003451 };
3452
Lars Ellenbergae25b332011-04-24 00:01:16 +02003453 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003454 if (cmd == P_INITIAL_META)
3455 return "InitialMeta";
3456 if (cmd == P_INITIAL_DATA)
3457 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003458 if (cmd == P_CONNECTION_FEATURES)
3459 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003460 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003461 return "Unknown";
3462 return cmdnames[cmd];
3463}
3464
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003465/**
3466 * drbd_wait_misc - wait for a request to make progress
3467 * @mdev: device associated with the request
3468 * @i: the struct drbd_interval embedded in struct drbd_request or
3469 * struct drbd_peer_request
3470 */
3471int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3472{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003473 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003474 DEFINE_WAIT(wait);
3475 long timeout;
3476
Philipp Reisner44ed1672011-04-19 17:10:19 +02003477 rcu_read_lock();
3478 nc = rcu_dereference(mdev->tconn->net_conf);
3479 if (!nc) {
3480 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003481 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003482 }
3483 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3484 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003485
3486 /* Indicate to wake up mdev->misc_wait on progress. */
3487 i->waiting = true;
3488 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3489 spin_unlock_irq(&mdev->tconn->req_lock);
3490 timeout = schedule_timeout(timeout);
3491 finish_wait(&mdev->misc_wait, &wait);
3492 spin_lock_irq(&mdev->tconn->req_lock);
3493 if (!timeout || mdev->state.conn < C_CONNECTED)
3494 return -ETIMEDOUT;
3495 if (signal_pending(current))
3496 return -ERESTARTSYS;
3497 return 0;
3498}
3499
Philipp Reisnerb411b362009-09-25 16:07:19 -07003500#ifdef CONFIG_DRBD_FAULT_INJECTION
3501/* Fault insertion support including random number generator shamelessly
3502 * stolen from kernel/rcutorture.c */
3503struct fault_random_state {
3504 unsigned long state;
3505 unsigned long count;
3506};
3507
3508#define FAULT_RANDOM_MULT 39916801 /* prime */
3509#define FAULT_RANDOM_ADD 479001701 /* prime */
3510#define FAULT_RANDOM_REFRESH 10000
3511
3512/*
3513 * Crude but fast random-number generator. Uses a linear congruential
3514 * generator, with occasional help from get_random_bytes().
3515 */
3516static unsigned long
3517_drbd_fault_random(struct fault_random_state *rsp)
3518{
3519 long refresh;
3520
Roel Kluin49829ea2009-12-15 22:55:44 +01003521 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003522 get_random_bytes(&refresh, sizeof(refresh));
3523 rsp->state += refresh;
3524 rsp->count = FAULT_RANDOM_REFRESH;
3525 }
3526 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3527 return swahw32(rsp->state);
3528}
3529
3530static char *
3531_drbd_fault_str(unsigned int type) {
3532 static char *_faults[] = {
3533 [DRBD_FAULT_MD_WR] = "Meta-data write",
3534 [DRBD_FAULT_MD_RD] = "Meta-data read",
3535 [DRBD_FAULT_RS_WR] = "Resync write",
3536 [DRBD_FAULT_RS_RD] = "Resync read",
3537 [DRBD_FAULT_DT_WR] = "Data write",
3538 [DRBD_FAULT_DT_RD] = "Data read",
3539 [DRBD_FAULT_DT_RA] = "Data read ahead",
3540 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003541 [DRBD_FAULT_AL_EE] = "EE allocation",
3542 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003543 };
3544
3545 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3546}
3547
3548unsigned int
3549_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3550{
3551 static struct fault_random_state rrs = {0, 0};
3552
3553 unsigned int ret = (
3554 (fault_devs == 0 ||
3555 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3556 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3557
3558 if (ret) {
3559 fault_count++;
3560
Lars Ellenberg73835062010-05-27 11:51:56 +02003561 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003562 dev_warn(DEV, "***Simulating %s failure\n",
3563 _drbd_fault_str(type));
3564 }
3565
3566 return ret;
3567}
3568#endif
3569
3570const char *drbd_buildtag(void)
3571{
3572 /* DRBD built from external sources has here a reference to the
3573 git hash of the source code. */
3574
3575 static char buildtag[38] = "\0uilt-in";
3576
3577 if (buildtag[0] == 0) {
3578#ifdef CONFIG_MODULES
3579 if (THIS_MODULE != NULL)
3580 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3581 else
3582#endif
3583 buildtag[0] = 'b';
3584 }
3585
3586 return buildtag;
3587}
3588
3589module_init(drbd_init)
3590module_exit(drbd_cleanup)
3591
Philipp Reisnerb411b362009-09-25 16:07:19 -07003592EXPORT_SYMBOL(drbd_conn_str);
3593EXPORT_SYMBOL(drbd_role_str);
3594EXPORT_SYMBOL(drbd_disk_str);
3595EXPORT_SYMBOL(drbd_set_st_err_str);