blob: 7e37149684e48217076e84119bd49494f66c49e7 [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;
Lars Ellenbergb379c412011-11-17 11:49:46 +0100211 b->br_number = atomic_inc_return(&tconn->current_tle_nr);
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{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700244 INIT_LIST_HEAD(&new->requests);
245 INIT_LIST_HEAD(&new->w.list);
246 new->w.cb = NULL; /* if this is != NULL, we need to dec_ap_pending in tl_clear */
247 new->next = NULL;
Philipp Reisner7e602c02010-05-27 14:49:27 +0200248 new->n_writes = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700249
Lars Ellenbergb379c412011-11-17 11:49:46 +0100250 new->br_number = atomic_inc_return(&tconn->current_tle_nr);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100251 if (tconn->newest_tle != new) {
252 tconn->newest_tle->next = new;
253 tconn->newest_tle = new;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700254 }
255}
256
257/**
258 * tl_release() - Free or recycle the oldest &struct drbd_tl_epoch object of the TL
259 * @mdev: DRBD device.
260 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
261 * @set_size: Expected number of requests before that barrier.
262 *
263 * In case the passed barrier_nr or set_size does not match the oldest
264 * &struct drbd_tl_epoch objects this function will cause a termination
265 * of the connection.
266 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100267void tl_release(struct drbd_tconn *tconn, unsigned int barrier_nr,
268 unsigned int set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700269{
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100270 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700271 struct drbd_tl_epoch *b, *nob; /* next old barrier */
272 struct list_head *le, *tle;
273 struct drbd_request *r;
274
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100275 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700276
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100277 b = tconn->oldest_tle;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700278
279 /* first some paranoia code */
280 if (b == NULL) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100281 conn_err(tconn, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
282 barrier_nr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700283 goto bail;
284 }
285 if (b->br_number != barrier_nr) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100286 conn_err(tconn, "BAD! BarrierAck #%u received, expected #%u!\n",
287 barrier_nr, b->br_number);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700288 goto bail;
289 }
Philipp Reisner7e602c02010-05-27 14:49:27 +0200290 if (b->n_writes != set_size) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100291 conn_err(tconn, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
292 barrier_nr, set_size, b->n_writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700293 goto bail;
294 }
295
296 /* Clean up list of requests processed during current epoch */
297 list_for_each_safe(le, tle, &b->requests) {
298 r = list_entry(le, struct drbd_request, tl_requests);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100299 _req_mod(r, BARRIER_ACKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700300 }
301 /* There could be requests on the list waiting for completion
302 of the write to the local disk. To avoid corruptions of
303 slab's data structures we have to remove the lists head.
304
305 Also there could have been a barrier ack out of sequence, overtaking
306 the write acks - which would be a bug and violating write ordering.
307 To not deadlock in case we lose connection while such requests are
308 still pending, we need some way to find them for the
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100309 _req_mode(CONNECTION_LOST_WHILE_PENDING).
Philipp Reisnerb411b362009-09-25 16:07:19 -0700310
311 These have been list_move'd to the out_of_sequence_requests list in
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100312 _req_mod(, BARRIER_ACKED) above.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700313 */
Philipp Reisnercdfda632011-07-05 15:38:59 +0200314 list_splice_init(&b->requests, &tconn->barrier_acked_requests);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100315 mdev = b->w.mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700316
317 nob = b->next;
Philipp Reisner6936fcb2011-11-10 18:45:36 +0100318 if (test_and_clear_bit(CREATE_BARRIER, &tconn->flags)) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100319 _tl_add_barrier(tconn, b);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700320 if (nob)
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100321 tconn->oldest_tle = nob;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700322 /* if nob == NULL b was the only barrier, and becomes the new
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100323 barrier. Therefore tconn->oldest_tle points already to b */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700324 } else {
325 D_ASSERT(nob != NULL);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100326 tconn->oldest_tle = nob;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700327 kfree(b);
328 }
329
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100330 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700331 dec_ap_pending(mdev);
332
333 return;
334
335bail:
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100336 spin_unlock_irq(&tconn->req_lock);
337 conn_request_state(tconn, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700338}
339
Philipp Reisner617049a2010-12-22 12:48:31 +0100340
Philipp Reisner11b58e72010-05-12 17:08:26 +0200341/**
342 * _tl_restart() - Walks the transfer log, and applies an action to all requests
343 * @mdev: DRBD device.
344 * @what: The action/event to perform with all request objects
345 *
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100346 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
347 * RESTART_FROZEN_DISK_IO.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200348 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100349void _tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200350{
351 struct drbd_tl_epoch *b, *tmp, **pn;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200352 struct list_head *le, *tle, carry_reads;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200353 struct drbd_request *req;
354 int rv, n_writes, n_reads;
355
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100356 b = tconn->oldest_tle;
357 pn = &tconn->oldest_tle;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200358 while (b) {
359 n_writes = 0;
360 n_reads = 0;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200361 INIT_LIST_HEAD(&carry_reads);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200362 list_for_each_safe(le, tle, &b->requests) {
363 req = list_entry(le, struct drbd_request, tl_requests);
364 rv = _req_mod(req, what);
365
Andreas Gruenbacherf4976092011-07-17 23:06:12 +0200366 if (rv & MR_WRITE)
367 n_writes++;
368 if (rv & MR_READ)
369 n_reads++;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200370 }
371 tmp = b->next;
372
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200373 if (n_writes) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100374 if (what == RESEND) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200375 b->n_writes = n_writes;
376 if (b->w.cb == NULL) {
377 b->w.cb = w_send_barrier;
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100378 inc_ap_pending(b->w.mdev);
Philipp Reisner6936fcb2011-11-10 18:45:36 +0100379 set_bit(CREATE_BARRIER, &tconn->flags);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200380 }
381
Lars Ellenbergd5b27b02011-11-14 15:42:37 +0100382 drbd_queue_work(&tconn->sender_work, &b->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200383 }
384 pn = &b->next;
385 } else {
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200386 if (n_reads)
387 list_add(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200388 /* there could still be requests on that ring list,
389 * in case local io is still pending */
390 list_del(&b->requests);
391
392 /* dec_ap_pending corresponding to queue_barrier.
393 * the newest barrier may not have been queued yet,
394 * in which case w.cb is still NULL. */
395 if (b->w.cb != NULL)
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100396 dec_ap_pending(b->w.mdev);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200397
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100398 if (b == tconn->newest_tle) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200399 /* recycle, but reinit! */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100400 if (tmp != NULL)
401 conn_err(tconn, "ASSERT FAILED tmp == NULL");
Philipp Reisner11b58e72010-05-12 17:08:26 +0200402 INIT_LIST_HEAD(&b->requests);
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200403 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200404 INIT_LIST_HEAD(&b->w.list);
405 b->w.cb = NULL;
Lars Ellenbergb379c412011-11-17 11:49:46 +0100406 b->br_number = atomic_inc_return(&tconn->current_tle_nr);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200407 b->n_writes = 0;
408
409 *pn = b;
410 break;
411 }
412 *pn = tmp;
413 kfree(b);
414 }
415 b = tmp;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200416 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200417 }
Philipp Reisner11b58e72010-05-12 17:08:26 +0200418
Philipp Reisnercdfda632011-07-05 15:38:59 +0200419 /* Actions operating on the disk state, also want to work on
420 requests that got barrier acked. */
421 switch (what) {
422 case FAIL_FROZEN_DISK_IO:
423 case RESTART_FROZEN_DISK_IO:
424 list_for_each_safe(le, tle, &tconn->barrier_acked_requests) {
425 req = list_entry(le, struct drbd_request, tl_requests);
426 _req_mod(req, what);
427 }
428 case CONNECTION_LOST_WHILE_PENDING:
429 case RESEND:
430 break;
431 default:
432 conn_err(tconn, "what = %d in _tl_restart()\n", what);
433 }
434}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700435
436/**
437 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
438 * @mdev: DRBD device.
439 *
440 * This is called after the connection to the peer was lost. The storage covered
441 * by the requests on the transfer gets marked as our of sync. Called from the
442 * receiver thread and the worker thread.
443 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100444void tl_clear(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700445{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700446 struct list_head *le, *tle;
447 struct drbd_request *r;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700448
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100449 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700450
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100451 _tl_restart(tconn, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700452
453 /* we expect this list to be empty. */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100454 if (!list_empty(&tconn->out_of_sequence_requests))
455 conn_err(tconn, "ASSERT FAILED list_empty(&out_of_sequence_requests)\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700456
457 /* but just in case, clean it up anyways! */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100458 list_for_each_safe(le, tle, &tconn->out_of_sequence_requests) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700459 r = list_entry(le, struct drbd_request, tl_requests);
460 /* It would be nice to complete outside of spinlock.
461 * But this is easier for now. */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100462 _req_mod(r, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700463 }
464
465 /* ensure bit indicating barrier is required is clear */
Philipp Reisner6936fcb2011-11-10 18:45:36 +0100466 clear_bit(CREATE_BARRIER, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700467
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100468 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700469}
470
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100471void tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200472{
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100473 spin_lock_irq(&tconn->req_lock);
474 _tl_restart(tconn, what);
475 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700476}
477
Philipp Reisnercdfda632011-07-05 15:38:59 +0200478/**
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200479 * 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 +0200480 * @mdev: DRBD device.
Philipp Reisnercdfda632011-07-05 15:38:59 +0200481 */
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200482void tl_abort_disk_io(struct drbd_conf *mdev)
Philipp Reisnercdfda632011-07-05 15:38:59 +0200483{
484 struct drbd_tconn *tconn = mdev->tconn;
485 struct drbd_tl_epoch *b;
486 struct list_head *le, *tle;
487 struct drbd_request *req;
488
Philipp Reisnercdfda632011-07-05 15:38:59 +0200489 spin_lock_irq(&tconn->req_lock);
490 b = tconn->oldest_tle;
491 while (b) {
492 list_for_each_safe(le, tle, &b->requests) {
493 req = list_entry(le, struct drbd_request, tl_requests);
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200494 if (!(req->rq_state & RQ_LOCAL_PENDING))
495 continue;
Philipp Reisnercdfda632011-07-05 15:38:59 +0200496 if (req->w.mdev == mdev)
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200497 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200498 }
499 b = b->next;
500 }
501
502 list_for_each_safe(le, tle, &tconn->barrier_acked_requests) {
503 req = list_entry(le, struct drbd_request, tl_requests);
Lars Ellenberg97ddb682011-07-15 23:52:44 +0200504 if (!(req->rq_state & RQ_LOCAL_PENDING))
505 continue;
Philipp Reisnercdfda632011-07-05 15:38:59 +0200506 if (req->w.mdev == mdev)
Andreas Gruenbacher71fc7ee2011-07-17 23:06:12 +0200507 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200508 }
509
510 spin_unlock_irq(&tconn->req_lock);
511}
512
Philipp Reisnerb411b362009-09-25 16:07:19 -0700513static int drbd_thread_setup(void *arg)
514{
515 struct drbd_thread *thi = (struct drbd_thread *) arg;
Philipp Reisner392c8802011-02-09 10:33:31 +0100516 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700517 unsigned long flags;
518 int retval;
519
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100520 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
Philipp Reisner392c8802011-02-09 10:33:31 +0100521 thi->name[0], thi->tconn->name);
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100522
Philipp Reisnerb411b362009-09-25 16:07:19 -0700523restart:
524 retval = thi->function(thi);
525
526 spin_lock_irqsave(&thi->t_lock, flags);
527
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100528 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700529 * was set the conn state to "StandAlone",
530 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
531 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100532 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700533 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100534 * so either thread_start sees EXITING, and can remap to RESTARTING,
535 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700536 */
537
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100538 if (thi->t_state == RESTARTING) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100539 conn_info(tconn, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100540 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700541 spin_unlock_irqrestore(&thi->t_lock, flags);
542 goto restart;
543 }
544
545 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100546 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700547 smp_mb();
Lars Ellenberg992d6e92011-05-02 11:47:18 +0200548 complete_all(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700549 spin_unlock_irqrestore(&thi->t_lock, flags);
550
Philipp Reisner392c8802011-02-09 10:33:31 +0100551 conn_info(tconn, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700552
553 /* Release mod reference taken when thread was started */
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200554
555 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700556 module_put(THIS_MODULE);
557 return retval;
558}
559
Philipp Reisner392c8802011-02-09 10:33:31 +0100560static void drbd_thread_init(struct drbd_tconn *tconn, struct drbd_thread *thi,
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100561 int (*func) (struct drbd_thread *), char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700562{
563 spin_lock_init(&thi->t_lock);
564 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100565 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700566 thi->function = func;
Philipp Reisner392c8802011-02-09 10:33:31 +0100567 thi->tconn = tconn;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100568 strncpy(thi->name, name, ARRAY_SIZE(thi->name));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700569}
570
571int drbd_thread_start(struct drbd_thread *thi)
572{
Philipp Reisner392c8802011-02-09 10:33:31 +0100573 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700574 struct task_struct *nt;
575 unsigned long flags;
576
Philipp Reisnerb411b362009-09-25 16:07:19 -0700577 /* is used from state engine doing drbd_thread_stop_nowait,
578 * while holding the req lock irqsave */
579 spin_lock_irqsave(&thi->t_lock, flags);
580
581 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100582 case NONE:
Philipp Reisner392c8802011-02-09 10:33:31 +0100583 conn_info(tconn, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100584 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700585
586 /* Get ref on module for thread - this is released when thread exits */
587 if (!try_module_get(THIS_MODULE)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100588 conn_err(tconn, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700589 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100590 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700591 }
592
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200593 kref_get(&thi->tconn->kref);
594
Philipp Reisnerb411b362009-09-25 16:07:19 -0700595 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700596 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100597 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700598 spin_unlock_irqrestore(&thi->t_lock, flags);
599 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
600
601 nt = kthread_create(drbd_thread_setup, (void *) thi,
Philipp Reisner392c8802011-02-09 10:33:31 +0100602 "drbd_%c_%s", thi->name[0], thi->tconn->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700603
604 if (IS_ERR(nt)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100605 conn_err(tconn, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700606
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200607 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700608 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100609 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700610 }
611 spin_lock_irqsave(&thi->t_lock, flags);
612 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100613 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700614 spin_unlock_irqrestore(&thi->t_lock, flags);
615 wake_up_process(nt);
616 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100617 case EXITING:
618 thi->t_state = RESTARTING;
Philipp Reisner392c8802011-02-09 10:33:31 +0100619 conn_info(tconn, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100620 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700621 /* fall through */
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100622 case RUNNING:
623 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700624 default:
625 spin_unlock_irqrestore(&thi->t_lock, flags);
626 break;
627 }
628
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100629 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700630}
631
632
633void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
634{
635 unsigned long flags;
636
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100637 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700638
639 /* may be called from state engine, holding the req lock irqsave */
640 spin_lock_irqsave(&thi->t_lock, flags);
641
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100642 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700643 spin_unlock_irqrestore(&thi->t_lock, flags);
644 if (restart)
645 drbd_thread_start(thi);
646 return;
647 }
648
649 if (thi->t_state != ns) {
650 if (thi->task == NULL) {
651 spin_unlock_irqrestore(&thi->t_lock, flags);
652 return;
653 }
654
655 thi->t_state = ns;
656 smp_mb();
657 init_completion(&thi->stop);
658 if (thi->task != current)
659 force_sig(DRBD_SIGKILL, thi->task);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700660 }
661
662 spin_unlock_irqrestore(&thi->t_lock, flags);
663
664 if (wait)
665 wait_for_completion(&thi->stop);
666}
667
Philipp Reisner392c8802011-02-09 10:33:31 +0100668static struct drbd_thread *drbd_task_to_thread(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100669{
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100670 struct drbd_thread *thi =
671 task == tconn->receiver.task ? &tconn->receiver :
672 task == tconn->asender.task ? &tconn->asender :
673 task == tconn->worker.task ? &tconn->worker : NULL;
674
675 return thi;
676}
677
Philipp Reisner392c8802011-02-09 10:33:31 +0100678char *drbd_task_to_thread_name(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100679{
Philipp Reisner392c8802011-02-09 10:33:31 +0100680 struct drbd_thread *thi = drbd_task_to_thread(tconn, task);
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100681 return thi ? thi->name : task->comm;
682}
683
Philipp Reisner80883192011-02-18 14:56:45 +0100684int conn_lowest_minor(struct drbd_tconn *tconn)
Philipp Reisner80822282011-02-08 12:46:30 +0100685{
Philipp Reisnere90285e2011-03-22 12:51:21 +0100686 struct drbd_conf *mdev;
Philipp Reisner695d08f2011-04-11 22:53:32 -0700687 int vnr = 0, m;
Philipp Reisner774b3052011-02-22 02:07:03 -0500688
Philipp Reisner695d08f2011-04-11 22:53:32 -0700689 rcu_read_lock();
Philipp Reisnere90285e2011-03-22 12:51:21 +0100690 mdev = idr_get_next(&tconn->volumes, &vnr);
Philipp Reisner695d08f2011-04-11 22:53:32 -0700691 m = mdev ? mdev_to_minor(mdev) : -1;
692 rcu_read_unlock();
693
694 return m;
Philipp Reisner80822282011-02-08 12:46:30 +0100695}
Philipp Reisner774b3052011-02-22 02:07:03 -0500696
697#ifdef CONFIG_SMP
Philipp Reisnerb411b362009-09-25 16:07:19 -0700698/**
699 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
700 * @mdev: DRBD device.
701 *
702 * Forces all threads of a device onto the same CPU. This is beneficial for
703 * DRBD's performance. May be overwritten by user's configuration.
704 */
Philipp Reisner80822282011-02-08 12:46:30 +0100705void drbd_calc_cpu_mask(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700706{
707 int ord, cpu;
708
709 /* user override. */
Philipp Reisner80822282011-02-08 12:46:30 +0100710 if (cpumask_weight(tconn->cpu_mask))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700711 return;
712
Philipp Reisner80822282011-02-08 12:46:30 +0100713 ord = conn_lowest_minor(tconn) % cpumask_weight(cpu_online_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700714 for_each_online_cpu(cpu) {
715 if (ord-- == 0) {
Philipp Reisner80822282011-02-08 12:46:30 +0100716 cpumask_set_cpu(cpu, tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700717 return;
718 }
719 }
720 /* should not be reached */
Philipp Reisner80822282011-02-08 12:46:30 +0100721 cpumask_setall(tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700722}
723
724/**
725 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
726 * @mdev: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100727 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700728 *
729 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
730 * prematurely.
731 */
Philipp Reisner80822282011-02-08 12:46:30 +0100732void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700733{
734 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100735
Philipp Reisnerb411b362009-09-25 16:07:19 -0700736 if (!thi->reset_cpu_mask)
737 return;
738 thi->reset_cpu_mask = 0;
Philipp Reisner392c8802011-02-09 10:33:31 +0100739 set_cpus_allowed_ptr(p, thi->tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700740}
741#endif
742
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200743/**
744 * drbd_header_size - size of a packet header
745 *
746 * The header size is a multiple of 8, so any payload following the header is
747 * word aligned on 64-bit architectures. (The bitmap send and receive code
748 * relies on this.)
749 */
750unsigned int drbd_header_size(struct drbd_tconn *tconn)
751{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200752 if (tconn->agreed_pro_version >= 100) {
753 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
754 return sizeof(struct p_header100);
755 } else {
756 BUILD_BUG_ON(sizeof(struct p_header80) !=
757 sizeof(struct p_header95));
758 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
759 return sizeof(struct p_header80);
760 }
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200761}
762
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200763static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100764{
765 h->magic = cpu_to_be32(DRBD_MAGIC);
766 h->command = cpu_to_be16(cmd);
767 h->length = cpu_to_be16(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200768 return sizeof(struct p_header80);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100769}
770
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200771static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100772{
773 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
774 h->command = cpu_to_be16(cmd);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +0100775 h->length = cpu_to_be32(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200776 return sizeof(struct p_header95);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100777}
778
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200779static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
780 int size, int vnr)
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100781{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200782 h->magic = cpu_to_be32(DRBD_MAGIC_100);
783 h->volume = cpu_to_be16(vnr);
784 h->command = cpu_to_be16(cmd);
785 h->length = cpu_to_be32(size);
786 h->pad = 0;
787 return sizeof(struct p_header100);
788}
789
790static unsigned int prepare_header(struct drbd_tconn *tconn, int vnr,
791 void *buffer, enum drbd_packet cmd, int size)
792{
793 if (tconn->agreed_pro_version >= 100)
794 return prepare_header100(buffer, cmd, size, vnr);
795 else if (tconn->agreed_pro_version >= 95 &&
796 size > DRBD_MAX_SIZE_H80_PACKET)
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200797 return prepare_header95(buffer, cmd, size);
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100798 else
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200799 return prepare_header80(buffer, cmd, size);
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100800}
801
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200802static void *__conn_prepare_command(struct drbd_tconn *tconn,
803 struct drbd_socket *sock)
804{
805 if (!sock->socket)
806 return NULL;
807 return sock->sbuf + drbd_header_size(tconn);
808}
809
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200810void *conn_prepare_command(struct drbd_tconn *tconn, struct drbd_socket *sock)
811{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200812 void *p;
813
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200814 mutex_lock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200815 p = __conn_prepare_command(tconn, sock);
816 if (!p)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200817 mutex_unlock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200818
819 return p;
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200820}
821
822void *drbd_prepare_command(struct drbd_conf *mdev, struct drbd_socket *sock)
823{
824 return conn_prepare_command(mdev->tconn, sock);
825}
826
827static int __send_command(struct drbd_tconn *tconn, int vnr,
828 struct drbd_socket *sock, enum drbd_packet cmd,
829 unsigned int header_size, void *data,
830 unsigned int size)
831{
832 int msg_flags;
833 int err;
834
835 /*
836 * Called with @data == NULL and the size of the data blocks in @size
837 * for commands that send data blocks. For those commands, omit the
838 * MSG_MORE flag: this will increase the likelihood that data blocks
839 * which are page aligned on the sender will end up page aligned on the
840 * receiver.
841 */
842 msg_flags = data ? MSG_MORE : 0;
843
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200844 header_size += prepare_header(tconn, vnr, sock->sbuf, cmd,
845 header_size + size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200846 err = drbd_send_all(tconn, sock->socket, sock->sbuf, header_size,
847 msg_flags);
848 if (data && !err)
849 err = drbd_send_all(tconn, sock->socket, data, size, 0);
850 return err;
851}
852
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200853static int __conn_send_command(struct drbd_tconn *tconn, struct drbd_socket *sock,
854 enum drbd_packet cmd, unsigned int header_size,
855 void *data, unsigned int size)
856{
857 return __send_command(tconn, 0, sock, cmd, header_size, data, size);
858}
859
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200860int conn_send_command(struct drbd_tconn *tconn, struct drbd_socket *sock,
861 enum drbd_packet cmd, unsigned int header_size,
862 void *data, unsigned int size)
863{
864 int err;
865
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200866 err = __conn_send_command(tconn, sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200867 mutex_unlock(&sock->mutex);
868 return err;
869}
870
871int drbd_send_command(struct drbd_conf *mdev, struct drbd_socket *sock,
872 enum drbd_packet cmd, unsigned int header_size,
873 void *data, unsigned int size)
874{
875 int err;
876
877 err = __send_command(mdev->tconn, mdev->vnr, sock, cmd, header_size,
878 data, size);
879 mutex_unlock(&sock->mutex);
880 return err;
881}
882
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100883int drbd_send_ping(struct drbd_tconn *tconn)
884{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200885 struct drbd_socket *sock;
886
887 sock = &tconn->meta;
888 if (!conn_prepare_command(tconn, sock))
889 return -EIO;
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200890 return conn_send_command(tconn, sock, P_PING, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100891}
892
893int drbd_send_ping_ack(struct drbd_tconn *tconn)
894{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200895 struct drbd_socket *sock;
896
897 sock = &tconn->meta;
898 if (!conn_prepare_command(tconn, sock))
899 return -EIO;
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200900 return conn_send_command(tconn, sock, P_PING_ACK, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100901}
902
Lars Ellenbergf3990022011-03-23 14:31:09 +0100903int drbd_send_sync_param(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700904{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100905 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200906 struct p_rs_param_95 *p;
907 int size;
Philipp Reisner31890f42011-01-19 14:12:51 +0100908 const int apv = mdev->tconn->agreed_pro_version;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200909 enum drbd_packet cmd;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200910 struct net_conf *nc;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200911 struct disk_conf *dc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200912
913 sock = &mdev->tconn->data;
914 p = drbd_prepare_command(mdev, sock);
915 if (!p)
916 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700917
Philipp Reisner44ed1672011-04-19 17:10:19 +0200918 rcu_read_lock();
919 nc = rcu_dereference(mdev->tconn->net_conf);
920
Philipp Reisnerb411b362009-09-25 16:07:19 -0700921 size = apv <= 87 ? sizeof(struct p_rs_param)
922 : apv == 88 ? sizeof(struct p_rs_param)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200923 + strlen(nc->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200924 : apv <= 94 ? sizeof(struct p_rs_param_89)
925 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700926
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200927 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700928
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200929 /* initialize verify_alg and csums_alg */
930 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700931
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200932 if (get_ldev(mdev)) {
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200933 dc = rcu_dereference(mdev->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200934 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200935 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
936 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
937 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
938 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200939 put_ldev(mdev);
940 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200941 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200942 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
943 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
944 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
945 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
946 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700947
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200948 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200949 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200950 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200951 strcpy(p->csums_alg, nc->csums_alg);
952 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700953
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200954 return drbd_send_command(mdev, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700955}
956
Philipp Reisnerd659f2a2011-05-16 17:38:45 +0200957int __drbd_send_protocol(struct drbd_tconn *tconn, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700958{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200959 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700960 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200961 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200962 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700963
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200964 sock = &tconn->data;
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200965 p = __conn_prepare_command(tconn, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200966 if (!p)
967 return -EIO;
968
Philipp Reisner44ed1672011-04-19 17:10:19 +0200969 rcu_read_lock();
970 nc = rcu_dereference(tconn->net_conf);
971
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200972 if (nc->tentative && tconn->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200973 rcu_read_unlock();
974 mutex_unlock(&sock->mutex);
975 conn_err(tconn, "--dry-run is not supported by peer");
976 return -EOPNOTSUPP;
977 }
978
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200979 size = sizeof(*p);
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100980 if (tconn->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200981 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700982
Philipp Reisner44ed1672011-04-19 17:10:19 +0200983 p->protocol = cpu_to_be32(nc->wire_protocol);
984 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
985 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
986 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
987 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100988 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200989 if (nc->discard_my_data)
990 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200991 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200992 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100993 p->conn_flags = cpu_to_be32(cf);
994
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100995 if (tconn->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200996 strcpy(p->integrity_alg, nc->integrity_alg);
997 rcu_read_unlock();
998
Philipp Reisnerd659f2a2011-05-16 17:38:45 +0200999 return __conn_send_command(tconn, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +02001000}
1001
1002int drbd_send_protocol(struct drbd_tconn *tconn)
1003{
1004 int err;
1005
1006 mutex_lock(&tconn->data.mutex);
Philipp Reisnerd659f2a2011-05-16 17:38:45 +02001007 err = __drbd_send_protocol(tconn, P_PROTOCOL);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +02001008 mutex_unlock(&tconn->data.mutex);
1009
1010 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001011}
1012
1013int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
1014{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001015 struct drbd_socket *sock;
1016 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001017 int i;
1018
1019 if (!get_ldev_if_state(mdev, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +01001020 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001021
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001022 sock = &mdev->tconn->data;
1023 p = drbd_prepare_command(mdev, sock);
1024 if (!p) {
1025 put_ldev(mdev);
1026 return -EIO;
1027 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001028 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001029 p->uuid[i] = mdev->ldev ? cpu_to_be64(mdev->ldev->md.uuid[i]) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001030
1031 mdev->comm_bm_set = drbd_bm_total_weight(mdev);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001032 p->uuid[UI_SIZE] = cpu_to_be64(mdev->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +02001033 rcu_read_lock();
Andreas Gruenbacher6139f602011-05-06 20:00:02 +02001034 uuid_flags |= rcu_dereference(mdev->tconn->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001035 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001036 uuid_flags |= test_bit(CRASHED_PRIMARY, &mdev->flags) ? 2 : 0;
1037 uuid_flags |= mdev->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001038 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001039
1040 put_ldev(mdev);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001041 return drbd_send_command(mdev, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001042}
1043
1044int drbd_send_uuids(struct drbd_conf *mdev)
1045{
1046 return _drbd_send_uuids(mdev, 0);
1047}
1048
1049int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev)
1050{
1051 return _drbd_send_uuids(mdev, 8);
1052}
1053
Lars Ellenberg62b0da32011-01-20 13:25:21 +01001054void drbd_print_uuids(struct drbd_conf *mdev, const char *text)
1055{
1056 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
1057 u64 *uuid = mdev->ldev->md.uuid;
1058 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX\n",
1059 text,
1060 (unsigned long long)uuid[UI_CURRENT],
1061 (unsigned long long)uuid[UI_BITMAP],
1062 (unsigned long long)uuid[UI_HISTORY_START],
1063 (unsigned long long)uuid[UI_HISTORY_END]);
1064 put_ldev(mdev);
1065 } else {
1066 dev_info(DEV, "%s effective data uuid: %016llX\n",
1067 text,
1068 (unsigned long long)mdev->ed_uuid);
1069 }
1070}
1071
Andreas Gruenbacher9c1b7f72011-03-16 01:09:01 +01001072void drbd_gen_and_send_sync_uuid(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001073{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001074 struct drbd_socket *sock;
1075 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001076 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001077
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001078 D_ASSERT(mdev->state.disk == D_UP_TO_DATE);
1079
Philipp Reisner0cfac5d2011-11-10 12:12:52 +01001080 uuid = mdev->ldev->md.uuid[UI_BITMAP];
1081 if (uuid && uuid != UUID_JUST_CREATED)
1082 uuid = uuid + UUID_NEW_BM_OFFSET;
1083 else
1084 get_random_bytes(&uuid, sizeof(u64));
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001085 drbd_uuid_set(mdev, UI_BITMAP, uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01001086 drbd_print_uuids(mdev, "updated sync UUID");
Lars Ellenberg5a22db82010-12-17 21:14:23 +01001087 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001088
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001089 sock = &mdev->tconn->data;
1090 p = drbd_prepare_command(mdev, sock);
1091 if (p) {
1092 p->uuid = cpu_to_be64(uuid);
1093 drbd_send_command(mdev, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
1094 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001095}
1096
Philipp Reisnere89b5912010-03-24 17:11:33 +01001097int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001098{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001099 struct drbd_socket *sock;
1100 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001101 sector_t d_size, u_size;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001102 int q_order_type, max_bio_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001103
1104 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
1105 D_ASSERT(mdev->ldev->backing_bdev);
1106 d_size = drbd_get_max_capacity(mdev->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001107 rcu_read_lock();
1108 u_size = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
1109 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001110 q_order_type = drbd_queue_order_type(mdev);
Philipp Reisner99432fc2011-05-20 16:39:13 +02001111 max_bio_size = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
1112 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001113 put_ldev(mdev);
1114 } else {
1115 d_size = 0;
1116 u_size = 0;
1117 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001118 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001119 }
1120
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001121 sock = &mdev->tconn->data;
1122 p = drbd_prepare_command(mdev, sock);
1123 if (!p)
1124 return -EIO;
Philipp Reisner2ffca4f2011-06-30 15:43:06 +02001125
1126 if (mdev->tconn->agreed_pro_version <= 94)
1127 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
1128 else if (mdev->tconn->agreed_pro_version < 100)
1129 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE_P95);
1130
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001131 p->d_size = cpu_to_be64(d_size);
1132 p->u_size = cpu_to_be64(u_size);
1133 p->c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(mdev->this_bdev));
1134 p->max_bio_size = cpu_to_be32(max_bio_size);
1135 p->queue_order_type = cpu_to_be16(q_order_type);
1136 p->dds_flags = cpu_to_be16(flags);
1137 return drbd_send_command(mdev, sock, P_SIZES, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001138}
1139
1140/**
Philipp Reisner43de7c82011-11-10 13:16:13 +01001141 * drbd_send_current_state() - Sends the drbd state to the peer
Philipp Reisnerb411b362009-09-25 16:07:19 -07001142 * @mdev: DRBD device.
1143 */
Philipp Reisner43de7c82011-11-10 13:16:13 +01001144int drbd_send_current_state(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001145{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +01001146 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001147 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001148
Andreas Gruenbacher7c967152011-03-22 00:49:36 +01001149 sock = &mdev->tconn->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001150 p = drbd_prepare_command(mdev, sock);
1151 if (!p)
1152 return -EIO;
1153 p->state = cpu_to_be32(mdev->state.i); /* Within the send mutex */
1154 return drbd_send_command(mdev, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001155}
1156
Philipp Reisner43de7c82011-11-10 13:16:13 +01001157/**
1158 * drbd_send_state() - After a state change, sends the new state to the peer
1159 * @mdev: DRBD device.
1160 * @state: the state to send, not necessarily the current state.
1161 *
1162 * Each state change queues an "after_state_ch" work, which will eventually
1163 * send the resulting new state to the peer. If more state changes happen
1164 * between queuing and processing of the after_state_ch work, we still
1165 * want to send each intermediary state in the order it occurred.
1166 */
1167int drbd_send_state(struct drbd_conf *mdev, union drbd_state state)
1168{
1169 struct drbd_socket *sock;
1170 struct p_state *p;
1171
1172 sock = &mdev->tconn->data;
1173 p = drbd_prepare_command(mdev, sock);
1174 if (!p)
1175 return -EIO;
1176 p->state = cpu_to_be32(state.i); /* Within the send mutex */
1177 return drbd_send_command(mdev, sock, P_STATE, sizeof(*p), NULL, 0);
1178}
1179
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001180int drbd_send_state_req(struct drbd_conf *mdev, union drbd_state mask, union drbd_state val)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001181{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001182 struct drbd_socket *sock;
1183 struct p_req_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001184
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001185 sock = &mdev->tconn->data;
1186 p = drbd_prepare_command(mdev, sock);
1187 if (!p)
1188 return -EIO;
1189 p->mask = cpu_to_be32(mask.i);
1190 p->val = cpu_to_be32(val.i);
1191 return drbd_send_command(mdev, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001192}
1193
1194int conn_send_state_req(struct drbd_tconn *tconn, union drbd_state mask, union drbd_state val)
1195{
1196 enum drbd_packet cmd;
1197 struct drbd_socket *sock;
1198 struct p_req_state *p;
1199
1200 cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1201 sock = &tconn->data;
1202 p = conn_prepare_command(tconn, sock);
1203 if (!p)
1204 return -EIO;
1205 p->mask = cpu_to_be32(mask.i);
1206 p->val = cpu_to_be32(val.i);
1207 return conn_send_command(tconn, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001208}
1209
Andreas Gruenbacher2f4e7ab2011-03-16 01:20:38 +01001210void drbd_send_sr_reply(struct drbd_conf *mdev, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001211{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001212 struct drbd_socket *sock;
1213 struct p_req_state_reply *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001214
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001215 sock = &mdev->tconn->meta;
1216 p = drbd_prepare_command(mdev, sock);
1217 if (p) {
1218 p->retcode = cpu_to_be32(retcode);
1219 drbd_send_command(mdev, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
1220 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001221}
1222
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001223void conn_send_sr_reply(struct drbd_tconn *tconn, enum drbd_state_rv retcode)
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001224{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001225 struct drbd_socket *sock;
1226 struct p_req_state_reply *p;
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001227 enum drbd_packet cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
1228
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001229 sock = &tconn->meta;
1230 p = conn_prepare_command(tconn, sock);
1231 if (p) {
1232 p->retcode = cpu_to_be32(retcode);
1233 conn_send_command(tconn, sock, cmd, sizeof(*p), NULL, 0);
1234 }
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001235}
1236
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001237static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
1238{
1239 BUG_ON(code & ~0xf);
1240 p->encoding = (p->encoding & ~0xf) | code;
1241}
1242
1243static void dcbp_set_start(struct p_compressed_bm *p, int set)
1244{
1245 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1246}
1247
1248static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1249{
1250 BUG_ON(n & ~0x7);
1251 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
1252}
1253
Philipp Reisnerb411b362009-09-25 16:07:19 -07001254int fill_bitmap_rle_bits(struct drbd_conf *mdev,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001255 struct p_compressed_bm *p,
1256 unsigned int size,
1257 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001258{
1259 struct bitstream bs;
1260 unsigned long plain_bits;
1261 unsigned long tmp;
1262 unsigned long rl;
1263 unsigned len;
1264 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001265 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001266
1267 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001268 rcu_read_lock();
1269 use_rle = rcu_dereference(mdev->tconn->net_conf)->use_rle;
1270 rcu_read_unlock();
1271 if (!use_rle || mdev->tconn->agreed_pro_version < 90)
1272 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001273
1274 if (c->bit_offset >= c->bm_bits)
1275 return 0; /* nothing to do. */
1276
1277 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001278 bitstream_init(&bs, p->code, size, 0);
1279 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001280 /* plain bits covered in this code string */
1281 plain_bits = 0;
1282
1283 /* p->encoding & 0x80 stores whether the first run length is set.
1284 * bit offset is implicit.
1285 * start with toggle == 2 to be able to tell the first iteration */
1286 toggle = 2;
1287
1288 /* see how much plain bits we can stuff into one packet
1289 * using RLE and VLI. */
1290 do {
1291 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(mdev, c->bit_offset)
1292 : _drbd_bm_find_next(mdev, c->bit_offset);
1293 if (tmp == -1UL)
1294 tmp = c->bm_bits;
1295 rl = tmp - c->bit_offset;
1296
1297 if (toggle == 2) { /* first iteration */
1298 if (rl == 0) {
1299 /* the first checked bit was set,
1300 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001301 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001302 /* but skip encoding of zero run length */
1303 toggle = !toggle;
1304 continue;
1305 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001306 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001307 }
1308
1309 /* paranoia: catch zero runlength.
1310 * can only happen if bitmap is modified while we scan it. */
1311 if (rl == 0) {
1312 dev_err(DEV, "unexpected zero runlength while encoding bitmap "
1313 "t:%u bo:%lu\n", toggle, c->bit_offset);
1314 return -1;
1315 }
1316
1317 bits = vli_encode_bits(&bs, rl);
1318 if (bits == -ENOBUFS) /* buffer full */
1319 break;
1320 if (bits <= 0) {
1321 dev_err(DEV, "error while encoding bitmap: %d\n", bits);
1322 return 0;
1323 }
1324
1325 toggle = !toggle;
1326 plain_bits += rl;
1327 c->bit_offset = tmp;
1328 } while (c->bit_offset < c->bm_bits);
1329
1330 len = bs.cur.b - p->code + !!bs.cur.bit;
1331
1332 if (plain_bits < (len << 3)) {
1333 /* incompressible with this method.
1334 * we need to rewind both word and bit position. */
1335 c->bit_offset -= plain_bits;
1336 bm_xfer_ctx_bit_to_word_offset(c);
1337 c->bit_offset = c->word_offset * BITS_PER_LONG;
1338 return 0;
1339 }
1340
1341 /* RLE + VLI was able to compress it just fine.
1342 * update c->word_offset. */
1343 bm_xfer_ctx_bit_to_word_offset(c);
1344
1345 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001346 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001347
1348 return len;
1349}
1350
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001351/**
1352 * send_bitmap_rle_or_plain
1353 *
1354 * Return 0 when done, 1 when another iteration is needed, and a negative error
1355 * code upon failure.
1356 */
1357static int
Andreas Gruenbacher79ed9bd2011-03-24 21:31:38 +01001358send_bitmap_rle_or_plain(struct drbd_conf *mdev, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001359{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001360 struct drbd_socket *sock = &mdev->tconn->data;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001361 unsigned int header_size = drbd_header_size(mdev->tconn);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001362 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001363 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001364
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001365 len = fill_bitmap_rle_bits(mdev, p,
1366 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001367 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001368 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001369
1370 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001371 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001372 err = __send_command(mdev->tconn, mdev->vnr, sock,
1373 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1374 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001375 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001376 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001377
1378 if (c->bit_offset >= c->bm_bits)
1379 len = 0; /* DONE */
1380 } else {
1381 /* was not compressible.
1382 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001383 unsigned int data_size;
1384 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001385 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001386
1387 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001388 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001389 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001390 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001391 if (len)
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001392 drbd_bm_get_lel(mdev, c->word_offset, num_words, p);
1393 err = __send_command(mdev->tconn, mdev->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001394 c->word_offset += num_words;
1395 c->bit_offset = c->word_offset * BITS_PER_LONG;
1396
1397 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001398 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001399
1400 if (c->bit_offset > c->bm_bits)
1401 c->bit_offset = c->bm_bits;
1402 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001403 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001404 if (len == 0) {
1405 INFO_bm_xfer_stats(mdev, "send", c);
1406 return 0;
1407 } else
1408 return 1;
1409 }
1410 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001411}
1412
1413/* See the comment at receive_bitmap() */
Andreas Gruenbacher058820c2011-03-22 16:03:43 +01001414static int _drbd_send_bitmap(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001415{
1416 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001417 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001418
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001419 if (!expect(mdev->bitmap))
1420 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001421
Philipp Reisnerb411b362009-09-25 16:07:19 -07001422 if (get_ldev(mdev)) {
1423 if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC)) {
1424 dev_info(DEV, "Writing the whole bitmap, MDF_FullSync was set.\n");
1425 drbd_bm_set_all(mdev);
1426 if (drbd_bm_write(mdev)) {
1427 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1428 * but otherwise process as per normal - need to tell other
1429 * side that a full resync is required! */
1430 dev_err(DEV, "Failed to write bitmap to disk!\n");
1431 } else {
1432 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
1433 drbd_md_sync(mdev);
1434 }
1435 }
1436 put_ldev(mdev);
1437 }
1438
1439 c = (struct bm_xfer_ctx) {
1440 .bm_bits = drbd_bm_bits(mdev),
1441 .bm_words = drbd_bm_words(mdev),
1442 };
1443
1444 do {
Andreas Gruenbacher79ed9bd2011-03-24 21:31:38 +01001445 err = send_bitmap_rle_or_plain(mdev, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001446 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001447
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001448 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001449}
1450
1451int drbd_send_bitmap(struct drbd_conf *mdev)
1452{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001453 struct drbd_socket *sock = &mdev->tconn->data;
1454 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001455
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001456 mutex_lock(&sock->mutex);
1457 if (sock->socket)
1458 err = !_drbd_send_bitmap(mdev);
1459 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001460 return err;
1461}
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001462
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001463void drbd_send_b_ack(struct drbd_tconn *tconn, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001464{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001465 struct drbd_socket *sock;
1466 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001467
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001468 if (tconn->cstate < C_WF_REPORT_PARAMS)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001469 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001470
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001471 sock = &tconn->meta;
1472 p = conn_prepare_command(tconn, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001473 if (!p)
1474 return;
1475 p->barrier = barrier_nr;
1476 p->set_size = cpu_to_be32(set_size);
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001477 conn_send_command(tconn, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001478}
1479
1480/**
1481 * _drbd_send_ack() - Sends an ack packet
1482 * @mdev: DRBD device.
1483 * @cmd: Packet command code.
1484 * @sector: sector, needs to be in big endian byte order
1485 * @blksize: size in byte, needs to be in big endian byte order
1486 * @block_id: Id, big endian byte order
1487 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001488static int _drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
1489 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001490{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001491 struct drbd_socket *sock;
1492 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001493
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001494 if (mdev->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001495 return -EIO;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001496
1497 sock = &mdev->tconn->meta;
1498 p = drbd_prepare_command(mdev, sock);
1499 if (!p)
1500 return -EIO;
1501 p->sector = sector;
1502 p->block_id = block_id;
1503 p->blksize = blksize;
1504 p->seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
1505 return drbd_send_command(mdev, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001506}
1507
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001508/* dp->sector and dp->block_id already/still in network byte order,
1509 * data_size is payload size according to dp->head,
1510 * and may need to be corrected for digest size. */
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001511void drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packet cmd,
1512 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001513{
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02001514 if (mdev->tconn->peer_integrity_tfm)
1515 data_size -= crypto_hash_digestsize(mdev->tconn->peer_integrity_tfm);
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001516 _drbd_send_ack(mdev, cmd, dp->sector, cpu_to_be32(data_size),
1517 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001518}
1519
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001520void drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packet cmd,
1521 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001522{
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001523 _drbd_send_ack(mdev, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001524}
1525
1526/**
1527 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001528 * @mdev: DRBD device
1529 * @cmd: packet command code
1530 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001531 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001532int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001533 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001534{
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001535 return _drbd_send_ack(mdev, cmd,
1536 cpu_to_be64(peer_req->i.sector),
1537 cpu_to_be32(peer_req->i.size),
1538 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001539}
1540
1541/* This function misuses the block_id field to signal if the blocks
1542 * are is sync or not. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001543int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001544 sector_t sector, int blksize, u64 block_id)
1545{
Andreas Gruenbacherfa79abd2011-03-16 01:31:39 +01001546 return _drbd_send_ack(mdev, cmd,
1547 cpu_to_be64(sector),
1548 cpu_to_be32(blksize),
1549 cpu_to_be64(block_id));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001550}
1551
1552int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1553 sector_t sector, int size, u64 block_id)
1554{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001555 struct drbd_socket *sock;
1556 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001557
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001558 sock = &mdev->tconn->data;
1559 p = drbd_prepare_command(mdev, sock);
1560 if (!p)
1561 return -EIO;
1562 p->sector = cpu_to_be64(sector);
1563 p->block_id = block_id;
1564 p->blksize = cpu_to_be32(size);
1565 return drbd_send_command(mdev, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001566}
1567
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001568int drbd_send_drequest_csum(struct drbd_conf *mdev, sector_t sector, int size,
1569 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001570{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001571 struct drbd_socket *sock;
1572 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001573
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001574 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001575
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001576 sock = &mdev->tconn->data;
1577 p = drbd_prepare_command(mdev, sock);
1578 if (!p)
1579 return -EIO;
1580 p->sector = cpu_to_be64(sector);
1581 p->block_id = ID_SYNCER /* unused */;
1582 p->blksize = cpu_to_be32(size);
1583 return drbd_send_command(mdev, sock, cmd, sizeof(*p),
1584 digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001585}
1586
1587int drbd_send_ov_request(struct drbd_conf *mdev, sector_t sector, int size)
1588{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001589 struct drbd_socket *sock;
1590 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001591
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001592 sock = &mdev->tconn->data;
1593 p = drbd_prepare_command(mdev, sock);
1594 if (!p)
1595 return -EIO;
1596 p->sector = cpu_to_be64(sector);
1597 p->block_id = ID_SYNCER /* unused */;
1598 p->blksize = cpu_to_be32(size);
1599 return drbd_send_command(mdev, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001600}
1601
1602/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001603 * returns false if we should retry,
1604 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001605 */
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001606static int we_should_drop_the_connection(struct drbd_tconn *tconn, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001607{
1608 int drop_it;
1609 /* long elapsed = (long)(jiffies - mdev->last_received); */
1610
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001611 drop_it = tconn->meta.socket == sock
1612 || !tconn->asender.task
1613 || get_t_state(&tconn->asender) != RUNNING
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001614 || tconn->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001615
1616 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001617 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001618
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001619 drop_it = !--tconn->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001620 if (!drop_it) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001621 conn_err(tconn, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1622 current->comm, current->pid, tconn->ko_count);
1623 request_ping(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001624 }
1625
1626 return drop_it; /* && (mdev->state == R_PRIMARY) */;
1627}
1628
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001629static void drbd_update_congested(struct drbd_tconn *tconn)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001630{
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001631 struct sock *sk = tconn->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001632 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001633 set_bit(NET_CONGESTED, &tconn->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001634}
1635
Philipp Reisnerb411b362009-09-25 16:07:19 -07001636/* The idea of sendpage seems to be to put some kind of reference
1637 * to the page into the skb, and to hand it over to the NIC. In
1638 * this process get_page() gets called.
1639 *
1640 * As soon as the page was really sent over the network put_page()
1641 * gets called by some part of the network layer. [ NIC driver? ]
1642 *
1643 * [ get_page() / put_page() increment/decrement the count. If count
1644 * reaches 0 the page will be freed. ]
1645 *
1646 * This works nicely with pages from FSs.
1647 * But this means that in protocol A we might signal IO completion too early!
1648 *
1649 * In order not to corrupt data during a resync we must make sure
1650 * that we do not reuse our own buffer pages (EEs) to early, therefore
1651 * we have the net_ee list.
1652 *
1653 * XFS seems to have problems, still, it submits pages with page_count == 0!
1654 * As a workaround, we disable sendpage on pages
1655 * with page_count == 0 or PageSlab.
1656 */
1657static int _drbd_no_send_page(struct drbd_conf *mdev, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001658 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001659{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001660 struct socket *socket;
1661 void *addr;
1662 int err;
1663
1664 socket = mdev->tconn->data.socket;
1665 addr = kmap(page) + offset;
1666 err = drbd_send_all(mdev->tconn, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001667 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001668 if (!err)
1669 mdev->send_cnt += size >> 9;
1670 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001671}
1672
1673static int _drbd_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001674 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001675{
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001676 struct socket *socket = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001677 mm_segment_t oldfs = get_fs();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001678 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001679 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001680
1681 /* e.g. XFS meta- & log-data is in slab pages, which have a
1682 * page_count of 0 and/or have PageSlab() set.
1683 * we cannot use send_page for those, as that does get_page();
1684 * put_page(); and would cause either a VM_BUG directly, or
1685 * __page_cache_release a page that would actually still be referenced
1686 * by someone, leading to some obscure delayed Oops somewhere else. */
1687 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001688 return _drbd_no_send_page(mdev, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001689
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001690 msg_flags |= MSG_NOSIGNAL;
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001691 drbd_update_congested(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001692 set_fs(KERNEL_DS);
1693 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001694 int sent;
1695
1696 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001697 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001698 if (sent == -EAGAIN) {
1699 if (we_should_drop_the_connection(mdev->tconn, socket))
1700 break;
1701 continue;
1702 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001703 dev_warn(DEV, "%s: size=%d len=%d sent=%d\n",
1704 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001705 if (sent < 0)
1706 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001707 break;
1708 }
1709 len -= sent;
1710 offset += sent;
1711 } while (len > 0 /* THINK && mdev->cstate >= C_CONNECTED*/);
1712 set_fs(oldfs);
Philipp Reisner01a311a2011-02-07 14:30:33 +01001713 clear_bit(NET_CONGESTED, &mdev->tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001714
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001715 if (len == 0) {
1716 err = 0;
1717 mdev->send_cnt += size >> 9;
1718 }
1719 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001720}
1721
1722static int _drbd_send_bio(struct drbd_conf *mdev, struct bio *bio)
1723{
1724 struct bio_vec *bvec;
1725 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001726 /* hint all but last page with MSG_MORE */
Lars Ellenberg4b8514e2012-03-26 16:12:49 +02001727 bio_for_each_segment(bvec, bio, i) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001728 int err;
1729
1730 err = _drbd_no_send_page(mdev, bvec->bv_page,
1731 bvec->bv_offset, bvec->bv_len,
1732 i == bio->bi_vcnt - 1 ? 0 : MSG_MORE);
1733 if (err)
1734 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001735 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001736 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001737}
1738
1739static int _drbd_send_zc_bio(struct drbd_conf *mdev, struct bio *bio)
1740{
1741 struct bio_vec *bvec;
1742 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001743 /* hint all but last page with MSG_MORE */
Lars Ellenberg4b8514e2012-03-26 16:12:49 +02001744 bio_for_each_segment(bvec, bio, i) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001745 int err;
1746
1747 err = _drbd_send_page(mdev, bvec->bv_page,
1748 bvec->bv_offset, bvec->bv_len,
1749 i == bio->bi_vcnt - 1 ? 0 : MSG_MORE);
1750 if (err)
1751 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001752 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001753 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001754}
1755
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001756static int _drbd_send_zc_ee(struct drbd_conf *mdev,
1757 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001758{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001759 struct page *page = peer_req->pages;
1760 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001761 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001762
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001763 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001764 page_chain_for_each(page) {
1765 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001766
1767 err = _drbd_send_page(mdev, page, 0, l,
1768 page_chain_next(page) ? MSG_MORE : 0);
1769 if (err)
1770 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001771 len -= l;
1772 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001773 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001774}
1775
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001776static u32 bio_flags_to_wire(struct drbd_conf *mdev, unsigned long bi_rw)
1777{
Philipp Reisner31890f42011-01-19 14:12:51 +01001778 if (mdev->tconn->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001779 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001780 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1781 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1782 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1783 else
Jens Axboe721a9602011-03-09 11:56:30 +01001784 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001785}
1786
Philipp Reisnerb411b362009-09-25 16:07:19 -07001787/* Used to send write requests
1788 * R_PRIMARY -> Peer (P_DATA)
1789 */
1790int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
1791{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001792 struct drbd_socket *sock;
1793 struct p_data *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001794 unsigned int dp_flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001795 int dgs;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001796 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001797
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001798 sock = &mdev->tconn->data;
1799 p = drbd_prepare_command(mdev, sock);
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001800 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001801
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001802 if (!p)
1803 return -EIO;
1804 p->sector = cpu_to_be64(req->i.sector);
1805 p->block_id = (unsigned long)req;
Lars Ellenberg5cdb0bf32012-03-26 16:21:25 +02001806 p->seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001807 dp_flags = bio_flags_to_wire(mdev, req->master_bio->bi_rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001808 if (mdev->state.conn >= C_SYNC_SOURCE &&
1809 mdev->state.conn <= C_PAUSED_SYNC_T)
1810 dp_flags |= DP_MAY_SET_IN_SYNC;
Philipp Reisner303d1442011-04-13 16:24:47 -07001811 if (mdev->tconn->agreed_pro_version >= 100) {
1812 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1813 dp_flags |= DP_SEND_RECEIVE_ACK;
1814 if (req->rq_state & RQ_EXP_WRITE_ACK)
1815 dp_flags |= DP_SEND_WRITE_ACK;
1816 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001817 p->dp_flags = cpu_to_be32(dp_flags);
1818 if (dgs)
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001819 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001820 err = __send_command(mdev->tconn, mdev->vnr, sock, P_DATA, sizeof(*p) + dgs, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001821 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001822 /* For protocol A, we have to memcpy the payload into
1823 * socket buffers, as we may complete right away
1824 * as soon as we handed it over to tcp, at which point the data
1825 * pages may become invalid.
1826 *
1827 * For data-integrity enabled, we copy it as well, so we can be
1828 * sure that even if the bio pages may still be modified, it
1829 * won't change the data on the wire, thus if the digest checks
1830 * out ok after sending on this side, but does not fit on the
1831 * receiving side, we sure have detected corruption elsewhere.
1832 */
Philipp Reisner303d1442011-04-13 16:24:47 -07001833 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || dgs)
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001834 err = _drbd_send_bio(mdev, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001835 else
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001836 err = _drbd_send_zc_bio(mdev, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001837
1838 /* double check digest, sometimes buffers have been modified in flight. */
1839 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001840 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001841 * currently supported in kernel crypto. */
1842 unsigned char digest[64];
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001843 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001844 if (memcmp(p + 1, digest, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001845 dev_warn(DEV,
1846 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001847 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001848 }
1849 } /* else if (dgs > 64) {
1850 ... Be noisy about digest too large ...
1851 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001852 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001853 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001854
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001855 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001856}
1857
1858/* answer packet, used to send data back for read requests:
1859 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1860 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1861 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001862int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001863 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001864{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001865 struct drbd_socket *sock;
1866 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001867 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001868 int dgs;
1869
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001870 sock = &mdev->tconn->data;
1871 p = drbd_prepare_command(mdev, sock);
1872
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001873 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001874
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001875 if (!p)
1876 return -EIO;
1877 p->sector = cpu_to_be64(peer_req->i.sector);
1878 p->block_id = peer_req->block_id;
1879 p->seq_num = 0; /* unused */
Lars Ellenbergb17f33c2012-02-08 15:32:51 +01001880 p->dp_flags = 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001881 if (dgs)
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001882 drbd_csum_ee(mdev, mdev->tconn->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001883 err = __send_command(mdev->tconn, mdev->vnr, sock, cmd, sizeof(*p) + dgs, NULL, peer_req->i.size);
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001884 if (!err)
1885 err = _drbd_send_zc_ee(mdev, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001886 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001887
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001888 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001889}
1890
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +01001891int drbd_send_out_of_sync(struct drbd_conf *mdev, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001892{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001893 struct drbd_socket *sock;
1894 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001895
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001896 sock = &mdev->tconn->data;
1897 p = drbd_prepare_command(mdev, sock);
1898 if (!p)
1899 return -EIO;
1900 p->sector = cpu_to_be64(req->i.sector);
1901 p->blksize = cpu_to_be32(req->i.size);
1902 return drbd_send_command(mdev, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001903}
1904
Philipp Reisnerb411b362009-09-25 16:07:19 -07001905/*
1906 drbd_send distinguishes two cases:
1907
1908 Packets sent via the data socket "sock"
1909 and packets sent via the meta data socket "msock"
1910
1911 sock msock
1912 -----------------+-------------------------+------------------------------
1913 timeout conf.timeout / 2 conf.timeout / 2
1914 timeout action send a ping via msock Abort communication
1915 and close all sockets
1916*/
1917
1918/*
1919 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1920 */
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001921int drbd_send(struct drbd_tconn *tconn, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001922 void *buf, size_t size, unsigned msg_flags)
1923{
1924 struct kvec iov;
1925 struct msghdr msg;
1926 int rv, sent = 0;
1927
1928 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001929 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001930
1931 /* THINK if (signal_pending) return ... ? */
1932
1933 iov.iov_base = buf;
1934 iov.iov_len = size;
1935
1936 msg.msg_name = NULL;
1937 msg.msg_namelen = 0;
1938 msg.msg_control = NULL;
1939 msg.msg_controllen = 0;
1940 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1941
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001942 if (sock == tconn->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001943 rcu_read_lock();
1944 tconn->ko_count = rcu_dereference(tconn->net_conf)->ko_count;
1945 rcu_read_unlock();
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001946 drbd_update_congested(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001947 }
1948 do {
1949 /* STRANGE
1950 * tcp_sendmsg does _not_ use its size parameter at all ?
1951 *
1952 * -EAGAIN on timeout, -EINTR on signal.
1953 */
1954/* THINK
1955 * do we need to block DRBD_SIG if sock == &meta.socket ??
1956 * otherwise wake_asender() might interrupt some send_*Ack !
1957 */
1958 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1959 if (rv == -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001960 if (we_should_drop_the_connection(tconn, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001961 break;
1962 else
1963 continue;
1964 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001965 if (rv == -EINTR) {
1966 flush_signals(current);
1967 rv = 0;
1968 }
1969 if (rv < 0)
1970 break;
1971 sent += rv;
1972 iov.iov_base += rv;
1973 iov.iov_len -= rv;
1974 } while (sent < size);
1975
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001976 if (sock == tconn->data.socket)
1977 clear_bit(NET_CONGESTED, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001978
1979 if (rv <= 0) {
1980 if (rv != -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001981 conn_err(tconn, "%s_sendmsg returned %d\n",
1982 sock == tconn->meta.socket ? "msock" : "sock",
1983 rv);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001984 conn_request_state(tconn, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001985 } else
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001986 conn_request_state(tconn, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001987 }
1988
1989 return sent;
1990}
1991
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001992/**
1993 * drbd_send_all - Send an entire buffer
1994 *
1995 * Returns 0 upon success and a negative error value otherwise.
1996 */
1997int drbd_send_all(struct drbd_tconn *tconn, struct socket *sock, void *buffer,
1998 size_t size, unsigned msg_flags)
1999{
2000 int err;
2001
2002 err = drbd_send(tconn, sock, buffer, size, msg_flags);
2003 if (err < 0)
2004 return err;
2005 if (err != size)
2006 return -EIO;
2007 return 0;
2008}
2009
Philipp Reisnerb411b362009-09-25 16:07:19 -07002010static int drbd_open(struct block_device *bdev, fmode_t mode)
2011{
2012 struct drbd_conf *mdev = bdev->bd_disk->private_data;
2013 unsigned long flags;
2014 int rv = 0;
2015
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002016 mutex_lock(&drbd_main_mutex);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002017 spin_lock_irqsave(&mdev->tconn->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002018 /* to have a stable mdev->state.role
2019 * and no race with updating open_cnt */
2020
2021 if (mdev->state.role != R_PRIMARY) {
2022 if (mode & FMODE_WRITE)
2023 rv = -EROFS;
2024 else if (!allow_oos)
2025 rv = -EMEDIUMTYPE;
2026 }
2027
2028 if (!rv)
2029 mdev->open_cnt++;
Philipp Reisner87eeee42011-01-19 14:16:30 +01002030 spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002031 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002032
2033 return rv;
2034}
2035
2036static int drbd_release(struct gendisk *gd, fmode_t mode)
2037{
2038 struct drbd_conf *mdev = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002039 mutex_lock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002040 mdev->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002041 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002042 return 0;
2043}
2044
Philipp Reisnerb411b362009-09-25 16:07:19 -07002045static void drbd_set_defaults(struct drbd_conf *mdev)
2046{
Lars Ellenbergf3990022011-03-23 14:31:09 +01002047 /* Beware! The actual layout differs
2048 * between big endian and little endian */
Philipp Reisnerda9fbc22011-03-29 10:52:01 +02002049 mdev->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002050 { .role = R_SECONDARY,
2051 .peer = R_UNKNOWN,
2052 .conn = C_STANDALONE,
2053 .disk = D_DISKLESS,
2054 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07002055 } };
2056}
2057
2058void drbd_init_set_defaults(struct drbd_conf *mdev)
2059{
2060 /* the memset(,0,) did most of this.
2061 * note: only assignments, no allocation in here */
2062
2063 drbd_set_defaults(mdev);
2064
Philipp Reisnerb411b362009-09-25 16:07:19 -07002065 atomic_set(&mdev->ap_bio_cnt, 0);
2066 atomic_set(&mdev->ap_pending_cnt, 0);
2067 atomic_set(&mdev->rs_pending_cnt, 0);
2068 atomic_set(&mdev->unacked_cnt, 0);
2069 atomic_set(&mdev->local_cnt, 0);
Lars Ellenberg435f0742010-09-06 12:30:25 +02002070 atomic_set(&mdev->pp_in_use_by_net, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02002071 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002072 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner759fbdf2010-10-26 16:02:27 +02002073 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisnercdfda632011-07-05 15:38:59 +02002074 atomic_set(&mdev->md_io_in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002075
Philipp Reisner8410da8f02011-02-11 20:11:10 +01002076 mutex_init(&mdev->own_state_mutex);
2077 mdev->state_mutex = &mdev->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002078
Philipp Reisnerb411b362009-09-25 16:07:19 -07002079 spin_lock_init(&mdev->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002080 spin_lock_init(&mdev->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002081
2082 INIT_LIST_HEAD(&mdev->active_ee);
2083 INIT_LIST_HEAD(&mdev->sync_ee);
2084 INIT_LIST_HEAD(&mdev->done_ee);
2085 INIT_LIST_HEAD(&mdev->read_ee);
2086 INIT_LIST_HEAD(&mdev->net_ee);
2087 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002088 INIT_LIST_HEAD(&mdev->resync_work.list);
2089 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002090 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002091 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02002092 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002093 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02002094
Philipp Reisner794abb72010-12-27 11:51:23 +01002095 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002096 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002097 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002098 mdev->md_sync_work.cb = w_md_sync;
2099 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01002100 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01002101
2102 mdev->resync_work.mdev = mdev;
2103 mdev->unplug_work.mdev = mdev;
2104 mdev->go_diskless.mdev = mdev;
2105 mdev->md_sync_work.mdev = mdev;
2106 mdev->bm_io_work.w.mdev = mdev;
2107 mdev->start_resync_work.mdev = mdev;
2108
Philipp Reisnerb411b362009-09-25 16:07:19 -07002109 init_timer(&mdev->resync_timer);
2110 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01002111 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01002112 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002113 mdev->resync_timer.function = resync_timer_fn;
2114 mdev->resync_timer.data = (unsigned long) mdev;
2115 mdev->md_sync_timer.function = md_sync_timer_fn;
2116 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01002117 mdev->start_resync_timer.function = start_resync_timer_fn;
2118 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01002119 mdev->request_timer.function = request_timer_fn;
2120 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002121
2122 init_waitqueue_head(&mdev->misc_wait);
2123 init_waitqueue_head(&mdev->state_wait);
2124 init_waitqueue_head(&mdev->ee_wait);
2125 init_waitqueue_head(&mdev->al_wait);
2126 init_waitqueue_head(&mdev->seq_wait);
2127
Philipp Reisnerb411b362009-09-25 16:07:19 -07002128 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02002129 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
2130 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002131}
2132
2133void drbd_mdev_cleanup(struct drbd_conf *mdev)
2134{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002135 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002136 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002137 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002138 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002139
Philipp Reisnerb411b362009-09-25 16:07:19 -07002140 mdev->al_writ_cnt =
2141 mdev->bm_writ_cnt =
2142 mdev->read_cnt =
2143 mdev->recv_cnt =
2144 mdev->send_cnt =
2145 mdev->writ_cnt =
2146 mdev->p_size =
2147 mdev->rs_start =
2148 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002149 mdev->rs_failed = 0;
2150 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002151 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002152 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
2153 mdev->rs_mark_left[i] = 0;
2154 mdev->rs_mark_time[i] = 0;
2155 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01002156 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002157
2158 drbd_set_my_capacity(mdev, 0);
2159 if (mdev->bitmap) {
2160 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01002161 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002162 drbd_bm_cleanup(mdev);
2163 }
2164
Philipp Reisner1d041222011-04-22 15:20:23 +02002165 drbd_free_bc(mdev->ldev);
2166 mdev->ldev = NULL;
2167
Philipp Reisner07782862010-08-31 12:00:50 +02002168 clear_bit(AL_SUSPENDED, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002169
Philipp Reisnerb411b362009-09-25 16:07:19 -07002170 D_ASSERT(list_empty(&mdev->active_ee));
2171 D_ASSERT(list_empty(&mdev->sync_ee));
2172 D_ASSERT(list_empty(&mdev->done_ee));
2173 D_ASSERT(list_empty(&mdev->read_ee));
2174 D_ASSERT(list_empty(&mdev->net_ee));
2175 D_ASSERT(list_empty(&mdev->resync_reads));
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01002176 D_ASSERT(list_empty(&mdev->tconn->sender_work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002177 D_ASSERT(list_empty(&mdev->resync_work.list));
2178 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002179 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002180
2181 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002182}
2183
2184
2185static void drbd_destroy_mempools(void)
2186{
2187 struct page *page;
2188
2189 while (drbd_pp_pool) {
2190 page = drbd_pp_pool;
2191 drbd_pp_pool = (struct page *)page_private(page);
2192 __free_page(page);
2193 drbd_pp_vacant--;
2194 }
2195
2196 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
2197
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002198 if (drbd_md_io_bio_set)
2199 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg35abf592011-02-23 12:39:46 +01002200 if (drbd_md_io_page_pool)
2201 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002202 if (drbd_ee_mempool)
2203 mempool_destroy(drbd_ee_mempool);
2204 if (drbd_request_mempool)
2205 mempool_destroy(drbd_request_mempool);
2206 if (drbd_ee_cache)
2207 kmem_cache_destroy(drbd_ee_cache);
2208 if (drbd_request_cache)
2209 kmem_cache_destroy(drbd_request_cache);
2210 if (drbd_bm_ext_cache)
2211 kmem_cache_destroy(drbd_bm_ext_cache);
2212 if (drbd_al_ext_cache)
2213 kmem_cache_destroy(drbd_al_ext_cache);
2214
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002215 drbd_md_io_bio_set = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002216 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002217 drbd_ee_mempool = NULL;
2218 drbd_request_mempool = NULL;
2219 drbd_ee_cache = NULL;
2220 drbd_request_cache = NULL;
2221 drbd_bm_ext_cache = NULL;
2222 drbd_al_ext_cache = NULL;
2223
2224 return;
2225}
2226
2227static int drbd_create_mempools(void)
2228{
2229 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01002230 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002231 int i;
2232
2233 /* prepare our caches and mempools */
2234 drbd_request_mempool = NULL;
2235 drbd_ee_cache = NULL;
2236 drbd_request_cache = NULL;
2237 drbd_bm_ext_cache = NULL;
2238 drbd_al_ext_cache = NULL;
2239 drbd_pp_pool = NULL;
Lars Ellenberg35abf592011-02-23 12:39:46 +01002240 drbd_md_io_page_pool = NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002241 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002242
2243 /* caches */
2244 drbd_request_cache = kmem_cache_create(
2245 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2246 if (drbd_request_cache == NULL)
2247 goto Enomem;
2248
2249 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002250 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002251 if (drbd_ee_cache == NULL)
2252 goto Enomem;
2253
2254 drbd_bm_ext_cache = kmem_cache_create(
2255 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2256 if (drbd_bm_ext_cache == NULL)
2257 goto Enomem;
2258
2259 drbd_al_ext_cache = kmem_cache_create(
2260 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2261 if (drbd_al_ext_cache == NULL)
2262 goto Enomem;
2263
2264 /* mempools */
Lars Ellenbergda4a75d2011-02-23 17:02:01 +01002265 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2266 if (drbd_md_io_bio_set == NULL)
2267 goto Enomem;
2268
Lars Ellenberg35abf592011-02-23 12:39:46 +01002269 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2270 if (drbd_md_io_page_pool == NULL)
2271 goto Enomem;
2272
Philipp Reisnerb411b362009-09-25 16:07:19 -07002273 drbd_request_mempool = mempool_create(number,
2274 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2275 if (drbd_request_mempool == NULL)
2276 goto Enomem;
2277
2278 drbd_ee_mempool = mempool_create(number,
2279 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002280 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002281 goto Enomem;
2282
2283 /* drbd's page pool */
2284 spin_lock_init(&drbd_pp_lock);
2285
2286 for (i = 0; i < number; i++) {
2287 page = alloc_page(GFP_HIGHUSER);
2288 if (!page)
2289 goto Enomem;
2290 set_page_private(page, (unsigned long)drbd_pp_pool);
2291 drbd_pp_pool = page;
2292 }
2293 drbd_pp_vacant = number;
2294
2295 return 0;
2296
2297Enomem:
2298 drbd_destroy_mempools(); /* in case we allocated some */
2299 return -ENOMEM;
2300}
2301
2302static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2303 void *unused)
2304{
2305 /* just so we have it. you never know what interesting things we
2306 * might want to do here some day...
2307 */
2308
2309 return NOTIFY_DONE;
2310}
2311
2312static struct notifier_block drbd_notifier = {
2313 .notifier_call = drbd_notify_sys,
2314};
2315
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002316static void drbd_release_all_peer_reqs(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002317{
2318 int rr;
2319
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002320 rr = drbd_free_peer_reqs(mdev, &mdev->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002321 if (rr)
2322 dev_err(DEV, "%d EEs in active list found!\n", rr);
2323
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002324 rr = drbd_free_peer_reqs(mdev, &mdev->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002325 if (rr)
2326 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2327
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002328 rr = drbd_free_peer_reqs(mdev, &mdev->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002329 if (rr)
2330 dev_err(DEV, "%d EEs in read list found!\n", rr);
2331
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002332 rr = drbd_free_peer_reqs(mdev, &mdev->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002333 if (rr)
2334 dev_err(DEV, "%d EEs in done list found!\n", rr);
2335
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002336 rr = drbd_free_peer_reqs(mdev, &mdev->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002337 if (rr)
2338 dev_err(DEV, "%d EEs in net list found!\n", rr);
2339}
2340
Philipp Reisner774b3052011-02-22 02:07:03 -05002341/* caution. no locking. */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002342void drbd_minor_destroy(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002343{
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002344 struct drbd_conf *mdev = container_of(kref, struct drbd_conf, kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002345 struct drbd_tconn *tconn = mdev->tconn;
2346
Philipp Reisnercdfda632011-07-05 15:38:59 +02002347 del_timer_sync(&mdev->request_timer);
2348
Philipp Reisnerb411b362009-09-25 16:07:19 -07002349 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002350 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002351 /* end paranoia asserts */
2352
Philipp Reisnerb411b362009-09-25 16:07:19 -07002353 /* cleanup stuff that may have been allocated during
2354 * device (re-)configuration or state changes */
2355
2356 if (mdev->this_bdev)
2357 bdput(mdev->this_bdev);
2358
Philipp Reisner1d041222011-04-22 15:20:23 +02002359 drbd_free_bc(mdev->ldev);
2360 mdev->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002361
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002362 drbd_release_all_peer_reqs(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002363
Philipp Reisnerb411b362009-09-25 16:07:19 -07002364 lc_destroy(mdev->act_log);
2365 lc_destroy(mdev->resync);
2366
2367 kfree(mdev->p_uuid);
2368 /* mdev->p_uuid = NULL; */
2369
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002370 if (mdev->bitmap) /* should no longer be there. */
2371 drbd_bm_cleanup(mdev);
2372 __free_page(mdev->md_io_page);
2373 put_disk(mdev->vdisk);
2374 blk_cleanup_queue(mdev->rq_queue);
Philipp Reisner9958c852011-05-03 16:19:31 +02002375 kfree(mdev->rs_plan_s);
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002376 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002377
2378 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002379}
2380
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002381/* One global retry thread, if we need to push back some bio and have it
2382 * reinserted through our make request function.
2383 */
2384static struct retry_worker {
2385 struct workqueue_struct *wq;
2386 struct work_struct worker;
2387
2388 spinlock_t lock;
2389 struct list_head writes;
2390} retry;
2391
2392static void do_retry(struct work_struct *ws)
2393{
2394 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2395 LIST_HEAD(writes);
2396 struct drbd_request *req, *tmp;
2397
2398 spin_lock_irq(&retry->lock);
2399 list_splice_init(&retry->writes, &writes);
2400 spin_unlock_irq(&retry->lock);
2401
2402 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
2403 struct drbd_conf *mdev = req->w.mdev;
2404 struct bio *bio = req->master_bio;
2405 unsigned long start_time = req->start_time;
2406
2407 /* We have exclusive access to this request object.
2408 * If it had not been RQ_POSTPONED, the code path which queued
2409 * it here would have completed and freed it already.
2410 */
2411 mempool_free(req, drbd_request_mempool);
2412
2413 /* A single suspended or otherwise blocking device may stall
2414 * all others as well. Fortunately, this code path is to
2415 * recover from a situation that "should not happen":
2416 * concurrent writes in multi-primary setup.
2417 * In a "normal" lifecycle, this workqueue is supposed to be
2418 * destroyed without ever doing anything.
2419 * If it turns out to be an issue anyways, we can do per
2420 * resource (replication group) or per device (minor) retry
2421 * workqueues instead.
2422 */
2423
2424 /* We are not just doing generic_make_request(),
2425 * as we want to keep the start_time information. */
2426 do {
2427 inc_ap_bio(mdev);
2428 } while(__drbd_make_request(mdev, bio, start_time));
2429 }
2430}
2431
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002432void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002433{
2434 unsigned long flags;
2435 spin_lock_irqsave(&retry.lock, flags);
2436 list_move_tail(&req->tl_requests, &retry.writes);
2437 spin_unlock_irqrestore(&retry.lock, flags);
2438
2439 /* Drop the extra reference that would otherwise
2440 * have been dropped by complete_master_bio.
2441 * do_retry() needs to grab a new one. */
2442 dec_ap_bio(req->w.mdev);
2443
2444 queue_work(retry.wq, &retry.worker);
2445}
2446
2447
Philipp Reisnerb411b362009-09-25 16:07:19 -07002448static void drbd_cleanup(void)
2449{
2450 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002451 struct drbd_conf *mdev;
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002452 struct drbd_tconn *tconn, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002453
2454 unregister_reboot_notifier(&drbd_notifier);
2455
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002456 /* first remove proc,
2457 * drbdsetup uses it's presence to detect
2458 * whether DRBD is loaded.
2459 * If we would get stuck in proc removal,
2460 * but have netlink already deregistered,
2461 * some drbdsetup commands may wait forever
2462 * for an answer.
2463 */
2464 if (drbd_proc)
2465 remove_proc_entry("drbd", NULL);
2466
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002467 if (retry.wq)
2468 destroy_workqueue(retry.wq);
2469
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002470 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002471
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002472 idr_for_each_entry(&minors, mdev, i) {
2473 idr_remove(&minors, mdev_to_minor(mdev));
2474 idr_remove(&mdev->tconn->volumes, mdev->vnr);
2475 del_gendisk(mdev->vdisk);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002476 /* synchronize_rcu(); No other threads running at this point */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002477 kref_put(&mdev->kref, &drbd_minor_destroy);
2478 }
2479
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002480 /* not _rcu since, no other updater anymore. Genl already unregistered */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002481 list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002482 list_del(&tconn->all_tconn); /* not _rcu no proc, not other threads */
2483 /* synchronize_rcu(); */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002484 kref_put(&tconn->kref, &conn_destroy);
2485 }
Philipp Reisnerff370e52011-04-11 21:10:11 -07002486
Philipp Reisner81a5d602011-02-22 19:53:16 -05002487 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002488 unregister_blkdev(DRBD_MAJOR, "drbd");
2489
Philipp Reisner81a5d602011-02-22 19:53:16 -05002490 idr_destroy(&minors);
2491
Philipp Reisnerb411b362009-09-25 16:07:19 -07002492 printk(KERN_INFO "drbd: module cleanup done.\n");
2493}
2494
2495/**
2496 * drbd_congested() - Callback for pdflush
2497 * @congested_data: User data
2498 * @bdi_bits: Bits pdflush is currently interested in
2499 *
2500 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2501 */
2502static int drbd_congested(void *congested_data, int bdi_bits)
2503{
2504 struct drbd_conf *mdev = congested_data;
2505 struct request_queue *q;
2506 char reason = '-';
2507 int r = 0;
2508
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002509 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002510 /* DRBD has frozen IO */
2511 r = bdi_bits;
2512 reason = 'd';
2513 goto out;
2514 }
2515
2516 if (get_ldev(mdev)) {
2517 q = bdev_get_queue(mdev->ldev->backing_bdev);
2518 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2519 put_ldev(mdev);
2520 if (r)
2521 reason = 'b';
2522 }
2523
Philipp Reisner01a311a2011-02-07 14:30:33 +01002524 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002525 r |= (1 << BDI_async_congested);
2526 reason = reason == 'b' ? 'a' : 'n';
2527 }
2528
2529out:
2530 mdev->congestion_reason = reason;
2531 return r;
2532}
2533
Philipp Reisner6699b652011-02-09 11:10:24 +01002534static void drbd_init_workqueue(struct drbd_work_queue* wq)
2535{
Philipp Reisner6699b652011-02-09 11:10:24 +01002536 spin_lock_init(&wq->q_lock);
2537 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002538 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002539}
2540
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002541struct drbd_tconn *conn_get_by_name(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002542{
2543 struct drbd_tconn *tconn;
2544
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002545 if (!name || !name[0])
2546 return NULL;
2547
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002548 rcu_read_lock();
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002549 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002550 if (!strcmp(tconn->name, name)) {
2551 kref_get(&tconn->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002552 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002553 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002554 }
2555 tconn = NULL;
2556found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002557 rcu_read_unlock();
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002558 return tconn;
2559}
2560
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002561struct drbd_tconn *conn_get_by_addrs(void *my_addr, int my_addr_len,
2562 void *peer_addr, int peer_addr_len)
2563{
2564 struct drbd_tconn *tconn;
2565
2566 rcu_read_lock();
2567 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
2568 if (tconn->my_addr_len == my_addr_len &&
2569 tconn->peer_addr_len == peer_addr_len &&
2570 !memcmp(&tconn->my_addr, my_addr, my_addr_len) &&
2571 !memcmp(&tconn->peer_addr, peer_addr, peer_addr_len)) {
2572 kref_get(&tconn->kref);
2573 goto found;
2574 }
2575 }
2576 tconn = NULL;
2577found:
2578 rcu_read_unlock();
2579 return tconn;
2580}
2581
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002582static int drbd_alloc_socket(struct drbd_socket *socket)
2583{
2584 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2585 if (!socket->rbuf)
2586 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002587 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2588 if (!socket->sbuf)
2589 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002590 return 0;
2591}
2592
2593static void drbd_free_socket(struct drbd_socket *socket)
2594{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002595 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002596 free_page((unsigned long) socket->rbuf);
2597}
2598
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002599void conn_free_crypto(struct drbd_tconn *tconn)
2600{
Philipp Reisner1d041222011-04-22 15:20:23 +02002601 drbd_free_sock(tconn);
2602
2603 crypto_free_hash(tconn->csums_tfm);
2604 crypto_free_hash(tconn->verify_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002605 crypto_free_hash(tconn->cram_hmac_tfm);
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002606 crypto_free_hash(tconn->integrity_tfm);
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002607 crypto_free_hash(tconn->peer_integrity_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002608 kfree(tconn->int_dig_in);
2609 kfree(tconn->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002610
2611 tconn->csums_tfm = NULL;
2612 tconn->verify_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002613 tconn->cram_hmac_tfm = NULL;
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002614 tconn->integrity_tfm = NULL;
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002615 tconn->peer_integrity_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002616 tconn->int_dig_in = NULL;
2617 tconn->int_dig_vv = NULL;
2618}
2619
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002620int set_resource_options(struct drbd_tconn *tconn, struct res_opts *res_opts)
2621{
2622 cpumask_var_t new_cpu_mask;
2623 int err;
2624
2625 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2626 return -ENOMEM;
2627 /*
2628 retcode = ERR_NOMEM;
2629 drbd_msg_put_info("unable to allocate cpumask");
2630 */
2631
2632 /* silently ignore cpu mask on UP kernel */
2633 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
2634 /* FIXME: Get rid of constant 32 here */
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002635 err = bitmap_parse(res_opts->cpu_mask, 32,
2636 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002637 if (err) {
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002638 conn_warn(tconn, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002639 /* retcode = ERR_CPU_MASK_PARSE; */
2640 goto fail;
2641 }
2642 }
2643 tconn->res_opts = *res_opts;
2644 if (!cpumask_equal(tconn->cpu_mask, new_cpu_mask)) {
2645 cpumask_copy(tconn->cpu_mask, new_cpu_mask);
2646 drbd_calc_cpu_mask(tconn);
2647 tconn->receiver.reset_cpu_mask = 1;
2648 tconn->asender.reset_cpu_mask = 1;
2649 tconn->worker.reset_cpu_mask = 1;
2650 }
2651 err = 0;
2652
2653fail:
2654 free_cpumask_var(new_cpu_mask);
2655 return err;
2656
2657}
2658
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002659/* caller must be under genl_lock() */
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002660struct drbd_tconn *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002661{
2662 struct drbd_tconn *tconn;
2663
2664 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2665 if (!tconn)
2666 return NULL;
2667
2668 tconn->name = kstrdup(name, GFP_KERNEL);
2669 if (!tconn->name)
2670 goto fail;
2671
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002672 if (drbd_alloc_socket(&tconn->data))
2673 goto fail;
2674 if (drbd_alloc_socket(&tconn->meta))
2675 goto fail;
2676
Philipp Reisner774b3052011-02-22 02:07:03 -05002677 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2678 goto fail;
2679
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002680 if (set_resource_options(tconn, res_opts))
2681 goto fail;
2682
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002683 if (!tl_init(tconn))
2684 goto fail;
2685
Philipp Reisner12038a32011-11-09 19:18:00 +01002686 tconn->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2687 if (!tconn->current_epoch)
2688 goto fail;
2689 INIT_LIST_HEAD(&tconn->current_epoch->list);
2690 tconn->epochs = 1;
2691 spin_lock_init(&tconn->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002692 tconn->write_ordering = WO_bdev_flush;
2693
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002694 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da8f02011-02-11 20:11:10 +01002695 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002696 spin_lock_init(&tconn->req_lock);
Philipp Reisnera0095502011-05-03 13:14:15 +02002697 mutex_init(&tconn->conf_update);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002698 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002699 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002700
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01002701 drbd_init_workqueue(&tconn->sender_work);
Philipp Reisner6699b652011-02-09 11:10:24 +01002702 mutex_init(&tconn->data.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002703 mutex_init(&tconn->meta.mutex);
2704
Philipp Reisner392c8802011-02-09 10:33:31 +01002705 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2706 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2707 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2708
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002709 kref_init(&tconn->kref);
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002710 list_add_tail_rcu(&tconn->all_tconn, &drbd_tconns);
Philipp Reisner21114382011-01-19 12:26:59 +01002711
2712 return tconn;
2713
2714fail:
Philipp Reisner12038a32011-11-09 19:18:00 +01002715 kfree(tconn->current_epoch);
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01002716 tl_cleanup(tconn);
Philipp Reisner774b3052011-02-22 02:07:03 -05002717 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002718 drbd_free_socket(&tconn->meta);
2719 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002720 kfree(tconn->name);
2721 kfree(tconn);
2722
2723 return NULL;
2724}
2725
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002726void conn_destroy(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002727{
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002728 struct drbd_tconn *tconn = container_of(kref, struct drbd_tconn, kref);
2729
Philipp Reisner12038a32011-11-09 19:18:00 +01002730 if (atomic_read(&tconn->current_epoch->epoch_size) != 0)
2731 conn_err(tconn, "epoch_size:%d\n", atomic_read(&tconn->current_epoch->epoch_size));
2732 kfree(tconn->current_epoch);
2733
Philipp Reisner062e8792011-02-08 11:09:18 +01002734 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002735
Philipp Reisner774b3052011-02-22 02:07:03 -05002736 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002737 drbd_free_socket(&tconn->meta);
2738 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002739 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002740 kfree(tconn->int_dig_in);
2741 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002742 kfree(tconn);
2743}
2744
Philipp Reisner774b3052011-02-22 02:07:03 -05002745enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002746{
2747 struct drbd_conf *mdev;
2748 struct gendisk *disk;
2749 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002750 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002751 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002752 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002753
2754 mdev = minor_to_mdev(minor);
2755 if (mdev)
2756 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002757
2758 /* GFP_KERNEL, we are outside of all write-out paths */
2759 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2760 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002761 return ERR_NOMEM;
2762
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002763 kref_get(&tconn->kref);
Philipp Reisner774b3052011-02-22 02:07:03 -05002764 mdev->tconn = tconn;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002765
Philipp Reisnerb411b362009-09-25 16:07:19 -07002766 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002767 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002768
2769 drbd_init_set_defaults(mdev);
2770
2771 q = blk_alloc_queue(GFP_KERNEL);
2772 if (!q)
2773 goto out_no_q;
2774 mdev->rq_queue = q;
2775 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002776
2777 disk = alloc_disk(1);
2778 if (!disk)
2779 goto out_no_disk;
2780 mdev->vdisk = disk;
2781
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002782 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002783
2784 disk->queue = q;
2785 disk->major = DRBD_MAJOR;
2786 disk->first_minor = minor;
2787 disk->fops = &drbd_ops;
2788 sprintf(disk->disk_name, "drbd%d", minor);
2789 disk->private_data = mdev;
2790
2791 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2792 /* we have no partitions. we contain only ourselves. */
2793 mdev->this_bdev->bd_contains = mdev->this_bdev;
2794
2795 q->backing_dev_info.congested_fn = drbd_congested;
2796 q->backing_dev_info.congested_data = mdev;
2797
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002798 blk_queue_make_request(q, drbd_make_request);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002799 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2800 This triggers a max_bio_size message upon first attach or connect */
2801 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002802 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2803 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002804 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002805
2806 mdev->md_io_page = alloc_page(GFP_KERNEL);
2807 if (!mdev->md_io_page)
2808 goto out_no_io_page;
2809
2810 if (drbd_bm_init(mdev))
2811 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002812 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002813 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002814
Lars Ellenberg8432b312011-03-08 16:11:16 +01002815 if (!idr_pre_get(&minors, GFP_KERNEL))
2816 goto out_no_minor_idr;
2817 if (idr_get_new_above(&minors, mdev, minor, &minor_got))
2818 goto out_no_minor_idr;
2819 if (minor_got != minor) {
2820 err = ERR_MINOR_EXISTS;
2821 drbd_msg_put_info("requested minor exists already");
2822 goto out_idr_remove_minor;
Lars Ellenberg569083c2011-03-07 09:49:02 +01002823 }
2824
Lars Ellenberg8432b312011-03-08 16:11:16 +01002825 if (!idr_pre_get(&tconn->volumes, GFP_KERNEL))
Lars Ellenberg569083c2011-03-07 09:49:02 +01002826 goto out_idr_remove_minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002827 if (idr_get_new_above(&tconn->volumes, mdev, vnr, &vnr_got))
2828 goto out_idr_remove_minor;
2829 if (vnr_got != vnr) {
2830 err = ERR_INVALID_REQUEST;
2831 drbd_msg_put_info("requested volume exists already");
2832 goto out_idr_remove_vol;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002833 }
Philipp Reisner774b3052011-02-22 02:07:03 -05002834 add_disk(disk);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002835 kref_init(&mdev->kref); /* one ref for both idrs and the the add_disk */
Philipp Reisner774b3052011-02-22 02:07:03 -05002836
Philipp Reisner2325eb62011-03-15 16:56:18 +01002837 /* inherit the connection state */
2838 mdev->state.conn = tconn->cstate;
2839 if (mdev->state.conn == C_WF_REPORT_PARAMS)
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002840 drbd_connected(mdev);
Philipp Reisner2325eb62011-03-15 16:56:18 +01002841
Philipp Reisner774b3052011-02-22 02:07:03 -05002842 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002843
Lars Ellenberg569083c2011-03-07 09:49:02 +01002844out_idr_remove_vol:
2845 idr_remove(&tconn->volumes, vnr_got);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002846out_idr_remove_minor:
2847 idr_remove(&minors, minor_got);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002848 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002849out_no_minor_idr:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002850 drbd_bm_cleanup(mdev);
2851out_no_bitmap:
2852 __free_page(mdev->md_io_page);
2853out_no_io_page:
2854 put_disk(disk);
2855out_no_disk:
2856 blk_cleanup_queue(q);
2857out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002858 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002859 kref_put(&tconn->kref, &conn_destroy);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002860 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002861}
2862
Philipp Reisnerb411b362009-09-25 16:07:19 -07002863int __init drbd_init(void)
2864{
2865 int err;
2866
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002867 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002868 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002869 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002870#ifdef MODULE
2871 return -EINVAL;
2872#else
Andreas Gruenbacher46530e82011-05-31 13:08:53 +02002873 minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002874#endif
2875 }
2876
Philipp Reisnerb411b362009-09-25 16:07:19 -07002877 err = register_blkdev(DRBD_MAJOR, "drbd");
2878 if (err) {
2879 printk(KERN_ERR
2880 "drbd: unable to register block device major %d\n",
2881 DRBD_MAJOR);
2882 return err;
2883 }
2884
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002885 err = drbd_genl_register();
2886 if (err) {
2887 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2888 goto fail;
2889 }
2890
2891
Philipp Reisnerb411b362009-09-25 16:07:19 -07002892 register_reboot_notifier(&drbd_notifier);
2893
2894 /*
2895 * allocate all necessary structs
2896 */
2897 err = -ENOMEM;
2898
2899 init_waitqueue_head(&drbd_pp_wait);
2900
2901 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002902 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002903
2904 err = drbd_create_mempools();
2905 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002906 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002907
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002908 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002909 if (!drbd_proc) {
2910 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002911 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002912 }
2913
2914 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002915 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002916
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002917 retry.wq = create_singlethread_workqueue("drbd-reissue");
2918 if (!retry.wq) {
2919 printk(KERN_ERR "drbd: unable to create retry workqueue\n");
2920 goto fail;
2921 }
2922 INIT_WORK(&retry.worker, do_retry);
2923 spin_lock_init(&retry.lock);
2924 INIT_LIST_HEAD(&retry.writes);
2925
Philipp Reisnerb411b362009-09-25 16:07:19 -07002926 printk(KERN_INFO "drbd: initialized. "
2927 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2928 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2929 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2930 printk(KERN_INFO "drbd: registered as block device major %d\n",
2931 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002932
2933 return 0; /* Success! */
2934
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002935fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002936 drbd_cleanup();
2937 if (err == -ENOMEM)
2938 /* currently always the case */
2939 printk(KERN_ERR "drbd: ran out of memory\n");
2940 else
2941 printk(KERN_ERR "drbd: initialization failure\n");
2942 return err;
2943}
2944
2945void drbd_free_bc(struct drbd_backing_dev *ldev)
2946{
2947 if (ldev == NULL)
2948 return;
2949
Tejun Heoe525fd82010-11-13 11:55:17 +01002950 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2951 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002952
2953 kfree(ldev);
2954}
2955
Philipp Reisner360cc742011-02-08 14:29:53 +01002956void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002957{
Philipp Reisner360cc742011-02-08 14:29:53 +01002958 if (tconn->data.socket) {
2959 mutex_lock(&tconn->data.mutex);
2960 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2961 sock_release(tconn->data.socket);
2962 tconn->data.socket = NULL;
2963 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002964 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002965 if (tconn->meta.socket) {
2966 mutex_lock(&tconn->meta.mutex);
2967 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2968 sock_release(tconn->meta.socket);
2969 tconn->meta.socket = NULL;
2970 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002971 }
2972}
2973
Philipp Reisnerb411b362009-09-25 16:07:19 -07002974/* meta data management */
2975
2976struct meta_data_on_disk {
2977 u64 la_size; /* last agreed size. */
2978 u64 uuid[UI_SIZE]; /* UUIDs. */
2979 u64 device_uuid;
2980 u64 reserved_u64_1;
2981 u32 flags; /* MDF */
2982 u32 magic;
2983 u32 md_size_sect;
2984 u32 al_offset; /* offset to this block */
2985 u32 al_nr_extents; /* important for restoring the AL */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002986 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002987 u32 bm_offset; /* offset to the bitmap, from here */
2988 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002989 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2990 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002991
2992} __packed;
2993
2994/**
2995 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2996 * @mdev: DRBD device.
2997 */
2998void drbd_md_sync(struct drbd_conf *mdev)
2999{
3000 struct meta_data_on_disk *buffer;
3001 sector_t sector;
3002 int i;
3003
Lars Ellenbergee15b032010-09-03 10:00:09 +02003004 del_timer(&mdev->md_sync_timer);
3005 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003006 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
3007 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003008
3009 /* We use here D_FAILED and not D_ATTACHING because we try to write
3010 * metadata even if we detach due to a disk failure! */
3011 if (!get_ldev_if_state(mdev, D_FAILED))
3012 return;
3013
Philipp Reisnercdfda632011-07-05 15:38:59 +02003014 buffer = drbd_md_get_buffer(mdev);
3015 if (!buffer)
3016 goto out;
3017
Philipp Reisnerb411b362009-09-25 16:07:19 -07003018 memset(buffer, 0, 512);
3019
3020 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
3021 for (i = UI_CURRENT; i < UI_SIZE; i++)
3022 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
3023 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003024 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003025
3026 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
3027 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
3028 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
3029 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
3030 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
3031
3032 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003033 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003034
3035 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
3036 sector = mdev->ldev->md.md_offset;
3037
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01003038 if (drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003039 /* this was a try anyways ... */
3040 dev_err(DEV, "meta data update failed!\n");
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003041 drbd_chk_io_error(mdev, 1, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003042 }
3043
3044 /* Update mdev->ldev->md.la_size_sect,
3045 * since we updated it on metadata. */
3046 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
3047
Philipp Reisnercdfda632011-07-05 15:38:59 +02003048 drbd_md_put_buffer(mdev);
3049out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07003050 put_ldev(mdev);
3051}
3052
3053/**
3054 * drbd_md_read() - Reads in the meta data super block
3055 * @mdev: DRBD device.
3056 * @bdev: Device from which the meta data should be read in.
3057 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01003058 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003059 * something goes wrong.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003060 */
3061int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
3062{
3063 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003064 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003065 int i, rv = NO_ERROR;
3066
3067 if (!get_ldev_if_state(mdev, D_ATTACHING))
3068 return ERR_IO_MD_DISK;
3069
Philipp Reisnercdfda632011-07-05 15:38:59 +02003070 buffer = drbd_md_get_buffer(mdev);
3071 if (!buffer)
3072 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003073
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01003074 if (drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003075 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003076 called BEFORE disk is attached */
3077 dev_err(DEV, "Error while reading metadata.\n");
3078 rv = ERR_IO_MD_DISK;
3079 goto err;
3080 }
3081
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003082 magic = be32_to_cpu(buffer->magic);
3083 flags = be32_to_cpu(buffer->flags);
3084 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3085 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3086 /* btw: that's Activity Log clean, not "all" clean. */
3087 dev_err(DEV, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
3088 rv = ERR_MD_UNCLEAN;
3089 goto err;
3090 }
3091 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003092 if (magic == DRBD_MD_MAGIC_07)
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003093 dev_err(DEV, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
3094 else
3095 dev_err(DEV, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003096 rv = ERR_MD_INVALID;
3097 goto err;
3098 }
3099 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
3100 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
3101 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
3102 rv = ERR_MD_INVALID;
3103 goto err;
3104 }
3105 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
3106 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
3107 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
3108 rv = ERR_MD_INVALID;
3109 goto err;
3110 }
3111 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
3112 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
3113 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
3114 rv = ERR_MD_INVALID;
3115 goto err;
3116 }
3117
3118 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
3119 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
3120 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
3121 rv = ERR_MD_INVALID;
3122 goto err;
3123 }
3124
3125 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
3126 for (i = UI_CURRENT; i < UI_SIZE; i++)
3127 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3128 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003129 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3130
Philipp Reisner87eeee42011-01-19 14:16:30 +01003131 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003132 if (mdev->state.conn < C_CONNECTED) {
3133 int peer;
3134 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
3135 peer = max_t(int, peer, DRBD_MAX_BIO_SIZE_SAFE);
3136 mdev->peer_max_bio_size = peer;
3137 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003138 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003139
Philipp Reisnerb411b362009-09-25 16:07:19 -07003140 err:
Philipp Reisnercdfda632011-07-05 15:38:59 +02003141 drbd_md_put_buffer(mdev);
3142 out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07003143 put_ldev(mdev);
3144
3145 return rv;
3146}
3147
3148/**
3149 * drbd_md_mark_dirty() - Mark meta data super block as dirty
3150 * @mdev: DRBD device.
3151 *
3152 * Call this function if you change anything that should be written to
3153 * the meta-data super block. This function sets MD_DIRTY, and starts a
3154 * timer that ensures that within five seconds you have to call drbd_md_sync().
3155 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003156#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02003157void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
3158{
3159 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
3160 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
3161 mdev->last_md_mark_dirty.line = line;
3162 mdev->last_md_mark_dirty.func = func;
3163 }
3164}
3165#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07003166void drbd_md_mark_dirty(struct drbd_conf *mdev)
3167{
Lars Ellenbergee15b032010-09-03 10:00:09 +02003168 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003169 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003170}
Lars Ellenbergee15b032010-09-03 10:00:09 +02003171#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003172
3173static void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
3174{
3175 int i;
3176
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003177 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003178 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003179}
3180
3181void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3182{
3183 if (idx == UI_CURRENT) {
3184 if (mdev->state.role == R_PRIMARY)
3185 val |= 1;
3186 else
3187 val &= ~((u64)1);
3188
3189 drbd_set_ed_uuid(mdev, val);
3190 }
3191
3192 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003193 drbd_md_mark_dirty(mdev);
3194}
3195
3196
3197void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3198{
3199 if (mdev->ldev->md.uuid[idx]) {
3200 drbd_uuid_move_history(mdev);
3201 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003202 }
3203 _drbd_uuid_set(mdev, idx, val);
3204}
3205
3206/**
3207 * drbd_uuid_new_current() - Creates a new current UUID
3208 * @mdev: DRBD device.
3209 *
3210 * Creates a new current UUID, and rotates the old current UUID into
3211 * the bitmap slot. Causes an incremental resync upon next connect.
3212 */
3213void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
3214{
3215 u64 val;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003216 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003217
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003218 if (bm_uuid)
3219 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
3220
Philipp Reisnerb411b362009-09-25 16:07:19 -07003221 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003222
3223 get_random_bytes(&val, sizeof(u64));
3224 _drbd_uuid_set(mdev, UI_CURRENT, val);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003225 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003226 /* get it to stable storage _now_ */
3227 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003228}
3229
3230void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
3231{
3232 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
3233 return;
3234
3235 if (val == 0) {
3236 drbd_uuid_move_history(mdev);
3237 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
3238 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003239 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003240 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
3241 if (bm_uuid)
3242 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003243
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003244 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003245 }
3246 drbd_md_mark_dirty(mdev);
3247}
3248
3249/**
3250 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3251 * @mdev: DRBD device.
3252 *
3253 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3254 */
3255int drbd_bmio_set_n_write(struct drbd_conf *mdev)
3256{
3257 int rv = -EIO;
3258
3259 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3260 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
3261 drbd_md_sync(mdev);
3262 drbd_bm_set_all(mdev);
3263
3264 rv = drbd_bm_write(mdev);
3265
3266 if (!rv) {
3267 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
3268 drbd_md_sync(mdev);
3269 }
3270
3271 put_ldev(mdev);
3272 }
3273
3274 return rv;
3275}
3276
3277/**
3278 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3279 * @mdev: DRBD device.
3280 *
3281 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3282 */
3283int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
3284{
3285 int rv = -EIO;
3286
Philipp Reisner07782862010-08-31 12:00:50 +02003287 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003288 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3289 drbd_bm_clear_all(mdev);
3290 rv = drbd_bm_write(mdev);
3291 put_ldev(mdev);
3292 }
3293
3294 return rv;
3295}
3296
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003297static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003298{
3299 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01003300 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003301 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003302
3303 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
3304
Lars Ellenberg02851e92010-12-16 14:47:39 +01003305 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003306 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003307 rv = work->io_fn(mdev);
3308 drbd_bm_unlock(mdev);
3309 put_ldev(mdev);
3310 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003311
Lars Ellenberg4738fa12011-02-21 13:20:55 +01003312 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003313 wake_up(&mdev->misc_wait);
3314
3315 if (work->done)
3316 work->done(mdev, rv);
3317
3318 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
3319 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003320 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003321
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003322 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003323}
3324
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003325void drbd_ldev_destroy(struct drbd_conf *mdev)
3326{
3327 lc_destroy(mdev->resync);
3328 mdev->resync = NULL;
3329 lc_destroy(mdev->act_log);
3330 mdev->act_log = NULL;
3331 __no_warn(local,
3332 drbd_free_bc(mdev->ldev);
3333 mdev->ldev = NULL;);
3334
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003335 clear_bit(GO_DISKLESS, &mdev->flags);
3336}
3337
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003338static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003339{
Philipp Reisner00d56942011-02-09 18:09:48 +01003340 struct drbd_conf *mdev = w->mdev;
3341
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003342 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02003343 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
3344 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003345 * the protected members anymore, though, so once put_ldev reaches zero
3346 * again, it will be safe to free them. */
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003347 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003348 return 0;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003349}
3350
3351void drbd_go_diskless(struct drbd_conf *mdev)
3352{
3353 D_ASSERT(mdev->state.disk == D_FAILED);
3354 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01003355 drbd_queue_work(&mdev->tconn->sender_work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003356}
3357
Philipp Reisnerb411b362009-09-25 16:07:19 -07003358/**
3359 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
3360 * @mdev: DRBD device.
3361 * @io_fn: IO callback to be called when bitmap IO is possible
3362 * @done: callback to be called after the bitmap IO was performed
3363 * @why: Descriptive text of the reason for doing the IO
3364 *
3365 * While IO on the bitmap happens we freeze application IO thus we ensure
3366 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3367 * called from worker context. It MUST NOT be used while a previous such
3368 * work is still pending!
3369 */
3370void drbd_queue_bitmap_io(struct drbd_conf *mdev,
3371 int (*io_fn)(struct drbd_conf *),
3372 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003373 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003374{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003375 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003376
3377 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
3378 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
3379 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
3380 if (mdev->bm_io_work.why)
3381 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
3382 why, mdev->bm_io_work.why);
3383
3384 mdev->bm_io_work.io_fn = io_fn;
3385 mdev->bm_io_work.done = done;
3386 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003387 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003388
Philipp Reisner87eeee42011-01-19 14:16:30 +01003389 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003390 set_bit(BITMAP_IO, &mdev->flags);
3391 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01003392 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01003393 drbd_queue_work(&mdev->tconn->sender_work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003394 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003395 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003396}
3397
3398/**
3399 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
3400 * @mdev: DRBD device.
3401 * @io_fn: IO callback to be called when bitmap IO is possible
3402 * @why: Descriptive text of the reason for doing the IO
3403 *
3404 * freezes application IO while that the actual IO operations runs. This
3405 * functions MAY NOT be called from worker context.
3406 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003407int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
3408 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003409{
3410 int rv;
3411
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003412 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003413
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003414 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3415 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003416
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003417 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003418 rv = io_fn(mdev);
3419 drbd_bm_unlock(mdev);
3420
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003421 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3422 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003423
3424 return rv;
3425}
3426
3427void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3428{
3429 if ((mdev->ldev->md.flags & flag) != flag) {
3430 drbd_md_mark_dirty(mdev);
3431 mdev->ldev->md.flags |= flag;
3432 }
3433}
3434
3435void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3436{
3437 if ((mdev->ldev->md.flags & flag) != 0) {
3438 drbd_md_mark_dirty(mdev);
3439 mdev->ldev->md.flags &= ~flag;
3440 }
3441}
3442int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3443{
3444 return (bdev->md.flags & flag) != 0;
3445}
3446
3447static void md_sync_timer_fn(unsigned long data)
3448{
3449 struct drbd_conf *mdev = (struct drbd_conf *) data;
3450
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01003451 drbd_queue_work_front(&mdev->tconn->sender_work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003452}
3453
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003454static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003455{
Philipp Reisner00d56942011-02-09 18:09:48 +01003456 struct drbd_conf *mdev = w->mdev;
3457
Philipp Reisnerb411b362009-09-25 16:07:19 -07003458 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003459#ifdef DEBUG
3460 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3461 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3462#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003463 drbd_md_sync(mdev);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003464 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003465}
3466
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003467const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003468{
3469 /* THINK may need to become several global tables
3470 * when we want to support more than
3471 * one PRO_VERSION */
3472 static const char *cmdnames[] = {
3473 [P_DATA] = "Data",
3474 [P_DATA_REPLY] = "DataReply",
3475 [P_RS_DATA_REPLY] = "RSDataReply",
3476 [P_BARRIER] = "Barrier",
3477 [P_BITMAP] = "ReportBitMap",
3478 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3479 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3480 [P_UNPLUG_REMOTE] = "UnplugRemote",
3481 [P_DATA_REQUEST] = "DataRequest",
3482 [P_RS_DATA_REQUEST] = "RSDataRequest",
3483 [P_SYNC_PARAM] = "SyncParam",
3484 [P_SYNC_PARAM89] = "SyncParam89",
3485 [P_PROTOCOL] = "ReportProtocol",
3486 [P_UUIDS] = "ReportUUIDs",
3487 [P_SIZES] = "ReportSizes",
3488 [P_STATE] = "ReportState",
3489 [P_SYNC_UUID] = "ReportSyncUUID",
3490 [P_AUTH_CHALLENGE] = "AuthChallenge",
3491 [P_AUTH_RESPONSE] = "AuthResponse",
3492 [P_PING] = "Ping",
3493 [P_PING_ACK] = "PingAck",
3494 [P_RECV_ACK] = "RecvAck",
3495 [P_WRITE_ACK] = "WriteAck",
3496 [P_RS_WRITE_ACK] = "RSWriteAck",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003497 [P_DISCARD_WRITE] = "DiscardWrite",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003498 [P_NEG_ACK] = "NegAck",
3499 [P_NEG_DREPLY] = "NegDReply",
3500 [P_NEG_RS_DREPLY] = "NegRSDReply",
3501 [P_BARRIER_ACK] = "BarrierAck",
3502 [P_STATE_CHG_REQ] = "StateChgRequest",
3503 [P_STATE_CHG_REPLY] = "StateChgReply",
3504 [P_OV_REQUEST] = "OVRequest",
3505 [P_OV_REPLY] = "OVReply",
3506 [P_OV_RESULT] = "OVResult",
3507 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3508 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3509 [P_COMPRESSED_BITMAP] = "CBitmap",
3510 [P_DELAY_PROBE] = "DelayProbe",
3511 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003512 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003513 [P_RS_CANCEL] = "RSCancel",
3514 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3515 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003516 [P_RETRY_WRITE] = "retry_write",
3517 [P_PROTOCOL_UPDATE] = "protocol_update",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003518
3519 /* enum drbd_packet, but not commands - obsoleted flags:
3520 * P_MAY_IGNORE
3521 * P_MAX_OPT_CMD
3522 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003523 };
3524
Lars Ellenbergae25b332011-04-24 00:01:16 +02003525 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003526 if (cmd == P_INITIAL_META)
3527 return "InitialMeta";
3528 if (cmd == P_INITIAL_DATA)
3529 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003530 if (cmd == P_CONNECTION_FEATURES)
3531 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003532 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003533 return "Unknown";
3534 return cmdnames[cmd];
3535}
3536
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003537/**
3538 * drbd_wait_misc - wait for a request to make progress
3539 * @mdev: device associated with the request
3540 * @i: the struct drbd_interval embedded in struct drbd_request or
3541 * struct drbd_peer_request
3542 */
3543int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3544{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003545 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003546 DEFINE_WAIT(wait);
3547 long timeout;
3548
Philipp Reisner44ed1672011-04-19 17:10:19 +02003549 rcu_read_lock();
3550 nc = rcu_dereference(mdev->tconn->net_conf);
3551 if (!nc) {
3552 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003553 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003554 }
3555 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3556 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003557
3558 /* Indicate to wake up mdev->misc_wait on progress. */
3559 i->waiting = true;
3560 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3561 spin_unlock_irq(&mdev->tconn->req_lock);
3562 timeout = schedule_timeout(timeout);
3563 finish_wait(&mdev->misc_wait, &wait);
3564 spin_lock_irq(&mdev->tconn->req_lock);
3565 if (!timeout || mdev->state.conn < C_CONNECTED)
3566 return -ETIMEDOUT;
3567 if (signal_pending(current))
3568 return -ERESTARTSYS;
3569 return 0;
3570}
3571
Philipp Reisnerb411b362009-09-25 16:07:19 -07003572#ifdef CONFIG_DRBD_FAULT_INJECTION
3573/* Fault insertion support including random number generator shamelessly
3574 * stolen from kernel/rcutorture.c */
3575struct fault_random_state {
3576 unsigned long state;
3577 unsigned long count;
3578};
3579
3580#define FAULT_RANDOM_MULT 39916801 /* prime */
3581#define FAULT_RANDOM_ADD 479001701 /* prime */
3582#define FAULT_RANDOM_REFRESH 10000
3583
3584/*
3585 * Crude but fast random-number generator. Uses a linear congruential
3586 * generator, with occasional help from get_random_bytes().
3587 */
3588static unsigned long
3589_drbd_fault_random(struct fault_random_state *rsp)
3590{
3591 long refresh;
3592
Roel Kluin49829ea2009-12-15 22:55:44 +01003593 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003594 get_random_bytes(&refresh, sizeof(refresh));
3595 rsp->state += refresh;
3596 rsp->count = FAULT_RANDOM_REFRESH;
3597 }
3598 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3599 return swahw32(rsp->state);
3600}
3601
3602static char *
3603_drbd_fault_str(unsigned int type) {
3604 static char *_faults[] = {
3605 [DRBD_FAULT_MD_WR] = "Meta-data write",
3606 [DRBD_FAULT_MD_RD] = "Meta-data read",
3607 [DRBD_FAULT_RS_WR] = "Resync write",
3608 [DRBD_FAULT_RS_RD] = "Resync read",
3609 [DRBD_FAULT_DT_WR] = "Data write",
3610 [DRBD_FAULT_DT_RD] = "Data read",
3611 [DRBD_FAULT_DT_RA] = "Data read ahead",
3612 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003613 [DRBD_FAULT_AL_EE] = "EE allocation",
3614 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003615 };
3616
3617 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3618}
3619
3620unsigned int
3621_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3622{
3623 static struct fault_random_state rrs = {0, 0};
3624
3625 unsigned int ret = (
3626 (fault_devs == 0 ||
3627 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3628 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3629
3630 if (ret) {
3631 fault_count++;
3632
Lars Ellenberg73835062010-05-27 11:51:56 +02003633 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003634 dev_warn(DEV, "***Simulating %s failure\n",
3635 _drbd_fault_str(type));
3636 }
3637
3638 return ret;
3639}
3640#endif
3641
3642const char *drbd_buildtag(void)
3643{
3644 /* DRBD built from external sources has here a reference to the
3645 git hash of the source code. */
3646
3647 static char buildtag[38] = "\0uilt-in";
3648
3649 if (buildtag[0] == 0) {
3650#ifdef CONFIG_MODULES
3651 if (THIS_MODULE != NULL)
3652 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3653 else
3654#endif
3655 buildtag[0] = 'b';
3656 }
3657
3658 return buildtag;
3659}
3660
3661module_init(drbd_init)
3662module_exit(drbd_cleanup)
3663
Philipp Reisnerb411b362009-09-25 16:07:19 -07003664EXPORT_SYMBOL(drbd_conn_str);
3665EXPORT_SYMBOL(drbd_role_str);
3666EXPORT_SYMBOL(drbd_disk_str);
3667EXPORT_SYMBOL(drbd_set_st_err_str);