drbd: gather detailed timing statistics for drbd_requests
[deliverable/linux.git] / drivers / block / drbd / drbd_main.c
CommitLineData
b411b363
PR
1/*
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
f88c5d90
LE
29#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
b411b363 31#include <linux/module.h>
e5f891b2 32#include <linux/jiffies.h>
b411b363
PR
33#include <linux/drbd.h>
34#include <asm/uaccess.h>
35#include <asm/types.h>
36#include <net/sock.h>
37#include <linux/ctype.h>
2a48fc0a 38#include <linux/mutex.h>
b411b363
PR
39#include <linux/fs.h>
40#include <linux/file.h>
41#include <linux/proc_fs.h>
42#include <linux/init.h>
43#include <linux/mm.h>
44#include <linux/memcontrol.h>
45#include <linux/mm_inline.h>
46#include <linux/slab.h>
47#include <linux/random.h>
48#include <linux/reboot.h>
49#include <linux/notifier.h>
50#include <linux/kthread.h>
113fef9e 51#include <linux/workqueue.h>
b411b363
PR
52#define __KERNEL_SYSCALLS__
53#include <linux/unistd.h>
54#include <linux/vmalloc.h>
55
56#include <linux/drbd_limits.h>
57#include "drbd_int.h"
a3603a6e 58#include "drbd_protocol.h"
b411b363
PR
59#include "drbd_req.h" /* only for _req_mod in tl_release and tl_clear */
60
61#include "drbd_vli.h"
62
2a48fc0a 63static DEFINE_MUTEX(drbd_main_mutex);
b411b363 64static int drbd_open(struct block_device *bdev, fmode_t mode);
db2a144b 65static void drbd_release(struct gendisk *gd, fmode_t mode);
b411b363 66static void md_sync_timer_fn(unsigned long data);
99920dc5 67static int w_bitmap_io(struct drbd_work *w, int unused);
b411b363 68
b411b363
PR
69MODULE_AUTHOR("Philipp Reisner <phil@linbit.com>, "
70 "Lars Ellenberg <lars@linbit.com>");
71MODULE_DESCRIPTION("drbd - Distributed Replicated Block Device v" REL_VERSION);
72MODULE_VERSION(REL_VERSION);
73MODULE_LICENSE("GPL");
81a5d60e 74MODULE_PARM_DESC(minor_count, "Approximate number of drbd devices ("
2b8a90b5 75 __stringify(DRBD_MINOR_COUNT_MIN) "-" __stringify(DRBD_MINOR_COUNT_MAX) ")");
b411b363
PR
76MODULE_ALIAS_BLOCKDEV_MAJOR(DRBD_MAJOR);
77
78#include <linux/moduleparam.h>
79/* allow_open_on_secondary */
80MODULE_PARM_DESC(allow_oos, "DONT USE!");
81/* thanks to these macros, if compiled into the kernel (not-module),
82 * this becomes the boot parameter drbd.minor_count */
83module_param(minor_count, uint, 0444);
84module_param(disable_sendpage, bool, 0644);
85module_param(allow_oos, bool, 0);
b411b363
PR
86module_param(proc_details, int, 0644);
87
88#ifdef CONFIG_DRBD_FAULT_INJECTION
89int enable_faults;
90int fault_rate;
91static int fault_count;
92int fault_devs;
93/* bitmap of enabled faults */
94module_param(enable_faults, int, 0664);
95/* fault rate % value - applies to all enabled faults */
96module_param(fault_rate, int, 0664);
97/* count of faults inserted */
98module_param(fault_count, int, 0664);
99/* bitmap of devices to insert faults on */
100module_param(fault_devs, int, 0644);
101#endif
102
103/* module parameter, defined */
2b8a90b5 104unsigned int minor_count = DRBD_MINOR_COUNT_DEF;
90ab5ee9
RR
105bool disable_sendpage;
106bool allow_oos;
b411b363
PR
107int proc_details; /* Detail level in proc drbd*/
108
109/* Module parameter for setting the user mode helper program
110 * to run. Default is /sbin/drbdadm */
111char usermode_helper[80] = "/sbin/drbdadm";
112
113module_param_string(usermode_helper, usermode_helper, sizeof(usermode_helper), 0644);
114
115/* in 2.6.x, our device mapping and config info contains our virtual gendisks
116 * as member "struct gendisk *vdisk;"
117 */
05a10ec7 118struct idr drbd_devices;
77c556f6 119struct list_head drbd_resources;
b411b363
PR
120
121struct kmem_cache *drbd_request_cache;
6c852bec 122struct kmem_cache *drbd_ee_cache; /* peer requests */
b411b363
PR
123struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */
124struct kmem_cache *drbd_al_ext_cache; /* activity log extents */
125mempool_t *drbd_request_mempool;
126mempool_t *drbd_ee_mempool;
4281808f 127mempool_t *drbd_md_io_page_pool;
9476f39d 128struct bio_set *drbd_md_io_bio_set;
b411b363
PR
129
130/* I do not use a standard mempool, because:
131 1) I want to hand out the pre-allocated objects first.
132 2) I want to be able to interrupt sleeping allocation with a signal.
133 Note: This is a single linked list, the next pointer is the private
134 member of struct page.
135 */
136struct page *drbd_pp_pool;
137spinlock_t drbd_pp_lock;
138int drbd_pp_vacant;
139wait_queue_head_t drbd_pp_wait;
140
141DEFINE_RATELIMIT_STATE(drbd_ratelimit_state, 5 * HZ, 5);
142
7d4e9d09 143static const struct block_device_operations drbd_ops = {
b411b363
PR
144 .owner = THIS_MODULE,
145 .open = drbd_open,
146 .release = drbd_release,
147};
19f843aa 148
da4a75d2
LE
149struct bio *bio_alloc_drbd(gfp_t gfp_mask)
150{
151 struct bio *bio;
19f843aa 152
da4a75d2
LE
153 if (!drbd_md_io_bio_set)
154 return bio_alloc(gfp_mask, 1);
19f843aa 155
da4a75d2
LE
156 bio = bio_alloc_bioset(gfp_mask, 1, drbd_md_io_bio_set);
157 if (!bio)
158 return NULL;
da4a75d2 159 return bio;
19f843aa
LE
160}
161
b411b363
PR
162#ifdef __CHECKER__
163/* When checking with sparse, and this is an inline function, sparse will
164 give tons of false positives. When this is a real functions sparse works.
b411b363 165 */
b30ab791 166int _get_ldev_if_state(struct drbd_device *device, enum drbd_disk_state mins)
b411b363 167{
b411b363 168 int io_allowed;
b411b363 169
b30ab791
AG
170 atomic_inc(&device->local_cnt);
171 io_allowed = (device->state.disk >= mins);
b411b363 172 if (!io_allowed) {
b30ab791
AG
173 if (atomic_dec_and_test(&device->local_cnt))
174 wake_up(&device->misc_wait);
b411b363 175 }
b411b363
PR
176 return io_allowed;
177}
b411b363 178
b411b363 179#endif
265be2d0 180
b411b363 181/**
b6dd1a89 182 * tl_release() - mark as BARRIER_ACKED all requests in the corresponding transfer log epoch
bde89a9e 183 * @connection: DRBD connection.
b411b363
PR
184 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
185 * @set_size: Expected number of requests before that barrier.
186 *
187 * In case the passed barrier_nr or set_size does not match the oldest
b6dd1a89
LE
188 * epoch of not yet barrier-acked requests, this function will cause a
189 * termination of the connection.
b411b363 190 */
bde89a9e 191void tl_release(struct drbd_connection *connection, unsigned int barrier_nr,
2f5cdd0b 192 unsigned int set_size)
b411b363 193{
b411b363 194 struct drbd_request *r;
b6dd1a89
LE
195 struct drbd_request *req = NULL;
196 int expect_epoch = 0;
197 int expect_size = 0;
b411b363 198
0500813f 199 spin_lock_irq(&connection->resource->req_lock);
b411b363 200
98683650 201 /* find oldest not yet barrier-acked write request,
b6dd1a89 202 * count writes in its epoch. */
bde89a9e 203 list_for_each_entry(r, &connection->transfer_log, tl_requests) {
a0d856df 204 const unsigned s = r->rq_state;
b6dd1a89
LE
205 if (!req) {
206 if (!(s & RQ_WRITE))
207 continue;
208 if (!(s & RQ_NET_MASK))
209 continue;
210 if (s & RQ_NET_DONE)
211 continue;
212 req = r;
213 expect_epoch = req->epoch;
214 expect_size ++;
215 } else {
216 if (r->epoch != expect_epoch)
217 break;
218 if (!(s & RQ_WRITE))
219 continue;
220 /* if (s & RQ_DONE): not expected */
221 /* if (!(s & RQ_NET_MASK)): not expected */
222 expect_size++;
43a5182c 223 }
b411b363 224 }
67098930 225
b411b363 226 /* first some paranoia code */
b6dd1a89 227 if (req == NULL) {
1ec861eb 228 drbd_err(connection, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
2f5cdd0b 229 barrier_nr);
b411b363 230 goto bail;
b411b363 231 }
b6dd1a89 232 if (expect_epoch != barrier_nr) {
1ec861eb 233 drbd_err(connection, "BAD! BarrierAck #%u received, expected #%u!\n",
b6dd1a89 234 barrier_nr, expect_epoch);
b411b363 235 goto bail;
5a22db89
LE
236 }
237
b6dd1a89 238 if (expect_size != set_size) {
1ec861eb 239 drbd_err(connection, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
b6dd1a89 240 barrier_nr, set_size, expect_size);
b411b363 241 goto bail;
b411b363
PR
242 }
243
98683650
PR
244 /* Clean up list of requests processed during current epoch. */
245 /* this extra list walk restart is paranoia,
246 * to catch requests being barrier-acked "unexpectedly".
247 * It usually should find the same req again, or some READ preceding it. */
bde89a9e 248 list_for_each_entry(req, &connection->transfer_log, tl_requests)
98683650
PR
249 if (req->epoch == expect_epoch)
250 break;
bde89a9e 251 list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) {
b6dd1a89
LE
252 if (req->epoch != expect_epoch)
253 break;
254 _req_mod(req, BARRIER_ACKED);
19f843aa 255 }
0500813f 256 spin_unlock_irq(&connection->resource->req_lock);
19f843aa 257
b411b363 258 return;
b411b363 259
b411b363 260bail:
0500813f 261 spin_unlock_irq(&connection->resource->req_lock);
bde89a9e 262 conn_request_state(connection, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
b411b363 263}
b411b363 264
b411b363 265
b411b363 266/**
11b58e73 267 * _tl_restart() - Walks the transfer log, and applies an action to all requests
e5f891b2 268 * @connection: DRBD connection to operate on.
11b58e73 269 * @what: The action/event to perform with all request objects
b411b363 270 *
8554df1c
AG
271 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
272 * RESTART_FROZEN_DISK_IO.
b411b363 273 */
b6dd1a89 274/* must hold resource->req_lock */
bde89a9e 275void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
b411b363 276{
b6dd1a89 277 struct drbd_request *req, *r;
b411b363 278
bde89a9e 279 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests)
b6dd1a89
LE
280 _req_mod(req, what);
281}
738a84b2 282
bde89a9e 283void tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
b6dd1a89 284{
0500813f 285 spin_lock_irq(&connection->resource->req_lock);
bde89a9e 286 _tl_restart(connection, what);
0500813f 287 spin_unlock_irq(&connection->resource->req_lock);
cdfda633 288}
b411b363 289
b411b363
PR
290/**
291 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
b30ab791 292 * @device: DRBD device.
b411b363
PR
293 *
294 * This is called after the connection to the peer was lost. The storage covered
295 * by the requests on the transfer gets marked as our of sync. Called from the
296 * receiver thread and the worker thread.
297 */
bde89a9e 298void tl_clear(struct drbd_connection *connection)
b411b363 299{
bde89a9e 300 tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
b411b363 301}
197296ff 302
cdfda633 303/**
b30ab791
AG
304 * tl_abort_disk_io() - Abort disk I/O for all requests for a certain device in the TL
305 * @device: DRBD device.
cdfda633 306 */
b30ab791 307void tl_abort_disk_io(struct drbd_device *device)
cdfda633 308{
a6b32bc3 309 struct drbd_connection *connection = first_peer_device(device)->connection;
b6dd1a89 310 struct drbd_request *req, *r;
02851e9f 311
0500813f 312 spin_lock_irq(&connection->resource->req_lock);
bde89a9e 313 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests) {
97ddb687
LE
314 if (!(req->rq_state & RQ_LOCAL_PENDING))
315 continue;
84b8c06b 316 if (req->device != device)
b6dd1a89
LE
317 continue;
318 _req_mod(req, ABORT_DISK_IO);
b411b363 319 }
0500813f 320 spin_unlock_irq(&connection->resource->req_lock);
b411b363
PR
321}
322
b411b363
PR
323static int drbd_thread_setup(void *arg)
324{
325 struct drbd_thread *thi = (struct drbd_thread *) arg;
2457b6d5 326 struct drbd_resource *resource = thi->resource;
b411b363
PR
327 unsigned long flags;
328 int retval;
329
f1b3a6ec 330 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
77c556f6 331 thi->name[0],
2457b6d5 332 resource->name);
f1b3a6ec 333
b411b363
PR
334restart:
335 retval = thi->function(thi);
336
337 spin_lock_irqsave(&thi->t_lock, flags);
338
e77a0a5c 339 /* if the receiver has been "EXITING", the last thing it did
b411b363
PR
340 * was set the conn state to "StandAlone",
341 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
342 * and receiver thread will be "started".
e77a0a5c 343 * drbd_thread_start needs to set "RESTARTING" in that case.
b411b363 344 * t_state check and assignment needs to be within the same spinlock,
e77a0a5c
AG
345 * so either thread_start sees EXITING, and can remap to RESTARTING,
346 * or thread_start see NONE, and can proceed as normal.
b411b363
PR
347 */
348
e77a0a5c 349 if (thi->t_state == RESTARTING) {
2457b6d5 350 drbd_info(resource, "Restarting %s thread\n", thi->name);
e77a0a5c 351 thi->t_state = RUNNING;
b411b363
PR
352 spin_unlock_irqrestore(&thi->t_lock, flags);
353 goto restart;
354 }
355
356 thi->task = NULL;
e77a0a5c 357 thi->t_state = NONE;
b411b363 358 smp_mb();
992d6e91 359 complete_all(&thi->stop);
b411b363
PR
360 spin_unlock_irqrestore(&thi->t_lock, flags);
361
2457b6d5 362 drbd_info(resource, "Terminating %s\n", current->comm);
b411b363
PR
363
364 /* Release mod reference taken when thread was started */
9dc9fbb3 365
2457b6d5
AG
366 if (thi->connection)
367 kref_put(&thi->connection->kref, drbd_destroy_connection);
368 kref_put(&resource->kref, drbd_destroy_resource);
b411b363
PR
369 module_put(THIS_MODULE);
370 return retval;
371}
372
2457b6d5 373static void drbd_thread_init(struct drbd_resource *resource, struct drbd_thread *thi,
c60b0251 374 int (*func) (struct drbd_thread *), const char *name)
b411b363
PR
375{
376 spin_lock_init(&thi->t_lock);
377 thi->task = NULL;
e77a0a5c 378 thi->t_state = NONE;
b411b363 379 thi->function = func;
2457b6d5
AG
380 thi->resource = resource;
381 thi->connection = NULL;
c60b0251 382 thi->name = name;
b411b363
PR
383}
384
385int drbd_thread_start(struct drbd_thread *thi)
386{
2457b6d5 387 struct drbd_resource *resource = thi->resource;
b411b363
PR
388 struct task_struct *nt;
389 unsigned long flags;
390
b411b363
PR
391 /* is used from state engine doing drbd_thread_stop_nowait,
392 * while holding the req lock irqsave */
393 spin_lock_irqsave(&thi->t_lock, flags);
394
395 switch (thi->t_state) {
e77a0a5c 396 case NONE:
2457b6d5 397 drbd_info(resource, "Starting %s thread (from %s [%d])\n",
bed879ae 398 thi->name, current->comm, current->pid);
b411b363
PR
399
400 /* Get ref on module for thread - this is released when thread exits */
401 if (!try_module_get(THIS_MODULE)) {
2457b6d5 402 drbd_err(resource, "Failed to get module reference in drbd_thread_start\n");
b411b363 403 spin_unlock_irqrestore(&thi->t_lock, flags);
81e84650 404 return false;
b411b363
PR
405 }
406
2457b6d5
AG
407 kref_get(&resource->kref);
408 if (thi->connection)
409 kref_get(&thi->connection->kref);
9dc9fbb3 410
b411b363 411 init_completion(&thi->stop);
b411b363 412 thi->reset_cpu_mask = 1;
e77a0a5c 413 thi->t_state = RUNNING;
b411b363
PR
414 spin_unlock_irqrestore(&thi->t_lock, flags);
415 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
416
417 nt = kthread_create(drbd_thread_setup, (void *) thi,
2457b6d5 418 "drbd_%c_%s", thi->name[0], thi->resource->name);
b411b363
PR
419
420 if (IS_ERR(nt)) {
2457b6d5 421 drbd_err(resource, "Couldn't start thread\n");
b411b363 422
2457b6d5
AG
423 if (thi->connection)
424 kref_put(&thi->connection->kref, drbd_destroy_connection);
425 kref_put(&resource->kref, drbd_destroy_resource);
b411b363 426 module_put(THIS_MODULE);
81e84650 427 return false;
b411b363
PR
428 }
429 spin_lock_irqsave(&thi->t_lock, flags);
430 thi->task = nt;
e77a0a5c 431 thi->t_state = RUNNING;
b411b363
PR
432 spin_unlock_irqrestore(&thi->t_lock, flags);
433 wake_up_process(nt);
434 break;
e77a0a5c
AG
435 case EXITING:
436 thi->t_state = RESTARTING;
2457b6d5 437 drbd_info(resource, "Restarting %s thread (from %s [%d])\n",
bed879ae 438 thi->name, current->comm, current->pid);
b411b363 439 /* fall through */
e77a0a5c
AG
440 case RUNNING:
441 case RESTARTING:
b411b363
PR
442 default:
443 spin_unlock_irqrestore(&thi->t_lock, flags);
444 break;
445 }
446
81e84650 447 return true;
b411b363
PR
448}
449
450
451void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
452{
453 unsigned long flags;
454
e77a0a5c 455 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
b411b363
PR
456
457 /* may be called from state engine, holding the req lock irqsave */
458 spin_lock_irqsave(&thi->t_lock, flags);
459
e77a0a5c 460 if (thi->t_state == NONE) {
b411b363
PR
461 spin_unlock_irqrestore(&thi->t_lock, flags);
462 if (restart)
463 drbd_thread_start(thi);
464 return;
465 }
466
467 if (thi->t_state != ns) {
468 if (thi->task == NULL) {
469 spin_unlock_irqrestore(&thi->t_lock, flags);
470 return;
471 }
472
473 thi->t_state = ns;
474 smp_mb();
475 init_completion(&thi->stop);
476 if (thi->task != current)
477 force_sig(DRBD_SIGKILL, thi->task);
b411b363
PR
478 }
479
480 spin_unlock_irqrestore(&thi->t_lock, flags);
481
482 if (wait)
483 wait_for_completion(&thi->stop);
484}
485
bde89a9e 486int conn_lowest_minor(struct drbd_connection *connection)
80822284 487{
c06ece6b
AG
488 struct drbd_peer_device *peer_device;
489 int vnr = 0, minor = -1;
774b3055 490
695d08fa 491 rcu_read_lock();
c06ece6b
AG
492 peer_device = idr_get_next(&connection->peer_devices, &vnr);
493 if (peer_device)
494 minor = device_to_minor(peer_device->device);
695d08fa
PR
495 rcu_read_unlock();
496
c06ece6b 497 return minor;
80822284 498}
774b3055 499
b411b363
PR
500#ifdef CONFIG_SMP
501/**
502 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
b411b363 503 *
625a6ba2 504 * Forces all threads of a resource onto the same CPU. This is beneficial for
b411b363
PR
505 * DRBD's performance. May be overwritten by user's configuration.
506 */
625a6ba2 507static void drbd_calc_cpu_mask(cpumask_var_t *cpu_mask)
b411b363 508{
625a6ba2 509 unsigned int *resources_per_cpu, min_index = ~0;
b411b363 510
625a6ba2
AG
511 resources_per_cpu = kzalloc(nr_cpu_ids * sizeof(*resources_per_cpu), GFP_KERNEL);
512 if (resources_per_cpu) {
513 struct drbd_resource *resource;
514 unsigned int cpu, min = ~0;
b411b363 515
625a6ba2
AG
516 rcu_read_lock();
517 for_each_resource_rcu(resource, &drbd_resources) {
518 for_each_cpu(cpu, resource->cpu_mask)
519 resources_per_cpu[cpu]++;
b411b363 520 }
625a6ba2
AG
521 rcu_read_unlock();
522 for_each_online_cpu(cpu) {
523 if (resources_per_cpu[cpu] < min) {
524 min = resources_per_cpu[cpu];
525 min_index = cpu;
526 }
527 }
528 kfree(resources_per_cpu);
529 }
530 if (min_index == ~0) {
531 cpumask_setall(*cpu_mask);
532 return;
b411b363 533 }
625a6ba2 534 cpumask_set_cpu(min_index, *cpu_mask);
b411b363
PR
535}
536
537/**
538 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
b30ab791 539 * @device: DRBD device.
bc31fe33 540 * @thi: drbd_thread object
b411b363
PR
541 *
542 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
543 * prematurely.
544 */
80822284 545void drbd_thread_current_set_cpu(struct drbd_thread *thi)
b411b363 546{
2457b6d5 547 struct drbd_resource *resource = thi->resource;
b411b363 548 struct task_struct *p = current;
bed879ae 549
b411b363
PR
550 if (!thi->reset_cpu_mask)
551 return;
552 thi->reset_cpu_mask = 0;
2457b6d5 553 set_cpus_allowed_ptr(p, resource->cpu_mask);
b411b363 554}
625a6ba2
AG
555#else
556#define drbd_calc_cpu_mask(A) ({})
b411b363
PR
557#endif
558
52b061a4
AG
559/**
560 * drbd_header_size - size of a packet header
561 *
562 * The header size is a multiple of 8, so any payload following the header is
563 * word aligned on 64-bit architectures. (The bitmap send and receive code
564 * relies on this.)
565 */
bde89a9e 566unsigned int drbd_header_size(struct drbd_connection *connection)
b411b363 567{
bde89a9e 568 if (connection->agreed_pro_version >= 100) {
0c8e36d9
AG
569 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
570 return sizeof(struct p_header100);
571 } else {
572 BUILD_BUG_ON(sizeof(struct p_header80) !=
573 sizeof(struct p_header95));
574 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
575 return sizeof(struct p_header80);
576 }
52b061a4 577}
b411b363 578
e658983a 579static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
fd340c12
PR
580{
581 h->magic = cpu_to_be32(DRBD_MAGIC);
582 h->command = cpu_to_be16(cmd);
583 h->length = cpu_to_be16(size);
e658983a 584 return sizeof(struct p_header80);
fd340c12 585}
b411b363 586
e658983a 587static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
fd340c12
PR
588{
589 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
b411b363 590 h->command = cpu_to_be16(cmd);
b55d84ba 591 h->length = cpu_to_be32(size);
e658983a 592 return sizeof(struct p_header95);
fd340c12 593}
b411b363 594
0c8e36d9
AG
595static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
596 int size, int vnr)
597{
598 h->magic = cpu_to_be32(DRBD_MAGIC_100);
599 h->volume = cpu_to_be16(vnr);
600 h->command = cpu_to_be16(cmd);
601 h->length = cpu_to_be32(size);
602 h->pad = 0;
603 return sizeof(struct p_header100);
604}
b411b363 605
bde89a9e 606static unsigned int prepare_header(struct drbd_connection *connection, int vnr,
0c8e36d9 607 void *buffer, enum drbd_packet cmd, int size)
d38e787e 608{
bde89a9e 609 if (connection->agreed_pro_version >= 100)
0c8e36d9 610 return prepare_header100(buffer, cmd, size, vnr);
bde89a9e 611 else if (connection->agreed_pro_version >= 95 &&
0c8e36d9 612 size > DRBD_MAX_SIZE_H80_PACKET)
e658983a 613 return prepare_header95(buffer, cmd, size);
d38e787e 614 else
e658983a 615 return prepare_header80(buffer, cmd, size);
b411b363
PR
616}
617
bde89a9e 618static void *__conn_prepare_command(struct drbd_connection *connection,
a7eb7bdf 619 struct drbd_socket *sock)
b411b363 620{
a7eb7bdf
AG
621 if (!sock->socket)
622 return NULL;
bde89a9e 623 return sock->sbuf + drbd_header_size(connection);
a7eb7bdf 624}
b411b363 625
bde89a9e 626void *conn_prepare_command(struct drbd_connection *connection, struct drbd_socket *sock)
dba58587 627{
a7eb7bdf 628 void *p;
b411b363 629
dba58587 630 mutex_lock(&sock->mutex);
bde89a9e 631 p = __conn_prepare_command(connection, sock);
a7eb7bdf 632 if (!p)
dba58587 633 mutex_unlock(&sock->mutex);
b411b363 634
a7eb7bdf 635 return p;
b411b363
PR
636}
637
69a22773 638void *drbd_prepare_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock)
b411b363 639{
69a22773 640 return conn_prepare_command(peer_device->connection, sock);
dba58587 641}
b411b363 642
bde89a9e 643static int __send_command(struct drbd_connection *connection, int vnr,
dba58587
AG
644 struct drbd_socket *sock, enum drbd_packet cmd,
645 unsigned int header_size, void *data,
646 unsigned int size)
647{
648 int msg_flags;
649 int err;
b411b363 650
dba58587
AG
651 /*
652 * Called with @data == NULL and the size of the data blocks in @size
653 * for commands that send data blocks. For those commands, omit the
654 * MSG_MORE flag: this will increase the likelihood that data blocks
655 * which are page aligned on the sender will end up page aligned on the
656 * receiver.
657 */
658 msg_flags = data ? MSG_MORE : 0;
659
bde89a9e 660 header_size += prepare_header(connection, vnr, sock->sbuf, cmd,
e658983a 661 header_size + size);
bde89a9e 662 err = drbd_send_all(connection, sock->socket, sock->sbuf, header_size,
dba58587
AG
663 msg_flags);
664 if (data && !err)
bde89a9e 665 err = drbd_send_all(connection, sock->socket, data, size, 0);
123ff122
LE
666 /* DRBD protocol "pings" are latency critical.
667 * This is supposed to trigger tcp_push_pending_frames() */
668 if (!err && (cmd == P_PING || cmd == P_PING_ACK))
669 drbd_tcp_nodelay(sock->socket);
670
dba58587
AG
671 return err;
672}
673
bde89a9e 674static int __conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
a7eb7bdf
AG
675 enum drbd_packet cmd, unsigned int header_size,
676 void *data, unsigned int size)
677{
bde89a9e 678 return __send_command(connection, 0, sock, cmd, header_size, data, size);
a7eb7bdf
AG
679}
680
bde89a9e 681int conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
dba58587
AG
682 enum drbd_packet cmd, unsigned int header_size,
683 void *data, unsigned int size)
684{
685 int err;
b411b363 686
bde89a9e 687 err = __conn_send_command(connection, sock, cmd, header_size, data, size);
dba58587
AG
688 mutex_unlock(&sock->mutex);
689 return err;
690}
691
69a22773 692int drbd_send_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock,
dba58587
AG
693 enum drbd_packet cmd, unsigned int header_size,
694 void *data, unsigned int size)
695{
696 int err;
697
69a22773
AG
698 err = __send_command(peer_device->connection, peer_device->device->vnr,
699 sock, cmd, header_size, data, size);
dba58587
AG
700 mutex_unlock(&sock->mutex);
701 return err;
702}
b411b363 703
bde89a9e 704int drbd_send_ping(struct drbd_connection *connection)
e307f352 705{
9f5bdc33
AG
706 struct drbd_socket *sock;
707
bde89a9e
AG
708 sock = &connection->meta;
709 if (!conn_prepare_command(connection, sock))
9f5bdc33 710 return -EIO;
bde89a9e 711 return conn_send_command(connection, sock, P_PING, 0, NULL, 0);
e307f352 712}
b411b363 713
bde89a9e 714int drbd_send_ping_ack(struct drbd_connection *connection)
e307f352 715{
9f5bdc33
AG
716 struct drbd_socket *sock;
717
bde89a9e
AG
718 sock = &connection->meta;
719 if (!conn_prepare_command(connection, sock))
9f5bdc33 720 return -EIO;
bde89a9e 721 return conn_send_command(connection, sock, P_PING_ACK, 0, NULL, 0);
b411b363
PR
722}
723
69a22773 724int drbd_send_sync_param(struct drbd_peer_device *peer_device)
b411b363 725{
7c96715a 726 struct drbd_socket *sock;
8e26f9cc 727 struct p_rs_param_95 *p;
9f5bdc33 728 int size;
69a22773 729 const int apv = peer_device->connection->agreed_pro_version;
9f5bdc33 730 enum drbd_packet cmd;
44ed167d 731 struct net_conf *nc;
daeda1cc 732 struct disk_conf *dc;
9f5bdc33 733
69a22773
AG
734 sock = &peer_device->connection->data;
735 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
736 if (!p)
737 return -EIO;
b411b363 738
44ed167d 739 rcu_read_lock();
69a22773 740 nc = rcu_dereference(peer_device->connection->net_conf);
b411b363
PR
741
742 size = apv <= 87 ? sizeof(struct p_rs_param)
743 : apv == 88 ? sizeof(struct p_rs_param)
44ed167d 744 + strlen(nc->verify_alg) + 1
8e26f9cc
PR
745 : apv <= 94 ? sizeof(struct p_rs_param_89)
746 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
b411b363 747
9f5bdc33 748 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
b411b363 749
9f5bdc33
AG
750 /* initialize verify_alg and csums_alg */
751 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
b411b363 752
69a22773
AG
753 if (get_ldev(peer_device->device)) {
754 dc = rcu_dereference(peer_device->device->ldev->disk_conf);
6394b935 755 p->resync_rate = cpu_to_be32(dc->resync_rate);
daeda1cc
PR
756 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
757 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
758 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
759 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
69a22773 760 put_ldev(peer_device->device);
9f5bdc33 761 } else {
6394b935 762 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
9f5bdc33
AG
763 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
764 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
765 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
766 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
767 }
b411b363 768
9f5bdc33 769 if (apv >= 88)
44ed167d 770 strcpy(p->verify_alg, nc->verify_alg);
9f5bdc33 771 if (apv >= 89)
44ed167d
PR
772 strcpy(p->csums_alg, nc->csums_alg);
773 rcu_read_unlock();
b411b363 774
69a22773 775 return drbd_send_command(peer_device, sock, cmd, size, NULL, 0);
b411b363
PR
776}
777
bde89a9e 778int __drbd_send_protocol(struct drbd_connection *connection, enum drbd_packet cmd)
b411b363 779{
9f5bdc33 780 struct drbd_socket *sock;
b411b363 781 struct p_protocol *p;
44ed167d 782 struct net_conf *nc;
9f5bdc33 783 int size, cf;
b411b363 784
bde89a9e
AG
785 sock = &connection->data;
786 p = __conn_prepare_command(connection, sock);
9f5bdc33
AG
787 if (!p)
788 return -EIO;
b411b363 789
44ed167d 790 rcu_read_lock();
bde89a9e 791 nc = rcu_dereference(connection->net_conf);
b411b363 792
bde89a9e 793 if (nc->tentative && connection->agreed_pro_version < 92) {
44ed167d
PR
794 rcu_read_unlock();
795 mutex_unlock(&sock->mutex);
1ec861eb 796 drbd_err(connection, "--dry-run is not supported by peer");
44ed167d
PR
797 return -EOPNOTSUPP;
798 }
b411b363 799
9f5bdc33 800 size = sizeof(*p);
bde89a9e 801 if (connection->agreed_pro_version >= 87)
44ed167d 802 size += strlen(nc->integrity_alg) + 1;
b411b363 803
44ed167d
PR
804 p->protocol = cpu_to_be32(nc->wire_protocol);
805 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
806 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
807 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
808 p->two_primaries = cpu_to_be32(nc->two_primaries);
cf14c2e9 809 cf = 0;
6139f60d
AG
810 if (nc->discard_my_data)
811 cf |= CF_DISCARD_MY_DATA;
6dff2902 812 if (nc->tentative)
9f5bdc33 813 cf |= CF_DRY_RUN;
cf14c2e9
PR
814 p->conn_flags = cpu_to_be32(cf);
815
bde89a9e 816 if (connection->agreed_pro_version >= 87)
44ed167d
PR
817 strcpy(p->integrity_alg, nc->integrity_alg);
818 rcu_read_unlock();
b411b363 819
bde89a9e 820 return __conn_send_command(connection, sock, cmd, size, NULL, 0);
a7eb7bdf
AG
821}
822
bde89a9e 823int drbd_send_protocol(struct drbd_connection *connection)
a7eb7bdf
AG
824{
825 int err;
826
bde89a9e
AG
827 mutex_lock(&connection->data.mutex);
828 err = __drbd_send_protocol(connection, P_PROTOCOL);
829 mutex_unlock(&connection->data.mutex);
a7eb7bdf
AG
830
831 return err;
b411b363
PR
832}
833
69a22773 834static int _drbd_send_uuids(struct drbd_peer_device *peer_device, u64 uuid_flags)
b411b363 835{
69a22773 836 struct drbd_device *device = peer_device->device;
9f5bdc33
AG
837 struct drbd_socket *sock;
838 struct p_uuids *p;
b411b363
PR
839 int i;
840
b30ab791 841 if (!get_ldev_if_state(device, D_NEGOTIATING))
2ae5f95b 842 return 0;
b411b363 843
69a22773
AG
844 sock = &peer_device->connection->data;
845 p = drbd_prepare_command(peer_device, sock);
9f5bdc33 846 if (!p) {
b30ab791 847 put_ldev(device);
9f5bdc33
AG
848 return -EIO;
849 }
b30ab791 850 spin_lock_irq(&device->ldev->md.uuid_lock);
b411b363 851 for (i = UI_CURRENT; i < UI_SIZE; i++)
b30ab791
AG
852 p->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
853 spin_unlock_irq(&device->ldev->md.uuid_lock);
b411b363 854
b30ab791
AG
855 device->comm_bm_set = drbd_bm_total_weight(device);
856 p->uuid[UI_SIZE] = cpu_to_be64(device->comm_bm_set);
44ed167d 857 rcu_read_lock();
69a22773 858 uuid_flags |= rcu_dereference(peer_device->connection->net_conf)->discard_my_data ? 1 : 0;
44ed167d 859 rcu_read_unlock();
b30ab791
AG
860 uuid_flags |= test_bit(CRASHED_PRIMARY, &device->flags) ? 2 : 0;
861 uuid_flags |= device->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
9f5bdc33 862 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
b411b363 863
b30ab791 864 put_ldev(device);
69a22773 865 return drbd_send_command(peer_device, sock, P_UUIDS, sizeof(*p), NULL, 0);
b411b363
PR
866}
867
69a22773 868int drbd_send_uuids(struct drbd_peer_device *peer_device)
b411b363 869{
69a22773 870 return _drbd_send_uuids(peer_device, 0);
b411b363
PR
871}
872
69a22773 873int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device *peer_device)
b411b363 874{
69a22773 875 return _drbd_send_uuids(peer_device, 8);
b411b363
PR
876}
877
b30ab791 878void drbd_print_uuids(struct drbd_device *device, const char *text)
62b0da3a 879{
b30ab791
AG
880 if (get_ldev_if_state(device, D_NEGOTIATING)) {
881 u64 *uuid = device->ldev->md.uuid;
d0180171 882 drbd_info(device, "%s %016llX:%016llX:%016llX:%016llX\n",
62b0da3a
LE
883 text,
884 (unsigned long long)uuid[UI_CURRENT],
885 (unsigned long long)uuid[UI_BITMAP],
886 (unsigned long long)uuid[UI_HISTORY_START],
887 (unsigned long long)uuid[UI_HISTORY_END]);
b30ab791 888 put_ldev(device);
62b0da3a 889 } else {
d0180171 890 drbd_info(device, "%s effective data uuid: %016llX\n",
62b0da3a 891 text,
b30ab791 892 (unsigned long long)device->ed_uuid);
62b0da3a
LE
893 }
894}
895
69a22773 896void drbd_gen_and_send_sync_uuid(struct drbd_peer_device *peer_device)
b411b363 897{
69a22773 898 struct drbd_device *device = peer_device->device;
9f5bdc33
AG
899 struct drbd_socket *sock;
900 struct p_rs_uuid *p;
5a22db89
LE
901 u64 uuid;
902
0b0ba1ef 903 D_ASSERT(device, device->state.disk == D_UP_TO_DATE);
b411b363 904
b30ab791 905 uuid = device->ldev->md.uuid[UI_BITMAP];
5ba3dac5
PR
906 if (uuid && uuid != UUID_JUST_CREATED)
907 uuid = uuid + UUID_NEW_BM_OFFSET;
908 else
909 get_random_bytes(&uuid, sizeof(u64));
b30ab791
AG
910 drbd_uuid_set(device, UI_BITMAP, uuid);
911 drbd_print_uuids(device, "updated sync UUID");
912 drbd_md_sync(device);
b411b363 913
69a22773
AG
914 sock = &peer_device->connection->data;
915 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
916 if (p) {
917 p->uuid = cpu_to_be64(uuid);
69a22773 918 drbd_send_command(peer_device, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
9f5bdc33 919 }
b411b363
PR
920}
921
69a22773 922int drbd_send_sizes(struct drbd_peer_device *peer_device, int trigger_reply, enum dds_flags flags)
b411b363 923{
69a22773 924 struct drbd_device *device = peer_device->device;
9f5bdc33
AG
925 struct drbd_socket *sock;
926 struct p_sizes *p;
b411b363 927 sector_t d_size, u_size;
db141b2f
LE
928 int q_order_type;
929 unsigned int max_bio_size;
b411b363 930
b30ab791 931 if (get_ldev_if_state(device, D_NEGOTIATING)) {
0b0ba1ef 932 D_ASSERT(device, device->ldev->backing_bdev);
b30ab791 933 d_size = drbd_get_max_capacity(device->ldev);
daeda1cc 934 rcu_read_lock();
b30ab791 935 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
daeda1cc 936 rcu_read_unlock();
b30ab791
AG
937 q_order_type = drbd_queue_order_type(device);
938 max_bio_size = queue_max_hw_sectors(device->ldev->backing_bdev->bd_disk->queue) << 9;
db141b2f 939 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE);
b30ab791 940 put_ldev(device);
b411b363
PR
941 } else {
942 d_size = 0;
943 u_size = 0;
944 q_order_type = QUEUE_ORDERED_NONE;
99432fcc 945 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
b411b363
PR
946 }
947
69a22773
AG
948 sock = &peer_device->connection->data;
949 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
950 if (!p)
951 return -EIO;
6809384c 952
69a22773 953 if (peer_device->connection->agreed_pro_version <= 94)
98683650 954 max_bio_size = min(max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
69a22773 955 else if (peer_device->connection->agreed_pro_version < 100)
98683650 956 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE_P95);
b411b363 957
9f5bdc33
AG
958 p->d_size = cpu_to_be64(d_size);
959 p->u_size = cpu_to_be64(u_size);
b30ab791 960 p->c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(device->this_bdev));
9f5bdc33
AG
961 p->max_bio_size = cpu_to_be32(max_bio_size);
962 p->queue_order_type = cpu_to_be16(q_order_type);
963 p->dds_flags = cpu_to_be16(flags);
69a22773 964 return drbd_send_command(peer_device, sock, P_SIZES, sizeof(*p), NULL, 0);
b411b363
PR
965}
966
967/**
f479ea06 968 * drbd_send_current_state() - Sends the drbd state to the peer
69a22773 969 * @peer_device: DRBD peer device.
b411b363 970 */
69a22773 971int drbd_send_current_state(struct drbd_peer_device *peer_device)
b411b363 972{
7c96715a 973 struct drbd_socket *sock;
9f5bdc33 974 struct p_state *p;
b411b363 975
69a22773
AG
976 sock = &peer_device->connection->data;
977 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
978 if (!p)
979 return -EIO;
69a22773
AG
980 p->state = cpu_to_be32(peer_device->device->state.i); /* Within the send mutex */
981 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
b411b363
PR
982}
983
f479ea06
LE
984/**
985 * drbd_send_state() - After a state change, sends the new state to the peer
69a22773 986 * @peer_device: DRBD peer device.
43de7c85 987 * @state: the state to send, not necessarily the current state.
f479ea06
LE
988 *
989 * Each state change queues an "after_state_ch" work, which will eventually
990 * send the resulting new state to the peer. If more state changes happen
991 * between queuing and processing of the after_state_ch work, we still
992 * want to send each intermediary state in the order it occurred.
993 */
69a22773 994int drbd_send_state(struct drbd_peer_device *peer_device, union drbd_state state)
f479ea06 995{
43de7c85
PR
996 struct drbd_socket *sock;
997 struct p_state *p;
f479ea06 998
69a22773
AG
999 sock = &peer_device->connection->data;
1000 p = drbd_prepare_command(peer_device, sock);
43de7c85
PR
1001 if (!p)
1002 return -EIO;
1003 p->state = cpu_to_be32(state.i); /* Within the send mutex */
69a22773 1004 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
43de7c85 1005}
f479ea06 1006
69a22773 1007int drbd_send_state_req(struct drbd_peer_device *peer_device, union drbd_state mask, union drbd_state val)
9f5bdc33
AG
1008{
1009 struct drbd_socket *sock;
1010 struct p_req_state *p;
f479ea06 1011
69a22773
AG
1012 sock = &peer_device->connection->data;
1013 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
1014 if (!p)
1015 return -EIO;
1016 p->mask = cpu_to_be32(mask.i);
1017 p->val = cpu_to_be32(val.i);
69a22773 1018 return drbd_send_command(peer_device, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
b411b363 1019}
f479ea06 1020
bde89a9e 1021int conn_send_state_req(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
b411b363 1022{
9f5bdc33
AG
1023 enum drbd_packet cmd;
1024 struct drbd_socket *sock;
1025 struct p_req_state *p;
f479ea06 1026
bde89a9e
AG
1027 cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1028 sock = &connection->data;
1029 p = conn_prepare_command(connection, sock);
9f5bdc33
AG
1030 if (!p)
1031 return -EIO;
1032 p->mask = cpu_to_be32(mask.i);
1033 p->val = cpu_to_be32(val.i);
bde89a9e 1034 return conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
f479ea06
LE
1035}
1036
69a22773 1037void drbd_send_sr_reply(struct drbd_peer_device *peer_device, enum drbd_state_rv retcode)
b411b363 1038{
9f5bdc33
AG
1039 struct drbd_socket *sock;
1040 struct p_req_state_reply *p;
b411b363 1041
69a22773
AG
1042 sock = &peer_device->connection->meta;
1043 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
1044 if (p) {
1045 p->retcode = cpu_to_be32(retcode);
69a22773 1046 drbd_send_command(peer_device, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
9f5bdc33 1047 }
b411b363 1048}
b411b363 1049
bde89a9e 1050void conn_send_sr_reply(struct drbd_connection *connection, enum drbd_state_rv retcode)
047cd4a6 1051{
9f5bdc33
AG
1052 struct drbd_socket *sock;
1053 struct p_req_state_reply *p;
bde89a9e 1054 enum drbd_packet cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
b411b363 1055
bde89a9e
AG
1056 sock = &connection->meta;
1057 p = conn_prepare_command(connection, sock);
9f5bdc33
AG
1058 if (p) {
1059 p->retcode = cpu_to_be32(retcode);
bde89a9e 1060 conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
9f5bdc33 1061 }
b411b363
PR
1062}
1063
a02d1240 1064static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
b411b363 1065{
a02d1240
AG
1066 BUG_ON(code & ~0xf);
1067 p->encoding = (p->encoding & ~0xf) | code;
1068}
b411b363 1069
a02d1240
AG
1070static void dcbp_set_start(struct p_compressed_bm *p, int set)
1071{
1072 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1073}
b411b363 1074
a02d1240
AG
1075static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1076{
1077 BUG_ON(n & ~0x7);
1078 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
b411b363
PR
1079}
1080
b30ab791 1081static int fill_bitmap_rle_bits(struct drbd_device *device,
50d0b1ad
AG
1082 struct p_compressed_bm *p,
1083 unsigned int size,
1084 struct bm_xfer_ctx *c)
b411b363
PR
1085{
1086 struct bitstream bs;
1087 unsigned long plain_bits;
1088 unsigned long tmp;
1089 unsigned long rl;
1090 unsigned len;
1091 unsigned toggle;
44ed167d 1092 int bits, use_rle;
b411b363
PR
1093
1094 /* may we use this feature? */
44ed167d 1095 rcu_read_lock();
a6b32bc3 1096 use_rle = rcu_dereference(first_peer_device(device)->connection->net_conf)->use_rle;
44ed167d 1097 rcu_read_unlock();
a6b32bc3 1098 if (!use_rle || first_peer_device(device)->connection->agreed_pro_version < 90)
44ed167d 1099 return 0;
b411b363
PR
1100
1101 if (c->bit_offset >= c->bm_bits)
1102 return 0; /* nothing to do. */
1103
1104 /* use at most thus many bytes */
50d0b1ad
AG
1105 bitstream_init(&bs, p->code, size, 0);
1106 memset(p->code, 0, size);
b411b363
PR
1107 /* plain bits covered in this code string */
1108 plain_bits = 0;
1109
1110 /* p->encoding & 0x80 stores whether the first run length is set.
1111 * bit offset is implicit.
1112 * start with toggle == 2 to be able to tell the first iteration */
1113 toggle = 2;
1114
1115 /* see how much plain bits we can stuff into one packet
1116 * using RLE and VLI. */
1117 do {
b30ab791
AG
1118 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(device, c->bit_offset)
1119 : _drbd_bm_find_next(device, c->bit_offset);
b411b363
PR
1120 if (tmp == -1UL)
1121 tmp = c->bm_bits;
1122 rl = tmp - c->bit_offset;
1123
1124 if (toggle == 2) { /* first iteration */
1125 if (rl == 0) {
1126 /* the first checked bit was set,
1127 * store start value, */
a02d1240 1128 dcbp_set_start(p, 1);
b411b363
PR
1129 /* but skip encoding of zero run length */
1130 toggle = !toggle;
1131 continue;
1132 }
a02d1240 1133 dcbp_set_start(p, 0);
b411b363
PR
1134 }
1135
1136 /* paranoia: catch zero runlength.
1137 * can only happen if bitmap is modified while we scan it. */
1138 if (rl == 0) {
d0180171 1139 drbd_err(device, "unexpected zero runlength while encoding bitmap "
b411b363
PR
1140 "t:%u bo:%lu\n", toggle, c->bit_offset);
1141 return -1;
1142 }
1143
1144 bits = vli_encode_bits(&bs, rl);
1145 if (bits == -ENOBUFS) /* buffer full */
1146 break;
1147 if (bits <= 0) {
d0180171 1148 drbd_err(device, "error while encoding bitmap: %d\n", bits);
b411b363
PR
1149 return 0;
1150 }
1151
1152 toggle = !toggle;
1153 plain_bits += rl;
1154 c->bit_offset = tmp;
1155 } while (c->bit_offset < c->bm_bits);
1156
1157 len = bs.cur.b - p->code + !!bs.cur.bit;
1158
1159 if (plain_bits < (len << 3)) {
1160 /* incompressible with this method.
1161 * we need to rewind both word and bit position. */
1162 c->bit_offset -= plain_bits;
1163 bm_xfer_ctx_bit_to_word_offset(c);
1164 c->bit_offset = c->word_offset * BITS_PER_LONG;
1165 return 0;
1166 }
1167
1168 /* RLE + VLI was able to compress it just fine.
1169 * update c->word_offset. */
1170 bm_xfer_ctx_bit_to_word_offset(c);
1171
1172 /* store pad_bits */
a02d1240 1173 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
b411b363
PR
1174
1175 return len;
1176}
1177
f70af118
AG
1178/**
1179 * send_bitmap_rle_or_plain
1180 *
1181 * Return 0 when done, 1 when another iteration is needed, and a negative error
1182 * code upon failure.
1183 */
1184static int
b30ab791 1185send_bitmap_rle_or_plain(struct drbd_device *device, struct bm_xfer_ctx *c)
b411b363 1186{
a6b32bc3
AG
1187 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
1188 unsigned int header_size = drbd_header_size(first_peer_device(device)->connection);
e658983a 1189 struct p_compressed_bm *p = sock->sbuf + header_size;
a982dd57 1190 int len, err;
b411b363 1191
b30ab791 1192 len = fill_bitmap_rle_bits(device, p,
e658983a 1193 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
b411b363 1194 if (len < 0)
f70af118 1195 return -EIO;
b411b363
PR
1196
1197 if (len) {
a02d1240 1198 dcbp_set_code(p, RLE_VLI_Bits);
a6b32bc3 1199 err = __send_command(first_peer_device(device)->connection, device->vnr, sock,
9f5bdc33
AG
1200 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1201 NULL, 0);
b411b363 1202 c->packets[0]++;
e658983a 1203 c->bytes[0] += header_size + sizeof(*p) + len;
b411b363
PR
1204
1205 if (c->bit_offset >= c->bm_bits)
1206 len = 0; /* DONE */
1207 } else {
1208 /* was not compressible.
1209 * send a buffer full of plain text bits instead. */
50d0b1ad
AG
1210 unsigned int data_size;
1211 unsigned long num_words;
e658983a 1212 unsigned long *p = sock->sbuf + header_size;
50d0b1ad
AG
1213
1214 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
e658983a 1215 num_words = min_t(size_t, data_size / sizeof(*p),
50d0b1ad 1216 c->bm_words - c->word_offset);
e658983a 1217 len = num_words * sizeof(*p);
b411b363 1218 if (len)
b30ab791 1219 drbd_bm_get_lel(device, c->word_offset, num_words, p);
a6b32bc3 1220 err = __send_command(first_peer_device(device)->connection, device->vnr, sock, P_BITMAP, len, NULL, 0);
b411b363
PR
1221 c->word_offset += num_words;
1222 c->bit_offset = c->word_offset * BITS_PER_LONG;
1223
1224 c->packets[1]++;
50d0b1ad 1225 c->bytes[1] += header_size + len;
b411b363
PR
1226
1227 if (c->bit_offset > c->bm_bits)
1228 c->bit_offset = c->bm_bits;
1229 }
a982dd57 1230 if (!err) {
f70af118 1231 if (len == 0) {
b30ab791 1232 INFO_bm_xfer_stats(device, "send", c);
f70af118
AG
1233 return 0;
1234 } else
1235 return 1;
1236 }
1237 return -EIO;
b411b363
PR
1238}
1239
1240/* See the comment at receive_bitmap() */
b30ab791 1241static int _drbd_send_bitmap(struct drbd_device *device)
b411b363
PR
1242{
1243 struct bm_xfer_ctx c;
f70af118 1244 int err;
b411b363 1245
b30ab791 1246 if (!expect(device->bitmap))
81e84650 1247 return false;
b411b363 1248
b30ab791
AG
1249 if (get_ldev(device)) {
1250 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC)) {
d0180171 1251 drbd_info(device, "Writing the whole bitmap, MDF_FullSync was set.\n");
b30ab791
AG
1252 drbd_bm_set_all(device);
1253 if (drbd_bm_write(device)) {
b411b363
PR
1254 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1255 * but otherwise process as per normal - need to tell other
1256 * side that a full resync is required! */
d0180171 1257 drbd_err(device, "Failed to write bitmap to disk!\n");
b411b363 1258 } else {
b30ab791
AG
1259 drbd_md_clear_flag(device, MDF_FULL_SYNC);
1260 drbd_md_sync(device);
b411b363
PR
1261 }
1262 }
b30ab791 1263 put_ldev(device);
b411b363
PR
1264 }
1265
1266 c = (struct bm_xfer_ctx) {
b30ab791
AG
1267 .bm_bits = drbd_bm_bits(device),
1268 .bm_words = drbd_bm_words(device),
b411b363
PR
1269 };
1270
1271 do {
b30ab791 1272 err = send_bitmap_rle_or_plain(device, &c);
f70af118 1273 } while (err > 0);
b411b363 1274
f70af118 1275 return err == 0;
b411b363
PR
1276}
1277
b30ab791 1278int drbd_send_bitmap(struct drbd_device *device)
b411b363 1279{
a6b32bc3 1280 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
9f5bdc33 1281 int err = -1;
b411b363 1282
9f5bdc33
AG
1283 mutex_lock(&sock->mutex);
1284 if (sock->socket)
b30ab791 1285 err = !_drbd_send_bitmap(device);
9f5bdc33 1286 mutex_unlock(&sock->mutex);
b411b363
PR
1287 return err;
1288}
1289
bde89a9e 1290void drbd_send_b_ack(struct drbd_connection *connection, u32 barrier_nr, u32 set_size)
b411b363 1291{
9f5bdc33
AG
1292 struct drbd_socket *sock;
1293 struct p_barrier_ack *p;
b411b363 1294
bde89a9e 1295 if (connection->cstate < C_WF_REPORT_PARAMS)
9f5bdc33 1296 return;
b411b363 1297
bde89a9e
AG
1298 sock = &connection->meta;
1299 p = conn_prepare_command(connection, sock);
9f5bdc33
AG
1300 if (!p)
1301 return;
1302 p->barrier = barrier_nr;
1303 p->set_size = cpu_to_be32(set_size);
bde89a9e 1304 conn_send_command(connection, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
b411b363
PR
1305}
1306
1307/**
1308 * _drbd_send_ack() - Sends an ack packet
b30ab791 1309 * @device: DRBD device.
b411b363
PR
1310 * @cmd: Packet command code.
1311 * @sector: sector, needs to be in big endian byte order
1312 * @blksize: size in byte, needs to be in big endian byte order
1313 * @block_id: Id, big endian byte order
1314 */
69a22773 1315static int _drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
d8763023 1316 u64 sector, u32 blksize, u64 block_id)
b411b363 1317{
9f5bdc33
AG
1318 struct drbd_socket *sock;
1319 struct p_block_ack *p;
b411b363 1320
69a22773 1321 if (peer_device->device->state.conn < C_CONNECTED)
9f5bdc33 1322 return -EIO;
b411b363 1323
69a22773
AG
1324 sock = &peer_device->connection->meta;
1325 p = drbd_prepare_command(peer_device, sock);
9f5bdc33 1326 if (!p)
a8c32aa8 1327 return -EIO;
9f5bdc33
AG
1328 p->sector = sector;
1329 p->block_id = block_id;
1330 p->blksize = blksize;
69a22773
AG
1331 p->seq_num = cpu_to_be32(atomic_inc_return(&peer_device->device->packet_seq));
1332 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
b411b363
PR
1333}
1334
2b2bf214
LE
1335/* dp->sector and dp->block_id already/still in network byte order,
1336 * data_size is payload size according to dp->head,
1337 * and may need to be corrected for digest size. */
69a22773 1338void drbd_send_ack_dp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
a9a9994d 1339 struct p_data *dp, int data_size)
b411b363 1340{
69a22773
AG
1341 if (peer_device->connection->peer_integrity_tfm)
1342 data_size -= crypto_hash_digestsize(peer_device->connection->peer_integrity_tfm);
1343 _drbd_send_ack(peer_device, cmd, dp->sector, cpu_to_be32(data_size),
a9a9994d 1344 dp->block_id);
b411b363
PR
1345}
1346
69a22773 1347void drbd_send_ack_rp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
a9a9994d 1348 struct p_block_req *rp)
b411b363 1349{
69a22773 1350 _drbd_send_ack(peer_device, cmd, rp->sector, rp->blksize, rp->block_id);
b411b363
PR
1351}
1352
1353/**
1354 * drbd_send_ack() - Sends an ack packet
b30ab791 1355 * @device: DRBD device
db830c46
AG
1356 * @cmd: packet command code
1357 * @peer_req: peer request
b411b363 1358 */
69a22773 1359int drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
db830c46 1360 struct drbd_peer_request *peer_req)
b411b363 1361{
69a22773 1362 return _drbd_send_ack(peer_device, cmd,
dd516121
AG
1363 cpu_to_be64(peer_req->i.sector),
1364 cpu_to_be32(peer_req->i.size),
1365 peer_req->block_id);
b411b363
PR
1366}
1367
1368/* This function misuses the block_id field to signal if the blocks
1369 * are is sync or not. */
69a22773 1370int drbd_send_ack_ex(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
b411b363
PR
1371 sector_t sector, int blksize, u64 block_id)
1372{
69a22773 1373 return _drbd_send_ack(peer_device, cmd,
b411b363
PR
1374 cpu_to_be64(sector),
1375 cpu_to_be32(blksize),
1376 cpu_to_be64(block_id));
1377}
1378
69a22773 1379int drbd_send_drequest(struct drbd_peer_device *peer_device, int cmd,
b411b363
PR
1380 sector_t sector, int size, u64 block_id)
1381{
9f5bdc33
AG
1382 struct drbd_socket *sock;
1383 struct p_block_req *p;
b411b363 1384
69a22773
AG
1385 sock = &peer_device->connection->data;
1386 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
1387 if (!p)
1388 return -EIO;
1389 p->sector = cpu_to_be64(sector);
1390 p->block_id = block_id;
1391 p->blksize = cpu_to_be32(size);
69a22773 1392 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
b411b363
PR
1393}
1394
69a22773 1395int drbd_send_drequest_csum(struct drbd_peer_device *peer_device, sector_t sector, int size,
d8763023 1396 void *digest, int digest_size, enum drbd_packet cmd)
b411b363 1397{
9f5bdc33
AG
1398 struct drbd_socket *sock;
1399 struct p_block_req *p;
b411b363 1400
9f5bdc33 1401 /* FIXME: Put the digest into the preallocated socket buffer. */
b411b363 1402
69a22773
AG
1403 sock = &peer_device->connection->data;
1404 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
1405 if (!p)
1406 return -EIO;
1407 p->sector = cpu_to_be64(sector);
1408 p->block_id = ID_SYNCER /* unused */;
1409 p->blksize = cpu_to_be32(size);
69a22773 1410 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), digest, digest_size);
b411b363
PR
1411}
1412
69a22773 1413int drbd_send_ov_request(struct drbd_peer_device *peer_device, sector_t sector, int size)
b411b363 1414{
9f5bdc33
AG
1415 struct drbd_socket *sock;
1416 struct p_block_req *p;
b411b363 1417
69a22773
AG
1418 sock = &peer_device->connection->data;
1419 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
1420 if (!p)
1421 return -EIO;
1422 p->sector = cpu_to_be64(sector);
1423 p->block_id = ID_SYNCER /* unused */;
1424 p->blksize = cpu_to_be32(size);
69a22773 1425 return drbd_send_command(peer_device, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
b411b363
PR
1426}
1427
1428/* called on sndtimeo
81e84650
AG
1429 * returns false if we should retry,
1430 * true if we think connection is dead
b411b363 1431 */
bde89a9e 1432static int we_should_drop_the_connection(struct drbd_connection *connection, struct socket *sock)
b411b363
PR
1433{
1434 int drop_it;
b30ab791 1435 /* long elapsed = (long)(jiffies - device->last_received); */
b411b363 1436
bde89a9e
AG
1437 drop_it = connection->meta.socket == sock
1438 || !connection->asender.task
1439 || get_t_state(&connection->asender) != RUNNING
1440 || connection->cstate < C_WF_REPORT_PARAMS;
b411b363
PR
1441
1442 if (drop_it)
81e84650 1443 return true;
b411b363 1444
bde89a9e 1445 drop_it = !--connection->ko_count;
b411b363 1446 if (!drop_it) {
1ec861eb 1447 drbd_err(connection, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
bde89a9e
AG
1448 current->comm, current->pid, connection->ko_count);
1449 request_ping(connection);
b411b363
PR
1450 }
1451
b30ab791 1452 return drop_it; /* && (device->state == R_PRIMARY) */;
b411b363
PR
1453}
1454
bde89a9e 1455static void drbd_update_congested(struct drbd_connection *connection)
9e204cdd 1456{
bde89a9e 1457 struct sock *sk = connection->data.socket->sk;
9e204cdd 1458 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
bde89a9e 1459 set_bit(NET_CONGESTED, &connection->flags);
9e204cdd
AG
1460}
1461
b411b363
PR
1462/* The idea of sendpage seems to be to put some kind of reference
1463 * to the page into the skb, and to hand it over to the NIC. In
1464 * this process get_page() gets called.
1465 *
1466 * As soon as the page was really sent over the network put_page()
1467 * gets called by some part of the network layer. [ NIC driver? ]
1468 *
1469 * [ get_page() / put_page() increment/decrement the count. If count
1470 * reaches 0 the page will be freed. ]
1471 *
1472 * This works nicely with pages from FSs.
1473 * But this means that in protocol A we might signal IO completion too early!
1474 *
1475 * In order not to corrupt data during a resync we must make sure
1476 * that we do not reuse our own buffer pages (EEs) to early, therefore
1477 * we have the net_ee list.
1478 *
1479 * XFS seems to have problems, still, it submits pages with page_count == 0!
1480 * As a workaround, we disable sendpage on pages
1481 * with page_count == 0 or PageSlab.
1482 */
69a22773 1483static int _drbd_no_send_page(struct drbd_peer_device *peer_device, struct page *page,
b987427b 1484 int offset, size_t size, unsigned msg_flags)
b411b363 1485{
b987427b
AG
1486 struct socket *socket;
1487 void *addr;
1488 int err;
1489
69a22773 1490 socket = peer_device->connection->data.socket;
b987427b 1491 addr = kmap(page) + offset;
69a22773 1492 err = drbd_send_all(peer_device->connection, socket, addr, size, msg_flags);
b411b363 1493 kunmap(page);
b987427b 1494 if (!err)
69a22773 1495 peer_device->device->send_cnt += size >> 9;
b987427b 1496 return err;
b411b363
PR
1497}
1498
69a22773 1499static int _drbd_send_page(struct drbd_peer_device *peer_device, struct page *page,
ba11ad9a 1500 int offset, size_t size, unsigned msg_flags)
b411b363 1501{
69a22773 1502 struct socket *socket = peer_device->connection->data.socket;
b411b363 1503 mm_segment_t oldfs = get_fs();
b411b363 1504 int len = size;
88b390ff 1505 int err = -EIO;
b411b363
PR
1506
1507 /* e.g. XFS meta- & log-data is in slab pages, which have a
1508 * page_count of 0 and/or have PageSlab() set.
1509 * we cannot use send_page for those, as that does get_page();
1510 * put_page(); and would cause either a VM_BUG directly, or
1511 * __page_cache_release a page that would actually still be referenced
1512 * by someone, leading to some obscure delayed Oops somewhere else. */
1513 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
69a22773 1514 return _drbd_no_send_page(peer_device, page, offset, size, msg_flags);
b411b363 1515
ba11ad9a 1516 msg_flags |= MSG_NOSIGNAL;
69a22773 1517 drbd_update_congested(peer_device->connection);
b411b363
PR
1518 set_fs(KERNEL_DS);
1519 do {
88b390ff
AG
1520 int sent;
1521
1522 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
b411b363 1523 if (sent <= 0) {
88b390ff 1524 if (sent == -EAGAIN) {
69a22773 1525 if (we_should_drop_the_connection(peer_device->connection, socket))
88b390ff
AG
1526 break;
1527 continue;
1528 }
69a22773 1529 drbd_warn(peer_device->device, "%s: size=%d len=%d sent=%d\n",
b411b363 1530 __func__, (int)size, len, sent);
88b390ff
AG
1531 if (sent < 0)
1532 err = sent;
b411b363
PR
1533 break;
1534 }
1535 len -= sent;
1536 offset += sent;
b30ab791 1537 } while (len > 0 /* THINK && device->cstate >= C_CONNECTED*/);
b411b363 1538 set_fs(oldfs);
69a22773 1539 clear_bit(NET_CONGESTED, &peer_device->connection->flags);
b411b363 1540
88b390ff
AG
1541 if (len == 0) {
1542 err = 0;
69a22773 1543 peer_device->device->send_cnt += size >> 9;
88b390ff
AG
1544 }
1545 return err;
b411b363
PR
1546}
1547
69a22773 1548static int _drbd_send_bio(struct drbd_peer_device *peer_device, struct bio *bio)
b411b363 1549{
7988613b
KO
1550 struct bio_vec bvec;
1551 struct bvec_iter iter;
1552
ba11ad9a 1553 /* hint all but last page with MSG_MORE */
7988613b 1554 bio_for_each_segment(bvec, bio, iter) {
7fae55da
AG
1555 int err;
1556
69a22773 1557 err = _drbd_no_send_page(peer_device, bvec.bv_page,
7988613b 1558 bvec.bv_offset, bvec.bv_len,
4550dd6c 1559 bio_iter_last(bvec, iter)
7988613b 1560 ? 0 : MSG_MORE);
7fae55da
AG
1561 if (err)
1562 return err;
b411b363 1563 }
7fae55da 1564 return 0;
b411b363
PR
1565}
1566
69a22773 1567static int _drbd_send_zc_bio(struct drbd_peer_device *peer_device, struct bio *bio)
b411b363 1568{
7988613b
KO
1569 struct bio_vec bvec;
1570 struct bvec_iter iter;
1571
ba11ad9a 1572 /* hint all but last page with MSG_MORE */
7988613b 1573 bio_for_each_segment(bvec, bio, iter) {
7fae55da
AG
1574 int err;
1575
69a22773 1576 err = _drbd_send_page(peer_device, bvec.bv_page,
7988613b 1577 bvec.bv_offset, bvec.bv_len,
4550dd6c 1578 bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
7fae55da
AG
1579 if (err)
1580 return err;
b411b363 1581 }
7fae55da 1582 return 0;
b411b363
PR
1583}
1584
69a22773 1585static int _drbd_send_zc_ee(struct drbd_peer_device *peer_device,
db830c46 1586 struct drbd_peer_request *peer_req)
45bb912b 1587{
db830c46
AG
1588 struct page *page = peer_req->pages;
1589 unsigned len = peer_req->i.size;
9f69230c 1590 int err;
db830c46 1591
ba11ad9a 1592 /* hint all but last page with MSG_MORE */
45bb912b
LE
1593 page_chain_for_each(page) {
1594 unsigned l = min_t(unsigned, len, PAGE_SIZE);
9f69230c 1595
69a22773 1596 err = _drbd_send_page(peer_device, page, 0, l,
9f69230c
AG
1597 page_chain_next(page) ? MSG_MORE : 0);
1598 if (err)
1599 return err;
45bb912b
LE
1600 len -= l;
1601 }
9f69230c 1602 return 0;
45bb912b
LE
1603}
1604
69a22773 1605static u32 bio_flags_to_wire(struct drbd_connection *connection, unsigned long bi_rw)
76d2e7ec 1606{
69a22773 1607 if (connection->agreed_pro_version >= 95)
76d2e7ec 1608 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
76d2e7ec
PR
1609 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1610 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1611 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1612 else
721a9602 1613 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
76d2e7ec
PR
1614}
1615
2f632aeb
LE
1616/* Used to send write or TRIM aka REQ_DISCARD requests
1617 * R_PRIMARY -> Peer (P_DATA, P_TRIM)
b411b363 1618 */
69a22773 1619int drbd_send_dblock(struct drbd_peer_device *peer_device, struct drbd_request *req)
b411b363 1620{
69a22773 1621 struct drbd_device *device = peer_device->device;
9f5bdc33
AG
1622 struct drbd_socket *sock;
1623 struct p_data *p;
b411b363 1624 unsigned int dp_flags = 0;
b411b363 1625 int dgs;
9f5bdc33 1626 int err;
b411b363 1627
69a22773
AG
1628 sock = &peer_device->connection->data;
1629 p = drbd_prepare_command(peer_device, sock);
1630 dgs = peer_device->connection->integrity_tfm ?
1631 crypto_hash_digestsize(peer_device->connection->integrity_tfm) : 0;
b411b363 1632
9f5bdc33
AG
1633 if (!p)
1634 return -EIO;
1635 p->sector = cpu_to_be64(req->i.sector);
1636 p->block_id = (unsigned long)req;
b30ab791 1637 p->seq_num = cpu_to_be32(atomic_inc_return(&device->packet_seq));
69a22773 1638 dp_flags = bio_flags_to_wire(peer_device->connection, req->master_bio->bi_rw);
b30ab791
AG
1639 if (device->state.conn >= C_SYNC_SOURCE &&
1640 device->state.conn <= C_PAUSED_SYNC_T)
b411b363 1641 dp_flags |= DP_MAY_SET_IN_SYNC;
69a22773 1642 if (peer_device->connection->agreed_pro_version >= 100) {
303d1448
PR
1643 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1644 dp_flags |= DP_SEND_RECEIVE_ACK;
08d0dabf
LE
1645 /* During resync, request an explicit write ack,
1646 * even in protocol != C */
1647 if (req->rq_state & RQ_EXP_WRITE_ACK
1648 || (dp_flags & DP_MAY_SET_IN_SYNC))
303d1448
PR
1649 dp_flags |= DP_SEND_WRITE_ACK;
1650 }
9f5bdc33 1651 p->dp_flags = cpu_to_be32(dp_flags);
2f632aeb
LE
1652
1653 if (dp_flags & DP_DISCARD) {
1654 struct p_trim *t = (struct p_trim*)p;
1655 t->size = cpu_to_be32(req->i.size);
1656 err = __send_command(peer_device->connection, device->vnr, sock, P_TRIM, sizeof(*t), NULL, 0);
1657 goto out;
1658 }
1659
1660 /* our digest is still only over the payload.
1661 * TRIM does not carry any payload. */
9f5bdc33 1662 if (dgs)
69a22773
AG
1663 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, p + 1);
1664 err = __send_command(peer_device->connection, device->vnr, sock, P_DATA, sizeof(*p) + dgs, NULL, req->i.size);
6bdb9b0e 1665 if (!err) {
470be44a
LE
1666 /* For protocol A, we have to memcpy the payload into
1667 * socket buffers, as we may complete right away
1668 * as soon as we handed it over to tcp, at which point the data
1669 * pages may become invalid.
1670 *
1671 * For data-integrity enabled, we copy it as well, so we can be
1672 * sure that even if the bio pages may still be modified, it
1673 * won't change the data on the wire, thus if the digest checks
1674 * out ok after sending on this side, but does not fit on the
1675 * receiving side, we sure have detected corruption elsewhere.
1676 */
303d1448 1677 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || dgs)
69a22773 1678 err = _drbd_send_bio(peer_device, req->master_bio);
b411b363 1679 else
69a22773 1680 err = _drbd_send_zc_bio(peer_device, req->master_bio);
470be44a
LE
1681
1682 /* double check digest, sometimes buffers have been modified in flight. */
1683 if (dgs > 0 && dgs <= 64) {
24c4830c 1684 /* 64 byte, 512 bit, is the largest digest size
470be44a
LE
1685 * currently supported in kernel crypto. */
1686 unsigned char digest[64];
69a22773 1687 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest);
9f5bdc33 1688 if (memcmp(p + 1, digest, dgs)) {
d0180171 1689 drbd_warn(device,
470be44a 1690 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
ace652ac 1691 (unsigned long long)req->i.sector, req->i.size);
470be44a
LE
1692 }
1693 } /* else if (dgs > 64) {
1694 ... Be noisy about digest too large ...
1695 } */
b411b363 1696 }
2f632aeb 1697out:
9f5bdc33 1698 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
b411b363 1699
6bdb9b0e 1700 return err;
b411b363
PR
1701}
1702
1703/* answer packet, used to send data back for read requests:
1704 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1705 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1706 */
69a22773 1707int drbd_send_block(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
db830c46 1708 struct drbd_peer_request *peer_req)
b411b363 1709{
69a22773 1710 struct drbd_device *device = peer_device->device;
9f5bdc33
AG
1711 struct drbd_socket *sock;
1712 struct p_data *p;
7b57b89d 1713 int err;
b411b363
PR
1714 int dgs;
1715
69a22773
AG
1716 sock = &peer_device->connection->data;
1717 p = drbd_prepare_command(peer_device, sock);
b411b363 1718
69a22773
AG
1719 dgs = peer_device->connection->integrity_tfm ?
1720 crypto_hash_digestsize(peer_device->connection->integrity_tfm) : 0;
b411b363 1721
9f5bdc33
AG
1722 if (!p)
1723 return -EIO;
1724 p->sector = cpu_to_be64(peer_req->i.sector);
1725 p->block_id = peer_req->block_id;
1726 p->seq_num = 0; /* unused */
b17f33cb 1727 p->dp_flags = 0;
9f5bdc33 1728 if (dgs)
69a22773
AG
1729 drbd_csum_ee(peer_device->connection->integrity_tfm, peer_req, p + 1);
1730 err = __send_command(peer_device->connection, device->vnr, sock, cmd, sizeof(*p) + dgs, NULL, peer_req->i.size);
7b57b89d 1731 if (!err)
69a22773 1732 err = _drbd_send_zc_ee(peer_device, peer_req);
9f5bdc33 1733 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
bd26bfc5 1734
7b57b89d 1735 return err;
b411b363
PR
1736}
1737
69a22773 1738int drbd_send_out_of_sync(struct drbd_peer_device *peer_device, struct drbd_request *req)
73a01a18 1739{
9f5bdc33
AG
1740 struct drbd_socket *sock;
1741 struct p_block_desc *p;
73a01a18 1742
69a22773
AG
1743 sock = &peer_device->connection->data;
1744 p = drbd_prepare_command(peer_device, sock);
9f5bdc33
AG
1745 if (!p)
1746 return -EIO;
1747 p->sector = cpu_to_be64(req->i.sector);
1748 p->blksize = cpu_to_be32(req->i.size);
69a22773 1749 return drbd_send_command(peer_device, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
73a01a18
PR
1750}
1751
b411b363
PR
1752/*
1753 drbd_send distinguishes two cases:
1754
1755 Packets sent via the data socket "sock"
1756 and packets sent via the meta data socket "msock"
1757
1758 sock msock
1759 -----------------+-------------------------+------------------------------
1760 timeout conf.timeout / 2 conf.timeout / 2
1761 timeout action send a ping via msock Abort communication
1762 and close all sockets
1763*/
1764
1765/*
1766 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1767 */
bde89a9e 1768int drbd_send(struct drbd_connection *connection, struct socket *sock,
b411b363
PR
1769 void *buf, size_t size, unsigned msg_flags)
1770{
1771 struct kvec iov;
1772 struct msghdr msg;
1773 int rv, sent = 0;
1774
1775 if (!sock)
c0d42c8e 1776 return -EBADR;
b411b363
PR
1777
1778 /* THINK if (signal_pending) return ... ? */
1779
1780 iov.iov_base = buf;
1781 iov.iov_len = size;
1782
1783 msg.msg_name = NULL;
1784 msg.msg_namelen = 0;
1785 msg.msg_control = NULL;
1786 msg.msg_controllen = 0;
1787 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1788
bde89a9e 1789 if (sock == connection->data.socket) {
44ed167d 1790 rcu_read_lock();
bde89a9e 1791 connection->ko_count = rcu_dereference(connection->net_conf)->ko_count;
44ed167d 1792 rcu_read_unlock();
bde89a9e 1793 drbd_update_congested(connection);
b411b363
PR
1794 }
1795 do {
1796 /* STRANGE
1797 * tcp_sendmsg does _not_ use its size parameter at all ?
1798 *
1799 * -EAGAIN on timeout, -EINTR on signal.
1800 */
1801/* THINK
1802 * do we need to block DRBD_SIG if sock == &meta.socket ??
1803 * otherwise wake_asender() might interrupt some send_*Ack !
1804 */
1805 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1806 if (rv == -EAGAIN) {
bde89a9e 1807 if (we_should_drop_the_connection(connection, sock))
b411b363
PR
1808 break;
1809 else
1810 continue;
1811 }
b411b363
PR
1812 if (rv == -EINTR) {
1813 flush_signals(current);
1814 rv = 0;
1815 }
1816 if (rv < 0)
1817 break;
1818 sent += rv;
1819 iov.iov_base += rv;
1820 iov.iov_len -= rv;
1821 } while (sent < size);
1822
bde89a9e
AG
1823 if (sock == connection->data.socket)
1824 clear_bit(NET_CONGESTED, &connection->flags);
b411b363
PR
1825
1826 if (rv <= 0) {
1827 if (rv != -EAGAIN) {
1ec861eb 1828 drbd_err(connection, "%s_sendmsg returned %d\n",
bde89a9e 1829 sock == connection->meta.socket ? "msock" : "sock",
bedbd2a5 1830 rv);
bde89a9e 1831 conn_request_state(connection, NS(conn, C_BROKEN_PIPE), CS_HARD);
b411b363 1832 } else
bde89a9e 1833 conn_request_state(connection, NS(conn, C_TIMEOUT), CS_HARD);
b411b363
PR
1834 }
1835
1836 return sent;
1837}
1838
fb708e40
AG
1839/**
1840 * drbd_send_all - Send an entire buffer
1841 *
1842 * Returns 0 upon success and a negative error value otherwise.
1843 */
bde89a9e 1844int drbd_send_all(struct drbd_connection *connection, struct socket *sock, void *buffer,
fb708e40
AG
1845 size_t size, unsigned msg_flags)
1846{
1847 int err;
1848
bde89a9e 1849 err = drbd_send(connection, sock, buffer, size, msg_flags);
fb708e40
AG
1850 if (err < 0)
1851 return err;
1852 if (err != size)
1853 return -EIO;
1854 return 0;
1855}
1856
b411b363
PR
1857static int drbd_open(struct block_device *bdev, fmode_t mode)
1858{
b30ab791 1859 struct drbd_device *device = bdev->bd_disk->private_data;
b411b363
PR
1860 unsigned long flags;
1861 int rv = 0;
1862
2a48fc0a 1863 mutex_lock(&drbd_main_mutex);
0500813f 1864 spin_lock_irqsave(&device->resource->req_lock, flags);
b30ab791 1865 /* to have a stable device->state.role
b411b363
PR
1866 * and no race with updating open_cnt */
1867
b30ab791 1868 if (device->state.role != R_PRIMARY) {
b411b363
PR
1869 if (mode & FMODE_WRITE)
1870 rv = -EROFS;
1871 else if (!allow_oos)
1872 rv = -EMEDIUMTYPE;
1873 }
1874
1875 if (!rv)
b30ab791 1876 device->open_cnt++;
0500813f 1877 spin_unlock_irqrestore(&device->resource->req_lock, flags);
2a48fc0a 1878 mutex_unlock(&drbd_main_mutex);
b411b363
PR
1879
1880 return rv;
1881}
1882
db2a144b 1883static void drbd_release(struct gendisk *gd, fmode_t mode)
b411b363 1884{
b30ab791 1885 struct drbd_device *device = gd->private_data;
2a48fc0a 1886 mutex_lock(&drbd_main_mutex);
b30ab791 1887 device->open_cnt--;
2a48fc0a 1888 mutex_unlock(&drbd_main_mutex);
b411b363
PR
1889}
1890
b30ab791 1891static void drbd_set_defaults(struct drbd_device *device)
b411b363 1892{
f399002e
LE
1893 /* Beware! The actual layout differs
1894 * between big endian and little endian */
b30ab791 1895 device->state = (union drbd_dev_state) {
b411b363
PR
1896 { .role = R_SECONDARY,
1897 .peer = R_UNKNOWN,
1898 .conn = C_STANDALONE,
1899 .disk = D_DISKLESS,
1900 .pdsk = D_UNKNOWN,
b411b363
PR
1901 } };
1902}
1903
b30ab791 1904void drbd_init_set_defaults(struct drbd_device *device)
b411b363
PR
1905{
1906 /* the memset(,0,) did most of this.
1907 * note: only assignments, no allocation in here */
1908
b30ab791
AG
1909 drbd_set_defaults(device);
1910
1911 atomic_set(&device->ap_bio_cnt, 0);
1912 atomic_set(&device->ap_pending_cnt, 0);
1913 atomic_set(&device->rs_pending_cnt, 0);
1914 atomic_set(&device->unacked_cnt, 0);
1915 atomic_set(&device->local_cnt, 0);
1916 atomic_set(&device->pp_in_use_by_net, 0);
1917 atomic_set(&device->rs_sect_in, 0);
1918 atomic_set(&device->rs_sect_ev, 0);
1919 atomic_set(&device->ap_in_flight, 0);
e37d2438 1920 atomic_set(&device->md_io.in_use, 0);
b30ab791
AG
1921
1922 mutex_init(&device->own_state_mutex);
1923 device->state_mutex = &device->own_state_mutex;
1924
1925 spin_lock_init(&device->al_lock);
1926 spin_lock_init(&device->peer_seq_lock);
1927
1928 INIT_LIST_HEAD(&device->active_ee);
1929 INIT_LIST_HEAD(&device->sync_ee);
1930 INIT_LIST_HEAD(&device->done_ee);
1931 INIT_LIST_HEAD(&device->read_ee);
1932 INIT_LIST_HEAD(&device->net_ee);
1933 INIT_LIST_HEAD(&device->resync_reads);
1934 INIT_LIST_HEAD(&device->resync_work.list);
1935 INIT_LIST_HEAD(&device->unplug_work.list);
b30ab791
AG
1936 INIT_LIST_HEAD(&device->bm_io_work.w.list);
1937
1938 device->resync_work.cb = w_resync_timer;
1939 device->unplug_work.cb = w_send_write_hint;
b30ab791 1940 device->bm_io_work.w.cb = w_bitmap_io;
b30ab791 1941
b30ab791
AG
1942 init_timer(&device->resync_timer);
1943 init_timer(&device->md_sync_timer);
1944 init_timer(&device->start_resync_timer);
1945 init_timer(&device->request_timer);
1946 device->resync_timer.function = resync_timer_fn;
1947 device->resync_timer.data = (unsigned long) device;
1948 device->md_sync_timer.function = md_sync_timer_fn;
1949 device->md_sync_timer.data = (unsigned long) device;
1950 device->start_resync_timer.function = start_resync_timer_fn;
1951 device->start_resync_timer.data = (unsigned long) device;
1952 device->request_timer.function = request_timer_fn;
1953 device->request_timer.data = (unsigned long) device;
1954
1955 init_waitqueue_head(&device->misc_wait);
1956 init_waitqueue_head(&device->state_wait);
1957 init_waitqueue_head(&device->ee_wait);
1958 init_waitqueue_head(&device->al_wait);
1959 init_waitqueue_head(&device->seq_wait);
1960
1961 device->resync_wenr = LC_FREE;
1962 device->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
1963 device->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
1964}
1965
1966void drbd_device_cleanup(struct drbd_device *device)
b411b363 1967{
1d7734a0 1968 int i;
a6b32bc3 1969 if (first_peer_device(device)->connection->receiver.t_state != NONE)
d0180171 1970 drbd_err(device, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
a6b32bc3 1971 first_peer_device(device)->connection->receiver.t_state);
b30ab791
AG
1972
1973 device->al_writ_cnt =
1974 device->bm_writ_cnt =
1975 device->read_cnt =
1976 device->recv_cnt =
1977 device->send_cnt =
1978 device->writ_cnt =
1979 device->p_size =
1980 device->rs_start =
1981 device->rs_total =
1982 device->rs_failed = 0;
1983 device->rs_last_events = 0;
1984 device->rs_last_sect_ev = 0;
1d7734a0 1985 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
b30ab791
AG
1986 device->rs_mark_left[i] = 0;
1987 device->rs_mark_time[i] = 0;
1d7734a0 1988 }
0b0ba1ef 1989 D_ASSERT(device, first_peer_device(device)->connection->net_conf == NULL);
b411b363 1990
b30ab791
AG
1991 drbd_set_my_capacity(device, 0);
1992 if (device->bitmap) {
b411b363 1993 /* maybe never allocated. */
b30ab791
AG
1994 drbd_bm_resize(device, 0, 1);
1995 drbd_bm_cleanup(device);
b411b363
PR
1996 }
1997
28995af5 1998 drbd_free_ldev(device->ldev);
b30ab791 1999 device->ldev = NULL;
1d041225 2000
b30ab791 2001 clear_bit(AL_SUSPENDED, &device->flags);
b411b363 2002
0b0ba1ef
AG
2003 D_ASSERT(device, list_empty(&device->active_ee));
2004 D_ASSERT(device, list_empty(&device->sync_ee));
2005 D_ASSERT(device, list_empty(&device->done_ee));
2006 D_ASSERT(device, list_empty(&device->read_ee));
2007 D_ASSERT(device, list_empty(&device->net_ee));
2008 D_ASSERT(device, list_empty(&device->resync_reads));
2009 D_ASSERT(device, list_empty(&first_peer_device(device)->connection->sender_work.q));
2010 D_ASSERT(device, list_empty(&device->resync_work.list));
2011 D_ASSERT(device, list_empty(&device->unplug_work.list));
2265b473 2012
b30ab791 2013 drbd_set_defaults(device);
b411b363
PR
2014}
2015
2016
2017static void drbd_destroy_mempools(void)
2018{
2019 struct page *page;
2020
2021 while (drbd_pp_pool) {
2022 page = drbd_pp_pool;
2023 drbd_pp_pool = (struct page *)page_private(page);
2024 __free_page(page);
2025 drbd_pp_vacant--;
2026 }
2027
0b0ba1ef 2028 /* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
b411b363 2029
9476f39d
LE
2030 if (drbd_md_io_bio_set)
2031 bioset_free(drbd_md_io_bio_set);
4281808f
LE
2032 if (drbd_md_io_page_pool)
2033 mempool_destroy(drbd_md_io_page_pool);
b411b363
PR
2034 if (drbd_ee_mempool)
2035 mempool_destroy(drbd_ee_mempool);
2036 if (drbd_request_mempool)
2037 mempool_destroy(drbd_request_mempool);
2038 if (drbd_ee_cache)
2039 kmem_cache_destroy(drbd_ee_cache);
2040 if (drbd_request_cache)
2041 kmem_cache_destroy(drbd_request_cache);
2042 if (drbd_bm_ext_cache)
2043 kmem_cache_destroy(drbd_bm_ext_cache);
2044 if (drbd_al_ext_cache)
2045 kmem_cache_destroy(drbd_al_ext_cache);
2046
9476f39d 2047 drbd_md_io_bio_set = NULL;
4281808f 2048 drbd_md_io_page_pool = NULL;
b411b363
PR
2049 drbd_ee_mempool = NULL;
2050 drbd_request_mempool = NULL;
2051 drbd_ee_cache = NULL;
2052 drbd_request_cache = NULL;
2053 drbd_bm_ext_cache = NULL;
2054 drbd_al_ext_cache = NULL;
2055
2056 return;
2057}
2058
2059static int drbd_create_mempools(void)
2060{
2061 struct page *page;
1816a2b4 2062 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
b411b363
PR
2063 int i;
2064
2065 /* prepare our caches and mempools */
2066 drbd_request_mempool = NULL;
2067 drbd_ee_cache = NULL;
2068 drbd_request_cache = NULL;
2069 drbd_bm_ext_cache = NULL;
2070 drbd_al_ext_cache = NULL;
2071 drbd_pp_pool = NULL;
4281808f 2072 drbd_md_io_page_pool = NULL;
9476f39d 2073 drbd_md_io_bio_set = NULL;
b411b363
PR
2074
2075 /* caches */
2076 drbd_request_cache = kmem_cache_create(
2077 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2078 if (drbd_request_cache == NULL)
2079 goto Enomem;
2080
2081 drbd_ee_cache = kmem_cache_create(
f6ffca9f 2082 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
b411b363
PR
2083 if (drbd_ee_cache == NULL)
2084 goto Enomem;
2085
2086 drbd_bm_ext_cache = kmem_cache_create(
2087 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2088 if (drbd_bm_ext_cache == NULL)
2089 goto Enomem;
2090
2091 drbd_al_ext_cache = kmem_cache_create(
2092 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2093 if (drbd_al_ext_cache == NULL)
2094 goto Enomem;
2095
2096 /* mempools */
9476f39d
LE
2097 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2098 if (drbd_md_io_bio_set == NULL)
2099 goto Enomem;
9476f39d 2100
4281808f
LE
2101 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2102 if (drbd_md_io_page_pool == NULL)
2103 goto Enomem;
2104
b411b363
PR
2105 drbd_request_mempool = mempool_create(number,
2106 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2107 if (drbd_request_mempool == NULL)
2108 goto Enomem;
2109
2110 drbd_ee_mempool = mempool_create(number,
2111 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
2027ae1f 2112 if (drbd_ee_mempool == NULL)
b411b363
PR
2113 goto Enomem;
2114
2115 /* drbd's page pool */
2116 spin_lock_init(&drbd_pp_lock);
2117
2118 for (i = 0; i < number; i++) {
2119 page = alloc_page(GFP_HIGHUSER);
2120 if (!page)
2121 goto Enomem;
2122 set_page_private(page, (unsigned long)drbd_pp_pool);
2123 drbd_pp_pool = page;
2124 }
2125 drbd_pp_vacant = number;
2126
2127 return 0;
2128
2129Enomem:
2130 drbd_destroy_mempools(); /* in case we allocated some */
2131 return -ENOMEM;
2132}
2133
b30ab791 2134static void drbd_release_all_peer_reqs(struct drbd_device *device)
b411b363
PR
2135{
2136 int rr;
2137
b30ab791 2138 rr = drbd_free_peer_reqs(device, &device->active_ee);
b411b363 2139 if (rr)
d0180171 2140 drbd_err(device, "%d EEs in active list found!\n", rr);
b411b363 2141
b30ab791 2142 rr = drbd_free_peer_reqs(device, &device->sync_ee);
b411b363 2143 if (rr)
d0180171 2144 drbd_err(device, "%d EEs in sync list found!\n", rr);
b411b363 2145
b30ab791 2146 rr = drbd_free_peer_reqs(device, &device->read_ee);
b411b363 2147 if (rr)
d0180171 2148 drbd_err(device, "%d EEs in read list found!\n", rr);
b411b363 2149
b30ab791 2150 rr = drbd_free_peer_reqs(device, &device->done_ee);
b411b363 2151 if (rr)
d0180171 2152 drbd_err(device, "%d EEs in done list found!\n", rr);
b411b363 2153
b30ab791 2154 rr = drbd_free_peer_reqs(device, &device->net_ee);
b411b363 2155 if (rr)
d0180171 2156 drbd_err(device, "%d EEs in net list found!\n", rr);
b411b363
PR
2157}
2158
774b3055 2159/* caution. no locking. */
05a10ec7 2160void drbd_destroy_device(struct kref *kref)
b411b363 2161{
b30ab791 2162 struct drbd_device *device = container_of(kref, struct drbd_device, kref);
803ea134 2163 struct drbd_resource *resource = device->resource;
a8ba0d60 2164 struct drbd_peer_device *peer_device, *tmp_peer_device;
b411b363 2165
b30ab791 2166 del_timer_sync(&device->request_timer);
dfa8bedb 2167
b411b363 2168 /* paranoia asserts */
0b0ba1ef 2169 D_ASSERT(device, device->open_cnt == 0);
b411b363
PR
2170 /* end paranoia asserts */
2171
b411b363
PR
2172 /* cleanup stuff that may have been allocated during
2173 * device (re-)configuration or state changes */
2174
b30ab791
AG
2175 if (device->this_bdev)
2176 bdput(device->this_bdev);
b411b363 2177
28995af5 2178 drbd_free_ldev(device->ldev);
b30ab791 2179 device->ldev = NULL;
b411b363 2180
b30ab791 2181 drbd_release_all_peer_reqs(device);
b411b363 2182
b30ab791
AG
2183 lc_destroy(device->act_log);
2184 lc_destroy(device->resync);
b411b363 2185
b30ab791
AG
2186 kfree(device->p_uuid);
2187 /* device->p_uuid = NULL; */
b411b363 2188
b30ab791
AG
2189 if (device->bitmap) /* should no longer be there. */
2190 drbd_bm_cleanup(device);
e37d2438 2191 __free_page(device->md_io.page);
b30ab791
AG
2192 put_disk(device->vdisk);
2193 blk_cleanup_queue(device->rq_queue);
2194 kfree(device->rs_plan_s);
a8ba0d60
LE
2195
2196 /* not for_each_connection(connection, resource):
2197 * those may have been cleaned up and disassociated already.
2198 */
2199 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2200 kref_put(&peer_device->connection->kref, drbd_destroy_connection);
2201 kfree(peer_device);
2202 }
c2258ffc 2203 memset(device, 0xfd, sizeof(*device));
b30ab791 2204 kfree(device);
803ea134 2205 kref_put(&resource->kref, drbd_destroy_resource);
b411b363
PR
2206}
2207
2312f0b3
LE
2208/* One global retry thread, if we need to push back some bio and have it
2209 * reinserted through our make request function.
2210 */
2211static struct retry_worker {
2212 struct workqueue_struct *wq;
2213 struct work_struct worker;
2214
2215 spinlock_t lock;
2216 struct list_head writes;
2217} retry;
2218
2219static void do_retry(struct work_struct *ws)
2220{
2221 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2222 LIST_HEAD(writes);
2223 struct drbd_request *req, *tmp;
2224
2225 spin_lock_irq(&retry->lock);
2226 list_splice_init(&retry->writes, &writes);
2227 spin_unlock_irq(&retry->lock);
2228
2229 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
84b8c06b 2230 struct drbd_device *device = req->device;
2312f0b3 2231 struct bio *bio = req->master_bio;
e5f891b2 2232 unsigned long start_jif = req->start_jif;
9a278a79
LE
2233 bool expected;
2234
84b8c06b 2235 expected =
9a278a79
LE
2236 expect(atomic_read(&req->completion_ref) == 0) &&
2237 expect(req->rq_state & RQ_POSTPONED) &&
2238 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2239 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2240
2241 if (!expected)
d0180171 2242 drbd_err(device, "req=%p completion_ref=%d rq_state=%x\n",
9a278a79
LE
2243 req, atomic_read(&req->completion_ref),
2244 req->rq_state);
2245
2246 /* We still need to put one kref associated with the
2247 * "completion_ref" going zero in the code path that queued it
2248 * here. The request object may still be referenced by a
2249 * frozen local req->private_bio, in case we force-detached.
2312f0b3 2250 */
9a278a79 2251 kref_put(&req->kref, drbd_req_destroy);
2312f0b3
LE
2252
2253 /* A single suspended or otherwise blocking device may stall
2254 * all others as well. Fortunately, this code path is to
2255 * recover from a situation that "should not happen":
2256 * concurrent writes in multi-primary setup.
2257 * In a "normal" lifecycle, this workqueue is supposed to be
2258 * destroyed without ever doing anything.
2259 * If it turns out to be an issue anyways, we can do per
2260 * resource (replication group) or per device (minor) retry
2261 * workqueues instead.
2262 */
2263
2264 /* We are not just doing generic_make_request(),
2265 * as we want to keep the start_time information. */
b30ab791 2266 inc_ap_bio(device);
e5f891b2 2267 __drbd_make_request(device, bio, start_jif);
2312f0b3
LE
2268 }
2269}
2270
9d05e7c4 2271void drbd_restart_request(struct drbd_request *req)
2312f0b3
LE
2272{
2273 unsigned long flags;
2274 spin_lock_irqsave(&retry.lock, flags);
2275 list_move_tail(&req->tl_requests, &retry.writes);
2276 spin_unlock_irqrestore(&retry.lock, flags);
2277
2278 /* Drop the extra reference that would otherwise
2279 * have been dropped by complete_master_bio.
2280 * do_retry() needs to grab a new one. */
84b8c06b 2281 dec_ap_bio(req->device);
b411b363 2282
2312f0b3 2283 queue_work(retry.wq, &retry.worker);
b411b363
PR
2284}
2285
77c556f6
AG
2286void drbd_destroy_resource(struct kref *kref)
2287{
2288 struct drbd_resource *resource =
2289 container_of(kref, struct drbd_resource, kref);
2290
803ea134 2291 idr_destroy(&resource->devices);
625a6ba2 2292 free_cpumask_var(resource->cpu_mask);
77c556f6 2293 kfree(resource->name);
c2258ffc 2294 memset(resource, 0xf2, sizeof(*resource));
77c556f6
AG
2295 kfree(resource);
2296}
2297
2298void drbd_free_resource(struct drbd_resource *resource)
2299{
2300 struct drbd_connection *connection, *tmp;
2301
2302 for_each_connection_safe(connection, tmp, resource) {
2303 list_del(&connection->connections);
2304 kref_put(&connection->kref, drbd_destroy_connection);
2305 }
2306 kref_put(&resource->kref, drbd_destroy_resource);
2307}
2312f0b3 2308
b411b363
PR
2309static void drbd_cleanup(void)
2310{
2311 unsigned int i;
b30ab791 2312 struct drbd_device *device;
77c556f6 2313 struct drbd_resource *resource, *tmp;
b411b363 2314
17a93f30
LE
2315 /* first remove proc,
2316 * drbdsetup uses it's presence to detect
2317 * whether DRBD is loaded.
2318 * If we would get stuck in proc removal,
2319 * but have netlink already deregistered,
2320 * some drbdsetup commands may wait forever
2321 * for an answer.
2322 */
2323 if (drbd_proc)
2324 remove_proc_entry("drbd", NULL);
2325
2312f0b3
LE
2326 if (retry.wq)
2327 destroy_workqueue(retry.wq);
b411b363 2328
3b98c0c2 2329 drbd_genl_unregister();
b411b363 2330
803ea134 2331 idr_for_each_entry(&drbd_devices, device, i)
f82795d6 2332 drbd_delete_device(device);
b411b363 2333
c141ebda 2334 /* not _rcu since, no other updater anymore. Genl already unregistered */
77c556f6
AG
2335 for_each_resource_safe(resource, tmp, &drbd_resources) {
2336 list_del(&resource->resources);
2337 drbd_free_resource(resource);
81fa2e67 2338 }
b411b363 2339
81a5d60e 2340 drbd_destroy_mempools();
b411b363
PR
2341 unregister_blkdev(DRBD_MAJOR, "drbd");
2342
05a10ec7 2343 idr_destroy(&drbd_devices);
81a5d60e 2344
f88c5d90 2345 pr_info("module cleanup done.\n");
b411b363
PR
2346}
2347
2348/**
d97482ed 2349 * drbd_congested() - Callback for the flusher thread
b411b363 2350 * @congested_data: User data
d97482ed 2351 * @bdi_bits: Bits the BDI flusher thread is currently interested in
b411b363
PR
2352 *
2353 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2354 */
2355static int drbd_congested(void *congested_data, int bdi_bits)
2356{
b30ab791 2357 struct drbd_device *device = congested_data;
b411b363
PR
2358 struct request_queue *q;
2359 char reason = '-';
2360 int r = 0;
2361
b30ab791 2362 if (!may_inc_ap_bio(device)) {
b411b363
PR
2363 /* DRBD has frozen IO */
2364 r = bdi_bits;
2365 reason = 'd';
2366 goto out;
2367 }
2368
a6b32bc3 2369 if (test_bit(CALLBACK_PENDING, &first_peer_device(device)->connection->flags)) {
c2ba686f
LE
2370 r |= (1 << BDI_async_congested);
2371 /* Without good local data, we would need to read from remote,
2372 * and that would need the worker thread as well, which is
2373 * currently blocked waiting for that usermode helper to
2374 * finish.
2375 */
b30ab791 2376 if (!get_ldev_if_state(device, D_UP_TO_DATE))
c2ba686f
LE
2377 r |= (1 << BDI_sync_congested);
2378 else
b30ab791 2379 put_ldev(device);
c2ba686f
LE
2380 r &= bdi_bits;
2381 reason = 'c';
2382 goto out;
2383 }
2384
b30ab791
AG
2385 if (get_ldev(device)) {
2386 q = bdev_get_queue(device->ldev->backing_bdev);
b411b363 2387 r = bdi_congested(&q->backing_dev_info, bdi_bits);
b30ab791 2388 put_ldev(device);
b411b363
PR
2389 if (r)
2390 reason = 'b';
2391 }
2392
a6b32bc3
AG
2393 if (bdi_bits & (1 << BDI_async_congested) &&
2394 test_bit(NET_CONGESTED, &first_peer_device(device)->connection->flags)) {
b411b363
PR
2395 r |= (1 << BDI_async_congested);
2396 reason = reason == 'b' ? 'a' : 'n';
2397 }
2398
2399out:
b30ab791 2400 device->congestion_reason = reason;
b411b363
PR
2401 return r;
2402}
2403
6699b655
PR
2404static void drbd_init_workqueue(struct drbd_work_queue* wq)
2405{
6699b655
PR
2406 spin_lock_init(&wq->q_lock);
2407 INIT_LIST_HEAD(&wq->q);
8c0785a5 2408 init_waitqueue_head(&wq->q_wait);
6699b655
PR
2409}
2410
b5043c5e
AG
2411struct completion_work {
2412 struct drbd_work w;
2413 struct completion done;
2414};
2415
2416static int w_complete(struct drbd_work *w, int cancel)
2417{
2418 struct completion_work *completion_work =
2419 container_of(w, struct completion_work, w);
2420
2421 complete(&completion_work->done);
2422 return 0;
2423}
2424
2425void drbd_flush_workqueue(struct drbd_work_queue *work_queue)
2426{
2427 struct completion_work completion_work;
2428
2429 completion_work.w.cb = w_complete;
2430 init_completion(&completion_work.done);
2431 drbd_queue_work(work_queue, &completion_work.w);
2432 wait_for_completion(&completion_work.done);
2433}
2434
4bc76048 2435struct drbd_resource *drbd_find_resource(const char *name)
1aba4d7f 2436{
77c556f6 2437 struct drbd_resource *resource;
1aba4d7f 2438
3b98c0c2
LE
2439 if (!name || !name[0])
2440 return NULL;
2441
c141ebda 2442 rcu_read_lock();
77c556f6
AG
2443 for_each_resource_rcu(resource, &drbd_resources) {
2444 if (!strcmp(resource->name, name)) {
4bc76048 2445 kref_get(&resource->kref);
1aba4d7f 2446 goto found;
0ace9dfa 2447 }
1aba4d7f 2448 }
4bc76048 2449 resource = NULL;
1aba4d7f 2450found:
c141ebda 2451 rcu_read_unlock();
4bc76048 2452 return resource;
1aba4d7f
PR
2453}
2454
bde89a9e 2455struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
089c075d
AG
2456 void *peer_addr, int peer_addr_len)
2457{
77c556f6 2458 struct drbd_resource *resource;
bde89a9e 2459 struct drbd_connection *connection;
089c075d
AG
2460
2461 rcu_read_lock();
77c556f6
AG
2462 for_each_resource_rcu(resource, &drbd_resources) {
2463 for_each_connection_rcu(connection, resource) {
2464 if (connection->my_addr_len == my_addr_len &&
2465 connection->peer_addr_len == peer_addr_len &&
2466 !memcmp(&connection->my_addr, my_addr, my_addr_len) &&
2467 !memcmp(&connection->peer_addr, peer_addr, peer_addr_len)) {
2468 kref_get(&connection->kref);
2469 goto found;
2470 }
089c075d
AG
2471 }
2472 }
bde89a9e 2473 connection = NULL;
089c075d
AG
2474found:
2475 rcu_read_unlock();
bde89a9e 2476 return connection;
089c075d
AG
2477}
2478
e6ef8a5c
AG
2479static int drbd_alloc_socket(struct drbd_socket *socket)
2480{
2481 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2482 if (!socket->rbuf)
2483 return -ENOMEM;
5a87d920
AG
2484 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2485 if (!socket->sbuf)
2486 return -ENOMEM;
e6ef8a5c
AG
2487 return 0;
2488}
2489
2490static void drbd_free_socket(struct drbd_socket *socket)
2491{
5a87d920 2492 free_page((unsigned long) socket->sbuf);
e6ef8a5c
AG
2493 free_page((unsigned long) socket->rbuf);
2494}
2495
bde89a9e 2496void conn_free_crypto(struct drbd_connection *connection)
91fd4dad 2497{
bde89a9e 2498 drbd_free_sock(connection);
1d041225 2499
bde89a9e
AG
2500 crypto_free_hash(connection->csums_tfm);
2501 crypto_free_hash(connection->verify_tfm);
2502 crypto_free_hash(connection->cram_hmac_tfm);
2503 crypto_free_hash(connection->integrity_tfm);
2504 crypto_free_hash(connection->peer_integrity_tfm);
2505 kfree(connection->int_dig_in);
2506 kfree(connection->int_dig_vv);
1d041225 2507
bde89a9e
AG
2508 connection->csums_tfm = NULL;
2509 connection->verify_tfm = NULL;
2510 connection->cram_hmac_tfm = NULL;
2511 connection->integrity_tfm = NULL;
2512 connection->peer_integrity_tfm = NULL;
2513 connection->int_dig_in = NULL;
2514 connection->int_dig_vv = NULL;
91fd4dad
PR
2515}
2516
eb6bea67 2517int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts)
afbbfa88 2518{
eb6bea67 2519 struct drbd_connection *connection;
afbbfa88
AG
2520 cpumask_var_t new_cpu_mask;
2521 int err;
2522
2523 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2524 return -ENOMEM;
2525 /*
2526 retcode = ERR_NOMEM;
2527 drbd_msg_put_info("unable to allocate cpumask");
2528 */
2529
2530 /* silently ignore cpu mask on UP kernel */
2531 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
f44d0436 2532 err = bitmap_parse(res_opts->cpu_mask, DRBD_CPU_MASK_SIZE,
c5b005ab 2533 cpumask_bits(new_cpu_mask), nr_cpu_ids);
afbbfa88 2534 if (err) {
1ec861eb 2535 drbd_warn(resource, "bitmap_parse() failed with %d\n", err);
afbbfa88
AG
2536 /* retcode = ERR_CPU_MASK_PARSE; */
2537 goto fail;
2538 }
2539 }
eb6bea67 2540 resource->res_opts = *res_opts;
625a6ba2
AG
2541 if (cpumask_empty(new_cpu_mask))
2542 drbd_calc_cpu_mask(&new_cpu_mask);
2543 if (!cpumask_equal(resource->cpu_mask, new_cpu_mask)) {
2544 cpumask_copy(resource->cpu_mask, new_cpu_mask);
2545 for_each_connection_rcu(connection, resource) {
eb6bea67
AG
2546 connection->receiver.reset_cpu_mask = 1;
2547 connection->asender.reset_cpu_mask = 1;
2548 connection->worker.reset_cpu_mask = 1;
2549 }
afbbfa88
AG
2550 }
2551 err = 0;
2552
2553fail:
2554 free_cpumask_var(new_cpu_mask);
2555 return err;
2556
2557}
2558
77c556f6
AG
2559struct drbd_resource *drbd_create_resource(const char *name)
2560{
2561 struct drbd_resource *resource;
2562
6bbf53ca 2563 resource = kzalloc(sizeof(struct drbd_resource), GFP_KERNEL);
77c556f6 2564 if (!resource)
625a6ba2 2565 goto fail;
77c556f6 2566 resource->name = kstrdup(name, GFP_KERNEL);
625a6ba2
AG
2567 if (!resource->name)
2568 goto fail_free_resource;
2569 if (!zalloc_cpumask_var(&resource->cpu_mask, GFP_KERNEL))
2570 goto fail_free_name;
77c556f6 2571 kref_init(&resource->kref);
803ea134 2572 idr_init(&resource->devices);
77c556f6 2573 INIT_LIST_HEAD(&resource->connections);
e9526580 2574 resource->write_ordering = WO_bdev_flush;
77c556f6 2575 list_add_tail_rcu(&resource->resources, &drbd_resources);
0500813f 2576 mutex_init(&resource->conf_update);
9e276872 2577 mutex_init(&resource->adm_mutex);
0500813f 2578 spin_lock_init(&resource->req_lock);
77c556f6 2579 return resource;
625a6ba2
AG
2580
2581fail_free_name:
2582 kfree(resource->name);
2583fail_free_resource:
2584 kfree(resource);
2585fail:
2586 return NULL;
77c556f6
AG
2587}
2588
ec0bddbc 2589/* caller must be under genl_lock() */
bde89a9e 2590struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts)
2111438b 2591{
77c556f6 2592 struct drbd_resource *resource;
bde89a9e 2593 struct drbd_connection *connection;
2111438b 2594
bde89a9e
AG
2595 connection = kzalloc(sizeof(struct drbd_connection), GFP_KERNEL);
2596 if (!connection)
2111438b
PR
2597 return NULL;
2598
bde89a9e 2599 if (drbd_alloc_socket(&connection->data))
e6ef8a5c 2600 goto fail;
bde89a9e 2601 if (drbd_alloc_socket(&connection->meta))
e6ef8a5c
AG
2602 goto fail;
2603
bde89a9e
AG
2604 connection->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2605 if (!connection->current_epoch)
12038a3a 2606 goto fail;
b6dd1a89 2607
bde89a9e 2608 INIT_LIST_HEAD(&connection->transfer_log);
b6dd1a89 2609
bde89a9e
AG
2610 INIT_LIST_HEAD(&connection->current_epoch->list);
2611 connection->epochs = 1;
2612 spin_lock_init(&connection->epoch_lock);
4b0007c0 2613
bde89a9e
AG
2614 connection->send.seen_any_write_yet = false;
2615 connection->send.current_epoch_nr = 0;
2616 connection->send.current_epoch_writes = 0;
b6dd1a89 2617
77c556f6
AG
2618 resource = drbd_create_resource(name);
2619 if (!resource)
2620 goto fail;
2621
bde89a9e
AG
2622 connection->cstate = C_STANDALONE;
2623 mutex_init(&connection->cstate_mutex);
bde89a9e 2624 init_waitqueue_head(&connection->ping_wait);
c06ece6b 2625 idr_init(&connection->peer_devices);
b2fb6dbe 2626
bde89a9e
AG
2627 drbd_init_workqueue(&connection->sender_work);
2628 mutex_init(&connection->data.mutex);
2629 mutex_init(&connection->meta.mutex);
6699b655 2630
2457b6d5
AG
2631 drbd_thread_init(resource, &connection->receiver, drbd_receiver, "receiver");
2632 connection->receiver.connection = connection;
2633 drbd_thread_init(resource, &connection->worker, drbd_worker, "worker");
2634 connection->worker.connection = connection;
2635 drbd_thread_init(resource, &connection->asender, drbd_asender, "asender");
2636 connection->asender.connection = connection;
392c8801 2637
bde89a9e 2638 kref_init(&connection->kref);
77c556f6 2639
77c556f6 2640 connection->resource = resource;
2111438b 2641
eb6bea67
AG
2642 if (set_resource_options(resource, res_opts))
2643 goto fail_resource;
2644
2645 kref_get(&resource->kref);
2646 list_add_tail_rcu(&connection->connections, &resource->connections);
bde89a9e 2647 return connection;
2111438b 2648
eb6bea67
AG
2649fail_resource:
2650 list_del(&resource->resources);
2651 drbd_free_resource(resource);
2111438b 2652fail:
bde89a9e 2653 kfree(connection->current_epoch);
bde89a9e
AG
2654 drbd_free_socket(&connection->meta);
2655 drbd_free_socket(&connection->data);
bde89a9e 2656 kfree(connection);
2111438b
PR
2657 return NULL;
2658}
2659
05a10ec7 2660void drbd_destroy_connection(struct kref *kref)
2111438b 2661{
bde89a9e 2662 struct drbd_connection *connection = container_of(kref, struct drbd_connection, kref);
77c556f6 2663 struct drbd_resource *resource = connection->resource;
9dc9fbb3 2664
bde89a9e 2665 if (atomic_read(&connection->current_epoch->epoch_size) != 0)
1ec861eb 2666 drbd_err(connection, "epoch_size:%d\n", atomic_read(&connection->current_epoch->epoch_size));
bde89a9e 2667 kfree(connection->current_epoch);
12038a3a 2668
c06ece6b 2669 idr_destroy(&connection->peer_devices);
2111438b 2670
bde89a9e
AG
2671 drbd_free_socket(&connection->meta);
2672 drbd_free_socket(&connection->data);
bde89a9e
AG
2673 kfree(connection->int_dig_in);
2674 kfree(connection->int_dig_vv);
c2258ffc 2675 memset(connection, 0xfc, sizeof(*connection));
bde89a9e 2676 kfree(connection);
77c556f6 2677 kref_put(&resource->kref, drbd_destroy_resource);
2111438b
PR
2678}
2679
b30ab791 2680static int init_submitter(struct drbd_device *device)
113fef9e
LE
2681{
2682 /* opencoded create_singlethread_workqueue(),
2683 * to be able to say "drbd%d", ..., minor */
b30ab791
AG
2684 device->submit.wq = alloc_workqueue("drbd%u_submit",
2685 WQ_UNBOUND | WQ_MEM_RECLAIM, 1, device->minor);
2686 if (!device->submit.wq)
113fef9e
LE
2687 return -ENOMEM;
2688
b30ab791
AG
2689 INIT_WORK(&device->submit.worker, do_submit);
2690 spin_lock_init(&device->submit.lock);
2691 INIT_LIST_HEAD(&device->submit.writes);
113fef9e
LE
2692 return 0;
2693}
2694
a910b123 2695enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsigned int minor)
b411b363 2696{
a910b123 2697 struct drbd_resource *resource = adm_ctx->resource;
b6f85ef9 2698 struct drbd_connection *connection;
b30ab791 2699 struct drbd_device *device;
b6f85ef9 2700 struct drbd_peer_device *peer_device, *tmp_peer_device;
b411b363
PR
2701 struct gendisk *disk;
2702 struct request_queue *q;
93e4bf7a 2703 int id;
a910b123 2704 int vnr = adm_ctx->volume;
8432b314 2705 enum drbd_ret_code err = ERR_NOMEM;
774b3055 2706
b30ab791
AG
2707 device = minor_to_device(minor);
2708 if (device)
774b3055 2709 return ERR_MINOR_EXISTS;
b411b363
PR
2710
2711 /* GFP_KERNEL, we are outside of all write-out paths */
b30ab791
AG
2712 device = kzalloc(sizeof(struct drbd_device), GFP_KERNEL);
2713 if (!device)
774b3055 2714 return ERR_NOMEM;
803ea134
AG
2715 kref_init(&device->kref);
2716
803ea134
AG
2717 kref_get(&resource->kref);
2718 device->resource = resource;
b30ab791
AG
2719 device->minor = minor;
2720 device->vnr = vnr;
b411b363 2721
b30ab791 2722 drbd_init_set_defaults(device);
b411b363
PR
2723
2724 q = blk_alloc_queue(GFP_KERNEL);
2725 if (!q)
2726 goto out_no_q;
b30ab791
AG
2727 device->rq_queue = q;
2728 q->queuedata = device;
b411b363
PR
2729
2730 disk = alloc_disk(1);
2731 if (!disk)
2732 goto out_no_disk;
b30ab791 2733 device->vdisk = disk;
b411b363 2734
81e84650 2735 set_disk_ro(disk, true);
b411b363
PR
2736
2737 disk->queue = q;
2738 disk->major = DRBD_MAJOR;
2739 disk->first_minor = minor;
2740 disk->fops = &drbd_ops;
2741 sprintf(disk->disk_name, "drbd%d", minor);
b30ab791 2742 disk->private_data = device;
b411b363 2743
b30ab791 2744 device->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
b411b363 2745 /* we have no partitions. we contain only ourselves. */
b30ab791 2746 device->this_bdev->bd_contains = device->this_bdev;
b411b363
PR
2747
2748 q->backing_dev_info.congested_fn = drbd_congested;
b30ab791 2749 q->backing_dev_info.congested_data = device;
b411b363 2750
2f58dcfc 2751 blk_queue_make_request(q, drbd_make_request);
a73ff323 2752 blk_queue_flush(q, REQ_FLUSH | REQ_FUA);
99432fcc
PR
2753 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2754 This triggers a max_bio_size message upon first attach or connect */
2755 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
b411b363
PR
2756 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2757 blk_queue_merge_bvec(q, drbd_merge_bvec);
0500813f 2758 q->queue_lock = &resource->req_lock;
b411b363 2759
e37d2438
LE
2760 device->md_io.page = alloc_page(GFP_KERNEL);
2761 if (!device->md_io.page)
b411b363
PR
2762 goto out_no_io_page;
2763
b30ab791 2764 if (drbd_bm_init(device))
b411b363 2765 goto out_no_bitmap;
b30ab791
AG
2766 device->read_requests = RB_ROOT;
2767 device->write_requests = RB_ROOT;
b411b363 2768
93e4bf7a
AG
2769 id = idr_alloc(&drbd_devices, device, minor, minor + 1, GFP_KERNEL);
2770 if (id < 0) {
2771 if (id == -ENOSPC) {
56de2102 2772 err = ERR_MINOR_EXISTS;
a910b123 2773 drbd_msg_put_info(adm_ctx->reply_skb, "requested minor exists already");
56de2102 2774 }
8432b314 2775 goto out_no_minor_idr;
81a5d60e 2776 }
803ea134
AG
2777 kref_get(&device->kref);
2778
2779 id = idr_alloc(&resource->devices, device, vnr, vnr + 1, GFP_KERNEL);
2780 if (id < 0) {
2781 if (id == -ENOSPC) {
2782 err = ERR_MINOR_EXISTS;
a910b123 2783 drbd_msg_put_info(adm_ctx->reply_skb, "requested minor exists already");
803ea134
AG
2784 }
2785 goto out_idr_remove_minor;
2786 }
2787 kref_get(&device->kref);
8432b314 2788
b6f85ef9
AG
2789 INIT_LIST_HEAD(&device->peer_devices);
2790 for_each_connection(connection, resource) {
2791 peer_device = kzalloc(sizeof(struct drbd_peer_device), GFP_KERNEL);
2792 if (!peer_device)
2793 goto out_idr_remove_from_resource;
2794 peer_device->connection = connection;
2795 peer_device->device = device;
2796
2797 list_add(&peer_device->peer_devices, &device->peer_devices);
2798 kref_get(&device->kref);
2799
2800 id = idr_alloc(&connection->peer_devices, peer_device, vnr, vnr + 1, GFP_KERNEL);
2801 if (id < 0) {
2802 if (id == -ENOSPC) {
2803 err = ERR_INVALID_REQUEST;
a910b123 2804 drbd_msg_put_info(adm_ctx->reply_skb, "requested volume exists already");
b6f85ef9
AG
2805 }
2806 goto out_idr_remove_from_resource;
56de2102 2807 }
b6f85ef9 2808 kref_get(&connection->kref);
8432b314 2809 }
56de2102 2810
b30ab791 2811 if (init_submitter(device)) {
113fef9e 2812 err = ERR_NOMEM;
a910b123 2813 drbd_msg_put_info(adm_ctx->reply_skb, "unable to create submit workqueue");
113fef9e
LE
2814 goto out_idr_remove_vol;
2815 }
2816
774b3055
PR
2817 add_disk(disk);
2818
2325eb66 2819 /* inherit the connection state */
b6f85ef9 2820 device->state.conn = first_connection(resource)->cstate;
69a22773
AG
2821 if (device->state.conn == C_WF_REPORT_PARAMS) {
2822 for_each_peer_device(peer_device, device)
2823 drbd_connected(peer_device);
2824 }
2325eb66 2825
774b3055 2826 return NO_ERROR;
b411b363 2827
113fef9e 2828out_idr_remove_vol:
c06ece6b 2829 idr_remove(&connection->peer_devices, vnr);
803ea134 2830out_idr_remove_from_resource:
b6f85ef9
AG
2831 for_each_connection(connection, resource) {
2832 peer_device = idr_find(&connection->peer_devices, vnr);
2833 if (peer_device) {
2834 idr_remove(&connection->peer_devices, vnr);
2835 kref_put(&connection->kref, drbd_destroy_connection);
2836 }
2837 }
2838 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2839 list_del(&peer_device->peer_devices);
2840 kfree(peer_device);
2841 }
803ea134 2842 idr_remove(&resource->devices, vnr);
8432b314 2843out_idr_remove_minor:
93e4bf7a 2844 idr_remove(&drbd_devices, minor);
569083c0 2845 synchronize_rcu();
8432b314 2846out_no_minor_idr:
b30ab791 2847 drbd_bm_cleanup(device);
b411b363 2848out_no_bitmap:
e37d2438 2849 __free_page(device->md_io.page);
b411b363
PR
2850out_no_io_page:
2851 put_disk(disk);
2852out_no_disk:
2853 blk_cleanup_queue(q);
2854out_no_q:
803ea134 2855 kref_put(&resource->kref, drbd_destroy_resource);
a6b32bc3 2856 kfree(device);
8432b314 2857 return err;
b411b363
PR
2858}
2859
f82795d6 2860void drbd_delete_device(struct drbd_device *device)
803ea134
AG
2861{
2862 struct drbd_resource *resource = device->resource;
2863 struct drbd_connection *connection;
2864 int refs = 3;
2865
2866 for_each_connection(connection, resource) {
c06ece6b 2867 idr_remove(&connection->peer_devices, device->vnr);
803ea134
AG
2868 refs++;
2869 }
2870 idr_remove(&resource->devices, device->vnr);
2871 idr_remove(&drbd_devices, device_to_minor(device));
2872 del_gendisk(device->vdisk);
2873 synchronize_rcu();
2874 kref_sub(&device->kref, refs, drbd_destroy_device);
2875}
2876
8ce953aa 2877static int __init drbd_init(void)
b411b363
PR
2878{
2879 int err;
2880
2b8a90b5 2881 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
f88c5d90 2882 pr_err("invalid minor_count (%d)\n", minor_count);
b411b363
PR
2883#ifdef MODULE
2884 return -EINVAL;
2885#else
46530e85 2886 minor_count = DRBD_MINOR_COUNT_DEF;
b411b363
PR
2887#endif
2888 }
2889
b411b363
PR
2890 err = register_blkdev(DRBD_MAJOR, "drbd");
2891 if (err) {
f88c5d90 2892 pr_err("unable to register block device major %d\n",
b411b363
PR
2893 DRBD_MAJOR);
2894 return err;
2895 }
2896
b411b363
PR
2897 /*
2898 * allocate all necessary structs
2899 */
b411b363
PR
2900 init_waitqueue_head(&drbd_pp_wait);
2901
2902 drbd_proc = NULL; /* play safe for drbd_cleanup */
05a10ec7 2903 idr_init(&drbd_devices);
b411b363 2904
69babf05 2905 rwlock_init(&global_state_lock);
77c556f6 2906 INIT_LIST_HEAD(&drbd_resources);
69babf05
LE
2907
2908 err = drbd_genl_register();
2909 if (err) {
f88c5d90 2910 pr_err("unable to register generic netlink family\n");
69babf05
LE
2911 goto fail;
2912 }
2913
b411b363
PR
2914 err = drbd_create_mempools();
2915 if (err)
3b98c0c2 2916 goto fail;
b411b363 2917
6110d70b 2918 err = -ENOMEM;
8c484ee4 2919 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
b411b363 2920 if (!drbd_proc) {
f88c5d90 2921 pr_err("unable to register proc file\n");
3b98c0c2 2922 goto fail;
b411b363
PR
2923 }
2924
2312f0b3
LE
2925 retry.wq = create_singlethread_workqueue("drbd-reissue");
2926 if (!retry.wq) {
f88c5d90 2927 pr_err("unable to create retry workqueue\n");
2312f0b3
LE
2928 goto fail;
2929 }
2930 INIT_WORK(&retry.worker, do_retry);
2931 spin_lock_init(&retry.lock);
2932 INIT_LIST_HEAD(&retry.writes);
b411b363 2933
f88c5d90 2934 pr_info("initialized. "
b411b363
PR
2935 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2936 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
f88c5d90
LE
2937 pr_info("%s\n", drbd_buildtag());
2938 pr_info("registered as block device major %d\n", DRBD_MAJOR);
b411b363
PR
2939 return 0; /* Success! */
2940
3b98c0c2 2941fail:
b411b363
PR
2942 drbd_cleanup();
2943 if (err == -ENOMEM)
f88c5d90 2944 pr_err("ran out of memory\n");
b411b363 2945 else
f88c5d90 2946 pr_err("initialization failure\n");
b411b363
PR
2947 return err;
2948}
2949
28995af5 2950void drbd_free_ldev(struct drbd_backing_dev *ldev)
b411b363
PR
2951{
2952 if (ldev == NULL)
2953 return;
2954
e525fd89
TH
2955 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2956 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
b411b363 2957
94ad0a10 2958 kfree(ldev->disk_conf);
b411b363
PR
2959 kfree(ldev);
2960}
2961
bde89a9e 2962void drbd_free_sock(struct drbd_connection *connection)
b411b363 2963{
bde89a9e
AG
2964 if (connection->data.socket) {
2965 mutex_lock(&connection->data.mutex);
2966 kernel_sock_shutdown(connection->data.socket, SHUT_RDWR);
2967 sock_release(connection->data.socket);
2968 connection->data.socket = NULL;
2969 mutex_unlock(&connection->data.mutex);
b411b363 2970 }
bde89a9e
AG
2971 if (connection->meta.socket) {
2972 mutex_lock(&connection->meta.mutex);
2973 kernel_sock_shutdown(connection->meta.socket, SHUT_RDWR);
2974 sock_release(connection->meta.socket);
2975 connection->meta.socket = NULL;
2976 mutex_unlock(&connection->meta.mutex);
b411b363
PR
2977 }
2978}
2979
b411b363 2980/* meta data management */
b411b363 2981
bde89a9e 2982void conn_md_sync(struct drbd_connection *connection)
b411b363 2983{
c06ece6b 2984 struct drbd_peer_device *peer_device;
19fffd7b 2985 int vnr;
b411b363 2986
19fffd7b 2987 rcu_read_lock();
c06ece6b
AG
2988 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2989 struct drbd_device *device = peer_device->device;
2990
b30ab791 2991 kref_get(&device->kref);
19fffd7b 2992 rcu_read_unlock();
b30ab791 2993 drbd_md_sync(device);
05a10ec7 2994 kref_put(&device->kref, drbd_destroy_device);
19fffd7b
PR
2995 rcu_read_lock();
2996 }
2997 rcu_read_unlock();
b411b363
PR
2998}
2999
ae8bf312 3000/* aligned 4kByte */
b411b363 3001struct meta_data_on_disk {
cccac985 3002 u64 la_size_sect; /* last agreed size. */
b411b363
PR
3003 u64 uuid[UI_SIZE]; /* UUIDs. */
3004 u64 device_uuid;
3005 u64 reserved_u64_1;
3006 u32 flags; /* MDF */
3007 u32 magic;
3008 u32 md_size_sect;
3009 u32 al_offset; /* offset to this block */
ae8bf312 3010 u32 al_nr_extents; /* important for restoring the AL (userspace) */
f399002e 3011 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
b411b363
PR
3012 u32 bm_offset; /* offset to the bitmap, from here */
3013 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
99432fcc 3014 u32 la_peer_max_bio_size; /* last peer max_bio_size */
b411b363 3015
3a4d4eb3
LE
3016 /* see al_tr_number_to_on_disk_sector() */
3017 u32 al_stripes;
3018 u32 al_stripe_size_4k;
3019
3020 u8 reserved_u8[4096 - (7*8 + 10*4)];
b411b363
PR
3021} __packed;
3022
d752b269
PR
3023
3024
b30ab791 3025void drbd_md_write(struct drbd_device *device, void *b)
b411b363 3026{
d752b269 3027 struct meta_data_on_disk *buffer = b;
b411b363
PR
3028 sector_t sector;
3029 int i;
3030
ae8bf312 3031 memset(buffer, 0, sizeof(*buffer));
b411b363 3032
b30ab791 3033 buffer->la_size_sect = cpu_to_be64(drbd_get_capacity(device->this_bdev));
b411b363 3034 for (i = UI_CURRENT; i < UI_SIZE; i++)
b30ab791
AG
3035 buffer->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
3036 buffer->flags = cpu_to_be32(device->ldev->md.flags);
d5d7ebd4 3037 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
b411b363 3038
b30ab791
AG
3039 buffer->md_size_sect = cpu_to_be32(device->ldev->md.md_size_sect);
3040 buffer->al_offset = cpu_to_be32(device->ldev->md.al_offset);
3041 buffer->al_nr_extents = cpu_to_be32(device->act_log->nr_elements);
b411b363 3042 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
b30ab791 3043 buffer->device_uuid = cpu_to_be64(device->ldev->md.device_uuid);
b411b363 3044
b30ab791
AG
3045 buffer->bm_offset = cpu_to_be32(device->ldev->md.bm_offset);
3046 buffer->la_peer_max_bio_size = cpu_to_be32(device->peer_max_bio_size);
b411b363 3047
b30ab791
AG
3048 buffer->al_stripes = cpu_to_be32(device->ldev->md.al_stripes);
3049 buffer->al_stripe_size_4k = cpu_to_be32(device->ldev->md.al_stripe_size_4k);
3a4d4eb3 3050
0b0ba1ef 3051 D_ASSERT(device, drbd_md_ss(device->ldev) == device->ldev->md.md_offset);
b30ab791 3052 sector = device->ldev->md.md_offset;
b411b363 3053
b30ab791 3054 if (drbd_md_sync_page_io(device, device->ldev, sector, WRITE)) {
b411b363 3055 /* this was a try anyways ... */
d0180171 3056 drbd_err(device, "meta data update failed!\n");
b30ab791 3057 drbd_chk_io_error(device, 1, DRBD_META_IO_ERROR);
b411b363 3058 }
d752b269
PR
3059}
3060
3061/**
3062 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
b30ab791 3063 * @device: DRBD device.
d752b269 3064 */
b30ab791 3065void drbd_md_sync(struct drbd_device *device)
d752b269
PR
3066{
3067 struct meta_data_on_disk *buffer;
3068
3069 /* Don't accidentally change the DRBD meta data layout. */
3070 BUILD_BUG_ON(UI_SIZE != 4);
3071 BUILD_BUG_ON(sizeof(struct meta_data_on_disk) != 4096);
3072
b30ab791 3073 del_timer(&device->md_sync_timer);
d752b269 3074 /* timer may be rearmed by drbd_md_mark_dirty() now. */
b30ab791 3075 if (!test_and_clear_bit(MD_DIRTY, &device->flags))
d752b269
PR
3076 return;
3077
3078 /* We use here D_FAILED and not D_ATTACHING because we try to write
3079 * metadata even if we detach due to a disk failure! */
b30ab791 3080 if (!get_ldev_if_state(device, D_FAILED))
d752b269
PR
3081 return;
3082
e37d2438 3083 buffer = drbd_md_get_buffer(device, __func__);
d752b269
PR
3084 if (!buffer)
3085 goto out;
3086
b30ab791 3087 drbd_md_write(device, buffer);
b411b363 3088
b30ab791 3089 /* Update device->ldev->md.la_size_sect,
b411b363 3090 * since we updated it on metadata. */
b30ab791 3091 device->ldev->md.la_size_sect = drbd_get_capacity(device->this_bdev);
b411b363 3092
b30ab791 3093 drbd_md_put_buffer(device);
e1711731 3094out:
b30ab791 3095 put_ldev(device);
b411b363
PR
3096}
3097
b30ab791 3098static int check_activity_log_stripe_size(struct drbd_device *device,
3a4d4eb3
LE
3099 struct meta_data_on_disk *on_disk,
3100 struct drbd_md *in_core)
3101{
3102 u32 al_stripes = be32_to_cpu(on_disk->al_stripes);
3103 u32 al_stripe_size_4k = be32_to_cpu(on_disk->al_stripe_size_4k);
3104 u64 al_size_4k;
3105
3106 /* both not set: default to old fixed size activity log */
3107 if (al_stripes == 0 && al_stripe_size_4k == 0) {
3108 al_stripes = 1;
3109 al_stripe_size_4k = MD_32kB_SECT/8;
3110 }
3111
3112 /* some paranoia plausibility checks */
3113
3114 /* we need both values to be set */
3115 if (al_stripes == 0 || al_stripe_size_4k == 0)
3116 goto err;
3117
3118 al_size_4k = (u64)al_stripes * al_stripe_size_4k;
3119
3120 /* Upper limit of activity log area, to avoid potential overflow
3121 * problems in al_tr_number_to_on_disk_sector(). As right now, more
3122 * than 72 * 4k blocks total only increases the amount of history,
3123 * limiting this arbitrarily to 16 GB is not a real limitation ;-) */
3124 if (al_size_4k > (16 * 1024 * 1024/4))
3125 goto err;
3126
3127 /* Lower limit: we need at least 8 transaction slots (32kB)
3128 * to not break existing setups */
3129 if (al_size_4k < MD_32kB_SECT/8)
3130 goto err;
3131
3132 in_core->al_stripe_size_4k = al_stripe_size_4k;
3133 in_core->al_stripes = al_stripes;
3134 in_core->al_size_4k = al_size_4k;
3135
3136 return 0;
3137err:
d0180171 3138 drbd_err(device, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
3a4d4eb3
LE
3139 al_stripes, al_stripe_size_4k);
3140 return -EINVAL;
3141}
3142
b30ab791 3143static int check_offsets_and_sizes(struct drbd_device *device, struct drbd_backing_dev *bdev)
c04ccaa6
LE
3144{
3145 sector_t capacity = drbd_get_capacity(bdev->md_bdev);
3146 struct drbd_md *in_core = &bdev->md;
3147 s32 on_disk_al_sect;
3148 s32 on_disk_bm_sect;
3149
3150 /* The on-disk size of the activity log, calculated from offsets, and
3151 * the size of the activity log calculated from the stripe settings,
3152 * should match.
3153 * Though we could relax this a bit: it is ok, if the striped activity log
3154 * fits in the available on-disk activity log size.
3155 * Right now, that would break how resize is implemented.
3156 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
3157 * of possible unused padding space in the on disk layout. */
3158 if (in_core->al_offset < 0) {
3159 if (in_core->bm_offset > in_core->al_offset)
3160 goto err;
3161 on_disk_al_sect = -in_core->al_offset;
3162 on_disk_bm_sect = in_core->al_offset - in_core->bm_offset;
3163 } else {
3164 if (in_core->al_offset != MD_4kB_SECT)
3165 goto err;
3166 if (in_core->bm_offset < in_core->al_offset + in_core->al_size_4k * MD_4kB_SECT)
3167 goto err;
3168
3169 on_disk_al_sect = in_core->bm_offset - MD_4kB_SECT;
3170 on_disk_bm_sect = in_core->md_size_sect - in_core->bm_offset;
3171 }
3172
3173 /* old fixed size meta data is exactly that: fixed. */
3174 if (in_core->meta_dev_idx >= 0) {
3175 if (in_core->md_size_sect != MD_128MB_SECT
3176 || in_core->al_offset != MD_4kB_SECT
3177 || in_core->bm_offset != MD_4kB_SECT + MD_32kB_SECT
3178 || in_core->al_stripes != 1
3179 || in_core->al_stripe_size_4k != MD_32kB_SECT/8)
3180 goto err;
3181 }
3182
3183 if (capacity < in_core->md_size_sect)
3184 goto err;
3185 if (capacity - in_core->md_size_sect < drbd_md_first_sector(bdev))
3186 goto err;
3187
3188 /* should be aligned, and at least 32k */
3189 if ((on_disk_al_sect & 7) || (on_disk_al_sect < MD_32kB_SECT))
3190 goto err;
3191
3192 /* should fit (for now: exactly) into the available on-disk space;
3193 * overflow prevention is in check_activity_log_stripe_size() above. */
3194 if (on_disk_al_sect != in_core->al_size_4k * MD_4kB_SECT)
3195 goto err;
3196
3197 /* again, should be aligned */
3198 if (in_core->bm_offset & 7)
3199 goto err;
3200
3201 /* FIXME check for device grow with flex external meta data? */
3202
3203 /* can the available bitmap space cover the last agreed device size? */
3204 if (on_disk_bm_sect < (in_core->la_size_sect+7)/MD_4kB_SECT/8/512)
3205 goto err;
3206
3207 return 0;
3208
3209err:
d0180171 3210 drbd_err(device, "meta data offsets don't make sense: idx=%d "
c04ccaa6
LE
3211 "al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
3212 "md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
3213 in_core->meta_dev_idx,
3214 in_core->al_stripes, in_core->al_stripe_size_4k,
3215 in_core->al_offset, in_core->bm_offset, in_core->md_size_sect,
3216 (unsigned long long)in_core->la_size_sect,
3217 (unsigned long long)capacity);
3218
3219 return -EINVAL;
3220}
3221
3222
b411b363
PR
3223/**
3224 * drbd_md_read() - Reads in the meta data super block
b30ab791 3225 * @device: DRBD device.
b411b363
PR
3226 * @bdev: Device from which the meta data should be read in.
3227 *
3a4d4eb3 3228 * Return NO_ERROR on success, and an enum drbd_ret_code in case
d5d7ebd4 3229 * something goes wrong.
3a4d4eb3 3230 *
c04ccaa6 3231 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
b30ab791 3232 * even before @bdev is assigned to @device->ldev.
b411b363 3233 */
b30ab791 3234int drbd_md_read(struct drbd_device *device, struct drbd_backing_dev *bdev)
b411b363
PR
3235{
3236 struct meta_data_on_disk *buffer;
d5d7ebd4 3237 u32 magic, flags;
b411b363
PR
3238 int i, rv = NO_ERROR;
3239
b30ab791 3240 if (device->state.disk != D_DISKLESS)
c04ccaa6 3241 return ERR_DISK_CONFIGURED;
b411b363 3242
e37d2438 3243 buffer = drbd_md_get_buffer(device, __func__);
e1711731 3244 if (!buffer)
c04ccaa6 3245 return ERR_NOMEM;
b411b363 3246
c04ccaa6
LE
3247 /* First, figure out where our meta data superblock is located,
3248 * and read it. */
3a4d4eb3
LE
3249 bdev->md.meta_dev_idx = bdev->disk_conf->meta_dev_idx;
3250 bdev->md.md_offset = drbd_md_ss(bdev);
b411b363 3251
b30ab791 3252 if (drbd_md_sync_page_io(device, bdev, bdev->md.md_offset, READ)) {
25985edc 3253 /* NOTE: can't do normal error processing here as this is
b411b363 3254 called BEFORE disk is attached */
d0180171 3255 drbd_err(device, "Error while reading metadata.\n");
b411b363
PR
3256 rv = ERR_IO_MD_DISK;
3257 goto err;
3258 }
3259
d5d7ebd4
LE
3260 magic = be32_to_cpu(buffer->magic);
3261 flags = be32_to_cpu(buffer->flags);
3262 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3263 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3264 /* btw: that's Activity Log clean, not "all" clean. */
d0180171 3265 drbd_err(device, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
d5d7ebd4
LE
3266 rv = ERR_MD_UNCLEAN;
3267 goto err;
3268 }
3a4d4eb3
LE
3269
3270 rv = ERR_MD_INVALID;
d5d7ebd4 3271 if (magic != DRBD_MD_MAGIC_08) {
43de7c85 3272 if (magic == DRBD_MD_MAGIC_07)
d0180171 3273 drbd_err(device, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
d5d7ebd4 3274 else
d0180171 3275 drbd_err(device, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
b411b363
PR
3276 goto err;
3277 }
3a4d4eb3 3278
c04ccaa6 3279 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
d0180171 3280 drbd_err(device, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
c04ccaa6 3281 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
b411b363
PR
3282 goto err;
3283 }
3a4d4eb3 3284
c04ccaa6
LE
3285
3286 /* convert to in_core endian */
3287 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size_sect);
3288 for (i = UI_CURRENT; i < UI_SIZE; i++)
3289 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3290 bdev->md.flags = be32_to_cpu(buffer->flags);
3291 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3292
3293 bdev->md.md_size_sect = be32_to_cpu(buffer->md_size_sect);
3294 bdev->md.al_offset = be32_to_cpu(buffer->al_offset);
3295 bdev->md.bm_offset = be32_to_cpu(buffer->bm_offset);
3296
b30ab791 3297 if (check_activity_log_stripe_size(device, buffer, &bdev->md))
b411b363 3298 goto err;
b30ab791 3299 if (check_offsets_and_sizes(device, bdev))
c04ccaa6
LE
3300 goto err;
3301
b411b363 3302 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
d0180171 3303 drbd_err(device, "unexpected bm_offset: %d (expected %d)\n",
b411b363 3304 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
b411b363
PR
3305 goto err;
3306 }
3307 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
d0180171 3308 drbd_err(device, "unexpected md_size: %u (expected %u)\n",
b411b363 3309 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
b411b363
PR
3310 goto err;
3311 }
3312
3a4d4eb3 3313 rv = NO_ERROR;
b411b363 3314
0500813f 3315 spin_lock_irq(&device->resource->req_lock);
b30ab791 3316 if (device->state.conn < C_CONNECTED) {
db141b2f 3317 unsigned int peer;
99432fcc 3318 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
db141b2f 3319 peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
b30ab791 3320 device->peer_max_bio_size = peer;
99432fcc 3321 }
0500813f 3322 spin_unlock_irq(&device->resource->req_lock);
b411b363
PR
3323
3324 err:
b30ab791 3325 drbd_md_put_buffer(device);
b411b363
PR
3326
3327 return rv;
3328}
3329
3330/**
3331 * drbd_md_mark_dirty() - Mark meta data super block as dirty
b30ab791 3332 * @device: DRBD device.
b411b363
PR
3333 *
3334 * Call this function if you change anything that should be written to
3335 * the meta-data super block. This function sets MD_DIRTY, and starts a
3336 * timer that ensures that within five seconds you have to call drbd_md_sync().
3337 */
ca0e6098 3338#ifdef DEBUG
b30ab791 3339void drbd_md_mark_dirty_(struct drbd_device *device, unsigned int line, const char *func)
ee15b038 3340{
b30ab791
AG
3341 if (!test_and_set_bit(MD_DIRTY, &device->flags)) {
3342 mod_timer(&device->md_sync_timer, jiffies + HZ);
3343 device->last_md_mark_dirty.line = line;
3344 device->last_md_mark_dirty.func = func;
ee15b038
LE
3345 }
3346}
3347#else
b30ab791 3348void drbd_md_mark_dirty(struct drbd_device *device)
b411b363 3349{
b30ab791
AG
3350 if (!test_and_set_bit(MD_DIRTY, &device->flags))
3351 mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
b411b363 3352}
ee15b038 3353#endif
b411b363 3354
b30ab791 3355void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
b411b363
PR
3356{
3357 int i;
3358
62b0da3a 3359 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
b30ab791 3360 device->ldev->md.uuid[i+1] = device->ldev->md.uuid[i];
b411b363
PR
3361}
3362
b30ab791 3363void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
b411b363
PR
3364{
3365 if (idx == UI_CURRENT) {
b30ab791 3366 if (device->state.role == R_PRIMARY)
b411b363
PR
3367 val |= 1;
3368 else
3369 val &= ~((u64)1);
3370
b30ab791 3371 drbd_set_ed_uuid(device, val);
b411b363
PR
3372 }
3373
b30ab791
AG
3374 device->ldev->md.uuid[idx] = val;
3375 drbd_md_mark_dirty(device);
b411b363
PR
3376}
3377
b30ab791 3378void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
9f2247bb
PR
3379{
3380 unsigned long flags;
b30ab791
AG
3381 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3382 __drbd_uuid_set(device, idx, val);
3383 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
9f2247bb 3384}
b411b363 3385
b30ab791 3386void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
b411b363 3387{
9f2247bb 3388 unsigned long flags;
b30ab791
AG
3389 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3390 if (device->ldev->md.uuid[idx]) {
3391 drbd_uuid_move_history(device);
3392 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[idx];
b411b363 3393 }
b30ab791
AG
3394 __drbd_uuid_set(device, idx, val);
3395 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
b411b363
PR
3396}
3397
3398/**
3399 * drbd_uuid_new_current() - Creates a new current UUID
b30ab791 3400 * @device: DRBD device.
b411b363
PR
3401 *
3402 * Creates a new current UUID, and rotates the old current UUID into
3403 * the bitmap slot. Causes an incremental resync upon next connect.
3404 */
b30ab791 3405void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local)
b411b363
PR
3406{
3407 u64 val;
9f2247bb
PR
3408 unsigned long long bm_uuid;
3409
3410 get_random_bytes(&val, sizeof(u64));
3411
b30ab791
AG
3412 spin_lock_irq(&device->ldev->md.uuid_lock);
3413 bm_uuid = device->ldev->md.uuid[UI_BITMAP];
62b0da3a
LE
3414
3415 if (bm_uuid)
d0180171 3416 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
b411b363 3417
b30ab791
AG
3418 device->ldev->md.uuid[UI_BITMAP] = device->ldev->md.uuid[UI_CURRENT];
3419 __drbd_uuid_set(device, UI_CURRENT, val);
3420 spin_unlock_irq(&device->ldev->md.uuid_lock);
b411b363 3421
b30ab791 3422 drbd_print_uuids(device, "new current UUID");
aaa8e2b3 3423 /* get it to stable storage _now_ */
b30ab791 3424 drbd_md_sync(device);
b411b363
PR
3425}
3426
b30ab791 3427void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local)
b411b363 3428{
9f2247bb 3429 unsigned long flags;
b30ab791 3430 if (device->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
b411b363
PR
3431 return;
3432
b30ab791 3433 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
b411b363 3434 if (val == 0) {
b30ab791
AG
3435 drbd_uuid_move_history(device);
3436 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[UI_BITMAP];
3437 device->ldev->md.uuid[UI_BITMAP] = 0;
b411b363 3438 } else {
b30ab791 3439 unsigned long long bm_uuid = device->ldev->md.uuid[UI_BITMAP];
62b0da3a 3440 if (bm_uuid)
d0180171 3441 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
b411b363 3442
b30ab791 3443 device->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
b411b363 3444 }
b30ab791 3445 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
9f2247bb 3446
b30ab791 3447 drbd_md_mark_dirty(device);
b411b363
PR
3448}
3449
3450/**
3451 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
b30ab791 3452 * @device: DRBD device.
b411b363
PR
3453 *
3454 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3455 */
8fe39aac 3456int drbd_bmio_set_n_write(struct drbd_device *device) __must_hold(local)
b411b363
PR
3457{
3458 int rv = -EIO;
3459
8fe39aac
PR
3460 drbd_md_set_flag(device, MDF_FULL_SYNC);
3461 drbd_md_sync(device);
3462 drbd_bm_set_all(device);
b411b363 3463
8fe39aac 3464 rv = drbd_bm_write(device);
b411b363 3465
8fe39aac
PR
3466 if (!rv) {
3467 drbd_md_clear_flag(device, MDF_FULL_SYNC);
3468 drbd_md_sync(device);
b411b363
PR
3469 }
3470
3471 return rv;
3472}
3473
3474/**
3475 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
b30ab791 3476 * @device: DRBD device.
b411b363
PR
3477 *
3478 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3479 */
8fe39aac 3480int drbd_bmio_clear_n_write(struct drbd_device *device) __must_hold(local)
b411b363 3481{
b30ab791 3482 drbd_resume_al(device);
8fe39aac
PR
3483 drbd_bm_clear_all(device);
3484 return drbd_bm_write(device);
b411b363
PR
3485}
3486
99920dc5 3487static int w_bitmap_io(struct drbd_work *w, int unused)
b411b363 3488{
84b8c06b
AG
3489 struct drbd_device *device =
3490 container_of(w, struct drbd_device, bm_io_work.w);
3491 struct bm_io_work *work = &device->bm_io_work;
02851e9f 3492 int rv = -EIO;
b411b363 3493
0b0ba1ef 3494 D_ASSERT(device, atomic_read(&device->ap_bio_cnt) == 0);
b411b363 3495
b30ab791
AG
3496 if (get_ldev(device)) {
3497 drbd_bm_lock(device, work->why, work->flags);
3498 rv = work->io_fn(device);
3499 drbd_bm_unlock(device);
3500 put_ldev(device);
02851e9f 3501 }
b411b363 3502
b30ab791
AG
3503 clear_bit_unlock(BITMAP_IO, &device->flags);
3504 wake_up(&device->misc_wait);
b411b363
PR
3505
3506 if (work->done)
b30ab791 3507 work->done(device, rv);
b411b363 3508
b30ab791 3509 clear_bit(BITMAP_IO_QUEUED, &device->flags);
b411b363 3510 work->why = NULL;
20ceb2b2 3511 work->flags = 0;
b411b363 3512
99920dc5 3513 return 0;
b411b363
PR
3514}
3515
3516/**
3517 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
b30ab791 3518 * @device: DRBD device.
b411b363
PR
3519 * @io_fn: IO callback to be called when bitmap IO is possible
3520 * @done: callback to be called after the bitmap IO was performed
3521 * @why: Descriptive text of the reason for doing the IO
3522 *
3523 * While IO on the bitmap happens we freeze application IO thus we ensure
3524 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3525 * called from worker context. It MUST NOT be used while a previous such
3526 * work is still pending!
8fe39aac
PR
3527 *
3528 * Its worker function encloses the call of io_fn() by get_ldev() and
3529 * put_ldev().
b411b363 3530 */
b30ab791 3531void drbd_queue_bitmap_io(struct drbd_device *device,
54761697
AG
3532 int (*io_fn)(struct drbd_device *),
3533 void (*done)(struct drbd_device *, int),
20ceb2b2 3534 char *why, enum bm_flag flags)
b411b363 3535{
0b0ba1ef 3536 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
b411b363 3537
0b0ba1ef
AG
3538 D_ASSERT(device, !test_bit(BITMAP_IO_QUEUED, &device->flags));
3539 D_ASSERT(device, !test_bit(BITMAP_IO, &device->flags));
3540 D_ASSERT(device, list_empty(&device->bm_io_work.w.list));
b30ab791 3541 if (device->bm_io_work.why)
d0180171 3542 drbd_err(device, "FIXME going to queue '%s' but '%s' still pending?\n",
b30ab791 3543 why, device->bm_io_work.why);
b411b363 3544
b30ab791
AG
3545 device->bm_io_work.io_fn = io_fn;
3546 device->bm_io_work.done = done;
3547 device->bm_io_work.why = why;
3548 device->bm_io_work.flags = flags;
b411b363 3549
0500813f 3550 spin_lock_irq(&device->resource->req_lock);
b30ab791
AG
3551 set_bit(BITMAP_IO, &device->flags);
3552 if (atomic_read(&device->ap_bio_cnt) == 0) {
3553 if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
84b8c06b
AG
3554 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
3555 &device->bm_io_work.w);
b411b363 3556 }
0500813f 3557 spin_unlock_irq(&device->resource->req_lock);
b411b363
PR
3558}
3559
3560/**
3561 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
b30ab791 3562 * @device: DRBD device.
b411b363
PR
3563 * @io_fn: IO callback to be called when bitmap IO is possible
3564 * @why: Descriptive text of the reason for doing the IO
3565 *
3566 * freezes application IO while that the actual IO operations runs. This
3567 * functions MAY NOT be called from worker context.
3568 */
b30ab791 3569int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
20ceb2b2 3570 char *why, enum bm_flag flags)
b411b363
PR
3571{
3572 int rv;
3573
0b0ba1ef 3574 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
b411b363 3575
20ceb2b2 3576 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
b30ab791 3577 drbd_suspend_io(device);
b411b363 3578
b30ab791
AG
3579 drbd_bm_lock(device, why, flags);
3580 rv = io_fn(device);
3581 drbd_bm_unlock(device);
b411b363 3582
20ceb2b2 3583 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
b30ab791 3584 drbd_resume_io(device);
b411b363
PR
3585
3586 return rv;
3587}
3588
b30ab791 3589void drbd_md_set_flag(struct drbd_device *device, int flag) __must_hold(local)
b411b363 3590{
b30ab791
AG
3591 if ((device->ldev->md.flags & flag) != flag) {
3592 drbd_md_mark_dirty(device);
3593 device->ldev->md.flags |= flag;
b411b363
PR
3594 }
3595}
3596
b30ab791 3597void drbd_md_clear_flag(struct drbd_device *device, int flag) __must_hold(local)
b411b363 3598{
b30ab791
AG
3599 if ((device->ldev->md.flags & flag) != 0) {
3600 drbd_md_mark_dirty(device);
3601 device->ldev->md.flags &= ~flag;
b411b363
PR
3602 }
3603}
3604int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3605{
3606 return (bdev->md.flags & flag) != 0;
3607}
3608
3609static void md_sync_timer_fn(unsigned long data)
3610{
b30ab791 3611 struct drbd_device *device = (struct drbd_device *) data;
ac0acb9e 3612 drbd_device_post_work(device, MD_SYNC);
b411b363
PR
3613}
3614
d8763023 3615const char *cmdname(enum drbd_packet cmd)
f2ad9063
AG
3616{
3617 /* THINK may need to become several global tables
3618 * when we want to support more than
3619 * one PRO_VERSION */
3620 static const char *cmdnames[] = {
3621 [P_DATA] = "Data",
3622 [P_DATA_REPLY] = "DataReply",
3623 [P_RS_DATA_REPLY] = "RSDataReply",
3624 [P_BARRIER] = "Barrier",
3625 [P_BITMAP] = "ReportBitMap",
3626 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3627 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3628 [P_UNPLUG_REMOTE] = "UnplugRemote",
3629 [P_DATA_REQUEST] = "DataRequest",
3630 [P_RS_DATA_REQUEST] = "RSDataRequest",
3631 [P_SYNC_PARAM] = "SyncParam",
3632 [P_SYNC_PARAM89] = "SyncParam89",
3633 [P_PROTOCOL] = "ReportProtocol",
3634 [P_UUIDS] = "ReportUUIDs",
3635 [P_SIZES] = "ReportSizes",
3636 [P_STATE] = "ReportState",
3637 [P_SYNC_UUID] = "ReportSyncUUID",
3638 [P_AUTH_CHALLENGE] = "AuthChallenge",
3639 [P_AUTH_RESPONSE] = "AuthResponse",
3640 [P_PING] = "Ping",
3641 [P_PING_ACK] = "PingAck",
3642 [P_RECV_ACK] = "RecvAck",
3643 [P_WRITE_ACK] = "WriteAck",
3644 [P_RS_WRITE_ACK] = "RSWriteAck",
d4dabbe2 3645 [P_SUPERSEDED] = "Superseded",
f2ad9063
AG
3646 [P_NEG_ACK] = "NegAck",
3647 [P_NEG_DREPLY] = "NegDReply",
3648 [P_NEG_RS_DREPLY] = "NegRSDReply",
3649 [P_BARRIER_ACK] = "BarrierAck",
3650 [P_STATE_CHG_REQ] = "StateChgRequest",
3651 [P_STATE_CHG_REPLY] = "StateChgReply",
3652 [P_OV_REQUEST] = "OVRequest",
3653 [P_OV_REPLY] = "OVReply",
3654 [P_OV_RESULT] = "OVResult",
3655 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3656 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3657 [P_COMPRESSED_BITMAP] = "CBitmap",
3658 [P_DELAY_PROBE] = "DelayProbe",
3659 [P_OUT_OF_SYNC] = "OutOfSync",
7be8da07 3660 [P_RETRY_WRITE] = "RetryWrite",
ae25b336
LE
3661 [P_RS_CANCEL] = "RSCancel",
3662 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3663 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
036b17ea
PR
3664 [P_RETRY_WRITE] = "retry_write",
3665 [P_PROTOCOL_UPDATE] = "protocol_update",
ae25b336
LE
3666
3667 /* enum drbd_packet, but not commands - obsoleted flags:
3668 * P_MAY_IGNORE
3669 * P_MAX_OPT_CMD
3670 */
f2ad9063
AG
3671 };
3672
ae25b336 3673 /* too big for the array: 0xfffX */
e5d6f33a
AG
3674 if (cmd == P_INITIAL_META)
3675 return "InitialMeta";
3676 if (cmd == P_INITIAL_DATA)
3677 return "InitialData";
6038178e
AG
3678 if (cmd == P_CONNECTION_FEATURES)
3679 return "ConnectionFeatures";
6e849ce8 3680 if (cmd >= ARRAY_SIZE(cmdnames))
f2ad9063
AG
3681 return "Unknown";
3682 return cmdnames[cmd];
3683}
3684
7be8da07
AG
3685/**
3686 * drbd_wait_misc - wait for a request to make progress
b30ab791 3687 * @device: device associated with the request
7be8da07
AG
3688 * @i: the struct drbd_interval embedded in struct drbd_request or
3689 * struct drbd_peer_request
3690 */
b30ab791 3691int drbd_wait_misc(struct drbd_device *device, struct drbd_interval *i)
7be8da07 3692{
44ed167d 3693 struct net_conf *nc;
7be8da07
AG
3694 DEFINE_WAIT(wait);
3695 long timeout;
3696
44ed167d 3697 rcu_read_lock();
a6b32bc3 3698 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
44ed167d
PR
3699 if (!nc) {
3700 rcu_read_unlock();
7be8da07 3701 return -ETIMEDOUT;
44ed167d
PR
3702 }
3703 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3704 rcu_read_unlock();
7be8da07 3705
b30ab791 3706 /* Indicate to wake up device->misc_wait on progress. */
7be8da07 3707 i->waiting = true;
b30ab791 3708 prepare_to_wait(&device->misc_wait, &wait, TASK_INTERRUPTIBLE);
0500813f 3709 spin_unlock_irq(&device->resource->req_lock);
7be8da07 3710 timeout = schedule_timeout(timeout);
b30ab791 3711 finish_wait(&device->misc_wait, &wait);
0500813f 3712 spin_lock_irq(&device->resource->req_lock);
b30ab791 3713 if (!timeout || device->state.conn < C_CONNECTED)
7be8da07
AG
3714 return -ETIMEDOUT;
3715 if (signal_pending(current))
3716 return -ERESTARTSYS;
3717 return 0;
b411b363
PR
3718}
3719
3720#ifdef CONFIG_DRBD_FAULT_INJECTION
3721/* Fault insertion support including random number generator shamelessly
3722 * stolen from kernel/rcutorture.c */
3723struct fault_random_state {
3724 unsigned long state;
3725 unsigned long count;
3726};
3727
3728#define FAULT_RANDOM_MULT 39916801 /* prime */
3729#define FAULT_RANDOM_ADD 479001701 /* prime */
3730#define FAULT_RANDOM_REFRESH 10000
3731
3732/*
3733 * Crude but fast random-number generator. Uses a linear congruential
3734 * generator, with occasional help from get_random_bytes().
3735 */
3736static unsigned long
3737_drbd_fault_random(struct fault_random_state *rsp)
3738{
3739 long refresh;
3740
49829ea7 3741 if (!rsp->count--) {
b411b363
PR
3742 get_random_bytes(&refresh, sizeof(refresh));
3743 rsp->state += refresh;
3744 rsp->count = FAULT_RANDOM_REFRESH;
3745 }
3746 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3747 return swahw32(rsp->state);
3748}
3749
3750static char *
3751_drbd_fault_str(unsigned int type) {
3752 static char *_faults[] = {
3753 [DRBD_FAULT_MD_WR] = "Meta-data write",
3754 [DRBD_FAULT_MD_RD] = "Meta-data read",
3755 [DRBD_FAULT_RS_WR] = "Resync write",
3756 [DRBD_FAULT_RS_RD] = "Resync read",
3757 [DRBD_FAULT_DT_WR] = "Data write",
3758 [DRBD_FAULT_DT_RD] = "Data read",
3759 [DRBD_FAULT_DT_RA] = "Data read ahead",
3760 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
6b4388ac
PR
3761 [DRBD_FAULT_AL_EE] = "EE allocation",
3762 [DRBD_FAULT_RECEIVE] = "receive data corruption",
b411b363
PR
3763 };
3764
3765 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3766}
3767
3768unsigned int
b30ab791 3769_drbd_insert_fault(struct drbd_device *device, unsigned int type)
b411b363
PR
3770{
3771 static struct fault_random_state rrs = {0, 0};
3772
3773 unsigned int ret = (
3774 (fault_devs == 0 ||
b30ab791 3775 ((1 << device_to_minor(device)) & fault_devs) != 0) &&
b411b363
PR
3776 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3777
3778 if (ret) {
3779 fault_count++;
3780
7383506c 3781 if (__ratelimit(&drbd_ratelimit_state))
d0180171 3782 drbd_warn(device, "***Simulating %s failure\n",
b411b363
PR
3783 _drbd_fault_str(type));
3784 }
3785
3786 return ret;
3787}
3788#endif
3789
3790const char *drbd_buildtag(void)
3791{
3792 /* DRBD built from external sources has here a reference to the
3793 git hash of the source code. */
3794
3795 static char buildtag[38] = "\0uilt-in";
3796
3797 if (buildtag[0] == 0) {
bc4854bc
CW
3798#ifdef MODULE
3799 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3800#else
3801 buildtag[0] = 'b';
b411b363 3802#endif
b411b363
PR
3803 }
3804
3805 return buildtag;
3806}
3807
3808module_init(drbd_init)
3809module_exit(drbd_cleanup)
3810
b411b363
PR
3811EXPORT_SYMBOL(drbd_conn_str);
3812EXPORT_SYMBOL(drbd_role_str);
3813EXPORT_SYMBOL(drbd_disk_str);
3814EXPORT_SYMBOL(drbd_set_st_err_str);
This page took 0.573717 seconds and 5 git commands to generate.