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