blob: f8438d426d067ddd6966f9d0af3d9335885ff621 [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
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001466void drbd_send_b_ack(struct drbd_tconn *tconn, 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
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001471 if (tconn->cstate < C_WF_REPORT_PARAMS)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001472 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001473
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001474 sock = &tconn->meta;
1475 p = conn_prepare_command(tconn, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001476 if (!p)
1477 return;
1478 p->barrier = barrier_nr;
1479 p->set_size = cpu_to_be32(set_size);
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001480 conn_send_command(tconn, 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 Reisner8410da8f02011-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
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002386/* One global retry thread, if we need to push back some bio and have it
2387 * reinserted through our make request function.
2388 */
2389static struct retry_worker {
2390 struct workqueue_struct *wq;
2391 struct work_struct worker;
2392
2393 spinlock_t lock;
2394 struct list_head writes;
2395} retry;
2396
2397static void do_retry(struct work_struct *ws)
2398{
2399 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2400 LIST_HEAD(writes);
2401 struct drbd_request *req, *tmp;
2402
2403 spin_lock_irq(&retry->lock);
2404 list_splice_init(&retry->writes, &writes);
2405 spin_unlock_irq(&retry->lock);
2406
2407 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
2408 struct drbd_conf *mdev = req->w.mdev;
2409 struct bio *bio = req->master_bio;
2410 unsigned long start_time = req->start_time;
2411
2412 /* We have exclusive access to this request object.
2413 * If it had not been RQ_POSTPONED, the code path which queued
2414 * it here would have completed and freed it already.
2415 */
2416 mempool_free(req, drbd_request_mempool);
2417
2418 /* A single suspended or otherwise blocking device may stall
2419 * all others as well. Fortunately, this code path is to
2420 * recover from a situation that "should not happen":
2421 * concurrent writes in multi-primary setup.
2422 * In a "normal" lifecycle, this workqueue is supposed to be
2423 * destroyed without ever doing anything.
2424 * If it turns out to be an issue anyways, we can do per
2425 * resource (replication group) or per device (minor) retry
2426 * workqueues instead.
2427 */
2428
2429 /* We are not just doing generic_make_request(),
2430 * as we want to keep the start_time information. */
2431 do {
2432 inc_ap_bio(mdev);
2433 } while(__drbd_make_request(mdev, bio, start_time));
2434 }
2435}
2436
2437void drbd_restart_write(struct drbd_request *req)
2438{
2439 unsigned long flags;
2440 spin_lock_irqsave(&retry.lock, flags);
2441 list_move_tail(&req->tl_requests, &retry.writes);
2442 spin_unlock_irqrestore(&retry.lock, flags);
2443
2444 /* Drop the extra reference that would otherwise
2445 * have been dropped by complete_master_bio.
2446 * do_retry() needs to grab a new one. */
2447 dec_ap_bio(req->w.mdev);
2448
2449 queue_work(retry.wq, &retry.worker);
2450}
2451
2452
Philipp Reisnerb411b362009-09-25 16:07:19 -07002453static void drbd_cleanup(void)
2454{
2455 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002456 struct drbd_conf *mdev;
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002457 struct drbd_tconn *tconn, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002458
2459 unregister_reboot_notifier(&drbd_notifier);
2460
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002461 /* first remove proc,
2462 * drbdsetup uses it's presence to detect
2463 * whether DRBD is loaded.
2464 * If we would get stuck in proc removal,
2465 * but have netlink already deregistered,
2466 * some drbdsetup commands may wait forever
2467 * for an answer.
2468 */
2469 if (drbd_proc)
2470 remove_proc_entry("drbd", NULL);
2471
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002472 if (retry.wq)
2473 destroy_workqueue(retry.wq);
2474
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002475 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002476
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002477 idr_for_each_entry(&minors, mdev, i) {
2478 idr_remove(&minors, mdev_to_minor(mdev));
2479 idr_remove(&mdev->tconn->volumes, mdev->vnr);
2480 del_gendisk(mdev->vdisk);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002481 /* synchronize_rcu(); No other threads running at this point */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002482 kref_put(&mdev->kref, &drbd_minor_destroy);
2483 }
2484
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002485 /* not _rcu since, no other updater anymore. Genl already unregistered */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002486 list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002487 list_del(&tconn->all_tconn); /* not _rcu no proc, not other threads */
2488 /* synchronize_rcu(); */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002489 kref_put(&tconn->kref, &conn_destroy);
2490 }
Philipp Reisnerff370e52011-04-11 21:10:11 -07002491
Philipp Reisner81a5d602011-02-22 19:53:16 -05002492 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002493 unregister_blkdev(DRBD_MAJOR, "drbd");
2494
Philipp Reisner81a5d602011-02-22 19:53:16 -05002495 idr_destroy(&minors);
2496
Philipp Reisnerb411b362009-09-25 16:07:19 -07002497 printk(KERN_INFO "drbd: module cleanup done.\n");
2498}
2499
2500/**
2501 * drbd_congested() - Callback for pdflush
2502 * @congested_data: User data
2503 * @bdi_bits: Bits pdflush is currently interested in
2504 *
2505 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2506 */
2507static int drbd_congested(void *congested_data, int bdi_bits)
2508{
2509 struct drbd_conf *mdev = congested_data;
2510 struct request_queue *q;
2511 char reason = '-';
2512 int r = 0;
2513
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002514 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002515 /* DRBD has frozen IO */
2516 r = bdi_bits;
2517 reason = 'd';
2518 goto out;
2519 }
2520
2521 if (get_ldev(mdev)) {
2522 q = bdev_get_queue(mdev->ldev->backing_bdev);
2523 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2524 put_ldev(mdev);
2525 if (r)
2526 reason = 'b';
2527 }
2528
Philipp Reisner01a311a2011-02-07 14:30:33 +01002529 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002530 r |= (1 << BDI_async_congested);
2531 reason = reason == 'b' ? 'a' : 'n';
2532 }
2533
2534out:
2535 mdev->congestion_reason = reason;
2536 return r;
2537}
2538
Philipp Reisner6699b652011-02-09 11:10:24 +01002539static void drbd_init_workqueue(struct drbd_work_queue* wq)
2540{
2541 sema_init(&wq->s, 0);
2542 spin_lock_init(&wq->q_lock);
2543 INIT_LIST_HEAD(&wq->q);
2544}
2545
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002546struct drbd_tconn *conn_get_by_name(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002547{
2548 struct drbd_tconn *tconn;
2549
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002550 if (!name || !name[0])
2551 return NULL;
2552
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002553 rcu_read_lock();
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002554 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002555 if (!strcmp(tconn->name, name)) {
2556 kref_get(&tconn->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002557 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002558 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002559 }
2560 tconn = NULL;
2561found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002562 rcu_read_unlock();
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002563 return tconn;
2564}
2565
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002566struct drbd_tconn *conn_get_by_addrs(void *my_addr, int my_addr_len,
2567 void *peer_addr, int peer_addr_len)
2568{
2569 struct drbd_tconn *tconn;
2570
2571 rcu_read_lock();
2572 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
2573 if (tconn->my_addr_len == my_addr_len &&
2574 tconn->peer_addr_len == peer_addr_len &&
2575 !memcmp(&tconn->my_addr, my_addr, my_addr_len) &&
2576 !memcmp(&tconn->peer_addr, peer_addr, peer_addr_len)) {
2577 kref_get(&tconn->kref);
2578 goto found;
2579 }
2580 }
2581 tconn = NULL;
2582found:
2583 rcu_read_unlock();
2584 return tconn;
2585}
2586
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002587static int drbd_alloc_socket(struct drbd_socket *socket)
2588{
2589 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2590 if (!socket->rbuf)
2591 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002592 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2593 if (!socket->sbuf)
2594 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002595 return 0;
2596}
2597
2598static void drbd_free_socket(struct drbd_socket *socket)
2599{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002600 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002601 free_page((unsigned long) socket->rbuf);
2602}
2603
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002604void conn_free_crypto(struct drbd_tconn *tconn)
2605{
Philipp Reisner1d041222011-04-22 15:20:23 +02002606 drbd_free_sock(tconn);
2607
2608 crypto_free_hash(tconn->csums_tfm);
2609 crypto_free_hash(tconn->verify_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002610 crypto_free_hash(tconn->cram_hmac_tfm);
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002611 crypto_free_hash(tconn->integrity_tfm);
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002612 crypto_free_hash(tconn->peer_integrity_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002613 kfree(tconn->int_dig_in);
2614 kfree(tconn->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002615
2616 tconn->csums_tfm = NULL;
2617 tconn->verify_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002618 tconn->cram_hmac_tfm = NULL;
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002619 tconn->integrity_tfm = NULL;
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002620 tconn->peer_integrity_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002621 tconn->int_dig_in = NULL;
2622 tconn->int_dig_vv = NULL;
2623}
2624
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002625int set_resource_options(struct drbd_tconn *tconn, struct res_opts *res_opts)
2626{
2627 cpumask_var_t new_cpu_mask;
2628 int err;
2629
2630 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2631 return -ENOMEM;
2632 /*
2633 retcode = ERR_NOMEM;
2634 drbd_msg_put_info("unable to allocate cpumask");
2635 */
2636
2637 /* silently ignore cpu mask on UP kernel */
2638 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
2639 /* FIXME: Get rid of constant 32 here */
2640 err = __bitmap_parse(res_opts->cpu_mask, 32, 0,
2641 cpumask_bits(new_cpu_mask), nr_cpu_ids);
2642 if (err) {
2643 conn_warn(tconn, "__bitmap_parse() failed with %d\n", err);
2644 /* retcode = ERR_CPU_MASK_PARSE; */
2645 goto fail;
2646 }
2647 }
2648 tconn->res_opts = *res_opts;
2649 if (!cpumask_equal(tconn->cpu_mask, new_cpu_mask)) {
2650 cpumask_copy(tconn->cpu_mask, new_cpu_mask);
2651 drbd_calc_cpu_mask(tconn);
2652 tconn->receiver.reset_cpu_mask = 1;
2653 tconn->asender.reset_cpu_mask = 1;
2654 tconn->worker.reset_cpu_mask = 1;
2655 }
2656 err = 0;
2657
2658fail:
2659 free_cpumask_var(new_cpu_mask);
2660 return err;
2661
2662}
2663
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002664/* caller must be under genl_lock() */
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002665struct drbd_tconn *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002666{
2667 struct drbd_tconn *tconn;
2668
2669 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2670 if (!tconn)
2671 return NULL;
2672
2673 tconn->name = kstrdup(name, GFP_KERNEL);
2674 if (!tconn->name)
2675 goto fail;
2676
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002677 if (drbd_alloc_socket(&tconn->data))
2678 goto fail;
2679 if (drbd_alloc_socket(&tconn->meta))
2680 goto fail;
2681
Philipp Reisner774b3052011-02-22 02:07:03 -05002682 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2683 goto fail;
2684
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002685 if (set_resource_options(tconn, res_opts))
2686 goto fail;
2687
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002688 if (!tl_init(tconn))
2689 goto fail;
2690
Philipp Reisner12038a32011-11-09 19:18:00 +01002691 tconn->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2692 if (!tconn->current_epoch)
2693 goto fail;
2694 INIT_LIST_HEAD(&tconn->current_epoch->list);
2695 tconn->epochs = 1;
2696 spin_lock_init(&tconn->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002697 tconn->write_ordering = WO_bdev_flush;
2698
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002699 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da8f02011-02-11 20:11:10 +01002700 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002701 spin_lock_init(&tconn->req_lock);
Philipp Reisnera0095502011-05-03 13:14:15 +02002702 mutex_init(&tconn->conf_update);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002703 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002704 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002705
Philipp Reisner6699b652011-02-09 11:10:24 +01002706 drbd_init_workqueue(&tconn->data.work);
2707 mutex_init(&tconn->data.mutex);
2708
2709 drbd_init_workqueue(&tconn->meta.work);
2710 mutex_init(&tconn->meta.mutex);
2711
Philipp Reisner392c8802011-02-09 10:33:31 +01002712 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2713 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2714 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2715
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002716 kref_init(&tconn->kref);
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002717 list_add_tail_rcu(&tconn->all_tconn, &drbd_tconns);
Philipp Reisner21114382011-01-19 12:26:59 +01002718
2719 return tconn;
2720
2721fail:
Philipp Reisner12038a32011-11-09 19:18:00 +01002722 kfree(tconn->current_epoch);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002723 tl_cleanup(tconn);
Philipp Reisner774b3052011-02-22 02:07:03 -05002724 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002725 drbd_free_socket(&tconn->meta);
2726 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002727 kfree(tconn->name);
2728 kfree(tconn);
2729
2730 return NULL;
2731}
2732
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002733void conn_destroy(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002734{
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002735 struct drbd_tconn *tconn = container_of(kref, struct drbd_tconn, kref);
2736
Philipp Reisner12038a32011-11-09 19:18:00 +01002737 if (atomic_read(&tconn->current_epoch->epoch_size) != 0)
2738 conn_err(tconn, "epoch_size:%d\n", atomic_read(&tconn->current_epoch->epoch_size));
2739 kfree(tconn->current_epoch);
2740
Philipp Reisner062e8792011-02-08 11:09:18 +01002741 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002742
Philipp Reisner774b3052011-02-22 02:07:03 -05002743 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002744 drbd_free_socket(&tconn->meta);
2745 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002746 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002747 kfree(tconn->int_dig_in);
2748 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002749 kfree(tconn);
2750}
2751
Philipp Reisner774b3052011-02-22 02:07:03 -05002752enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002753{
2754 struct drbd_conf *mdev;
2755 struct gendisk *disk;
2756 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002757 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002758 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002759 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002760
2761 mdev = minor_to_mdev(minor);
2762 if (mdev)
2763 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002764
2765 /* GFP_KERNEL, we are outside of all write-out paths */
2766 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2767 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002768 return ERR_NOMEM;
2769
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002770 kref_get(&tconn->kref);
Philipp Reisner774b3052011-02-22 02:07:03 -05002771 mdev->tconn = tconn;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002772
Philipp Reisnerb411b362009-09-25 16:07:19 -07002773 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002774 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002775
2776 drbd_init_set_defaults(mdev);
2777
2778 q = blk_alloc_queue(GFP_KERNEL);
2779 if (!q)
2780 goto out_no_q;
2781 mdev->rq_queue = q;
2782 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002783
2784 disk = alloc_disk(1);
2785 if (!disk)
2786 goto out_no_disk;
2787 mdev->vdisk = disk;
2788
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002789 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002790
2791 disk->queue = q;
2792 disk->major = DRBD_MAJOR;
2793 disk->first_minor = minor;
2794 disk->fops = &drbd_ops;
2795 sprintf(disk->disk_name, "drbd%d", minor);
2796 disk->private_data = mdev;
2797
2798 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2799 /* we have no partitions. we contain only ourselves. */
2800 mdev->this_bdev->bd_contains = mdev->this_bdev;
2801
2802 q->backing_dev_info.congested_fn = drbd_congested;
2803 q->backing_dev_info.congested_data = mdev;
2804
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002805 blk_queue_make_request(q, drbd_make_request);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002806 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2807 This triggers a max_bio_size message upon first attach or connect */
2808 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002809 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2810 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002811 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002812
2813 mdev->md_io_page = alloc_page(GFP_KERNEL);
2814 if (!mdev->md_io_page)
2815 goto out_no_io_page;
2816
2817 if (drbd_bm_init(mdev))
2818 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002819 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002820 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002821
Lars Ellenberg8432b312011-03-08 16:11:16 +01002822 if (!idr_pre_get(&minors, GFP_KERNEL))
2823 goto out_no_minor_idr;
2824 if (idr_get_new_above(&minors, mdev, minor, &minor_got))
2825 goto out_no_minor_idr;
2826 if (minor_got != minor) {
2827 err = ERR_MINOR_EXISTS;
2828 drbd_msg_put_info("requested minor exists already");
2829 goto out_idr_remove_minor;
Lars Ellenberg569083c2011-03-07 09:49:02 +01002830 }
2831
Lars Ellenberg8432b312011-03-08 16:11:16 +01002832 if (!idr_pre_get(&tconn->volumes, GFP_KERNEL))
Lars Ellenberg569083c2011-03-07 09:49:02 +01002833 goto out_idr_remove_minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002834 if (idr_get_new_above(&tconn->volumes, mdev, vnr, &vnr_got))
2835 goto out_idr_remove_minor;
2836 if (vnr_got != vnr) {
2837 err = ERR_INVALID_REQUEST;
2838 drbd_msg_put_info("requested volume exists already");
2839 goto out_idr_remove_vol;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002840 }
Philipp Reisner774b3052011-02-22 02:07:03 -05002841 add_disk(disk);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002842 kref_init(&mdev->kref); /* one ref for both idrs and the the add_disk */
Philipp Reisner774b3052011-02-22 02:07:03 -05002843
Philipp Reisner2325eb62011-03-15 16:56:18 +01002844 /* inherit the connection state */
2845 mdev->state.conn = tconn->cstate;
2846 if (mdev->state.conn == C_WF_REPORT_PARAMS)
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002847 drbd_connected(mdev);
Philipp Reisner2325eb62011-03-15 16:56:18 +01002848
Philipp Reisner774b3052011-02-22 02:07:03 -05002849 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002850
Lars Ellenberg569083c2011-03-07 09:49:02 +01002851out_idr_remove_vol:
2852 idr_remove(&tconn->volumes, vnr_got);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002853out_idr_remove_minor:
2854 idr_remove(&minors, minor_got);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002855 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002856out_no_minor_idr:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002857 drbd_bm_cleanup(mdev);
2858out_no_bitmap:
2859 __free_page(mdev->md_io_page);
2860out_no_io_page:
2861 put_disk(disk);
2862out_no_disk:
2863 blk_cleanup_queue(q);
2864out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002865 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002866 kref_put(&tconn->kref, &conn_destroy);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002867 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002868}
2869
Philipp Reisnerb411b362009-09-25 16:07:19 -07002870int __init drbd_init(void)
2871{
2872 int err;
2873
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002874 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002875 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002876 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002877#ifdef MODULE
2878 return -EINVAL;
2879#else
Andreas Gruenbacher46530e82011-05-31 13:08:53 +02002880 minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002881#endif
2882 }
2883
Philipp Reisnerb411b362009-09-25 16:07:19 -07002884 err = register_blkdev(DRBD_MAJOR, "drbd");
2885 if (err) {
2886 printk(KERN_ERR
2887 "drbd: unable to register block device major %d\n",
2888 DRBD_MAJOR);
2889 return err;
2890 }
2891
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002892 err = drbd_genl_register();
2893 if (err) {
2894 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2895 goto fail;
2896 }
2897
2898
Philipp Reisnerb411b362009-09-25 16:07:19 -07002899 register_reboot_notifier(&drbd_notifier);
2900
2901 /*
2902 * allocate all necessary structs
2903 */
2904 err = -ENOMEM;
2905
2906 init_waitqueue_head(&drbd_pp_wait);
2907
2908 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002909 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002910
2911 err = drbd_create_mempools();
2912 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002913 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002914
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002915 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002916 if (!drbd_proc) {
2917 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002918 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002919 }
2920
2921 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002922 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002923
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002924 retry.wq = create_singlethread_workqueue("drbd-reissue");
2925 if (!retry.wq) {
2926 printk(KERN_ERR "drbd: unable to create retry workqueue\n");
2927 goto fail;
2928 }
2929 INIT_WORK(&retry.worker, do_retry);
2930 spin_lock_init(&retry.lock);
2931 INIT_LIST_HEAD(&retry.writes);
2932
Philipp Reisnerb411b362009-09-25 16:07:19 -07002933 printk(KERN_INFO "drbd: initialized. "
2934 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2935 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2936 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2937 printk(KERN_INFO "drbd: registered as block device major %d\n",
2938 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002939
2940 return 0; /* Success! */
2941
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002942fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002943 drbd_cleanup();
2944 if (err == -ENOMEM)
2945 /* currently always the case */
2946 printk(KERN_ERR "drbd: ran out of memory\n");
2947 else
2948 printk(KERN_ERR "drbd: initialization failure\n");
2949 return err;
2950}
2951
2952void drbd_free_bc(struct drbd_backing_dev *ldev)
2953{
2954 if (ldev == NULL)
2955 return;
2956
Tejun Heoe525fd82010-11-13 11:55:17 +01002957 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2958 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002959
2960 kfree(ldev);
2961}
2962
Philipp Reisner360cc742011-02-08 14:29:53 +01002963void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002964{
Philipp Reisner360cc742011-02-08 14:29:53 +01002965 if (tconn->data.socket) {
2966 mutex_lock(&tconn->data.mutex);
2967 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2968 sock_release(tconn->data.socket);
2969 tconn->data.socket = NULL;
2970 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002971 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002972 if (tconn->meta.socket) {
2973 mutex_lock(&tconn->meta.mutex);
2974 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2975 sock_release(tconn->meta.socket);
2976 tconn->meta.socket = NULL;
2977 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002978 }
2979}
2980
Philipp Reisnerb411b362009-09-25 16:07:19 -07002981/* meta data management */
2982
2983struct meta_data_on_disk {
2984 u64 la_size; /* last agreed size. */
2985 u64 uuid[UI_SIZE]; /* UUIDs. */
2986 u64 device_uuid;
2987 u64 reserved_u64_1;
2988 u32 flags; /* MDF */
2989 u32 magic;
2990 u32 md_size_sect;
2991 u32 al_offset; /* offset to this block */
2992 u32 al_nr_extents; /* important for restoring the AL */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002993 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002994 u32 bm_offset; /* offset to the bitmap, from here */
2995 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002996 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2997 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002998
2999} __packed;
3000
3001/**
3002 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
3003 * @mdev: DRBD device.
3004 */
3005void drbd_md_sync(struct drbd_conf *mdev)
3006{
3007 struct meta_data_on_disk *buffer;
3008 sector_t sector;
3009 int i;
3010
Lars Ellenbergee15b032010-09-03 10:00:09 +02003011 del_timer(&mdev->md_sync_timer);
3012 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003013 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
3014 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003015
3016 /* We use here D_FAILED and not D_ATTACHING because we try to write
3017 * metadata even if we detach due to a disk failure! */
3018 if (!get_ldev_if_state(mdev, D_FAILED))
3019 return;
3020
Philipp Reisnercdfda632011-07-05 15:38:59 +02003021 buffer = drbd_md_get_buffer(mdev);
3022 if (!buffer)
3023 goto out;
3024
Philipp Reisnerb411b362009-09-25 16:07:19 -07003025 memset(buffer, 0, 512);
3026
3027 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
3028 for (i = UI_CURRENT; i < UI_SIZE; i++)
3029 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
3030 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003031 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003032
3033 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
3034 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
3035 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
3036 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
3037 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
3038
3039 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003040 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003041
3042 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
3043 sector = mdev->ldev->md.md_offset;
3044
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01003045 if (drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003046 /* this was a try anyways ... */
3047 dev_err(DEV, "meta data update failed!\n");
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003048 drbd_chk_io_error(mdev, 1, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003049 }
3050
3051 /* Update mdev->ldev->md.la_size_sect,
3052 * since we updated it on metadata. */
3053 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
3054
Philipp Reisnercdfda632011-07-05 15:38:59 +02003055 drbd_md_put_buffer(mdev);
3056out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07003057 put_ldev(mdev);
3058}
3059
3060/**
3061 * drbd_md_read() - Reads in the meta data super block
3062 * @mdev: DRBD device.
3063 * @bdev: Device from which the meta data should be read in.
3064 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01003065 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003066 * something goes wrong.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003067 */
3068int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
3069{
3070 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003071 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003072 int i, rv = NO_ERROR;
3073
3074 if (!get_ldev_if_state(mdev, D_ATTACHING))
3075 return ERR_IO_MD_DISK;
3076
Philipp Reisnercdfda632011-07-05 15:38:59 +02003077 buffer = drbd_md_get_buffer(mdev);
3078 if (!buffer)
3079 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003080
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01003081 if (drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003082 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003083 called BEFORE disk is attached */
3084 dev_err(DEV, "Error while reading metadata.\n");
3085 rv = ERR_IO_MD_DISK;
3086 goto err;
3087 }
3088
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003089 magic = be32_to_cpu(buffer->magic);
3090 flags = be32_to_cpu(buffer->flags);
3091 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3092 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3093 /* btw: that's Activity Log clean, not "all" clean. */
3094 dev_err(DEV, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
3095 rv = ERR_MD_UNCLEAN;
3096 goto err;
3097 }
3098 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003099 if (magic == DRBD_MD_MAGIC_07)
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003100 dev_err(DEV, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
3101 else
3102 dev_err(DEV, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003103 rv = ERR_MD_INVALID;
3104 goto err;
3105 }
3106 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
3107 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
3108 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
3109 rv = ERR_MD_INVALID;
3110 goto err;
3111 }
3112 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
3113 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
3114 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
3115 rv = ERR_MD_INVALID;
3116 goto err;
3117 }
3118 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
3119 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
3120 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
3121 rv = ERR_MD_INVALID;
3122 goto err;
3123 }
3124
3125 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
3126 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
3127 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
3128 rv = ERR_MD_INVALID;
3129 goto err;
3130 }
3131
3132 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
3133 for (i = UI_CURRENT; i < UI_SIZE; i++)
3134 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3135 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003136 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3137
Philipp Reisner87eeee42011-01-19 14:16:30 +01003138 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003139 if (mdev->state.conn < C_CONNECTED) {
3140 int peer;
3141 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
3142 peer = max_t(int, peer, DRBD_MAX_BIO_SIZE_SAFE);
3143 mdev->peer_max_bio_size = peer;
3144 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003145 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003146
Philipp Reisnerb411b362009-09-25 16:07:19 -07003147 err:
Philipp Reisnercdfda632011-07-05 15:38:59 +02003148 drbd_md_put_buffer(mdev);
3149 out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07003150 put_ldev(mdev);
3151
3152 return rv;
3153}
3154
3155/**
3156 * drbd_md_mark_dirty() - Mark meta data super block as dirty
3157 * @mdev: DRBD device.
3158 *
3159 * Call this function if you change anything that should be written to
3160 * the meta-data super block. This function sets MD_DIRTY, and starts a
3161 * timer that ensures that within five seconds you have to call drbd_md_sync().
3162 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003163#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02003164void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
3165{
3166 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
3167 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
3168 mdev->last_md_mark_dirty.line = line;
3169 mdev->last_md_mark_dirty.func = func;
3170 }
3171}
3172#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07003173void drbd_md_mark_dirty(struct drbd_conf *mdev)
3174{
Lars Ellenbergee15b032010-09-03 10:00:09 +02003175 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003176 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003177}
Lars Ellenbergee15b032010-09-03 10:00:09 +02003178#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003179
3180static void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
3181{
3182 int i;
3183
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003184 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003185 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003186}
3187
3188void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3189{
3190 if (idx == UI_CURRENT) {
3191 if (mdev->state.role == R_PRIMARY)
3192 val |= 1;
3193 else
3194 val &= ~((u64)1);
3195
3196 drbd_set_ed_uuid(mdev, val);
3197 }
3198
3199 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003200 drbd_md_mark_dirty(mdev);
3201}
3202
3203
3204void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3205{
3206 if (mdev->ldev->md.uuid[idx]) {
3207 drbd_uuid_move_history(mdev);
3208 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003209 }
3210 _drbd_uuid_set(mdev, idx, val);
3211}
3212
3213/**
3214 * drbd_uuid_new_current() - Creates a new current UUID
3215 * @mdev: DRBD device.
3216 *
3217 * Creates a new current UUID, and rotates the old current UUID into
3218 * the bitmap slot. Causes an incremental resync upon next connect.
3219 */
3220void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
3221{
3222 u64 val;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003223 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003224
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003225 if (bm_uuid)
3226 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
3227
Philipp Reisnerb411b362009-09-25 16:07:19 -07003228 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003229
3230 get_random_bytes(&val, sizeof(u64));
3231 _drbd_uuid_set(mdev, UI_CURRENT, val);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003232 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003233 /* get it to stable storage _now_ */
3234 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003235}
3236
3237void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
3238{
3239 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
3240 return;
3241
3242 if (val == 0) {
3243 drbd_uuid_move_history(mdev);
3244 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
3245 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003246 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003247 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
3248 if (bm_uuid)
3249 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003250
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003251 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003252 }
3253 drbd_md_mark_dirty(mdev);
3254}
3255
3256/**
3257 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3258 * @mdev: DRBD device.
3259 *
3260 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3261 */
3262int drbd_bmio_set_n_write(struct drbd_conf *mdev)
3263{
3264 int rv = -EIO;
3265
3266 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3267 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
3268 drbd_md_sync(mdev);
3269 drbd_bm_set_all(mdev);
3270
3271 rv = drbd_bm_write(mdev);
3272
3273 if (!rv) {
3274 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
3275 drbd_md_sync(mdev);
3276 }
3277
3278 put_ldev(mdev);
3279 }
3280
3281 return rv;
3282}
3283
3284/**
3285 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3286 * @mdev: DRBD device.
3287 *
3288 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3289 */
3290int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
3291{
3292 int rv = -EIO;
3293
Philipp Reisner07782862010-08-31 12:00:50 +02003294 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003295 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3296 drbd_bm_clear_all(mdev);
3297 rv = drbd_bm_write(mdev);
3298 put_ldev(mdev);
3299 }
3300
3301 return rv;
3302}
3303
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003304static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003305{
3306 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01003307 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003308 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003309
3310 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
3311
Lars Ellenberg02851e92010-12-16 14:47:39 +01003312 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003313 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003314 rv = work->io_fn(mdev);
3315 drbd_bm_unlock(mdev);
3316 put_ldev(mdev);
3317 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003318
Lars Ellenberg4738fa12011-02-21 13:20:55 +01003319 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003320 wake_up(&mdev->misc_wait);
3321
3322 if (work->done)
3323 work->done(mdev, rv);
3324
3325 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
3326 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003327 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003328
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003329 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003330}
3331
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003332void drbd_ldev_destroy(struct drbd_conf *mdev)
3333{
3334 lc_destroy(mdev->resync);
3335 mdev->resync = NULL;
3336 lc_destroy(mdev->act_log);
3337 mdev->act_log = NULL;
3338 __no_warn(local,
3339 drbd_free_bc(mdev->ldev);
3340 mdev->ldev = NULL;);
3341
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003342 clear_bit(GO_DISKLESS, &mdev->flags);
3343}
3344
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003345static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003346{
Philipp Reisner00d56942011-02-09 18:09:48 +01003347 struct drbd_conf *mdev = w->mdev;
3348
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003349 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02003350 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
3351 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003352 * the protected members anymore, though, so once put_ldev reaches zero
3353 * again, it will be safe to free them. */
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003354 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003355 return 0;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003356}
3357
3358void drbd_go_diskless(struct drbd_conf *mdev)
3359{
3360 D_ASSERT(mdev->state.disk == D_FAILED);
3361 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01003362 drbd_queue_work(&mdev->tconn->data.work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003363}
3364
Philipp Reisnerb411b362009-09-25 16:07:19 -07003365/**
3366 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
3367 * @mdev: DRBD device.
3368 * @io_fn: IO callback to be called when bitmap IO is possible
3369 * @done: callback to be called after the bitmap IO was performed
3370 * @why: Descriptive text of the reason for doing the IO
3371 *
3372 * While IO on the bitmap happens we freeze application IO thus we ensure
3373 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3374 * called from worker context. It MUST NOT be used while a previous such
3375 * work is still pending!
3376 */
3377void drbd_queue_bitmap_io(struct drbd_conf *mdev,
3378 int (*io_fn)(struct drbd_conf *),
3379 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003380 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003381{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003382 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003383
3384 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
3385 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
3386 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
3387 if (mdev->bm_io_work.why)
3388 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
3389 why, mdev->bm_io_work.why);
3390
3391 mdev->bm_io_work.io_fn = io_fn;
3392 mdev->bm_io_work.done = done;
3393 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003394 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003395
Philipp Reisner87eeee42011-01-19 14:16:30 +01003396 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003397 set_bit(BITMAP_IO, &mdev->flags);
3398 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01003399 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01003400 drbd_queue_work(&mdev->tconn->data.work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003401 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003402 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003403}
3404
3405/**
3406 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
3407 * @mdev: DRBD device.
3408 * @io_fn: IO callback to be called when bitmap IO is possible
3409 * @why: Descriptive text of the reason for doing the IO
3410 *
3411 * freezes application IO while that the actual IO operations runs. This
3412 * functions MAY NOT be called from worker context.
3413 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003414int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
3415 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003416{
3417 int rv;
3418
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003419 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003420
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003421 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3422 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003423
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003424 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003425 rv = io_fn(mdev);
3426 drbd_bm_unlock(mdev);
3427
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003428 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3429 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003430
3431 return rv;
3432}
3433
3434void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3435{
3436 if ((mdev->ldev->md.flags & flag) != flag) {
3437 drbd_md_mark_dirty(mdev);
3438 mdev->ldev->md.flags |= flag;
3439 }
3440}
3441
3442void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3443{
3444 if ((mdev->ldev->md.flags & flag) != 0) {
3445 drbd_md_mark_dirty(mdev);
3446 mdev->ldev->md.flags &= ~flag;
3447 }
3448}
3449int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3450{
3451 return (bdev->md.flags & flag) != 0;
3452}
3453
3454static void md_sync_timer_fn(unsigned long data)
3455{
3456 struct drbd_conf *mdev = (struct drbd_conf *) data;
3457
Philipp Reisnere42325a2011-01-19 13:55:45 +01003458 drbd_queue_work_front(&mdev->tconn->data.work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003459}
3460
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003461static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003462{
Philipp Reisner00d56942011-02-09 18:09:48 +01003463 struct drbd_conf *mdev = w->mdev;
3464
Philipp Reisnerb411b362009-09-25 16:07:19 -07003465 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003466#ifdef DEBUG
3467 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3468 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3469#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003470 drbd_md_sync(mdev);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003471 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003472}
3473
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003474const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003475{
3476 /* THINK may need to become several global tables
3477 * when we want to support more than
3478 * one PRO_VERSION */
3479 static const char *cmdnames[] = {
3480 [P_DATA] = "Data",
3481 [P_DATA_REPLY] = "DataReply",
3482 [P_RS_DATA_REPLY] = "RSDataReply",
3483 [P_BARRIER] = "Barrier",
3484 [P_BITMAP] = "ReportBitMap",
3485 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3486 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3487 [P_UNPLUG_REMOTE] = "UnplugRemote",
3488 [P_DATA_REQUEST] = "DataRequest",
3489 [P_RS_DATA_REQUEST] = "RSDataRequest",
3490 [P_SYNC_PARAM] = "SyncParam",
3491 [P_SYNC_PARAM89] = "SyncParam89",
3492 [P_PROTOCOL] = "ReportProtocol",
3493 [P_UUIDS] = "ReportUUIDs",
3494 [P_SIZES] = "ReportSizes",
3495 [P_STATE] = "ReportState",
3496 [P_SYNC_UUID] = "ReportSyncUUID",
3497 [P_AUTH_CHALLENGE] = "AuthChallenge",
3498 [P_AUTH_RESPONSE] = "AuthResponse",
3499 [P_PING] = "Ping",
3500 [P_PING_ACK] = "PingAck",
3501 [P_RECV_ACK] = "RecvAck",
3502 [P_WRITE_ACK] = "WriteAck",
3503 [P_RS_WRITE_ACK] = "RSWriteAck",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003504 [P_DISCARD_WRITE] = "DiscardWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003505 [P_NEG_ACK] = "NegAck",
3506 [P_NEG_DREPLY] = "NegDReply",
3507 [P_NEG_RS_DREPLY] = "NegRSDReply",
3508 [P_BARRIER_ACK] = "BarrierAck",
3509 [P_STATE_CHG_REQ] = "StateChgRequest",
3510 [P_STATE_CHG_REPLY] = "StateChgReply",
3511 [P_OV_REQUEST] = "OVRequest",
3512 [P_OV_REPLY] = "OVReply",
3513 [P_OV_RESULT] = "OVResult",
3514 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3515 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3516 [P_COMPRESSED_BITMAP] = "CBitmap",
3517 [P_DELAY_PROBE] = "DelayProbe",
3518 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003519 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003520 [P_RS_CANCEL] = "RSCancel",
3521 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3522 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003523 [P_RETRY_WRITE] = "retry_write",
3524 [P_PROTOCOL_UPDATE] = "protocol_update",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003525
3526 /* enum drbd_packet, but not commands - obsoleted flags:
3527 * P_MAY_IGNORE
3528 * P_MAX_OPT_CMD
3529 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003530 };
3531
Lars Ellenbergae25b332011-04-24 00:01:16 +02003532 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003533 if (cmd == P_INITIAL_META)
3534 return "InitialMeta";
3535 if (cmd == P_INITIAL_DATA)
3536 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003537 if (cmd == P_CONNECTION_FEATURES)
3538 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003539 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003540 return "Unknown";
3541 return cmdnames[cmd];
3542}
3543
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003544/**
3545 * drbd_wait_misc - wait for a request to make progress
3546 * @mdev: device associated with the request
3547 * @i: the struct drbd_interval embedded in struct drbd_request or
3548 * struct drbd_peer_request
3549 */
3550int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3551{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003552 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003553 DEFINE_WAIT(wait);
3554 long timeout;
3555
Philipp Reisner44ed1672011-04-19 17:10:19 +02003556 rcu_read_lock();
3557 nc = rcu_dereference(mdev->tconn->net_conf);
3558 if (!nc) {
3559 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003560 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003561 }
3562 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3563 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003564
3565 /* Indicate to wake up mdev->misc_wait on progress. */
3566 i->waiting = true;
3567 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3568 spin_unlock_irq(&mdev->tconn->req_lock);
3569 timeout = schedule_timeout(timeout);
3570 finish_wait(&mdev->misc_wait, &wait);
3571 spin_lock_irq(&mdev->tconn->req_lock);
3572 if (!timeout || mdev->state.conn < C_CONNECTED)
3573 return -ETIMEDOUT;
3574 if (signal_pending(current))
3575 return -ERESTARTSYS;
3576 return 0;
3577}
3578
Philipp Reisnerb411b362009-09-25 16:07:19 -07003579#ifdef CONFIG_DRBD_FAULT_INJECTION
3580/* Fault insertion support including random number generator shamelessly
3581 * stolen from kernel/rcutorture.c */
3582struct fault_random_state {
3583 unsigned long state;
3584 unsigned long count;
3585};
3586
3587#define FAULT_RANDOM_MULT 39916801 /* prime */
3588#define FAULT_RANDOM_ADD 479001701 /* prime */
3589#define FAULT_RANDOM_REFRESH 10000
3590
3591/*
3592 * Crude but fast random-number generator. Uses a linear congruential
3593 * generator, with occasional help from get_random_bytes().
3594 */
3595static unsigned long
3596_drbd_fault_random(struct fault_random_state *rsp)
3597{
3598 long refresh;
3599
Roel Kluin49829ea2009-12-15 22:55:44 +01003600 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003601 get_random_bytes(&refresh, sizeof(refresh));
3602 rsp->state += refresh;
3603 rsp->count = FAULT_RANDOM_REFRESH;
3604 }
3605 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3606 return swahw32(rsp->state);
3607}
3608
3609static char *
3610_drbd_fault_str(unsigned int type) {
3611 static char *_faults[] = {
3612 [DRBD_FAULT_MD_WR] = "Meta-data write",
3613 [DRBD_FAULT_MD_RD] = "Meta-data read",
3614 [DRBD_FAULT_RS_WR] = "Resync write",
3615 [DRBD_FAULT_RS_RD] = "Resync read",
3616 [DRBD_FAULT_DT_WR] = "Data write",
3617 [DRBD_FAULT_DT_RD] = "Data read",
3618 [DRBD_FAULT_DT_RA] = "Data read ahead",
3619 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003620 [DRBD_FAULT_AL_EE] = "EE allocation",
3621 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003622 };
3623
3624 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3625}
3626
3627unsigned int
3628_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3629{
3630 static struct fault_random_state rrs = {0, 0};
3631
3632 unsigned int ret = (
3633 (fault_devs == 0 ||
3634 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3635 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3636
3637 if (ret) {
3638 fault_count++;
3639
Lars Ellenberg73835062010-05-27 11:51:56 +02003640 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003641 dev_warn(DEV, "***Simulating %s failure\n",
3642 _drbd_fault_str(type));
3643 }
3644
3645 return ret;
3646}
3647#endif
3648
3649const char *drbd_buildtag(void)
3650{
3651 /* DRBD built from external sources has here a reference to the
3652 git hash of the source code. */
3653
3654 static char buildtag[38] = "\0uilt-in";
3655
3656 if (buildtag[0] == 0) {
3657#ifdef CONFIG_MODULES
3658 if (THIS_MODULE != NULL)
3659 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3660 else
3661#endif
3662 buildtag[0] = 'b';
3663 }
3664
3665 return buildtag;
3666}
3667
3668module_init(drbd_init)
3669module_exit(drbd_cleanup)
3670
Philipp Reisnerb411b362009-09-25 16:07:19 -07003671EXPORT_SYMBOL(drbd_conn_str);
3672EXPORT_SYMBOL(drbd_role_str);
3673EXPORT_SYMBOL(drbd_disk_str);
3674EXPORT_SYMBOL(drbd_set_st_err_str);