blob: 2703504c7c18bc973b2e7628e8cb31b626caf9b5 [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);
Philipp Reisnerb411b362009-09-25 16:07:19 -070067static int w_md_sync(struct drbd_conf *mdev, struct drbd_work *w, int unused);
68static void md_sync_timer_fn(unsigned long data);
69static int w_bitmap_io(struct drbd_conf *mdev, struct drbd_work *w, int unused);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +020070static int w_go_diskless(struct drbd_conf *mdev, 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 Reisner2b8a90b2011-01-10 11:15:17 +010077MODULE_PARM_DESC(minor_count, "Maximum number of drbd devices ("
78 __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);
89module_param(cn_idx, uint, 0444);
90module_param(proc_details, int, 0644);
91
92#ifdef CONFIG_DRBD_FAULT_INJECTION
93int enable_faults;
94int fault_rate;
95static int fault_count;
96int fault_devs;
97/* bitmap of enabled faults */
98module_param(enable_faults, int, 0664);
99/* fault rate % value - applies to all enabled faults */
100module_param(fault_rate, int, 0664);
101/* count of faults inserted */
102module_param(fault_count, int, 0664);
103/* bitmap of devices to insert faults on */
104module_param(fault_devs, int, 0644);
105#endif
106
107/* module parameter, defined */
Philipp Reisner2b8a90b2011-01-10 11:15:17 +0100108unsigned int minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700109int disable_sendpage;
110int allow_oos;
111unsigned int cn_idx = CN_IDX_DRBD;
112int proc_details; /* Detail level in proc drbd*/
113
114/* Module parameter for setting the user mode helper program
115 * to run. Default is /sbin/drbdadm */
116char usermode_helper[80] = "/sbin/drbdadm";
117
118module_param_string(usermode_helper, usermode_helper, sizeof(usermode_helper), 0644);
119
120/* in 2.6.x, our device mapping and config info contains our virtual gendisks
121 * as member "struct gendisk *vdisk;"
122 */
123struct drbd_conf **minor_table;
Philipp Reisner21114382011-01-19 12:26:59 +0100124struct list_head drbd_tconns; /* list of struct drbd_tconn */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700125
126struct kmem_cache *drbd_request_cache;
Andreas Gruenbacher6c852be2011-02-04 15:38:52 +0100127struct kmem_cache *drbd_ee_cache; /* peer requests */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700128struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */
129struct kmem_cache *drbd_al_ext_cache; /* activity log extents */
130mempool_t *drbd_request_mempool;
131mempool_t *drbd_ee_mempool;
132
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
152#define ARRY_SIZE(A) (sizeof(A)/sizeof(A[0]))
153
154#ifdef __CHECKER__
155/* When checking with sparse, and this is an inline function, sparse will
156 give tons of false positives. When this is a real functions sparse works.
157 */
158int _get_ldev_if_state(struct drbd_conf *mdev, enum drbd_disk_state mins)
159{
160 int io_allowed;
161
162 atomic_inc(&mdev->local_cnt);
163 io_allowed = (mdev->state.disk >= mins);
164 if (!io_allowed) {
165 if (atomic_dec_and_test(&mdev->local_cnt))
166 wake_up(&mdev->misc_wait);
167 }
168 return io_allowed;
169}
170
171#endif
172
173/**
174 * DOC: The transfer log
175 *
176 * The transfer log is a single linked list of &struct drbd_tl_epoch objects.
Philipp Reisner87eeee42011-01-19 14:16:30 +0100177 * mdev->tconn->newest_tle points to the head, mdev->tconn->oldest_tle points to the tail
Philipp Reisnerb411b362009-09-25 16:07:19 -0700178 * of the list. There is always at least one &struct drbd_tl_epoch object.
179 *
180 * Each &struct drbd_tl_epoch has a circular double linked list of requests
181 * attached.
182 */
183static int tl_init(struct drbd_conf *mdev)
184{
185 struct drbd_tl_epoch *b;
186
187 /* during device minor initialization, we may well use GFP_KERNEL */
188 b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_KERNEL);
189 if (!b)
190 return 0;
191 INIT_LIST_HEAD(&b->requests);
192 INIT_LIST_HEAD(&b->w.list);
193 b->next = NULL;
194 b->br_number = 4711;
Philipp Reisner7e602c02010-05-27 14:49:27 +0200195 b->n_writes = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700196 b->w.cb = NULL; /* if this is != NULL, we need to dec_ap_pending in tl_clear */
197
Philipp Reisner87eeee42011-01-19 14:16:30 +0100198 mdev->tconn->oldest_tle = b;
199 mdev->tconn->newest_tle = b;
200 INIT_LIST_HEAD(&mdev->tconn->out_of_sequence_requests);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700201
Philipp Reisnerb411b362009-09-25 16:07:19 -0700202 return 1;
203}
204
205static void tl_cleanup(struct drbd_conf *mdev)
206{
Philipp Reisner87eeee42011-01-19 14:16:30 +0100207 D_ASSERT(mdev->tconn->oldest_tle == mdev->tconn->newest_tle);
208 D_ASSERT(list_empty(&mdev->tconn->out_of_sequence_requests));
209 kfree(mdev->tconn->oldest_tle);
210 mdev->tconn->oldest_tle = NULL;
211 kfree(mdev->tconn->unused_spare_tle);
212 mdev->tconn->unused_spare_tle = NULL;
Andreas Gruenbacherd6287692011-01-13 23:05:39 +0100213}
214
Philipp Reisnerb411b362009-09-25 16:07:19 -0700215/**
216 * _tl_add_barrier() - Adds a barrier to the transfer log
217 * @mdev: DRBD device.
218 * @new: Barrier to be added before the current head of the TL.
219 *
220 * The caller must hold the req_lock.
221 */
222void _tl_add_barrier(struct drbd_conf *mdev, struct drbd_tl_epoch *new)
223{
224 struct drbd_tl_epoch *newest_before;
225
226 INIT_LIST_HEAD(&new->requests);
227 INIT_LIST_HEAD(&new->w.list);
228 new->w.cb = NULL; /* if this is != NULL, we need to dec_ap_pending in tl_clear */
229 new->next = NULL;
Philipp Reisner7e602c02010-05-27 14:49:27 +0200230 new->n_writes = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700231
Philipp Reisner87eeee42011-01-19 14:16:30 +0100232 newest_before = mdev->tconn->newest_tle;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700233 /* never send a barrier number == 0, because that is special-cased
234 * when using TCQ for our write ordering code */
235 new->br_number = (newest_before->br_number+1) ?: 1;
Philipp Reisner87eeee42011-01-19 14:16:30 +0100236 if (mdev->tconn->newest_tle != new) {
237 mdev->tconn->newest_tle->next = new;
238 mdev->tconn->newest_tle = new;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700239 }
240}
241
242/**
243 * tl_release() - Free or recycle the oldest &struct drbd_tl_epoch object of the TL
244 * @mdev: DRBD device.
245 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
246 * @set_size: Expected number of requests before that barrier.
247 *
248 * In case the passed barrier_nr or set_size does not match the oldest
249 * &struct drbd_tl_epoch objects this function will cause a termination
250 * of the connection.
251 */
252void tl_release(struct drbd_conf *mdev, unsigned int barrier_nr,
253 unsigned int set_size)
254{
255 struct drbd_tl_epoch *b, *nob; /* next old barrier */
256 struct list_head *le, *tle;
257 struct drbd_request *r;
258
Philipp Reisner87eeee42011-01-19 14:16:30 +0100259 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700260
Philipp Reisner87eeee42011-01-19 14:16:30 +0100261 b = mdev->tconn->oldest_tle;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700262
263 /* first some paranoia code */
264 if (b == NULL) {
265 dev_err(DEV, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
266 barrier_nr);
267 goto bail;
268 }
269 if (b->br_number != barrier_nr) {
270 dev_err(DEV, "BAD! BarrierAck #%u received, expected #%u!\n",
271 barrier_nr, b->br_number);
272 goto bail;
273 }
Philipp Reisner7e602c02010-05-27 14:49:27 +0200274 if (b->n_writes != set_size) {
275 dev_err(DEV, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
276 barrier_nr, set_size, b->n_writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700277 goto bail;
278 }
279
280 /* Clean up list of requests processed during current epoch */
281 list_for_each_safe(le, tle, &b->requests) {
282 r = list_entry(le, struct drbd_request, tl_requests);
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100283 _req_mod(r, BARRIER_ACKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700284 }
285 /* There could be requests on the list waiting for completion
286 of the write to the local disk. To avoid corruptions of
287 slab's data structures we have to remove the lists head.
288
289 Also there could have been a barrier ack out of sequence, overtaking
290 the write acks - which would be a bug and violating write ordering.
291 To not deadlock in case we lose connection while such requests are
292 still pending, we need some way to find them for the
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100293 _req_mode(CONNECTION_LOST_WHILE_PENDING).
Philipp Reisnerb411b362009-09-25 16:07:19 -0700294
295 These have been list_move'd to the out_of_sequence_requests list in
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100296 _req_mod(, BARRIER_ACKED) above.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700297 */
298 list_del_init(&b->requests);
299
300 nob = b->next;
301 if (test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) {
302 _tl_add_barrier(mdev, b);
303 if (nob)
Philipp Reisner87eeee42011-01-19 14:16:30 +0100304 mdev->tconn->oldest_tle = nob;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700305 /* if nob == NULL b was the only barrier, and becomes the new
Philipp Reisner87eeee42011-01-19 14:16:30 +0100306 barrier. Therefore mdev->tconn->oldest_tle points already to b */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700307 } else {
308 D_ASSERT(nob != NULL);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100309 mdev->tconn->oldest_tle = nob;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700310 kfree(b);
311 }
312
Philipp Reisner87eeee42011-01-19 14:16:30 +0100313 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700314 dec_ap_pending(mdev);
315
316 return;
317
318bail:
Philipp Reisner87eeee42011-01-19 14:16:30 +0100319 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700320 drbd_force_state(mdev, NS(conn, C_PROTOCOL_ERROR));
321}
322
Philipp Reisner617049a2010-12-22 12:48:31 +0100323
Philipp Reisner11b58e72010-05-12 17:08:26 +0200324/**
325 * _tl_restart() - Walks the transfer log, and applies an action to all requests
326 * @mdev: DRBD device.
327 * @what: The action/event to perform with all request objects
328 *
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100329 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
330 * RESTART_FROZEN_DISK_IO.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200331 */
Philipp Reisnerb8907332011-01-27 14:07:51 +0100332void _tl_restart(struct drbd_conf *mdev, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200333{
334 struct drbd_tl_epoch *b, *tmp, **pn;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200335 struct list_head *le, *tle, carry_reads;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200336 struct drbd_request *req;
337 int rv, n_writes, n_reads;
338
Philipp Reisner87eeee42011-01-19 14:16:30 +0100339 b = mdev->tconn->oldest_tle;
340 pn = &mdev->tconn->oldest_tle;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200341 while (b) {
342 n_writes = 0;
343 n_reads = 0;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200344 INIT_LIST_HEAD(&carry_reads);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200345 list_for_each_safe(le, tle, &b->requests) {
346 req = list_entry(le, struct drbd_request, tl_requests);
347 rv = _req_mod(req, what);
348
349 n_writes += (rv & MR_WRITE) >> MR_WRITE_SHIFT;
350 n_reads += (rv & MR_READ) >> MR_READ_SHIFT;
351 }
352 tmp = b->next;
353
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200354 if (n_writes) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100355 if (what == RESEND) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200356 b->n_writes = n_writes;
357 if (b->w.cb == NULL) {
358 b->w.cb = w_send_barrier;
359 inc_ap_pending(mdev);
360 set_bit(CREATE_BARRIER, &mdev->flags);
361 }
362
Philipp Reisnere42325a2011-01-19 13:55:45 +0100363 drbd_queue_work(&mdev->tconn->data.work, &b->w);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200364 }
365 pn = &b->next;
366 } else {
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200367 if (n_reads)
368 list_add(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200369 /* there could still be requests on that ring list,
370 * in case local io is still pending */
371 list_del(&b->requests);
372
373 /* dec_ap_pending corresponding to queue_barrier.
374 * the newest barrier may not have been queued yet,
375 * in which case w.cb is still NULL. */
376 if (b->w.cb != NULL)
377 dec_ap_pending(mdev);
378
Philipp Reisner87eeee42011-01-19 14:16:30 +0100379 if (b == mdev->tconn->newest_tle) {
Philipp Reisner11b58e72010-05-12 17:08:26 +0200380 /* recycle, but reinit! */
381 D_ASSERT(tmp == NULL);
382 INIT_LIST_HEAD(&b->requests);
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200383 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200384 INIT_LIST_HEAD(&b->w.list);
385 b->w.cb = NULL;
386 b->br_number = net_random();
387 b->n_writes = 0;
388
389 *pn = b;
390 break;
391 }
392 *pn = tmp;
393 kfree(b);
394 }
395 b = tmp;
Philipp Reisnerb9b98712010-06-22 11:26:48 +0200396 list_splice(&carry_reads, &b->requests);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200397 }
398}
399
Philipp Reisnerb411b362009-09-25 16:07:19 -0700400
401/**
402 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
403 * @mdev: DRBD device.
404 *
405 * This is called after the connection to the peer was lost. The storage covered
406 * by the requests on the transfer gets marked as our of sync. Called from the
407 * receiver thread and the worker thread.
408 */
409void tl_clear(struct drbd_conf *mdev)
410{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700411 struct list_head *le, *tle;
412 struct drbd_request *r;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700413
Philipp Reisner87eeee42011-01-19 14:16:30 +0100414 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700415
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100416 _tl_restart(mdev, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700417
418 /* we expect this list to be empty. */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100419 D_ASSERT(list_empty(&mdev->tconn->out_of_sequence_requests));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700420
421 /* but just in case, clean it up anyways! */
Philipp Reisner87eeee42011-01-19 14:16:30 +0100422 list_for_each_safe(le, tle, &mdev->tconn->out_of_sequence_requests) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700423 r = list_entry(le, struct drbd_request, tl_requests);
424 /* It would be nice to complete outside of spinlock.
425 * But this is easier for now. */
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100426 _req_mod(r, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700427 }
428
429 /* ensure bit indicating barrier is required is clear */
430 clear_bit(CREATE_BARRIER, &mdev->flags);
431
Philipp Reisner87eeee42011-01-19 14:16:30 +0100432 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700433}
434
Philipp Reisner11b58e72010-05-12 17:08:26 +0200435void tl_restart(struct drbd_conf *mdev, enum drbd_req_event what)
436{
Philipp Reisner87eeee42011-01-19 14:16:30 +0100437 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200438 _tl_restart(mdev, what);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100439 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700440}
441
Philipp Reisnerb411b362009-09-25 16:07:19 -0700442static int drbd_thread_setup(void *arg)
443{
444 struct drbd_thread *thi = (struct drbd_thread *) arg;
445 struct drbd_conf *mdev = thi->mdev;
446 unsigned long flags;
447 int retval;
448
449restart:
450 retval = thi->function(thi);
451
452 spin_lock_irqsave(&thi->t_lock, flags);
453
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100454 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700455 * was set the conn state to "StandAlone",
456 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
457 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100458 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700459 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100460 * so either thread_start sees EXITING, and can remap to RESTARTING,
461 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700462 */
463
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100464 if (thi->t_state == RESTARTING) {
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100465 dev_info(DEV, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100466 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700467 spin_unlock_irqrestore(&thi->t_lock, flags);
468 goto restart;
469 }
470
471 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100472 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700473 smp_mb();
474 complete(&thi->stop);
475 spin_unlock_irqrestore(&thi->t_lock, flags);
476
477 dev_info(DEV, "Terminating %s\n", current->comm);
478
479 /* Release mod reference taken when thread was started */
480 module_put(THIS_MODULE);
481 return retval;
482}
483
484static void drbd_thread_init(struct drbd_conf *mdev, struct drbd_thread *thi,
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100485 int (*func) (struct drbd_thread *), char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700486{
487 spin_lock_init(&thi->t_lock);
488 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100489 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700490 thi->function = func;
491 thi->mdev = mdev;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100492 strncpy(thi->name, name, ARRAY_SIZE(thi->name));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700493}
494
495int drbd_thread_start(struct drbd_thread *thi)
496{
497 struct drbd_conf *mdev = thi->mdev;
498 struct task_struct *nt;
499 unsigned long flags;
500
Philipp Reisnerb411b362009-09-25 16:07:19 -0700501 /* is used from state engine doing drbd_thread_stop_nowait,
502 * while holding the req lock irqsave */
503 spin_lock_irqsave(&thi->t_lock, flags);
504
505 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100506 case NONE:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700507 dev_info(DEV, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100508 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700509
510 /* Get ref on module for thread - this is released when thread exits */
511 if (!try_module_get(THIS_MODULE)) {
512 dev_err(DEV, "Failed to get module reference in drbd_thread_start\n");
513 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100514 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700515 }
516
517 init_completion(&thi->stop);
518 D_ASSERT(thi->task == NULL);
519 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100520 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700521 spin_unlock_irqrestore(&thi->t_lock, flags);
522 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
523
524 nt = kthread_create(drbd_thread_setup, (void *) thi,
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100525 "drbd%d_%s", mdev_to_minor(mdev), thi->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700526
527 if (IS_ERR(nt)) {
528 dev_err(DEV, "Couldn't start thread\n");
529
530 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100531 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700532 }
533 spin_lock_irqsave(&thi->t_lock, flags);
534 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100535 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700536 spin_unlock_irqrestore(&thi->t_lock, flags);
537 wake_up_process(nt);
538 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100539 case EXITING:
540 thi->t_state = RESTARTING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700541 dev_info(DEV, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100542 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700543 /* fall through */
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100544 case RUNNING:
545 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700546 default:
547 spin_unlock_irqrestore(&thi->t_lock, flags);
548 break;
549 }
550
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100551 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700552}
553
554
555void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
556{
557 unsigned long flags;
558
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100559 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700560
561 /* may be called from state engine, holding the req lock irqsave */
562 spin_lock_irqsave(&thi->t_lock, flags);
563
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100564 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700565 spin_unlock_irqrestore(&thi->t_lock, flags);
566 if (restart)
567 drbd_thread_start(thi);
568 return;
569 }
570
571 if (thi->t_state != ns) {
572 if (thi->task == NULL) {
573 spin_unlock_irqrestore(&thi->t_lock, flags);
574 return;
575 }
576
577 thi->t_state = ns;
578 smp_mb();
579 init_completion(&thi->stop);
580 if (thi->task != current)
581 force_sig(DRBD_SIGKILL, thi->task);
582
583 }
584
585 spin_unlock_irqrestore(&thi->t_lock, flags);
586
587 if (wait)
588 wait_for_completion(&thi->stop);
589}
590
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100591static struct drbd_thread *drbd_task_to_thread(struct drbd_conf *mdev, struct task_struct *task)
592{
593 struct drbd_tconn *tconn = mdev->tconn;
594 struct drbd_thread *thi =
595 task == tconn->receiver.task ? &tconn->receiver :
596 task == tconn->asender.task ? &tconn->asender :
597 task == tconn->worker.task ? &tconn->worker : NULL;
598
599 return thi;
600}
601
602char *drbd_task_to_thread_name(struct drbd_conf *mdev, struct task_struct *task)
603{
604 struct drbd_thread *thi = drbd_task_to_thread(mdev, task);
605 return thi ? thi->name : task->comm;
606}
607
Philipp Reisnerb411b362009-09-25 16:07:19 -0700608#ifdef CONFIG_SMP
609/**
610 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
611 * @mdev: DRBD device.
612 *
613 * Forces all threads of a device onto the same CPU. This is beneficial for
614 * DRBD's performance. May be overwritten by user's configuration.
615 */
616void drbd_calc_cpu_mask(struct drbd_conf *mdev)
617{
618 int ord, cpu;
619
620 /* user override. */
621 if (cpumask_weight(mdev->cpu_mask))
622 return;
623
624 ord = mdev_to_minor(mdev) % cpumask_weight(cpu_online_mask);
625 for_each_online_cpu(cpu) {
626 if (ord-- == 0) {
627 cpumask_set_cpu(cpu, mdev->cpu_mask);
628 return;
629 }
630 }
631 /* should not be reached */
632 cpumask_setall(mdev->cpu_mask);
633}
634
635/**
636 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
637 * @mdev: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100638 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700639 *
640 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
641 * prematurely.
642 */
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100643void drbd_thread_current_set_cpu(struct drbd_conf *mdev, struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700644{
645 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100646
Philipp Reisnerb411b362009-09-25 16:07:19 -0700647 if (!thi->reset_cpu_mask)
648 return;
649 thi->reset_cpu_mask = 0;
650 set_cpus_allowed_ptr(p, mdev->cpu_mask);
651}
652#endif
653
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100654static void prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100655{
656 h->magic = cpu_to_be32(DRBD_MAGIC);
657 h->command = cpu_to_be16(cmd);
658 h->length = cpu_to_be16(size);
659}
660
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100661static void prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100662{
663 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
664 h->command = cpu_to_be16(cmd);
665 h->length = cpu_to_be32(size);
666}
667
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100668static void _prepare_header(struct drbd_tconn *tconn, int vnr, struct p_header *h,
669 enum drbd_packet cmd, int size)
670{
671 if (tconn->agreed_pro_version >= 100 || size > DRBD_MAX_SIZE_H80_PACKET)
672 prepare_header95(&h->h95, cmd, size);
673 else
674 prepare_header80(&h->h80, cmd, size);
675}
676
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100677static void prepare_header(struct drbd_conf *mdev, struct p_header *h,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100678 enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100679{
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100680 _prepare_header(mdev->tconn, mdev->vnr, h, cmd, size);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100681}
682
Philipp Reisnerb411b362009-09-25 16:07:19 -0700683/* the appropriate socket mutex must be held already */
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100684int _conn_send_cmd(struct drbd_tconn *tconn, int vnr, struct socket *sock,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100685 enum drbd_packet cmd, struct p_header *h, size_t size,
686 unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700687{
688 int sent, ok;
689
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100690 _prepare_header(tconn, vnr, h, cmd, size - sizeof(struct p_header));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700691
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100692 sent = drbd_send(tconn, sock, h, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700693
694 ok = (sent == size);
Lars Ellenberg0ddc5542011-01-21 12:35:15 +0100695 if (!ok && !signal_pending(current))
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100696 conn_warn(tconn, "short sent %s size=%d sent=%d\n",
697 cmdname(cmd), (int)size, sent);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700698 return ok;
699}
700
701/* don't pass the socket. we may only look at it
702 * when we hold the appropriate socket mutex.
703 */
704int drbd_send_cmd(struct drbd_conf *mdev, int use_data_socket,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100705 enum drbd_packet cmd, struct p_header *h, size_t size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700706{
707 int ok = 0;
708 struct socket *sock;
709
710 if (use_data_socket) {
Philipp Reisnere42325a2011-01-19 13:55:45 +0100711 mutex_lock(&mdev->tconn->data.mutex);
712 sock = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700713 } else {
Philipp Reisnere42325a2011-01-19 13:55:45 +0100714 mutex_lock(&mdev->tconn->meta.mutex);
715 sock = mdev->tconn->meta.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700716 }
717
718 /* drbd_disconnect() could have called drbd_free_sock()
719 * while we were waiting in down()... */
720 if (likely(sock != NULL))
721 ok = _drbd_send_cmd(mdev, sock, cmd, h, size, 0);
722
723 if (use_data_socket)
Philipp Reisnere42325a2011-01-19 13:55:45 +0100724 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700725 else
Philipp Reisnere42325a2011-01-19 13:55:45 +0100726 mutex_unlock(&mdev->tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700727 return ok;
728}
729
Philipp Reisner61120872011-02-08 09:50:54 +0100730int conn_send_cmd2(struct drbd_tconn *tconn, enum drbd_packet cmd, char *data,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700731 size_t size)
732{
Philipp Reisner61120872011-02-08 09:50:54 +0100733 struct p_header80 h;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700734 int ok;
735
Philipp Reisner61120872011-02-08 09:50:54 +0100736 prepare_header80(&h, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700737
Philipp Reisner61120872011-02-08 09:50:54 +0100738 if (!drbd_get_data_sock(tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700739 return 0;
740
Philipp Reisnerb411b362009-09-25 16:07:19 -0700741 ok = (sizeof(h) ==
Philipp Reisner61120872011-02-08 09:50:54 +0100742 drbd_send(tconn, tconn->data.socket, &h, sizeof(h), 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700743 ok = ok && (size ==
Philipp Reisner61120872011-02-08 09:50:54 +0100744 drbd_send(tconn, tconn->data.socket, data, size, 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700745
Philipp Reisner61120872011-02-08 09:50:54 +0100746 drbd_put_data_sock(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700747
748 return ok;
749}
750
751int drbd_send_sync_param(struct drbd_conf *mdev, struct syncer_conf *sc)
752{
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200753 struct p_rs_param_95 *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700754 struct socket *sock;
755 int size, rv;
Philipp Reisner31890f42011-01-19 14:12:51 +0100756 const int apv = mdev->tconn->agreed_pro_version;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700757
758 size = apv <= 87 ? sizeof(struct p_rs_param)
759 : apv == 88 ? sizeof(struct p_rs_param)
760 + strlen(mdev->sync_conf.verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200761 : apv <= 94 ? sizeof(struct p_rs_param_89)
762 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700763
764 /* used from admin command context and receiver/worker context.
765 * to avoid kmalloc, grab the socket right here,
766 * then use the pre-allocated sbuf there */
Philipp Reisnere42325a2011-01-19 13:55:45 +0100767 mutex_lock(&mdev->tconn->data.mutex);
768 sock = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700769
770 if (likely(sock != NULL)) {
Andreas Gruenbacherd8763022011-01-26 17:39:41 +0100771 enum drbd_packet cmd =
772 apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700773
Philipp Reisnere42325a2011-01-19 13:55:45 +0100774 p = &mdev->tconn->data.sbuf.rs_param_95;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700775
776 /* initialize verify_alg and csums_alg */
777 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
778
779 p->rate = cpu_to_be32(sc->rate);
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200780 p->c_plan_ahead = cpu_to_be32(sc->c_plan_ahead);
781 p->c_delay_target = cpu_to_be32(sc->c_delay_target);
782 p->c_fill_target = cpu_to_be32(sc->c_fill_target);
783 p->c_max_rate = cpu_to_be32(sc->c_max_rate);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700784
785 if (apv >= 88)
786 strcpy(p->verify_alg, mdev->sync_conf.verify_alg);
787 if (apv >= 89)
788 strcpy(p->csums_alg, mdev->sync_conf.csums_alg);
789
790 rv = _drbd_send_cmd(mdev, sock, cmd, &p->head, size, 0);
791 } else
792 rv = 0; /* not ok */
793
Philipp Reisnere42325a2011-01-19 13:55:45 +0100794 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700795
796 return rv;
797}
798
799int drbd_send_protocol(struct drbd_conf *mdev)
800{
801 struct p_protocol *p;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100802 int size, cf, rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700803
804 size = sizeof(struct p_protocol);
805
Philipp Reisner31890f42011-01-19 14:12:51 +0100806 if (mdev->tconn->agreed_pro_version >= 87)
Philipp Reisner89e58e72011-01-19 13:12:45 +0100807 size += strlen(mdev->tconn->net_conf->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700808
809 /* we must not recurse into our own queue,
810 * as that is blocked during handshake */
811 p = kmalloc(size, GFP_NOIO);
812 if (p == NULL)
813 return 0;
814
Philipp Reisner89e58e72011-01-19 13:12:45 +0100815 p->protocol = cpu_to_be32(mdev->tconn->net_conf->wire_protocol);
816 p->after_sb_0p = cpu_to_be32(mdev->tconn->net_conf->after_sb_0p);
817 p->after_sb_1p = cpu_to_be32(mdev->tconn->net_conf->after_sb_1p);
818 p->after_sb_2p = cpu_to_be32(mdev->tconn->net_conf->after_sb_2p);
819 p->two_primaries = cpu_to_be32(mdev->tconn->net_conf->two_primaries);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700820
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100821 cf = 0;
Philipp Reisner89e58e72011-01-19 13:12:45 +0100822 if (mdev->tconn->net_conf->want_lose)
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100823 cf |= CF_WANT_LOSE;
Philipp Reisner89e58e72011-01-19 13:12:45 +0100824 if (mdev->tconn->net_conf->dry_run) {
Philipp Reisner31890f42011-01-19 14:12:51 +0100825 if (mdev->tconn->agreed_pro_version >= 92)
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100826 cf |= CF_DRY_RUN;
827 else {
828 dev_err(DEV, "--dry-run is not supported by peer");
Dan Carpenter7ac314c2010-04-22 14:27:23 +0200829 kfree(p);
Philipp Reisner148efa12011-01-15 00:21:15 +0100830 return -1;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100831 }
832 }
833 p->conn_flags = cpu_to_be32(cf);
834
Philipp Reisner31890f42011-01-19 14:12:51 +0100835 if (mdev->tconn->agreed_pro_version >= 87)
Philipp Reisner89e58e72011-01-19 13:12:45 +0100836 strcpy(p->integrity_alg, mdev->tconn->net_conf->integrity_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700837
Philipp Reisnerc0129492011-01-19 16:58:16 +0100838 rv = drbd_send_cmd(mdev, USE_DATA_SOCKET, P_PROTOCOL, &p->head, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700839 kfree(p);
840 return rv;
841}
842
843int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
844{
845 struct p_uuids p;
846 int i;
847
848 if (!get_ldev_if_state(mdev, D_NEGOTIATING))
849 return 1;
850
851 for (i = UI_CURRENT; i < UI_SIZE; i++)
852 p.uuid[i] = mdev->ldev ? cpu_to_be64(mdev->ldev->md.uuid[i]) : 0;
853
854 mdev->comm_bm_set = drbd_bm_total_weight(mdev);
855 p.uuid[UI_SIZE] = cpu_to_be64(mdev->comm_bm_set);
Philipp Reisner89e58e72011-01-19 13:12:45 +0100856 uuid_flags |= mdev->tconn->net_conf->want_lose ? 1 : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700857 uuid_flags |= test_bit(CRASHED_PRIMARY, &mdev->flags) ? 2 : 0;
858 uuid_flags |= mdev->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
859 p.uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
860
861 put_ldev(mdev);
862
Philipp Reisnerc0129492011-01-19 16:58:16 +0100863 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_UUIDS, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700864}
865
866int drbd_send_uuids(struct drbd_conf *mdev)
867{
868 return _drbd_send_uuids(mdev, 0);
869}
870
871int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev)
872{
873 return _drbd_send_uuids(mdev, 8);
874}
875
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100876void drbd_print_uuids(struct drbd_conf *mdev, const char *text)
877{
878 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
879 u64 *uuid = mdev->ldev->md.uuid;
880 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX\n",
881 text,
882 (unsigned long long)uuid[UI_CURRENT],
883 (unsigned long long)uuid[UI_BITMAP],
884 (unsigned long long)uuid[UI_HISTORY_START],
885 (unsigned long long)uuid[UI_HISTORY_END]);
886 put_ldev(mdev);
887 } else {
888 dev_info(DEV, "%s effective data uuid: %016llX\n",
889 text,
890 (unsigned long long)mdev->ed_uuid);
891 }
892}
893
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100894int drbd_gen_and_send_sync_uuid(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700895{
896 struct p_rs_uuid p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100897 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700898
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100899 D_ASSERT(mdev->state.disk == D_UP_TO_DATE);
900
Philipp Reisner4a23f262011-01-11 17:42:17 +0100901 uuid = mdev->ldev->md.uuid[UI_BITMAP] + UUID_NEW_BM_OFFSET;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100902 drbd_uuid_set(mdev, UI_BITMAP, uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100903 drbd_print_uuids(mdev, "updated sync UUID");
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100904 drbd_md_sync(mdev);
905 p.uuid = cpu_to_be64(uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700906
Philipp Reisnerc0129492011-01-19 16:58:16 +0100907 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_SYNC_UUID, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700908}
909
Philipp Reisnere89b5912010-03-24 17:11:33 +0100910int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700911{
912 struct p_sizes p;
913 sector_t d_size, u_size;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200914 int q_order_type, max_bio_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700915 int ok;
916
917 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
918 D_ASSERT(mdev->ldev->backing_bdev);
919 d_size = drbd_get_max_capacity(mdev->ldev);
920 u_size = mdev->ldev->dc.disk_size;
921 q_order_type = drbd_queue_order_type(mdev);
Philipp Reisner99432fc2011-05-20 16:39:13 +0200922 max_bio_size = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
923 max_bio_size = min_t(int, max_bio_size, DRBD_MAX_BIO_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700924 put_ldev(mdev);
925 } else {
926 d_size = 0;
927 u_size = 0;
928 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200929 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700930 }
931
932 p.d_size = cpu_to_be64(d_size);
933 p.u_size = cpu_to_be64(u_size);
934 p.c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(mdev->this_bdev));
Philipp Reisner99432fc2011-05-20 16:39:13 +0200935 p.max_bio_size = cpu_to_be32(max_bio_size);
Philipp Reisnere89b5912010-03-24 17:11:33 +0100936 p.queue_order_type = cpu_to_be16(q_order_type);
937 p.dds_flags = cpu_to_be16(flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700938
Philipp Reisnerc0129492011-01-19 16:58:16 +0100939 ok = drbd_send_cmd(mdev, USE_DATA_SOCKET, P_SIZES, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700940 return ok;
941}
942
943/**
944 * drbd_send_state() - Sends the drbd state to the peer
945 * @mdev: DRBD device.
946 */
947int drbd_send_state(struct drbd_conf *mdev)
948{
949 struct socket *sock;
950 struct p_state p;
951 int ok = 0;
952
Philipp Reisnere42325a2011-01-19 13:55:45 +0100953 mutex_lock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700954
955 p.state = cpu_to_be32(mdev->state.i); /* Within the send mutex */
Philipp Reisnere42325a2011-01-19 13:55:45 +0100956 sock = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700957
958 if (likely(sock != NULL)) {
Philipp Reisnerc0129492011-01-19 16:58:16 +0100959 ok = _drbd_send_cmd(mdev, sock, P_STATE, &p.head, sizeof(p), 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700960 }
961
Philipp Reisnere42325a2011-01-19 13:55:45 +0100962 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700963
Philipp Reisnerb411b362009-09-25 16:07:19 -0700964 return ok;
965}
966
967int drbd_send_state_req(struct drbd_conf *mdev,
968 union drbd_state mask, union drbd_state val)
969{
970 struct p_req_state p;
971
972 p.mask = cpu_to_be32(mask.i);
973 p.val = cpu_to_be32(val.i);
974
Philipp Reisnerc0129492011-01-19 16:58:16 +0100975 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_STATE_CHG_REQ, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700976}
977
Andreas Gruenbacherbf885f82010-12-08 00:39:32 +0100978int drbd_send_sr_reply(struct drbd_conf *mdev, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700979{
980 struct p_req_state_reply p;
981
982 p.retcode = cpu_to_be32(retcode);
983
Philipp Reisnerc0129492011-01-19 16:58:16 +0100984 return drbd_send_cmd(mdev, USE_META_SOCKET, P_STATE_CHG_REPLY, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700985}
986
987int fill_bitmap_rle_bits(struct drbd_conf *mdev,
988 struct p_compressed_bm *p,
989 struct bm_xfer_ctx *c)
990{
991 struct bitstream bs;
992 unsigned long plain_bits;
993 unsigned long tmp;
994 unsigned long rl;
995 unsigned len;
996 unsigned toggle;
997 int bits;
998
999 /* may we use this feature? */
1000 if ((mdev->sync_conf.use_rle == 0) ||
Philipp Reisner31890f42011-01-19 14:12:51 +01001001 (mdev->tconn->agreed_pro_version < 90))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001002 return 0;
1003
1004 if (c->bit_offset >= c->bm_bits)
1005 return 0; /* nothing to do. */
1006
1007 /* use at most thus many bytes */
1008 bitstream_init(&bs, p->code, BM_PACKET_VLI_BYTES_MAX, 0);
1009 memset(p->code, 0, BM_PACKET_VLI_BYTES_MAX);
1010 /* plain bits covered in this code string */
1011 plain_bits = 0;
1012
1013 /* p->encoding & 0x80 stores whether the first run length is set.
1014 * bit offset is implicit.
1015 * start with toggle == 2 to be able to tell the first iteration */
1016 toggle = 2;
1017
1018 /* see how much plain bits we can stuff into one packet
1019 * using RLE and VLI. */
1020 do {
1021 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(mdev, c->bit_offset)
1022 : _drbd_bm_find_next(mdev, c->bit_offset);
1023 if (tmp == -1UL)
1024 tmp = c->bm_bits;
1025 rl = tmp - c->bit_offset;
1026
1027 if (toggle == 2) { /* first iteration */
1028 if (rl == 0) {
1029 /* the first checked bit was set,
1030 * store start value, */
1031 DCBP_set_start(p, 1);
1032 /* but skip encoding of zero run length */
1033 toggle = !toggle;
1034 continue;
1035 }
1036 DCBP_set_start(p, 0);
1037 }
1038
1039 /* paranoia: catch zero runlength.
1040 * can only happen if bitmap is modified while we scan it. */
1041 if (rl == 0) {
1042 dev_err(DEV, "unexpected zero runlength while encoding bitmap "
1043 "t:%u bo:%lu\n", toggle, c->bit_offset);
1044 return -1;
1045 }
1046
1047 bits = vli_encode_bits(&bs, rl);
1048 if (bits == -ENOBUFS) /* buffer full */
1049 break;
1050 if (bits <= 0) {
1051 dev_err(DEV, "error while encoding bitmap: %d\n", bits);
1052 return 0;
1053 }
1054
1055 toggle = !toggle;
1056 plain_bits += rl;
1057 c->bit_offset = tmp;
1058 } while (c->bit_offset < c->bm_bits);
1059
1060 len = bs.cur.b - p->code + !!bs.cur.bit;
1061
1062 if (plain_bits < (len << 3)) {
1063 /* incompressible with this method.
1064 * we need to rewind both word and bit position. */
1065 c->bit_offset -= plain_bits;
1066 bm_xfer_ctx_bit_to_word_offset(c);
1067 c->bit_offset = c->word_offset * BITS_PER_LONG;
1068 return 0;
1069 }
1070
1071 /* RLE + VLI was able to compress it just fine.
1072 * update c->word_offset. */
1073 bm_xfer_ctx_bit_to_word_offset(c);
1074
1075 /* store pad_bits */
1076 DCBP_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
1077
1078 return len;
1079}
1080
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001081/**
1082 * send_bitmap_rle_or_plain
1083 *
1084 * Return 0 when done, 1 when another iteration is needed, and a negative error
1085 * code upon failure.
1086 */
1087static int
Philipp Reisnerb411b362009-09-25 16:07:19 -07001088send_bitmap_rle_or_plain(struct drbd_conf *mdev,
Philipp Reisnerc0129492011-01-19 16:58:16 +01001089 struct p_header *h, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001090{
1091 struct p_compressed_bm *p = (void*)h;
1092 unsigned long num_words;
1093 int len;
1094 int ok;
1095
1096 len = fill_bitmap_rle_bits(mdev, p, c);
1097
1098 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001099 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001100
1101 if (len) {
1102 DCBP_set_code(p, RLE_VLI_Bits);
Philipp Reisnere42325a2011-01-19 13:55:45 +01001103 ok = _drbd_send_cmd(mdev, mdev->tconn->data.socket, P_COMPRESSED_BITMAP, h,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001104 sizeof(*p) + len, 0);
1105
1106 c->packets[0]++;
1107 c->bytes[0] += sizeof(*p) + len;
1108
1109 if (c->bit_offset >= c->bm_bits)
1110 len = 0; /* DONE */
1111 } else {
1112 /* was not compressible.
1113 * send a buffer full of plain text bits instead. */
1114 num_words = min_t(size_t, BM_PACKET_WORDS, c->bm_words - c->word_offset);
1115 len = num_words * sizeof(long);
1116 if (len)
1117 drbd_bm_get_lel(mdev, c->word_offset, num_words, (unsigned long*)h->payload);
Philipp Reisnere42325a2011-01-19 13:55:45 +01001118 ok = _drbd_send_cmd(mdev, mdev->tconn->data.socket, P_BITMAP,
Philipp Reisner0b70a132010-08-20 13:36:10 +02001119 h, sizeof(struct p_header80) + len, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001120 c->word_offset += num_words;
1121 c->bit_offset = c->word_offset * BITS_PER_LONG;
1122
1123 c->packets[1]++;
Philipp Reisner0b70a132010-08-20 13:36:10 +02001124 c->bytes[1] += sizeof(struct p_header80) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001125
1126 if (c->bit_offset > c->bm_bits)
1127 c->bit_offset = c->bm_bits;
1128 }
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001129 if (ok) {
1130 if (len == 0) {
1131 INFO_bm_xfer_stats(mdev, "send", c);
1132 return 0;
1133 } else
1134 return 1;
1135 }
1136 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001137}
1138
1139/* See the comment at receive_bitmap() */
1140int _drbd_send_bitmap(struct drbd_conf *mdev)
1141{
1142 struct bm_xfer_ctx c;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001143 struct p_header *p;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001144 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001145
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001146 if (!expect(mdev->bitmap))
1147 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001148
1149 /* maybe we should use some per thread scratch page,
1150 * and allocate that during initial device creation? */
Philipp Reisnerc0129492011-01-19 16:58:16 +01001151 p = (struct p_header *) __get_free_page(GFP_NOIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001152 if (!p) {
1153 dev_err(DEV, "failed to allocate one page buffer in %s\n", __func__);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001154 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001155 }
1156
1157 if (get_ldev(mdev)) {
1158 if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC)) {
1159 dev_info(DEV, "Writing the whole bitmap, MDF_FullSync was set.\n");
1160 drbd_bm_set_all(mdev);
1161 if (drbd_bm_write(mdev)) {
1162 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1163 * but otherwise process as per normal - need to tell other
1164 * side that a full resync is required! */
1165 dev_err(DEV, "Failed to write bitmap to disk!\n");
1166 } else {
1167 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
1168 drbd_md_sync(mdev);
1169 }
1170 }
1171 put_ldev(mdev);
1172 }
1173
1174 c = (struct bm_xfer_ctx) {
1175 .bm_bits = drbd_bm_bits(mdev),
1176 .bm_words = drbd_bm_words(mdev),
1177 };
1178
1179 do {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001180 err = send_bitmap_rle_or_plain(mdev, p, &c);
1181 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001182
1183 free_page((unsigned long) p);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001184 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001185}
1186
1187int drbd_send_bitmap(struct drbd_conf *mdev)
1188{
1189 int err;
1190
Philipp Reisner61120872011-02-08 09:50:54 +01001191 if (!drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001192 return -1;
1193 err = !_drbd_send_bitmap(mdev);
Philipp Reisner61120872011-02-08 09:50:54 +01001194 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001195 return err;
1196}
1197
1198int drbd_send_b_ack(struct drbd_conf *mdev, u32 barrier_nr, u32 set_size)
1199{
1200 int ok;
1201 struct p_barrier_ack p;
1202
1203 p.barrier = barrier_nr;
1204 p.set_size = cpu_to_be32(set_size);
1205
1206 if (mdev->state.conn < C_CONNECTED)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001207 return false;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001208 ok = drbd_send_cmd(mdev, USE_META_SOCKET, P_BARRIER_ACK, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001209 return ok;
1210}
1211
1212/**
1213 * _drbd_send_ack() - Sends an ack packet
1214 * @mdev: DRBD device.
1215 * @cmd: Packet command code.
1216 * @sector: sector, needs to be in big endian byte order
1217 * @blksize: size in byte, needs to be in big endian byte order
1218 * @block_id: Id, big endian byte order
1219 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001220static int _drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
1221 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001222{
1223 int ok;
1224 struct p_block_ack p;
1225
1226 p.sector = sector;
1227 p.block_id = block_id;
1228 p.blksize = blksize;
1229 p.seq_num = cpu_to_be32(atomic_add_return(1, &mdev->packet_seq));
1230
Philipp Reisnere42325a2011-01-19 13:55:45 +01001231 if (!mdev->tconn->meta.socket || mdev->state.conn < C_CONNECTED)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001232 return false;
Philipp Reisnerc0129492011-01-19 16:58:16 +01001233 ok = drbd_send_cmd(mdev, USE_META_SOCKET, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001234 return ok;
1235}
1236
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001237/* dp->sector and dp->block_id already/still in network byte order,
1238 * data_size is payload size according to dp->head,
1239 * and may need to be corrected for digest size. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001240int drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packet cmd,
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001241 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001242{
Philipp Reisnera0638452011-01-19 14:31:32 +01001243 data_size -= (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_r_tfm) ?
1244 crypto_hash_digestsize(mdev->tconn->integrity_r_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001245 return _drbd_send_ack(mdev, cmd, dp->sector, cpu_to_be32(data_size),
1246 dp->block_id);
1247}
1248
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001249int drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001250 struct p_block_req *rp)
1251{
1252 return _drbd_send_ack(mdev, cmd, rp->sector, rp->blksize, rp->block_id);
1253}
1254
1255/**
1256 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001257 * @mdev: DRBD device
1258 * @cmd: packet command code
1259 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001260 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001261int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001262 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001263{
1264 return _drbd_send_ack(mdev, cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001265 cpu_to_be64(peer_req->i.sector),
1266 cpu_to_be32(peer_req->i.size),
1267 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001268}
1269
1270/* This function misuses the block_id field to signal if the blocks
1271 * are is sync or not. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001272int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001273 sector_t sector, int blksize, u64 block_id)
1274{
1275 return _drbd_send_ack(mdev, cmd,
1276 cpu_to_be64(sector),
1277 cpu_to_be32(blksize),
1278 cpu_to_be64(block_id));
1279}
1280
1281int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1282 sector_t sector, int size, u64 block_id)
1283{
1284 int ok;
1285 struct p_block_req p;
1286
1287 p.sector = cpu_to_be64(sector);
1288 p.block_id = block_id;
1289 p.blksize = cpu_to_be32(size);
1290
Philipp Reisnerc0129492011-01-19 16:58:16 +01001291 ok = drbd_send_cmd(mdev, USE_DATA_SOCKET, cmd, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001292 return ok;
1293}
1294
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001295int drbd_send_drequest_csum(struct drbd_conf *mdev, sector_t sector, int size,
1296 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001297{
1298 int ok;
1299 struct p_block_req p;
1300
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001301 prepare_header(mdev, &p.head, cmd, sizeof(p) - sizeof(struct p_header) + digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001302 p.sector = cpu_to_be64(sector);
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +01001303 p.block_id = ID_SYNCER /* unused */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001304 p.blksize = cpu_to_be32(size);
1305
Philipp Reisnere42325a2011-01-19 13:55:45 +01001306 mutex_lock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001307
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001308 ok = (sizeof(p) == drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), 0));
1309 ok = ok && (digest_size == drbd_send(mdev->tconn, mdev->tconn->data.socket, digest, digest_size, 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001310
Philipp Reisnere42325a2011-01-19 13:55:45 +01001311 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001312
1313 return ok;
1314}
1315
1316int drbd_send_ov_request(struct drbd_conf *mdev, sector_t sector, int size)
1317{
1318 int ok;
1319 struct p_block_req p;
1320
1321 p.sector = cpu_to_be64(sector);
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +01001322 p.block_id = ID_SYNCER /* unused */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001323 p.blksize = cpu_to_be32(size);
1324
Philipp Reisnerc0129492011-01-19 16:58:16 +01001325 ok = drbd_send_cmd(mdev, USE_DATA_SOCKET, P_OV_REQUEST, &p.head, sizeof(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001326 return ok;
1327}
1328
1329/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001330 * returns false if we should retry,
1331 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001332 */
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001333static int we_should_drop_the_connection(struct drbd_tconn *tconn, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001334{
1335 int drop_it;
1336 /* long elapsed = (long)(jiffies - mdev->last_received); */
1337
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001338 drop_it = tconn->meta.socket == sock
1339 || !tconn->asender.task
1340 || get_t_state(&tconn->asender) != RUNNING
1341 || tconn->volume0->state.conn < C_CONNECTED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001342
1343 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001344 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001345
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001346 drop_it = !--tconn->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001347 if (!drop_it) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001348 conn_err(tconn, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1349 current->comm, current->pid, tconn->ko_count);
1350 request_ping(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001351 }
1352
1353 return drop_it; /* && (mdev->state == R_PRIMARY) */;
1354}
1355
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001356static void drbd_update_congested(struct drbd_tconn *tconn)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001357{
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001358 struct sock *sk = tconn->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001359 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001360 set_bit(NET_CONGESTED, &tconn->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001361}
1362
Philipp Reisnerb411b362009-09-25 16:07:19 -07001363/* The idea of sendpage seems to be to put some kind of reference
1364 * to the page into the skb, and to hand it over to the NIC. In
1365 * this process get_page() gets called.
1366 *
1367 * As soon as the page was really sent over the network put_page()
1368 * gets called by some part of the network layer. [ NIC driver? ]
1369 *
1370 * [ get_page() / put_page() increment/decrement the count. If count
1371 * reaches 0 the page will be freed. ]
1372 *
1373 * This works nicely with pages from FSs.
1374 * But this means that in protocol A we might signal IO completion too early!
1375 *
1376 * In order not to corrupt data during a resync we must make sure
1377 * that we do not reuse our own buffer pages (EEs) to early, therefore
1378 * we have the net_ee list.
1379 *
1380 * XFS seems to have problems, still, it submits pages with page_count == 0!
1381 * As a workaround, we disable sendpage on pages
1382 * with page_count == 0 or PageSlab.
1383 */
1384static int _drbd_no_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001385 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001386{
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001387 int sent = drbd_send(mdev->tconn, mdev->tconn->data.socket, kmap(page) + offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001388 kunmap(page);
1389 if (sent == size)
1390 mdev->send_cnt += size>>9;
1391 return sent == size;
1392}
1393
1394static int _drbd_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001395 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001396{
1397 mm_segment_t oldfs = get_fs();
1398 int sent, ok;
1399 int len = size;
1400
1401 /* e.g. XFS meta- & log-data is in slab pages, which have a
1402 * page_count of 0 and/or have PageSlab() set.
1403 * we cannot use send_page for those, as that does get_page();
1404 * put_page(); and would cause either a VM_BUG directly, or
1405 * __page_cache_release a page that would actually still be referenced
1406 * by someone, leading to some obscure delayed Oops somewhere else. */
1407 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001408 return _drbd_no_send_page(mdev, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001409
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001410 msg_flags |= MSG_NOSIGNAL;
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001411 drbd_update_congested(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001412 set_fs(KERNEL_DS);
1413 do {
Philipp Reisnere42325a2011-01-19 13:55:45 +01001414 sent = mdev->tconn->data.socket->ops->sendpage(mdev->tconn->data.socket, page,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001415 offset, len,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001416 msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001417 if (sent == -EAGAIN) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001418 if (we_should_drop_the_connection(mdev->tconn,
Philipp Reisnere42325a2011-01-19 13:55:45 +01001419 mdev->tconn->data.socket))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001420 break;
1421 else
1422 continue;
1423 }
1424 if (sent <= 0) {
1425 dev_warn(DEV, "%s: size=%d len=%d sent=%d\n",
1426 __func__, (int)size, len, sent);
1427 break;
1428 }
1429 len -= sent;
1430 offset += sent;
1431 } while (len > 0 /* THINK && mdev->cstate >= C_CONNECTED*/);
1432 set_fs(oldfs);
Philipp Reisner01a311a2011-02-07 14:30:33 +01001433 clear_bit(NET_CONGESTED, &mdev->tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001434
1435 ok = (len == 0);
1436 if (likely(ok))
1437 mdev->send_cnt += size>>9;
1438 return ok;
1439}
1440
1441static int _drbd_send_bio(struct drbd_conf *mdev, struct bio *bio)
1442{
1443 struct bio_vec *bvec;
1444 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001445 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001446 __bio_for_each_segment(bvec, bio, i, 0) {
1447 if (!_drbd_no_send_page(mdev, bvec->bv_page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001448 bvec->bv_offset, bvec->bv_len,
1449 i == bio->bi_vcnt -1 ? 0 : MSG_MORE))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001450 return 0;
1451 }
1452 return 1;
1453}
1454
1455static int _drbd_send_zc_bio(struct drbd_conf *mdev, struct bio *bio)
1456{
1457 struct bio_vec *bvec;
1458 int i;
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001459 /* hint all but last page with MSG_MORE */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001460 __bio_for_each_segment(bvec, bio, i, 0) {
1461 if (!_drbd_send_page(mdev, bvec->bv_page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001462 bvec->bv_offset, bvec->bv_len,
1463 i == bio->bi_vcnt -1 ? 0 : MSG_MORE))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001464 return 0;
1465 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001466 return 1;
1467}
1468
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001469static int _drbd_send_zc_ee(struct drbd_conf *mdev,
1470 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001471{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001472 struct page *page = peer_req->pages;
1473 unsigned len = peer_req->i.size;
1474
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001475 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001476 page_chain_for_each(page) {
1477 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001478 if (!_drbd_send_page(mdev, page, 0, l,
1479 page_chain_next(page) ? MSG_MORE : 0))
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001480 return 0;
1481 len -= l;
1482 }
1483 return 1;
1484}
1485
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001486static u32 bio_flags_to_wire(struct drbd_conf *mdev, unsigned long bi_rw)
1487{
Philipp Reisner31890f42011-01-19 14:12:51 +01001488 if (mdev->tconn->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001489 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001490 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1491 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1492 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1493 else
Jens Axboe721a9602011-03-09 11:56:30 +01001494 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001495}
1496
Philipp Reisnerb411b362009-09-25 16:07:19 -07001497/* Used to send write requests
1498 * R_PRIMARY -> Peer (P_DATA)
1499 */
1500int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
1501{
1502 int ok = 1;
1503 struct p_data p;
1504 unsigned int dp_flags = 0;
1505 void *dgb;
1506 int dgs;
1507
Philipp Reisner61120872011-02-08 09:50:54 +01001508 if (!drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001509 return 0;
1510
Philipp Reisnera0638452011-01-19 14:31:32 +01001511 dgs = (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_w_tfm) ?
1512 crypto_hash_digestsize(mdev->tconn->integrity_w_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001513
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001514 prepare_header(mdev, &p.head, P_DATA, sizeof(p) - sizeof(struct p_header) + dgs + req->i.size);
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001515 p.sector = cpu_to_be64(req->i.sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001516 p.block_id = (unsigned long)req;
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001517 p.seq_num = cpu_to_be32(req->seq_num = atomic_add_return(1, &mdev->packet_seq));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001518
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001519 dp_flags = bio_flags_to_wire(mdev, req->master_bio->bi_rw);
1520
Philipp Reisnerb411b362009-09-25 16:07:19 -07001521 if (mdev->state.conn >= C_SYNC_SOURCE &&
1522 mdev->state.conn <= C_PAUSED_SYNC_T)
1523 dp_flags |= DP_MAY_SET_IN_SYNC;
1524
1525 p.dp_flags = cpu_to_be32(dp_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001526 set_bit(UNPLUG_REMOTE, &mdev->flags);
1527 ok = (sizeof(p) ==
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001528 drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), dgs ? MSG_MORE : 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001529 if (ok && dgs) {
Philipp Reisnera0638452011-01-19 14:31:32 +01001530 dgb = mdev->tconn->int_dig_out;
1531 drbd_csum_bio(mdev, mdev->tconn->integrity_w_tfm, req->master_bio, dgb);
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001532 ok = dgs == drbd_send(mdev->tconn, mdev->tconn->data.socket, dgb, dgs, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001533 }
1534 if (ok) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001535 /* For protocol A, we have to memcpy the payload into
1536 * socket buffers, as we may complete right away
1537 * as soon as we handed it over to tcp, at which point the data
1538 * pages may become invalid.
1539 *
1540 * For data-integrity enabled, we copy it as well, so we can be
1541 * sure that even if the bio pages may still be modified, it
1542 * won't change the data on the wire, thus if the digest checks
1543 * out ok after sending on this side, but does not fit on the
1544 * receiving side, we sure have detected corruption elsewhere.
1545 */
Philipp Reisner89e58e72011-01-19 13:12:45 +01001546 if (mdev->tconn->net_conf->wire_protocol == DRBD_PROT_A || dgs)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001547 ok = _drbd_send_bio(mdev, req->master_bio);
1548 else
1549 ok = _drbd_send_zc_bio(mdev, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001550
1551 /* double check digest, sometimes buffers have been modified in flight. */
1552 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001553 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001554 * currently supported in kernel crypto. */
1555 unsigned char digest[64];
Philipp Reisnera0638452011-01-19 14:31:32 +01001556 drbd_csum_bio(mdev, mdev->tconn->integrity_w_tfm, req->master_bio, digest);
1557 if (memcmp(mdev->tconn->int_dig_out, digest, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001558 dev_warn(DEV,
1559 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001560 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001561 }
1562 } /* else if (dgs > 64) {
1563 ... Be noisy about digest too large ...
1564 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001565 }
1566
Philipp Reisner61120872011-02-08 09:50:54 +01001567 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001568
Philipp Reisnerb411b362009-09-25 16:07:19 -07001569 return ok;
1570}
1571
1572/* answer packet, used to send data back for read requests:
1573 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1574 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1575 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001576int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001577 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001578{
1579 int ok;
1580 struct p_data p;
1581 void *dgb;
1582 int dgs;
1583
Philipp Reisnera0638452011-01-19 14:31:32 +01001584 dgs = (mdev->tconn->agreed_pro_version >= 87 && mdev->tconn->integrity_w_tfm) ?
1585 crypto_hash_digestsize(mdev->tconn->integrity_w_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001586
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001587 prepare_header(mdev, &p.head, cmd, sizeof(p) -
1588 sizeof(struct p_header80) +
1589 dgs + peer_req->i.size);
1590 p.sector = cpu_to_be64(peer_req->i.sector);
1591 p.block_id = peer_req->block_id;
Andreas Gruenbachercc378272011-01-26 18:01:50 +01001592 p.seq_num = 0; /* unused */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001593
1594 /* Only called by our kernel thread.
1595 * This one may be interrupted by DRBD_SIG and/or DRBD_SIGKILL
1596 * in response to admin command or module unload.
1597 */
Philipp Reisner61120872011-02-08 09:50:54 +01001598 if (!drbd_get_data_sock(mdev->tconn))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001599 return 0;
1600
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001601 ok = sizeof(p) == drbd_send(mdev->tconn, mdev->tconn->data.socket, &p, sizeof(p), dgs ? MSG_MORE : 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001602 if (ok && dgs) {
Philipp Reisnera0638452011-01-19 14:31:32 +01001603 dgb = mdev->tconn->int_dig_out;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001604 drbd_csum_ee(mdev, mdev->tconn->integrity_w_tfm, peer_req, dgb);
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001605 ok = dgs == drbd_send(mdev->tconn, mdev->tconn->data.socket, dgb, dgs, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001606 }
1607 if (ok)
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001608 ok = _drbd_send_zc_ee(mdev, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001609
Philipp Reisner61120872011-02-08 09:50:54 +01001610 drbd_put_data_sock(mdev->tconn);
Philipp Reisnerbd26bfc52010-05-04 12:33:58 +02001611
Philipp Reisnerb411b362009-09-25 16:07:19 -07001612 return ok;
1613}
1614
Philipp Reisner73a01a12010-10-27 14:33:00 +02001615int drbd_send_oos(struct drbd_conf *mdev, struct drbd_request *req)
1616{
1617 struct p_block_desc p;
1618
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001619 p.sector = cpu_to_be64(req->i.sector);
1620 p.blksize = cpu_to_be32(req->i.size);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001621
1622 return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_OUT_OF_SYNC, &p.head, sizeof(p));
1623}
1624
Philipp Reisnerb411b362009-09-25 16:07:19 -07001625/*
1626 drbd_send distinguishes two cases:
1627
1628 Packets sent via the data socket "sock"
1629 and packets sent via the meta data socket "msock"
1630
1631 sock msock
1632 -----------------+-------------------------+------------------------------
1633 timeout conf.timeout / 2 conf.timeout / 2
1634 timeout action send a ping via msock Abort communication
1635 and close all sockets
1636*/
1637
1638/*
1639 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1640 */
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001641int drbd_send(struct drbd_tconn *tconn, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001642 void *buf, size_t size, unsigned msg_flags)
1643{
1644 struct kvec iov;
1645 struct msghdr msg;
1646 int rv, sent = 0;
1647
1648 if (!sock)
1649 return -1000;
1650
1651 /* THINK if (signal_pending) return ... ? */
1652
1653 iov.iov_base = buf;
1654 iov.iov_len = size;
1655
1656 msg.msg_name = NULL;
1657 msg.msg_namelen = 0;
1658 msg.msg_control = NULL;
1659 msg.msg_controllen = 0;
1660 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1661
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001662 if (sock == tconn->data.socket) {
1663 tconn->ko_count = tconn->net_conf->ko_count;
1664 drbd_update_congested(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001665 }
1666 do {
1667 /* STRANGE
1668 * tcp_sendmsg does _not_ use its size parameter at all ?
1669 *
1670 * -EAGAIN on timeout, -EINTR on signal.
1671 */
1672/* THINK
1673 * do we need to block DRBD_SIG if sock == &meta.socket ??
1674 * otherwise wake_asender() might interrupt some send_*Ack !
1675 */
1676 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1677 if (rv == -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001678 if (we_should_drop_the_connection(tconn, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001679 break;
1680 else
1681 continue;
1682 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001683 if (rv == -EINTR) {
1684 flush_signals(current);
1685 rv = 0;
1686 }
1687 if (rv < 0)
1688 break;
1689 sent += rv;
1690 iov.iov_base += rv;
1691 iov.iov_len -= rv;
1692 } while (sent < size);
1693
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001694 if (sock == tconn->data.socket)
1695 clear_bit(NET_CONGESTED, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001696
1697 if (rv <= 0) {
1698 if (rv != -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001699 conn_err(tconn, "%s_sendmsg returned %d\n",
1700 sock == tconn->meta.socket ? "msock" : "sock",
1701 rv);
1702 drbd_force_state(tconn->volume0, NS(conn, C_BROKEN_PIPE));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001703 } else
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001704 drbd_force_state(tconn->volume0, NS(conn, C_TIMEOUT));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001705 }
1706
1707 return sent;
1708}
1709
1710static int drbd_open(struct block_device *bdev, fmode_t mode)
1711{
1712 struct drbd_conf *mdev = bdev->bd_disk->private_data;
1713 unsigned long flags;
1714 int rv = 0;
1715
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001716 mutex_lock(&drbd_main_mutex);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001717 spin_lock_irqsave(&mdev->tconn->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001718 /* to have a stable mdev->state.role
1719 * and no race with updating open_cnt */
1720
1721 if (mdev->state.role != R_PRIMARY) {
1722 if (mode & FMODE_WRITE)
1723 rv = -EROFS;
1724 else if (!allow_oos)
1725 rv = -EMEDIUMTYPE;
1726 }
1727
1728 if (!rv)
1729 mdev->open_cnt++;
Philipp Reisner87eeee42011-01-19 14:16:30 +01001730 spin_unlock_irqrestore(&mdev->tconn->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001731 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001732
1733 return rv;
1734}
1735
1736static int drbd_release(struct gendisk *gd, fmode_t mode)
1737{
1738 struct drbd_conf *mdev = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001739 mutex_lock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001740 mdev->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001741 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001742 return 0;
1743}
1744
Philipp Reisnerb411b362009-09-25 16:07:19 -07001745static void drbd_set_defaults(struct drbd_conf *mdev)
1746{
Philipp Reisner85f4cc12010-06-29 17:35:34 +02001747 /* This way we get a compile error when sync_conf grows,
1748 and we forgot to initialize it here */
1749 mdev->sync_conf = (struct syncer_conf) {
1750 /* .rate = */ DRBD_RATE_DEF,
1751 /* .after = */ DRBD_AFTER_DEF,
1752 /* .al_extents = */ DRBD_AL_EXTENTS_DEF,
Philipp Reisner85f4cc12010-06-29 17:35:34 +02001753 /* .verify_alg = */ {}, 0,
1754 /* .cpu_mask = */ {}, 0,
1755 /* .csums_alg = */ {}, 0,
Philipp Reisnere7564142010-06-29 17:35:34 +02001756 /* .use_rle = */ 0,
Philipp Reisner9a31d712010-07-05 13:42:03 +02001757 /* .on_no_data = */ DRBD_ON_NO_DATA_DEF,
1758 /* .c_plan_ahead = */ DRBD_C_PLAN_AHEAD_DEF,
1759 /* .c_delay_target = */ DRBD_C_DELAY_TARGET_DEF,
1760 /* .c_fill_target = */ DRBD_C_FILL_TARGET_DEF,
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001761 /* .c_max_rate = */ DRBD_C_MAX_RATE_DEF,
1762 /* .c_min_rate = */ DRBD_C_MIN_RATE_DEF
Philipp Reisner85f4cc12010-06-29 17:35:34 +02001763 };
1764
1765 /* Have to use that way, because the layout differs between
1766 big endian and little endian */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001767 mdev->state = (union drbd_state) {
1768 { .role = R_SECONDARY,
1769 .peer = R_UNKNOWN,
1770 .conn = C_STANDALONE,
1771 .disk = D_DISKLESS,
1772 .pdsk = D_UNKNOWN,
Philipp Reisnerfb22c402010-09-08 23:20:21 +02001773 .susp = 0,
1774 .susp_nod = 0,
1775 .susp_fen = 0
Philipp Reisnerb411b362009-09-25 16:07:19 -07001776 } };
1777}
1778
1779void drbd_init_set_defaults(struct drbd_conf *mdev)
1780{
1781 /* the memset(,0,) did most of this.
1782 * note: only assignments, no allocation in here */
1783
1784 drbd_set_defaults(mdev);
1785
Philipp Reisnerb411b362009-09-25 16:07:19 -07001786 atomic_set(&mdev->ap_bio_cnt, 0);
1787 atomic_set(&mdev->ap_pending_cnt, 0);
1788 atomic_set(&mdev->rs_pending_cnt, 0);
1789 atomic_set(&mdev->unacked_cnt, 0);
1790 atomic_set(&mdev->local_cnt, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001791 atomic_set(&mdev->pp_in_use, 0);
Lars Ellenberg435f0742010-09-06 12:30:25 +02001792 atomic_set(&mdev->pp_in_use_by_net, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02001793 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001794 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner759fbdf2010-10-26 16:02:27 +02001795 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001796
1797 mutex_init(&mdev->md_io_mutex);
Philipp Reisnere42325a2011-01-19 13:55:45 +01001798 mutex_init(&mdev->tconn->data.mutex);
1799 mutex_init(&mdev->tconn->meta.mutex);
1800 sema_init(&mdev->tconn->data.work.s, 0);
1801 sema_init(&mdev->tconn->meta.work.s, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001802 mutex_init(&mdev->state_mutex);
1803
Philipp Reisnere42325a2011-01-19 13:55:45 +01001804 spin_lock_init(&mdev->tconn->data.work.q_lock);
1805 spin_lock_init(&mdev->tconn->meta.work.q_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001806
1807 spin_lock_init(&mdev->al_lock);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001808 spin_lock_init(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001809 spin_lock_init(&mdev->peer_seq_lock);
1810 spin_lock_init(&mdev->epoch_lock);
1811
1812 INIT_LIST_HEAD(&mdev->active_ee);
1813 INIT_LIST_HEAD(&mdev->sync_ee);
1814 INIT_LIST_HEAD(&mdev->done_ee);
1815 INIT_LIST_HEAD(&mdev->read_ee);
1816 INIT_LIST_HEAD(&mdev->net_ee);
1817 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnere42325a2011-01-19 13:55:45 +01001818 INIT_LIST_HEAD(&mdev->tconn->data.work.q);
1819 INIT_LIST_HEAD(&mdev->tconn->meta.work.q);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001820 INIT_LIST_HEAD(&mdev->resync_work.list);
1821 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001822 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001823 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02001824 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001825 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02001826
Philipp Reisner794abb72010-12-27 11:51:23 +01001827 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001828 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001829 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001830 mdev->md_sync_work.cb = w_md_sync;
1831 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001832 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001833 init_timer(&mdev->resync_timer);
1834 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01001835 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001836 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001837 mdev->resync_timer.function = resync_timer_fn;
1838 mdev->resync_timer.data = (unsigned long) mdev;
1839 mdev->md_sync_timer.function = md_sync_timer_fn;
1840 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001841 mdev->start_resync_timer.function = start_resync_timer_fn;
1842 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001843 mdev->request_timer.function = request_timer_fn;
1844 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001845
1846 init_waitqueue_head(&mdev->misc_wait);
1847 init_waitqueue_head(&mdev->state_wait);
1848 init_waitqueue_head(&mdev->ee_wait);
1849 init_waitqueue_head(&mdev->al_wait);
1850 init_waitqueue_head(&mdev->seq_wait);
1851
Philipp Reisnerbed879a2011-02-04 14:00:37 +01001852 drbd_thread_init(mdev, &mdev->tconn->receiver, drbdd_init, "receiver");
1853 drbd_thread_init(mdev, &mdev->tconn->worker, drbd_worker, "worker");
1854 drbd_thread_init(mdev, &mdev->tconn->asender, drbd_asender, "asender");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001855
Philipp Reisnerfd340c12011-01-19 16:57:39 +01001856 /* mdev->tconn->agreed_pro_version gets initialized in drbd_connect() */
Philipp Reisner2451fc32010-08-24 13:43:11 +02001857 mdev->write_ordering = WO_bdev_flush;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001858 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001859 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
1860 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001861}
1862
1863void drbd_mdev_cleanup(struct drbd_conf *mdev)
1864{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001865 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001866 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001867 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001868 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001869
1870 /* no need to lock it, I'm the only thread alive */
1871 if (atomic_read(&mdev->current_epoch->epoch_size) != 0)
1872 dev_err(DEV, "epoch_size:%d\n", atomic_read(&mdev->current_epoch->epoch_size));
1873 mdev->al_writ_cnt =
1874 mdev->bm_writ_cnt =
1875 mdev->read_cnt =
1876 mdev->recv_cnt =
1877 mdev->send_cnt =
1878 mdev->writ_cnt =
1879 mdev->p_size =
1880 mdev->rs_start =
1881 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001882 mdev->rs_failed = 0;
1883 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001884 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001885 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
1886 mdev->rs_mark_left[i] = 0;
1887 mdev->rs_mark_time[i] = 0;
1888 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01001889 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001890
1891 drbd_set_my_capacity(mdev, 0);
1892 if (mdev->bitmap) {
1893 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01001894 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001895 drbd_bm_cleanup(mdev);
1896 }
1897
1898 drbd_free_resources(mdev);
Philipp Reisner07782862010-08-31 12:00:50 +02001899 clear_bit(AL_SUSPENDED, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001900
1901 /*
1902 * currently we drbd_init_ee only on module load, so
1903 * we may do drbd_release_ee only on module unload!
1904 */
1905 D_ASSERT(list_empty(&mdev->active_ee));
1906 D_ASSERT(list_empty(&mdev->sync_ee));
1907 D_ASSERT(list_empty(&mdev->done_ee));
1908 D_ASSERT(list_empty(&mdev->read_ee));
1909 D_ASSERT(list_empty(&mdev->net_ee));
1910 D_ASSERT(list_empty(&mdev->resync_reads));
Philipp Reisnere42325a2011-01-19 13:55:45 +01001911 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
1912 D_ASSERT(list_empty(&mdev->tconn->meta.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001913 D_ASSERT(list_empty(&mdev->resync_work.list));
1914 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001915 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01001916
1917 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001918}
1919
1920
1921static void drbd_destroy_mempools(void)
1922{
1923 struct page *page;
1924
1925 while (drbd_pp_pool) {
1926 page = drbd_pp_pool;
1927 drbd_pp_pool = (struct page *)page_private(page);
1928 __free_page(page);
1929 drbd_pp_vacant--;
1930 }
1931
1932 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
1933
1934 if (drbd_ee_mempool)
1935 mempool_destroy(drbd_ee_mempool);
1936 if (drbd_request_mempool)
1937 mempool_destroy(drbd_request_mempool);
1938 if (drbd_ee_cache)
1939 kmem_cache_destroy(drbd_ee_cache);
1940 if (drbd_request_cache)
1941 kmem_cache_destroy(drbd_request_cache);
1942 if (drbd_bm_ext_cache)
1943 kmem_cache_destroy(drbd_bm_ext_cache);
1944 if (drbd_al_ext_cache)
1945 kmem_cache_destroy(drbd_al_ext_cache);
1946
1947 drbd_ee_mempool = NULL;
1948 drbd_request_mempool = NULL;
1949 drbd_ee_cache = NULL;
1950 drbd_request_cache = NULL;
1951 drbd_bm_ext_cache = NULL;
1952 drbd_al_ext_cache = NULL;
1953
1954 return;
1955}
1956
1957static int drbd_create_mempools(void)
1958{
1959 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001960 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001961 int i;
1962
1963 /* prepare our caches and mempools */
1964 drbd_request_mempool = NULL;
1965 drbd_ee_cache = NULL;
1966 drbd_request_cache = NULL;
1967 drbd_bm_ext_cache = NULL;
1968 drbd_al_ext_cache = NULL;
1969 drbd_pp_pool = NULL;
1970
1971 /* caches */
1972 drbd_request_cache = kmem_cache_create(
1973 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
1974 if (drbd_request_cache == NULL)
1975 goto Enomem;
1976
1977 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01001978 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001979 if (drbd_ee_cache == NULL)
1980 goto Enomem;
1981
1982 drbd_bm_ext_cache = kmem_cache_create(
1983 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
1984 if (drbd_bm_ext_cache == NULL)
1985 goto Enomem;
1986
1987 drbd_al_ext_cache = kmem_cache_create(
1988 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
1989 if (drbd_al_ext_cache == NULL)
1990 goto Enomem;
1991
1992 /* mempools */
1993 drbd_request_mempool = mempool_create(number,
1994 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
1995 if (drbd_request_mempool == NULL)
1996 goto Enomem;
1997
1998 drbd_ee_mempool = mempool_create(number,
1999 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002000 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002001 goto Enomem;
2002
2003 /* drbd's page pool */
2004 spin_lock_init(&drbd_pp_lock);
2005
2006 for (i = 0; i < number; i++) {
2007 page = alloc_page(GFP_HIGHUSER);
2008 if (!page)
2009 goto Enomem;
2010 set_page_private(page, (unsigned long)drbd_pp_pool);
2011 drbd_pp_pool = page;
2012 }
2013 drbd_pp_vacant = number;
2014
2015 return 0;
2016
2017Enomem:
2018 drbd_destroy_mempools(); /* in case we allocated some */
2019 return -ENOMEM;
2020}
2021
2022static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2023 void *unused)
2024{
2025 /* just so we have it. you never know what interesting things we
2026 * might want to do here some day...
2027 */
2028
2029 return NOTIFY_DONE;
2030}
2031
2032static struct notifier_block drbd_notifier = {
2033 .notifier_call = drbd_notify_sys,
2034};
2035
2036static void drbd_release_ee_lists(struct drbd_conf *mdev)
2037{
2038 int rr;
2039
2040 rr = drbd_release_ee(mdev, &mdev->active_ee);
2041 if (rr)
2042 dev_err(DEV, "%d EEs in active list found!\n", rr);
2043
2044 rr = drbd_release_ee(mdev, &mdev->sync_ee);
2045 if (rr)
2046 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2047
2048 rr = drbd_release_ee(mdev, &mdev->read_ee);
2049 if (rr)
2050 dev_err(DEV, "%d EEs in read list found!\n", rr);
2051
2052 rr = drbd_release_ee(mdev, &mdev->done_ee);
2053 if (rr)
2054 dev_err(DEV, "%d EEs in done list found!\n", rr);
2055
2056 rr = drbd_release_ee(mdev, &mdev->net_ee);
2057 if (rr)
2058 dev_err(DEV, "%d EEs in net list found!\n", rr);
2059}
2060
2061/* caution. no locking.
2062 * currently only used from module cleanup code. */
2063static void drbd_delete_device(unsigned int minor)
2064{
2065 struct drbd_conf *mdev = minor_to_mdev(minor);
2066
2067 if (!mdev)
2068 return;
2069
2070 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002071 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnere42325a2011-01-19 13:55:45 +01002072 D_ASSERT(list_empty(&mdev->tconn->data.work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002073 /* end paranoia asserts */
2074
2075 del_gendisk(mdev->vdisk);
2076
2077 /* cleanup stuff that may have been allocated during
2078 * device (re-)configuration or state changes */
2079
2080 if (mdev->this_bdev)
2081 bdput(mdev->this_bdev);
2082
2083 drbd_free_resources(mdev);
Philipp Reisner21114382011-01-19 12:26:59 +01002084 drbd_free_tconn(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002085
2086 drbd_release_ee_lists(mdev);
2087
Philipp Reisnerb411b362009-09-25 16:07:19 -07002088 lc_destroy(mdev->act_log);
2089 lc_destroy(mdev->resync);
2090
2091 kfree(mdev->p_uuid);
2092 /* mdev->p_uuid = NULL; */
2093
Philipp Reisnerb411b362009-09-25 16:07:19 -07002094 /* cleanup the rest that has been
2095 * allocated from drbd_new_device
2096 * and actually free the mdev itself */
2097 drbd_free_mdev(mdev);
2098}
2099
2100static void drbd_cleanup(void)
2101{
2102 unsigned int i;
2103
2104 unregister_reboot_notifier(&drbd_notifier);
2105
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002106 /* first remove proc,
2107 * drbdsetup uses it's presence to detect
2108 * whether DRBD is loaded.
2109 * If we would get stuck in proc removal,
2110 * but have netlink already deregistered,
2111 * some drbdsetup commands may wait forever
2112 * for an answer.
2113 */
2114 if (drbd_proc)
2115 remove_proc_entry("drbd", NULL);
2116
Philipp Reisnerb411b362009-09-25 16:07:19 -07002117 drbd_nl_cleanup();
2118
2119 if (minor_table) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002120 i = minor_count;
2121 while (i--)
2122 drbd_delete_device(i);
2123 drbd_destroy_mempools();
2124 }
2125
2126 kfree(minor_table);
2127
2128 unregister_blkdev(DRBD_MAJOR, "drbd");
2129
2130 printk(KERN_INFO "drbd: module cleanup done.\n");
2131}
2132
2133/**
2134 * drbd_congested() - Callback for pdflush
2135 * @congested_data: User data
2136 * @bdi_bits: Bits pdflush is currently interested in
2137 *
2138 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2139 */
2140static int drbd_congested(void *congested_data, int bdi_bits)
2141{
2142 struct drbd_conf *mdev = congested_data;
2143 struct request_queue *q;
2144 char reason = '-';
2145 int r = 0;
2146
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002147 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002148 /* DRBD has frozen IO */
2149 r = bdi_bits;
2150 reason = 'd';
2151 goto out;
2152 }
2153
2154 if (get_ldev(mdev)) {
2155 q = bdev_get_queue(mdev->ldev->backing_bdev);
2156 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2157 put_ldev(mdev);
2158 if (r)
2159 reason = 'b';
2160 }
2161
Philipp Reisner01a311a2011-02-07 14:30:33 +01002162 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002163 r |= (1 << BDI_async_congested);
2164 reason = reason == 'b' ? 'a' : 'n';
2165 }
2166
2167out:
2168 mdev->congestion_reason = reason;
2169 return r;
2170}
2171
Philipp Reisner21114382011-01-19 12:26:59 +01002172struct drbd_tconn *drbd_new_tconn(char *name)
2173{
2174 struct drbd_tconn *tconn;
2175
2176 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2177 if (!tconn)
2178 return NULL;
2179
2180 tconn->name = kstrdup(name, GFP_KERNEL);
2181 if (!tconn->name)
2182 goto fail;
2183
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002184 atomic_set(&tconn->net_cnt, 0);
2185 init_waitqueue_head(&tconn->net_cnt_wait);
2186
Philipp Reisner21114382011-01-19 12:26:59 +01002187 write_lock_irq(&global_state_lock);
2188 list_add(&tconn->all_tconn, &drbd_tconns);
2189 write_unlock_irq(&global_state_lock);
2190
2191 return tconn;
2192
2193fail:
2194 kfree(tconn->name);
2195 kfree(tconn);
2196
2197 return NULL;
2198}
2199
2200void drbd_free_tconn(struct drbd_tconn *tconn)
2201{
2202 write_lock_irq(&global_state_lock);
2203 list_del(&tconn->all_tconn);
2204 write_unlock_irq(&global_state_lock);
2205
2206 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002207 kfree(tconn->int_dig_out);
2208 kfree(tconn->int_dig_in);
2209 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002210 kfree(tconn);
2211}
2212
Philipp Reisnerb411b362009-09-25 16:07:19 -07002213struct drbd_conf *drbd_new_device(unsigned int minor)
2214{
2215 struct drbd_conf *mdev;
2216 struct gendisk *disk;
2217 struct request_queue *q;
Philipp Reisner60ae4962011-02-07 14:01:51 +01002218 char conn_name[9]; /* drbd1234N */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002219
2220 /* GFP_KERNEL, we are outside of all write-out paths */
2221 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2222 if (!mdev)
2223 return NULL;
Philipp Reisner60ae4962011-02-07 14:01:51 +01002224 sprintf(conn_name, "drbd%d", minor);
2225 mdev->tconn = drbd_new_tconn(conn_name);
Philipp Reisner21114382011-01-19 12:26:59 +01002226 if (!mdev->tconn)
2227 goto out_no_tconn;
2228
Philipp Reisnerb411b362009-09-25 16:07:19 -07002229 if (!zalloc_cpumask_var(&mdev->cpu_mask, GFP_KERNEL))
2230 goto out_no_cpumask;
2231
Philipp Reisner21114382011-01-19 12:26:59 +01002232 mdev->tconn->volume0 = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002233 mdev->minor = minor;
2234
2235 drbd_init_set_defaults(mdev);
2236
2237 q = blk_alloc_queue(GFP_KERNEL);
2238 if (!q)
2239 goto out_no_q;
2240 mdev->rq_queue = q;
2241 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002242
2243 disk = alloc_disk(1);
2244 if (!disk)
2245 goto out_no_disk;
2246 mdev->vdisk = disk;
2247
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002248 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002249
2250 disk->queue = q;
2251 disk->major = DRBD_MAJOR;
2252 disk->first_minor = minor;
2253 disk->fops = &drbd_ops;
2254 sprintf(disk->disk_name, "drbd%d", minor);
2255 disk->private_data = mdev;
2256
2257 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2258 /* we have no partitions. we contain only ourselves. */
2259 mdev->this_bdev->bd_contains = mdev->this_bdev;
2260
2261 q->backing_dev_info.congested_fn = drbd_congested;
2262 q->backing_dev_info.congested_data = mdev;
2263
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002264 blk_queue_make_request(q, drbd_make_request);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002265 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2266 This triggers a max_bio_size message upon first attach or connect */
2267 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002268 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2269 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002270 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002271
2272 mdev->md_io_page = alloc_page(GFP_KERNEL);
2273 if (!mdev->md_io_page)
2274 goto out_no_io_page;
2275
2276 if (drbd_bm_init(mdev))
2277 goto out_no_bitmap;
2278 /* no need to lock access, we are still initializing this minor device. */
2279 if (!tl_init(mdev))
2280 goto out_no_tl;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002281 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002282 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002283
Philipp Reisnerb411b362009-09-25 16:07:19 -07002284 mdev->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2285 if (!mdev->current_epoch)
2286 goto out_no_epoch;
2287
2288 INIT_LIST_HEAD(&mdev->current_epoch->list);
2289 mdev->epochs = 1;
2290
2291 return mdev;
2292
2293/* out_whatever_else:
2294 kfree(mdev->current_epoch); */
2295out_no_epoch:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002296 tl_cleanup(mdev);
2297out_no_tl:
2298 drbd_bm_cleanup(mdev);
2299out_no_bitmap:
2300 __free_page(mdev->md_io_page);
2301out_no_io_page:
2302 put_disk(disk);
2303out_no_disk:
2304 blk_cleanup_queue(q);
2305out_no_q:
2306 free_cpumask_var(mdev->cpu_mask);
2307out_no_cpumask:
Philipp Reisner21114382011-01-19 12:26:59 +01002308 drbd_free_tconn(mdev->tconn);
2309out_no_tconn:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002310 kfree(mdev);
2311 return NULL;
2312}
2313
2314/* counterpart of drbd_new_device.
2315 * last part of drbd_delete_device. */
2316void drbd_free_mdev(struct drbd_conf *mdev)
2317{
2318 kfree(mdev->current_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002319 tl_cleanup(mdev);
2320 if (mdev->bitmap) /* should no longer be there. */
2321 drbd_bm_cleanup(mdev);
2322 __free_page(mdev->md_io_page);
2323 put_disk(mdev->vdisk);
2324 blk_cleanup_queue(mdev->rq_queue);
2325 free_cpumask_var(mdev->cpu_mask);
2326 kfree(mdev);
2327}
2328
2329
2330int __init drbd_init(void)
2331{
2332 int err;
2333
Philipp Reisnerfd340c12011-01-19 16:57:39 +01002334 BUILD_BUG_ON(sizeof(struct p_header80) != sizeof(struct p_header95));
2335 BUILD_BUG_ON(sizeof(struct p_handshake) != 80);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002336
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002337 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002338 printk(KERN_ERR
2339 "drbd: invalid minor_count (%d)\n", minor_count);
2340#ifdef MODULE
2341 return -EINVAL;
2342#else
2343 minor_count = 8;
2344#endif
2345 }
2346
2347 err = drbd_nl_init();
2348 if (err)
2349 return err;
2350
2351 err = register_blkdev(DRBD_MAJOR, "drbd");
2352 if (err) {
2353 printk(KERN_ERR
2354 "drbd: unable to register block device major %d\n",
2355 DRBD_MAJOR);
2356 return err;
2357 }
2358
2359 register_reboot_notifier(&drbd_notifier);
2360
2361 /*
2362 * allocate all necessary structs
2363 */
2364 err = -ENOMEM;
2365
2366 init_waitqueue_head(&drbd_pp_wait);
2367
2368 drbd_proc = NULL; /* play safe for drbd_cleanup */
2369 minor_table = kzalloc(sizeof(struct drbd_conf *)*minor_count,
2370 GFP_KERNEL);
2371 if (!minor_table)
2372 goto Enomem;
2373
2374 err = drbd_create_mempools();
2375 if (err)
2376 goto Enomem;
2377
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002378 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002379 if (!drbd_proc) {
2380 printk(KERN_ERR "drbd: unable to register proc file\n");
2381 goto Enomem;
2382 }
2383
2384 rwlock_init(&global_state_lock);
Philipp Reisner21114382011-01-19 12:26:59 +01002385 INIT_LIST_HEAD(&drbd_tconns);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002386
2387 printk(KERN_INFO "drbd: initialized. "
2388 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2389 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2390 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2391 printk(KERN_INFO "drbd: registered as block device major %d\n",
2392 DRBD_MAJOR);
2393 printk(KERN_INFO "drbd: minor_table @ 0x%p\n", minor_table);
2394
2395 return 0; /* Success! */
2396
2397Enomem:
2398 drbd_cleanup();
2399 if (err == -ENOMEM)
2400 /* currently always the case */
2401 printk(KERN_ERR "drbd: ran out of memory\n");
2402 else
2403 printk(KERN_ERR "drbd: initialization failure\n");
2404 return err;
2405}
2406
2407void drbd_free_bc(struct drbd_backing_dev *ldev)
2408{
2409 if (ldev == NULL)
2410 return;
2411
Tejun Heoe525fd82010-11-13 11:55:17 +01002412 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2413 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002414
2415 kfree(ldev);
2416}
2417
2418void drbd_free_sock(struct drbd_conf *mdev)
2419{
Philipp Reisnere42325a2011-01-19 13:55:45 +01002420 if (mdev->tconn->data.socket) {
2421 mutex_lock(&mdev->tconn->data.mutex);
2422 kernel_sock_shutdown(mdev->tconn->data.socket, SHUT_RDWR);
2423 sock_release(mdev->tconn->data.socket);
2424 mdev->tconn->data.socket = NULL;
2425 mutex_unlock(&mdev->tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002426 }
Philipp Reisnere42325a2011-01-19 13:55:45 +01002427 if (mdev->tconn->meta.socket) {
2428 mutex_lock(&mdev->tconn->meta.mutex);
2429 kernel_sock_shutdown(mdev->tconn->meta.socket, SHUT_RDWR);
2430 sock_release(mdev->tconn->meta.socket);
2431 mdev->tconn->meta.socket = NULL;
2432 mutex_unlock(&mdev->tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002433 }
2434}
2435
2436
2437void drbd_free_resources(struct drbd_conf *mdev)
2438{
2439 crypto_free_hash(mdev->csums_tfm);
2440 mdev->csums_tfm = NULL;
2441 crypto_free_hash(mdev->verify_tfm);
2442 mdev->verify_tfm = NULL;
Philipp Reisnera0638452011-01-19 14:31:32 +01002443 crypto_free_hash(mdev->tconn->cram_hmac_tfm);
2444 mdev->tconn->cram_hmac_tfm = NULL;
2445 crypto_free_hash(mdev->tconn->integrity_w_tfm);
2446 mdev->tconn->integrity_w_tfm = NULL;
2447 crypto_free_hash(mdev->tconn->integrity_r_tfm);
2448 mdev->tconn->integrity_r_tfm = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002449
2450 drbd_free_sock(mdev);
2451
2452 __no_warn(local,
2453 drbd_free_bc(mdev->ldev);
2454 mdev->ldev = NULL;);
2455}
2456
2457/* meta data management */
2458
2459struct meta_data_on_disk {
2460 u64 la_size; /* last agreed size. */
2461 u64 uuid[UI_SIZE]; /* UUIDs. */
2462 u64 device_uuid;
2463 u64 reserved_u64_1;
2464 u32 flags; /* MDF */
2465 u32 magic;
2466 u32 md_size_sect;
2467 u32 al_offset; /* offset to this block */
2468 u32 al_nr_extents; /* important for restoring the AL */
2469 /* `-- act_log->nr_elements <-- sync_conf.al_extents */
2470 u32 bm_offset; /* offset to the bitmap, from here */
2471 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002472 u32 la_peer_max_bio_size; /* last peer max_bio_size */
2473 u32 reserved_u32[3];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002474
2475} __packed;
2476
2477/**
2478 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2479 * @mdev: DRBD device.
2480 */
2481void drbd_md_sync(struct drbd_conf *mdev)
2482{
2483 struct meta_data_on_disk *buffer;
2484 sector_t sector;
2485 int i;
2486
Lars Ellenbergee15b032010-09-03 10:00:09 +02002487 del_timer(&mdev->md_sync_timer);
2488 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002489 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
2490 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002491
2492 /* We use here D_FAILED and not D_ATTACHING because we try to write
2493 * metadata even if we detach due to a disk failure! */
2494 if (!get_ldev_if_state(mdev, D_FAILED))
2495 return;
2496
Philipp Reisnerb411b362009-09-25 16:07:19 -07002497 mutex_lock(&mdev->md_io_mutex);
2498 buffer = (struct meta_data_on_disk *)page_address(mdev->md_io_page);
2499 memset(buffer, 0, 512);
2500
2501 buffer->la_size = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
2502 for (i = UI_CURRENT; i < UI_SIZE; i++)
2503 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
2504 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
2505 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC);
2506
2507 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
2508 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
2509 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
2510 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
2511 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
2512
2513 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002514 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002515
2516 D_ASSERT(drbd_md_ss__(mdev, mdev->ldev) == mdev->ldev->md.md_offset);
2517 sector = mdev->ldev->md.md_offset;
2518
Lars Ellenberg3f3a9b82010-09-01 15:12:12 +02002519 if (!drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002520 /* this was a try anyways ... */
2521 dev_err(DEV, "meta data update failed!\n");
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002522 drbd_chk_io_error(mdev, 1, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002523 }
2524
2525 /* Update mdev->ldev->md.la_size_sect,
2526 * since we updated it on metadata. */
2527 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
2528
2529 mutex_unlock(&mdev->md_io_mutex);
2530 put_ldev(mdev);
2531}
2532
2533/**
2534 * drbd_md_read() - Reads in the meta data super block
2535 * @mdev: DRBD device.
2536 * @bdev: Device from which the meta data should be read in.
2537 *
Andreas Gruenbacher116676c2010-12-08 13:33:11 +01002538 * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
Philipp Reisnerb411b362009-09-25 16:07:19 -07002539 * something goes wrong. Currently only: ERR_IO_MD_DISK, ERR_MD_INVALID.
2540 */
2541int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
2542{
2543 struct meta_data_on_disk *buffer;
2544 int i, rv = NO_ERROR;
2545
2546 if (!get_ldev_if_state(mdev, D_ATTACHING))
2547 return ERR_IO_MD_DISK;
2548
Philipp Reisnerb411b362009-09-25 16:07:19 -07002549 mutex_lock(&mdev->md_io_mutex);
2550 buffer = (struct meta_data_on_disk *)page_address(mdev->md_io_page);
2551
2552 if (!drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002553 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07002554 called BEFORE disk is attached */
2555 dev_err(DEV, "Error while reading metadata.\n");
2556 rv = ERR_IO_MD_DISK;
2557 goto err;
2558 }
2559
Andreas Gruenbachere7fad8a2011-01-11 13:54:02 +01002560 if (buffer->magic != cpu_to_be32(DRBD_MD_MAGIC)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002561 dev_err(DEV, "Error while reading metadata, magic not found.\n");
2562 rv = ERR_MD_INVALID;
2563 goto err;
2564 }
2565 if (be32_to_cpu(buffer->al_offset) != bdev->md.al_offset) {
2566 dev_err(DEV, "unexpected al_offset: %d (expected %d)\n",
2567 be32_to_cpu(buffer->al_offset), bdev->md.al_offset);
2568 rv = ERR_MD_INVALID;
2569 goto err;
2570 }
2571 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
2572 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
2573 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
2574 rv = ERR_MD_INVALID;
2575 goto err;
2576 }
2577 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
2578 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
2579 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
2580 rv = ERR_MD_INVALID;
2581 goto err;
2582 }
2583
2584 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
2585 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
2586 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
2587 rv = ERR_MD_INVALID;
2588 goto err;
2589 }
2590
2591 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size);
2592 for (i = UI_CURRENT; i < UI_SIZE; i++)
2593 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
2594 bdev->md.flags = be32_to_cpu(buffer->flags);
2595 mdev->sync_conf.al_extents = be32_to_cpu(buffer->al_nr_extents);
2596 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
2597
Philipp Reisner87eeee42011-01-19 14:16:30 +01002598 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002599 if (mdev->state.conn < C_CONNECTED) {
2600 int peer;
2601 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
2602 peer = max_t(int, peer, DRBD_MAX_BIO_SIZE_SAFE);
2603 mdev->peer_max_bio_size = peer;
2604 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01002605 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002606
Philipp Reisnerb411b362009-09-25 16:07:19 -07002607 if (mdev->sync_conf.al_extents < 7)
2608 mdev->sync_conf.al_extents = 127;
2609
2610 err:
2611 mutex_unlock(&mdev->md_io_mutex);
2612 put_ldev(mdev);
2613
2614 return rv;
2615}
2616
2617/**
2618 * drbd_md_mark_dirty() - Mark meta data super block as dirty
2619 * @mdev: DRBD device.
2620 *
2621 * Call this function if you change anything that should be written to
2622 * the meta-data super block. This function sets MD_DIRTY, and starts a
2623 * timer that ensures that within five seconds you have to call drbd_md_sync().
2624 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02002625#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02002626void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
2627{
2628 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
2629 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
2630 mdev->last_md_mark_dirty.line = line;
2631 mdev->last_md_mark_dirty.func = func;
2632 }
2633}
2634#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07002635void drbd_md_mark_dirty(struct drbd_conf *mdev)
2636{
Lars Ellenbergee15b032010-09-03 10:00:09 +02002637 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02002638 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002639}
Lars Ellenbergee15b032010-09-03 10:00:09 +02002640#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07002641
2642static void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
2643{
2644 int i;
2645
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002646 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002647 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002648}
2649
2650void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
2651{
2652 if (idx == UI_CURRENT) {
2653 if (mdev->state.role == R_PRIMARY)
2654 val |= 1;
2655 else
2656 val &= ~((u64)1);
2657
2658 drbd_set_ed_uuid(mdev, val);
2659 }
2660
2661 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002662 drbd_md_mark_dirty(mdev);
2663}
2664
2665
2666void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
2667{
2668 if (mdev->ldev->md.uuid[idx]) {
2669 drbd_uuid_move_history(mdev);
2670 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002671 }
2672 _drbd_uuid_set(mdev, idx, val);
2673}
2674
2675/**
2676 * drbd_uuid_new_current() - Creates a new current UUID
2677 * @mdev: DRBD device.
2678 *
2679 * Creates a new current UUID, and rotates the old current UUID into
2680 * the bitmap slot. Causes an incremental resync upon next connect.
2681 */
2682void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
2683{
2684 u64 val;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002685 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002686
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002687 if (bm_uuid)
2688 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
2689
Philipp Reisnerb411b362009-09-25 16:07:19 -07002690 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002691
2692 get_random_bytes(&val, sizeof(u64));
2693 _drbd_uuid_set(mdev, UI_CURRENT, val);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002694 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02002695 /* get it to stable storage _now_ */
2696 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002697}
2698
2699void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
2700{
2701 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
2702 return;
2703
2704 if (val == 0) {
2705 drbd_uuid_move_history(mdev);
2706 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
2707 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002708 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002709 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
2710 if (bm_uuid)
2711 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002712
Lars Ellenberg62b0da32011-01-20 13:25:21 +01002713 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002714 }
2715 drbd_md_mark_dirty(mdev);
2716}
2717
2718/**
2719 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
2720 * @mdev: DRBD device.
2721 *
2722 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
2723 */
2724int drbd_bmio_set_n_write(struct drbd_conf *mdev)
2725{
2726 int rv = -EIO;
2727
2728 if (get_ldev_if_state(mdev, D_ATTACHING)) {
2729 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
2730 drbd_md_sync(mdev);
2731 drbd_bm_set_all(mdev);
2732
2733 rv = drbd_bm_write(mdev);
2734
2735 if (!rv) {
2736 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
2737 drbd_md_sync(mdev);
2738 }
2739
2740 put_ldev(mdev);
2741 }
2742
2743 return rv;
2744}
2745
2746/**
2747 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
2748 * @mdev: DRBD device.
2749 *
2750 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
2751 */
2752int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
2753{
2754 int rv = -EIO;
2755
Philipp Reisner07782862010-08-31 12:00:50 +02002756 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002757 if (get_ldev_if_state(mdev, D_ATTACHING)) {
2758 drbd_bm_clear_all(mdev);
2759 rv = drbd_bm_write(mdev);
2760 put_ldev(mdev);
2761 }
2762
2763 return rv;
2764}
2765
2766static int w_bitmap_io(struct drbd_conf *mdev, struct drbd_work *w, int unused)
2767{
2768 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Lars Ellenberg02851e92010-12-16 14:47:39 +01002769 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002770
2771 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
2772
Lars Ellenberg02851e92010-12-16 14:47:39 +01002773 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002774 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01002775 rv = work->io_fn(mdev);
2776 drbd_bm_unlock(mdev);
2777 put_ldev(mdev);
2778 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002779
2780 clear_bit(BITMAP_IO, &mdev->flags);
Philipp Reisner127b3172010-11-16 10:07:53 +01002781 smp_mb__after_clear_bit();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002782 wake_up(&mdev->misc_wait);
2783
2784 if (work->done)
2785 work->done(mdev, rv);
2786
2787 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
2788 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002789 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002790
2791 return 1;
2792}
2793
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002794void drbd_ldev_destroy(struct drbd_conf *mdev)
2795{
2796 lc_destroy(mdev->resync);
2797 mdev->resync = NULL;
2798 lc_destroy(mdev->act_log);
2799 mdev->act_log = NULL;
2800 __no_warn(local,
2801 drbd_free_bc(mdev->ldev);
2802 mdev->ldev = NULL;);
2803
2804 if (mdev->md_io_tmpp) {
2805 __free_page(mdev->md_io_tmpp);
2806 mdev->md_io_tmpp = NULL;
2807 }
2808 clear_bit(GO_DISKLESS, &mdev->flags);
2809}
2810
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002811static int w_go_diskless(struct drbd_conf *mdev, struct drbd_work *w, int unused)
2812{
2813 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02002814 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
2815 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02002816 * the protected members anymore, though, so once put_ldev reaches zero
2817 * again, it will be safe to free them. */
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002818 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002819 return 1;
2820}
2821
2822void drbd_go_diskless(struct drbd_conf *mdev)
2823{
2824 D_ASSERT(mdev->state.disk == D_FAILED);
2825 if (!test_and_set_bit(GO_DISKLESS, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01002826 drbd_queue_work(&mdev->tconn->data.work, &mdev->go_diskless);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02002827}
2828
Philipp Reisnerb411b362009-09-25 16:07:19 -07002829/**
2830 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
2831 * @mdev: DRBD device.
2832 * @io_fn: IO callback to be called when bitmap IO is possible
2833 * @done: callback to be called after the bitmap IO was performed
2834 * @why: Descriptive text of the reason for doing the IO
2835 *
2836 * While IO on the bitmap happens we freeze application IO thus we ensure
2837 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
2838 * called from worker context. It MUST NOT be used while a previous such
2839 * work is still pending!
2840 */
2841void drbd_queue_bitmap_io(struct drbd_conf *mdev,
2842 int (*io_fn)(struct drbd_conf *),
2843 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002844 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002845{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002846 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002847
2848 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
2849 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
2850 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
2851 if (mdev->bm_io_work.why)
2852 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
2853 why, mdev->bm_io_work.why);
2854
2855 mdev->bm_io_work.io_fn = io_fn;
2856 mdev->bm_io_work.done = done;
2857 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002858 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002859
Philipp Reisner87eeee42011-01-19 14:16:30 +01002860 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002861 set_bit(BITMAP_IO, &mdev->flags);
2862 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01002863 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Philipp Reisnere42325a2011-01-19 13:55:45 +01002864 drbd_queue_work(&mdev->tconn->data.work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002865 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01002866 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002867}
2868
2869/**
2870 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
2871 * @mdev: DRBD device.
2872 * @io_fn: IO callback to be called when bitmap IO is possible
2873 * @why: Descriptive text of the reason for doing the IO
2874 *
2875 * freezes application IO while that the actual IO operations runs. This
2876 * functions MAY NOT be called from worker context.
2877 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002878int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
2879 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002880{
2881 int rv;
2882
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01002883 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002884
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002885 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
2886 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002887
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002888 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002889 rv = io_fn(mdev);
2890 drbd_bm_unlock(mdev);
2891
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002892 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
2893 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002894
2895 return rv;
2896}
2897
2898void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
2899{
2900 if ((mdev->ldev->md.flags & flag) != flag) {
2901 drbd_md_mark_dirty(mdev);
2902 mdev->ldev->md.flags |= flag;
2903 }
2904}
2905
2906void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
2907{
2908 if ((mdev->ldev->md.flags & flag) != 0) {
2909 drbd_md_mark_dirty(mdev);
2910 mdev->ldev->md.flags &= ~flag;
2911 }
2912}
2913int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
2914{
2915 return (bdev->md.flags & flag) != 0;
2916}
2917
2918static void md_sync_timer_fn(unsigned long data)
2919{
2920 struct drbd_conf *mdev = (struct drbd_conf *) data;
2921
Philipp Reisnere42325a2011-01-19 13:55:45 +01002922 drbd_queue_work_front(&mdev->tconn->data.work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002923}
2924
2925static int w_md_sync(struct drbd_conf *mdev, struct drbd_work *w, int unused)
2926{
2927 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02002928#ifdef DEBUG
2929 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
2930 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
2931#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07002932 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002933 return 1;
2934}
2935
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01002936const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01002937{
2938 /* THINK may need to become several global tables
2939 * when we want to support more than
2940 * one PRO_VERSION */
2941 static const char *cmdnames[] = {
2942 [P_DATA] = "Data",
2943 [P_DATA_REPLY] = "DataReply",
2944 [P_RS_DATA_REPLY] = "RSDataReply",
2945 [P_BARRIER] = "Barrier",
2946 [P_BITMAP] = "ReportBitMap",
2947 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
2948 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
2949 [P_UNPLUG_REMOTE] = "UnplugRemote",
2950 [P_DATA_REQUEST] = "DataRequest",
2951 [P_RS_DATA_REQUEST] = "RSDataRequest",
2952 [P_SYNC_PARAM] = "SyncParam",
2953 [P_SYNC_PARAM89] = "SyncParam89",
2954 [P_PROTOCOL] = "ReportProtocol",
2955 [P_UUIDS] = "ReportUUIDs",
2956 [P_SIZES] = "ReportSizes",
2957 [P_STATE] = "ReportState",
2958 [P_SYNC_UUID] = "ReportSyncUUID",
2959 [P_AUTH_CHALLENGE] = "AuthChallenge",
2960 [P_AUTH_RESPONSE] = "AuthResponse",
2961 [P_PING] = "Ping",
2962 [P_PING_ACK] = "PingAck",
2963 [P_RECV_ACK] = "RecvAck",
2964 [P_WRITE_ACK] = "WriteAck",
2965 [P_RS_WRITE_ACK] = "RSWriteAck",
2966 [P_DISCARD_ACK] = "DiscardAck",
2967 [P_NEG_ACK] = "NegAck",
2968 [P_NEG_DREPLY] = "NegDReply",
2969 [P_NEG_RS_DREPLY] = "NegRSDReply",
2970 [P_BARRIER_ACK] = "BarrierAck",
2971 [P_STATE_CHG_REQ] = "StateChgRequest",
2972 [P_STATE_CHG_REPLY] = "StateChgReply",
2973 [P_OV_REQUEST] = "OVRequest",
2974 [P_OV_REPLY] = "OVReply",
2975 [P_OV_RESULT] = "OVResult",
2976 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
2977 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
2978 [P_COMPRESSED_BITMAP] = "CBitmap",
2979 [P_DELAY_PROBE] = "DelayProbe",
2980 [P_OUT_OF_SYNC] = "OutOfSync",
2981 [P_MAX_CMD] = NULL,
2982 };
2983
2984 if (cmd == P_HAND_SHAKE_M)
2985 return "HandShakeM";
2986 if (cmd == P_HAND_SHAKE_S)
2987 return "HandShakeS";
2988 if (cmd == P_HAND_SHAKE)
2989 return "HandShake";
2990 if (cmd >= P_MAX_CMD)
2991 return "Unknown";
2992 return cmdnames[cmd];
2993}
2994
Philipp Reisnerb411b362009-09-25 16:07:19 -07002995#ifdef CONFIG_DRBD_FAULT_INJECTION
2996/* Fault insertion support including random number generator shamelessly
2997 * stolen from kernel/rcutorture.c */
2998struct fault_random_state {
2999 unsigned long state;
3000 unsigned long count;
3001};
3002
3003#define FAULT_RANDOM_MULT 39916801 /* prime */
3004#define FAULT_RANDOM_ADD 479001701 /* prime */
3005#define FAULT_RANDOM_REFRESH 10000
3006
3007/*
3008 * Crude but fast random-number generator. Uses a linear congruential
3009 * generator, with occasional help from get_random_bytes().
3010 */
3011static unsigned long
3012_drbd_fault_random(struct fault_random_state *rsp)
3013{
3014 long refresh;
3015
Roel Kluin49829ea2009-12-15 22:55:44 +01003016 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003017 get_random_bytes(&refresh, sizeof(refresh));
3018 rsp->state += refresh;
3019 rsp->count = FAULT_RANDOM_REFRESH;
3020 }
3021 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3022 return swahw32(rsp->state);
3023}
3024
3025static char *
3026_drbd_fault_str(unsigned int type) {
3027 static char *_faults[] = {
3028 [DRBD_FAULT_MD_WR] = "Meta-data write",
3029 [DRBD_FAULT_MD_RD] = "Meta-data read",
3030 [DRBD_FAULT_RS_WR] = "Resync write",
3031 [DRBD_FAULT_RS_RD] = "Resync read",
3032 [DRBD_FAULT_DT_WR] = "Data write",
3033 [DRBD_FAULT_DT_RD] = "Data read",
3034 [DRBD_FAULT_DT_RA] = "Data read ahead",
3035 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003036 [DRBD_FAULT_AL_EE] = "EE allocation",
3037 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003038 };
3039
3040 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3041}
3042
3043unsigned int
3044_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3045{
3046 static struct fault_random_state rrs = {0, 0};
3047
3048 unsigned int ret = (
3049 (fault_devs == 0 ||
3050 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3051 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3052
3053 if (ret) {
3054 fault_count++;
3055
Lars Ellenberg73835062010-05-27 11:51:56 +02003056 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003057 dev_warn(DEV, "***Simulating %s failure\n",
3058 _drbd_fault_str(type));
3059 }
3060
3061 return ret;
3062}
3063#endif
3064
3065const char *drbd_buildtag(void)
3066{
3067 /* DRBD built from external sources has here a reference to the
3068 git hash of the source code. */
3069
3070 static char buildtag[38] = "\0uilt-in";
3071
3072 if (buildtag[0] == 0) {
3073#ifdef CONFIG_MODULES
3074 if (THIS_MODULE != NULL)
3075 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3076 else
3077#endif
3078 buildtag[0] = 'b';
3079 }
3080
3081 return buildtag;
3082}
3083
3084module_init(drbd_init)
3085module_exit(drbd_cleanup)
3086
Philipp Reisnerb411b362009-09-25 16:07:19 -07003087EXPORT_SYMBOL(drbd_conn_str);
3088EXPORT_SYMBOL(drbd_role_str);
3089EXPORT_SYMBOL(drbd_disk_str);
3090EXPORT_SYMBOL(drbd_set_st_err_str);