blob: 1aae724e37fb990b52cce952876928e90fa6d4c0 [file] [log] [blame]
Philipp Reisnerb411b362009-09-25 16:07:19 -07001/*
2 drbd_int.h
3
4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5
6 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
7 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
8 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
9
10 drbd is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 drbd is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with drbd; see the file COPYING. If not, write to
22 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24*/
25
26#ifndef _DRBD_INT_H
27#define _DRBD_INT_H
28
29#include <linux/compiler.h>
30#include <linux/types.h>
31#include <linux/version.h>
32#include <linux/list.h>
33#include <linux/sched.h>
34#include <linux/bitops.h>
35#include <linux/slab.h>
36#include <linux/crypto.h>
Randy Dunlap132cc532009-10-07 19:26:00 +020037#include <linux/ratelimit.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070038#include <linux/tcp.h>
39#include <linux/mutex.h>
40#include <linux/major.h>
41#include <linux/blkdev.h>
42#include <linux/genhd.h>
43#include <net/tcp.h>
44#include <linux/lru_cache.h>
45
46#ifdef __CHECKER__
47# define __protected_by(x) __attribute__((require_context(x,1,999,"rdwr")))
48# define __protected_read_by(x) __attribute__((require_context(x,1,999,"read")))
49# define __protected_write_by(x) __attribute__((require_context(x,1,999,"write")))
50# define __must_hold(x) __attribute__((context(x,1,1), require_context(x,1,999,"call")))
51#else
52# define __protected_by(x)
53# define __protected_read_by(x)
54# define __protected_write_by(x)
55# define __must_hold(x)
56#endif
57
58#define __no_warn(lock, stmt) do { __acquire(lock); stmt; __release(lock); } while (0)
59
60/* module parameter, defined in drbd_main.c */
61extern unsigned int minor_count;
62extern int disable_sendpage;
63extern int allow_oos;
64extern unsigned int cn_idx;
65
66#ifdef CONFIG_DRBD_FAULT_INJECTION
67extern int enable_faults;
68extern int fault_rate;
69extern int fault_devs;
70#endif
71
72extern char usermode_helper[];
73
74
75#ifndef TRUE
76#define TRUE 1
77#endif
78#ifndef FALSE
79#define FALSE 0
80#endif
81
82/* I don't remember why XCPU ...
83 * This is used to wake the asender,
84 * and to interrupt sending the sending task
85 * on disconnect.
86 */
87#define DRBD_SIG SIGXCPU
88
89/* This is used to stop/restart our threads.
90 * Cannot use SIGTERM nor SIGKILL, since these
91 * are sent out by init on runlevel changes
92 * I choose SIGHUP for now.
93 */
94#define DRBD_SIGKILL SIGHUP
95
96/* All EEs on the free list should have ID_VACANT (== 0)
97 * freshly allocated EEs get !ID_VACANT (== 1)
98 * so if it says "cannot dereference null pointer at adress 0x00000001",
99 * it is most likely one of these :( */
100
101#define ID_IN_SYNC (4711ULL)
102#define ID_OUT_OF_SYNC (4712ULL)
103
104#define ID_SYNCER (-1ULL)
105#define ID_VACANT 0
106#define is_syncer_block_id(id) ((id) == ID_SYNCER)
107
108struct drbd_conf;
109
110
111/* to shorten dev_warn(DEV, "msg"); and relatives statements */
112#define DEV (disk_to_dev(mdev->vdisk))
113
114#define D_ASSERT(exp) if (!(exp)) \
115 dev_err(DEV, "ASSERT( " #exp " ) in %s:%d\n", __FILE__, __LINE__)
116
117#define ERR_IF(exp) if (({ \
118 int _b = (exp) != 0; \
119 if (_b) dev_err(DEV, "%s: (%s) in %s:%d\n", \
120 __func__, #exp, __FILE__, __LINE__); \
121 _b; \
122 }))
123
124/* Defines to control fault insertion */
125enum {
126 DRBD_FAULT_MD_WR = 0, /* meta data write */
127 DRBD_FAULT_MD_RD = 1, /* read */
128 DRBD_FAULT_RS_WR = 2, /* resync */
129 DRBD_FAULT_RS_RD = 3,
130 DRBD_FAULT_DT_WR = 4, /* data */
131 DRBD_FAULT_DT_RD = 5,
132 DRBD_FAULT_DT_RA = 6, /* data read ahead */
133 DRBD_FAULT_BM_ALLOC = 7, /* bitmap allocation */
134 DRBD_FAULT_AL_EE = 8, /* alloc ee */
135
136 DRBD_FAULT_MAX,
137};
138
Philipp Reisnerb411b362009-09-25 16:07:19 -0700139#ifdef CONFIG_DRBD_FAULT_INJECTION
140extern unsigned int
141_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type);
142static inline int
143drbd_insert_fault(struct drbd_conf *mdev, unsigned int type) {
144 return fault_rate &&
145 (enable_faults & (1<<type)) &&
146 _drbd_insert_fault(mdev, type);
147}
148#define FAULT_ACTIVE(_m, _t) (drbd_insert_fault((_m), (_t)))
149
150#else
151#define FAULT_ACTIVE(_m, _t) (0)
152#endif
153
154/* integer division, round _UP_ to the next integer */
155#define div_ceil(A, B) ((A)/(B) + ((A)%(B) ? 1 : 0))
156/* usual integer division */
157#define div_floor(A, B) ((A)/(B))
158
159/* drbd_meta-data.c (still in drbd_main.c) */
160/* 4th incarnation of the disk layout. */
161#define DRBD_MD_MAGIC (DRBD_MAGIC+4)
162
163extern struct drbd_conf **minor_table;
164extern struct ratelimit_state drbd_ratelimit_state;
165
166/* on the wire */
167enum drbd_packets {
168 /* receiver (data socket) */
169 P_DATA = 0x00,
170 P_DATA_REPLY = 0x01, /* Response to P_DATA_REQUEST */
171 P_RS_DATA_REPLY = 0x02, /* Response to P_RS_DATA_REQUEST */
172 P_BARRIER = 0x03,
173 P_BITMAP = 0x04,
174 P_BECOME_SYNC_TARGET = 0x05,
175 P_BECOME_SYNC_SOURCE = 0x06,
176 P_UNPLUG_REMOTE = 0x07, /* Used at various times to hint the peer */
177 P_DATA_REQUEST = 0x08, /* Used to ask for a data block */
178 P_RS_DATA_REQUEST = 0x09, /* Used to ask for a data block for resync */
179 P_SYNC_PARAM = 0x0a,
180 P_PROTOCOL = 0x0b,
181 P_UUIDS = 0x0c,
182 P_SIZES = 0x0d,
183 P_STATE = 0x0e,
184 P_SYNC_UUID = 0x0f,
185 P_AUTH_CHALLENGE = 0x10,
186 P_AUTH_RESPONSE = 0x11,
187 P_STATE_CHG_REQ = 0x12,
188
189 /* asender (meta socket */
190 P_PING = 0x13,
191 P_PING_ACK = 0x14,
192 P_RECV_ACK = 0x15, /* Used in protocol B */
193 P_WRITE_ACK = 0x16, /* Used in protocol C */
194 P_RS_WRITE_ACK = 0x17, /* Is a P_WRITE_ACK, additionally call set_in_sync(). */
195 P_DISCARD_ACK = 0x18, /* Used in proto C, two-primaries conflict detection */
196 P_NEG_ACK = 0x19, /* Sent if local disk is unusable */
197 P_NEG_DREPLY = 0x1a, /* Local disk is broken... */
198 P_NEG_RS_DREPLY = 0x1b, /* Local disk is broken... */
199 P_BARRIER_ACK = 0x1c,
200 P_STATE_CHG_REPLY = 0x1d,
201
202 /* "new" commands, no longer fitting into the ordering scheme above */
203
204 P_OV_REQUEST = 0x1e, /* data socket */
205 P_OV_REPLY = 0x1f,
206 P_OV_RESULT = 0x20, /* meta socket */
207 P_CSUM_RS_REQUEST = 0x21, /* data socket */
208 P_RS_IS_IN_SYNC = 0x22, /* meta socket */
209 P_SYNC_PARAM89 = 0x23, /* data socket, protocol version 89 replacement for P_SYNC_PARAM */
210 P_COMPRESSED_BITMAP = 0x24, /* compressed or otherwise encoded bitmap transfer */
211
212 P_MAX_CMD = 0x25,
213 P_MAY_IGNORE = 0x100, /* Flag to test if (cmd > P_MAY_IGNORE) ... */
214 P_MAX_OPT_CMD = 0x101,
215
216 /* special command ids for handshake */
217
218 P_HAND_SHAKE_M = 0xfff1, /* First Packet on the MetaSock */
219 P_HAND_SHAKE_S = 0xfff2, /* First Packet on the Socket */
220
221 P_HAND_SHAKE = 0xfffe /* FIXED for the next century! */
222};
223
224static inline const char *cmdname(enum drbd_packets cmd)
225{
226 /* THINK may need to become several global tables
227 * when we want to support more than
228 * one PRO_VERSION */
229 static const char *cmdnames[] = {
230 [P_DATA] = "Data",
231 [P_DATA_REPLY] = "DataReply",
232 [P_RS_DATA_REPLY] = "RSDataReply",
233 [P_BARRIER] = "Barrier",
234 [P_BITMAP] = "ReportBitMap",
235 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
236 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
237 [P_UNPLUG_REMOTE] = "UnplugRemote",
238 [P_DATA_REQUEST] = "DataRequest",
239 [P_RS_DATA_REQUEST] = "RSDataRequest",
240 [P_SYNC_PARAM] = "SyncParam",
241 [P_SYNC_PARAM89] = "SyncParam89",
242 [P_PROTOCOL] = "ReportProtocol",
243 [P_UUIDS] = "ReportUUIDs",
244 [P_SIZES] = "ReportSizes",
245 [P_STATE] = "ReportState",
246 [P_SYNC_UUID] = "ReportSyncUUID",
247 [P_AUTH_CHALLENGE] = "AuthChallenge",
248 [P_AUTH_RESPONSE] = "AuthResponse",
249 [P_PING] = "Ping",
250 [P_PING_ACK] = "PingAck",
251 [P_RECV_ACK] = "RecvAck",
252 [P_WRITE_ACK] = "WriteAck",
253 [P_RS_WRITE_ACK] = "RSWriteAck",
254 [P_DISCARD_ACK] = "DiscardAck",
255 [P_NEG_ACK] = "NegAck",
256 [P_NEG_DREPLY] = "NegDReply",
257 [P_NEG_RS_DREPLY] = "NegRSDReply",
258 [P_BARRIER_ACK] = "BarrierAck",
259 [P_STATE_CHG_REQ] = "StateChgRequest",
260 [P_STATE_CHG_REPLY] = "StateChgReply",
261 [P_OV_REQUEST] = "OVRequest",
262 [P_OV_REPLY] = "OVReply",
263 [P_OV_RESULT] = "OVResult",
264 [P_MAX_CMD] = NULL,
265 };
266
267 if (cmd == P_HAND_SHAKE_M)
268 return "HandShakeM";
269 if (cmd == P_HAND_SHAKE_S)
270 return "HandShakeS";
271 if (cmd == P_HAND_SHAKE)
272 return "HandShake";
273 if (cmd >= P_MAX_CMD)
274 return "Unknown";
275 return cmdnames[cmd];
276}
277
278/* for sending/receiving the bitmap,
279 * possibly in some encoding scheme */
280struct bm_xfer_ctx {
281 /* "const"
282 * stores total bits and long words
283 * of the bitmap, so we don't need to
284 * call the accessor functions over and again. */
285 unsigned long bm_bits;
286 unsigned long bm_words;
287 /* during xfer, current position within the bitmap */
288 unsigned long bit_offset;
289 unsigned long word_offset;
290
291 /* statistics; index: (h->command == P_BITMAP) */
292 unsigned packets[2];
293 unsigned bytes[2];
294};
295
296extern void INFO_bm_xfer_stats(struct drbd_conf *mdev,
297 const char *direction, struct bm_xfer_ctx *c);
298
299static inline void bm_xfer_ctx_bit_to_word_offset(struct bm_xfer_ctx *c)
300{
301 /* word_offset counts "native long words" (32 or 64 bit),
302 * aligned at 64 bit.
303 * Encoded packet may end at an unaligned bit offset.
304 * In case a fallback clear text packet is transmitted in
305 * between, we adjust this offset back to the last 64bit
306 * aligned "native long word", which makes coding and decoding
307 * the plain text bitmap much more convenient. */
308#if BITS_PER_LONG == 64
309 c->word_offset = c->bit_offset >> 6;
310#elif BITS_PER_LONG == 32
311 c->word_offset = c->bit_offset >> 5;
312 c->word_offset &= ~(1UL);
313#else
314# error "unsupported BITS_PER_LONG"
315#endif
316}
317
318#ifndef __packed
319#define __packed __attribute__((packed))
320#endif
321
322/* This is the layout for a packet on the wire.
323 * The byteorder is the network byte order.
324 * (except block_id and barrier fields.
325 * these are pointers to local structs
326 * and have no relevance for the partner,
327 * which just echoes them as received.)
328 *
329 * NOTE that the payload starts at a long aligned offset,
330 * regardless of 32 or 64 bit arch!
331 */
332struct p_header {
333 u32 magic;
334 u16 command;
335 u16 length; /* bytes of data after this header */
336 u8 payload[0];
337} __packed;
338/* 8 bytes. packet FIXED for the next century! */
339
340/*
341 * short commands, packets without payload, plain p_header:
342 * P_PING
343 * P_PING_ACK
344 * P_BECOME_SYNC_TARGET
345 * P_BECOME_SYNC_SOURCE
346 * P_UNPLUG_REMOTE
347 */
348
349/*
350 * commands with out-of-struct payload:
351 * P_BITMAP (no additional fields)
352 * P_DATA, P_DATA_REPLY (see p_data)
353 * P_COMPRESSED_BITMAP (see receive_compressed_bitmap)
354 */
355
356/* these defines must not be changed without changing the protocol version */
357#define DP_HARDBARRIER 1
358#define DP_RW_SYNC 2
359#define DP_MAY_SET_IN_SYNC 4
360
361struct p_data {
362 struct p_header head;
363 u64 sector; /* 64 bits sector number */
364 u64 block_id; /* to identify the request in protocol B&C */
365 u32 seq_num;
366 u32 dp_flags;
367} __packed;
368
369/*
370 * commands which share a struct:
371 * p_block_ack:
372 * P_RECV_ACK (proto B), P_WRITE_ACK (proto C),
373 * P_DISCARD_ACK (proto C, two-primaries conflict detection)
374 * p_block_req:
375 * P_DATA_REQUEST, P_RS_DATA_REQUEST
376 */
377struct p_block_ack {
378 struct p_header head;
379 u64 sector;
380 u64 block_id;
381 u32 blksize;
382 u32 seq_num;
383} __packed;
384
385
386struct p_block_req {
387 struct p_header head;
388 u64 sector;
389 u64 block_id;
390 u32 blksize;
391 u32 pad; /* to multiple of 8 Byte */
392} __packed;
393
394/*
395 * commands with their own struct for additional fields:
396 * P_HAND_SHAKE
397 * P_BARRIER
398 * P_BARRIER_ACK
399 * P_SYNC_PARAM
400 * ReportParams
401 */
402
403struct p_handshake {
404 struct p_header head; /* 8 bytes */
405 u32 protocol_min;
406 u32 feature_flags;
407 u32 protocol_max;
408
409 /* should be more than enough for future enhancements
410 * for now, feature_flags and the reserverd array shall be zero.
411 */
412
413 u32 _pad;
414 u64 reserverd[7];
415} __packed;
416/* 80 bytes, FIXED for the next century */
417
418struct p_barrier {
419 struct p_header head;
420 u32 barrier; /* barrier number _handle_ only */
421 u32 pad; /* to multiple of 8 Byte */
422} __packed;
423
424struct p_barrier_ack {
425 struct p_header head;
426 u32 barrier;
427 u32 set_size;
428} __packed;
429
430struct p_rs_param {
431 struct p_header head;
432 u32 rate;
433
434 /* Since protocol version 88 and higher. */
435 char verify_alg[0];
436} __packed;
437
438struct p_rs_param_89 {
439 struct p_header head;
440 u32 rate;
441 /* protocol version 89: */
442 char verify_alg[SHARED_SECRET_MAX];
443 char csums_alg[SHARED_SECRET_MAX];
444} __packed;
445
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100446enum drbd_conn_flags {
447 CF_WANT_LOSE = 1,
448 CF_DRY_RUN = 2,
449};
450
Philipp Reisnerb411b362009-09-25 16:07:19 -0700451struct p_protocol {
452 struct p_header head;
453 u32 protocol;
454 u32 after_sb_0p;
455 u32 after_sb_1p;
456 u32 after_sb_2p;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100457 u32 conn_flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700458 u32 two_primaries;
459
460 /* Since protocol version 87 and higher. */
461 char integrity_alg[0];
462
463} __packed;
464
465struct p_uuids {
466 struct p_header head;
467 u64 uuid[UI_EXTENDED_SIZE];
468} __packed;
469
470struct p_rs_uuid {
471 struct p_header head;
472 u64 uuid;
473} __packed;
474
475struct p_sizes {
476 struct p_header head;
477 u64 d_size; /* size of disk */
478 u64 u_size; /* user requested size */
479 u64 c_size; /* current exported size */
480 u32 max_segment_size; /* Maximal size of a BIO */
481 u32 queue_order_type;
482} __packed;
483
484struct p_state {
485 struct p_header head;
486 u32 state;
487} __packed;
488
489struct p_req_state {
490 struct p_header head;
491 u32 mask;
492 u32 val;
493} __packed;
494
495struct p_req_state_reply {
496 struct p_header head;
497 u32 retcode;
498} __packed;
499
500struct p_drbd06_param {
501 u64 size;
502 u32 state;
503 u32 blksize;
504 u32 protocol;
505 u32 version;
506 u32 gen_cnt[5];
507 u32 bit_map_gen[5];
508} __packed;
509
510struct p_discard {
511 struct p_header head;
512 u64 block_id;
513 u32 seq_num;
514 u32 pad;
515} __packed;
516
517/* Valid values for the encoding field.
518 * Bump proto version when changing this. */
519enum drbd_bitmap_code {
520 /* RLE_VLI_Bytes = 0,
521 * and other bit variants had been defined during
522 * algorithm evaluation. */
523 RLE_VLI_Bits = 2,
524};
525
526struct p_compressed_bm {
527 struct p_header head;
528 /* (encoding & 0x0f): actual encoding, see enum drbd_bitmap_code
529 * (encoding & 0x80): polarity (set/unset) of first runlength
530 * ((encoding >> 4) & 0x07): pad_bits, number of trailing zero bits
531 * used to pad up to head.length bytes
532 */
533 u8 encoding;
534
535 u8 code[0];
536} __packed;
537
538/* DCBP: Drbd Compressed Bitmap Packet ... */
539static inline enum drbd_bitmap_code
540DCBP_get_code(struct p_compressed_bm *p)
541{
542 return (enum drbd_bitmap_code)(p->encoding & 0x0f);
543}
544
545static inline void
546DCBP_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
547{
548 BUG_ON(code & ~0xf);
549 p->encoding = (p->encoding & ~0xf) | code;
550}
551
552static inline int
553DCBP_get_start(struct p_compressed_bm *p)
554{
555 return (p->encoding & 0x80) != 0;
556}
557
558static inline void
559DCBP_set_start(struct p_compressed_bm *p, int set)
560{
561 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
562}
563
564static inline int
565DCBP_get_pad_bits(struct p_compressed_bm *p)
566{
567 return (p->encoding >> 4) & 0x7;
568}
569
570static inline void
571DCBP_set_pad_bits(struct p_compressed_bm *p, int n)
572{
573 BUG_ON(n & ~0x7);
574 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
575}
576
577/* one bitmap packet, including the p_header,
578 * should fit within one _architecture independend_ page.
579 * so we need to use the fixed size 4KiB page size
580 * most architechtures have used for a long time.
581 */
582#define BM_PACKET_PAYLOAD_BYTES (4096 - sizeof(struct p_header))
583#define BM_PACKET_WORDS (BM_PACKET_PAYLOAD_BYTES/sizeof(long))
584#define BM_PACKET_VLI_BYTES_MAX (4096 - sizeof(struct p_compressed_bm))
585#if (PAGE_SIZE < 4096)
586/* drbd_send_bitmap / receive_bitmap would break horribly */
587#error "PAGE_SIZE too small"
588#endif
589
590union p_polymorph {
591 struct p_header header;
592 struct p_handshake handshake;
593 struct p_data data;
594 struct p_block_ack block_ack;
595 struct p_barrier barrier;
596 struct p_barrier_ack barrier_ack;
597 struct p_rs_param_89 rs_param_89;
598 struct p_protocol protocol;
599 struct p_sizes sizes;
600 struct p_uuids uuids;
601 struct p_state state;
602 struct p_req_state req_state;
603 struct p_req_state_reply req_state_reply;
604 struct p_block_req block_req;
605} __packed;
606
607/**********************************************************************/
608enum drbd_thread_state {
609 None,
610 Running,
611 Exiting,
612 Restarting
613};
614
615struct drbd_thread {
616 spinlock_t t_lock;
617 struct task_struct *task;
618 struct completion stop;
619 enum drbd_thread_state t_state;
620 int (*function) (struct drbd_thread *);
621 struct drbd_conf *mdev;
622 int reset_cpu_mask;
623};
624
625static inline enum drbd_thread_state get_t_state(struct drbd_thread *thi)
626{
627 /* THINK testing the t_state seems to be uncritical in all cases
628 * (but thread_{start,stop}), so we can read it *without* the lock.
629 * --lge */
630
631 smp_rmb();
632 return thi->t_state;
633}
634
635
636/*
637 * Having this as the first member of a struct provides sort of "inheritance".
638 * "derived" structs can be "drbd_queue_work()"ed.
639 * The callback should know and cast back to the descendant struct.
640 * drbd_request and drbd_epoch_entry are descendants of drbd_work.
641 */
642struct drbd_work;
643typedef int (*drbd_work_cb)(struct drbd_conf *, struct drbd_work *, int cancel);
644struct drbd_work {
645 struct list_head list;
646 drbd_work_cb cb;
647};
648
649struct drbd_tl_epoch;
650struct drbd_request {
651 struct drbd_work w;
652 struct drbd_conf *mdev;
653
654 /* if local IO is not allowed, will be NULL.
655 * if local IO _is_ allowed, holds the locally submitted bio clone,
656 * or, after local IO completion, the ERR_PTR(error).
657 * see drbd_endio_pri(). */
658 struct bio *private_bio;
659
660 struct hlist_node colision;
661 sector_t sector;
662 unsigned int size;
663 unsigned int epoch; /* barrier_nr */
664
665 /* barrier_nr: used to check on "completion" whether this req was in
666 * the current epoch, and we therefore have to close it,
667 * starting a new epoch...
668 */
669
670 /* up to here, the struct layout is identical to drbd_epoch_entry;
671 * we might be able to use that to our advantage... */
672
673 struct list_head tl_requests; /* ring list in the transfer log */
674 struct bio *master_bio; /* master bio pointer */
675 unsigned long rq_state; /* see comments above _req_mod() */
676 int seq_num;
677 unsigned long start_time;
678};
679
680struct drbd_tl_epoch {
681 struct drbd_work w;
682 struct list_head requests; /* requests before */
683 struct drbd_tl_epoch *next; /* pointer to the next barrier */
684 unsigned int br_number; /* the barriers identifier. */
685 int n_req; /* number of requests attached before this barrier */
686};
687
688struct drbd_request;
689
690/* These Tl_epoch_entries may be in one of 6 lists:
691 active_ee .. data packet being written
692 sync_ee .. syncer block being written
693 done_ee .. block written, need to send P_WRITE_ACK
694 read_ee .. [RS]P_DATA_REQUEST being read
695*/
696
697struct drbd_epoch {
698 struct list_head list;
699 unsigned int barrier_nr;
700 atomic_t epoch_size; /* increased on every request added. */
701 atomic_t active; /* increased on every req. added, and dec on every finished. */
702 unsigned long flags;
703};
704
705/* drbd_epoch flag bits */
706enum {
707 DE_BARRIER_IN_NEXT_EPOCH_ISSUED,
708 DE_BARRIER_IN_NEXT_EPOCH_DONE,
709 DE_CONTAINS_A_BARRIER,
710 DE_HAVE_BARRIER_NUMBER,
711 DE_IS_FINISHING,
712};
713
714enum epoch_event {
715 EV_PUT,
716 EV_GOT_BARRIER_NR,
717 EV_BARRIER_DONE,
718 EV_BECAME_LAST,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700719 EV_CLEANUP = 32, /* used as flag */
720};
721
722struct drbd_epoch_entry {
723 struct drbd_work w;
724 struct drbd_conf *mdev;
725 struct bio *private_bio;
726 struct hlist_node colision;
727 sector_t sector;
728 unsigned int size;
729 struct drbd_epoch *epoch;
730
731 /* up to here, the struct layout is identical to drbd_request;
732 * we might be able to use that to our advantage... */
733
734 unsigned int flags;
735 u64 block_id;
736};
737
738struct drbd_wq_barrier {
739 struct drbd_work w;
740 struct completion done;
741};
742
743struct digest_info {
744 int digest_size;
745 void *digest;
746};
747
748/* ee flag bits */
749enum {
750 __EE_CALL_AL_COMPLETE_IO,
751 __EE_CONFLICT_PENDING,
752 __EE_MAY_SET_IN_SYNC,
753 __EE_IS_BARRIER,
754};
755#define EE_CALL_AL_COMPLETE_IO (1<<__EE_CALL_AL_COMPLETE_IO)
756#define EE_CONFLICT_PENDING (1<<__EE_CONFLICT_PENDING)
757#define EE_MAY_SET_IN_SYNC (1<<__EE_MAY_SET_IN_SYNC)
758#define EE_IS_BARRIER (1<<__EE_IS_BARRIER)
759
760/* global flag bits */
761enum {
762 CREATE_BARRIER, /* next P_DATA is preceeded by a P_BARRIER */
763 SIGNAL_ASENDER, /* whether asender wants to be interrupted */
764 SEND_PING, /* whether asender should send a ping asap */
765
766 STOP_SYNC_TIMER, /* tell timer to cancel itself */
767 UNPLUG_QUEUED, /* only relevant with kernel 2.4 */
768 UNPLUG_REMOTE, /* sending a "UnplugRemote" could help */
769 MD_DIRTY, /* current uuids and flags not yet on disk */
770 DISCARD_CONCURRENT, /* Set on one node, cleared on the peer! */
771 USE_DEGR_WFC_T, /* degr-wfc-timeout instead of wfc-timeout. */
772 CLUSTER_ST_CHANGE, /* Cluster wide state change going on... */
773 CL_ST_CHG_SUCCESS,
774 CL_ST_CHG_FAIL,
775 CRASHED_PRIMARY, /* This node was a crashed primary.
776 * Gets cleared when the state.conn
777 * goes into C_CONNECTED state. */
778 WRITE_BM_AFTER_RESYNC, /* A kmalloc() during resync failed */
779 NO_BARRIER_SUPP, /* underlying block device doesn't implement barriers */
780 CONSIDER_RESYNC,
781
782 MD_NO_BARRIER, /* meta data device does not support barriers,
783 so don't even try */
784 SUSPEND_IO, /* suspend application io */
785 BITMAP_IO, /* suspend application io;
786 once no more io in flight, start bitmap io */
787 BITMAP_IO_QUEUED, /* Started bitmap IO */
788 RESYNC_AFTER_NEG, /* Resync after online grow after the attach&negotiate finished. */
789 NET_CONGESTED, /* The data socket is congested */
790
791 CONFIG_PENDING, /* serialization of (re)configuration requests.
792 * if set, also prevents the device from dying */
793 DEVICE_DYING, /* device became unconfigured,
794 * but worker thread is still handling the cleanup.
795 * reconfiguring (nl_disk_conf, nl_net_conf) is dissalowed,
796 * while this is set. */
797 RESIZE_PENDING, /* Size change detected locally, waiting for the response from
798 * the peer, if it changed there as well. */
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100799 CONN_DRY_RUN, /* Expect disconnect after resync handshake. */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700800};
801
802struct drbd_bitmap; /* opaque for drbd_conf */
803
804/* TODO sort members for performance
805 * MAYBE group them further */
806
807/* THINK maybe we actually want to use the default "event/%s" worker threads
808 * or similar in linux 2.6, which uses per cpu data and threads.
809 *
810 * To be general, this might need a spin_lock member.
811 * For now, please use the mdev->req_lock to protect list_head,
812 * see drbd_queue_work below.
813 */
814struct drbd_work_queue {
815 struct list_head q;
816 struct semaphore s; /* producers up it, worker down()s it */
817 spinlock_t q_lock; /* to protect the list. */
818};
819
820struct drbd_socket {
821 struct drbd_work_queue work;
822 struct mutex mutex;
823 struct socket *socket;
824 /* this way we get our
825 * send/receive buffers off the stack */
826 union p_polymorph sbuf;
827 union p_polymorph rbuf;
828};
829
830struct drbd_md {
831 u64 md_offset; /* sector offset to 'super' block */
832
833 u64 la_size_sect; /* last agreed size, unit sectors */
834 u64 uuid[UI_SIZE];
835 u64 device_uuid;
836 u32 flags;
837 u32 md_size_sect;
838
839 s32 al_offset; /* signed relative sector offset to al area */
840 s32 bm_offset; /* signed relative sector offset to bitmap */
841
842 /* u32 al_nr_extents; important for restoring the AL
843 * is stored into sync_conf.al_extents, which in turn
844 * gets applied to act_log->nr_elements
845 */
846};
847
848/* for sync_conf and other types... */
849#define NL_PACKET(name, number, fields) struct name { fields };
850#define NL_INTEGER(pn,pr,member) int member;
851#define NL_INT64(pn,pr,member) __u64 member;
852#define NL_BIT(pn,pr,member) unsigned member:1;
853#define NL_STRING(pn,pr,member,len) unsigned char member[len]; int member ## _len;
854#include "linux/drbd_nl.h"
855
856struct drbd_backing_dev {
857 struct block_device *backing_bdev;
858 struct block_device *md_bdev;
859 struct file *lo_file;
860 struct file *md_file;
861 struct drbd_md md;
862 struct disk_conf dc; /* The user provided config... */
863 sector_t known_size; /* last known size of that backing device */
864};
865
866struct drbd_md_io {
867 struct drbd_conf *mdev;
868 struct completion event;
869 int error;
870};
871
872struct bm_io_work {
873 struct drbd_work w;
874 char *why;
875 int (*io_fn)(struct drbd_conf *mdev);
876 void (*done)(struct drbd_conf *mdev, int rv);
877};
878
879enum write_ordering_e {
880 WO_none,
881 WO_drain_io,
882 WO_bdev_flush,
883 WO_bio_barrier
884};
885
886struct drbd_conf {
887 /* things that are stored as / read from meta data on disk */
888 unsigned long flags;
889
890 /* configured by drbdsetup */
891 struct net_conf *net_conf; /* protected by get_net_conf() and put_net_conf() */
892 struct syncer_conf sync_conf;
893 struct drbd_backing_dev *ldev __protected_by(local);
894
895 sector_t p_size; /* partner's disk size */
896 struct request_queue *rq_queue;
897 struct block_device *this_bdev;
898 struct gendisk *vdisk;
899
900 struct drbd_socket data; /* data/barrier/cstate/parameter packets */
901 struct drbd_socket meta; /* ping/ack (metadata) packets */
902 int agreed_pro_version; /* actually used protocol version */
903 unsigned long last_received; /* in jiffies, either socket */
904 unsigned int ko_count;
905 struct drbd_work resync_work,
906 unplug_work,
907 md_sync_work;
908 struct timer_list resync_timer;
909 struct timer_list md_sync_timer;
910
911 /* Used after attach while negotiating new disk state. */
912 union drbd_state new_state_tmp;
913
914 union drbd_state state;
915 wait_queue_head_t misc_wait;
916 wait_queue_head_t state_wait; /* upon each state change. */
917 unsigned int send_cnt;
918 unsigned int recv_cnt;
919 unsigned int read_cnt;
920 unsigned int writ_cnt;
921 unsigned int al_writ_cnt;
922 unsigned int bm_writ_cnt;
923 atomic_t ap_bio_cnt; /* Requests we need to complete */
924 atomic_t ap_pending_cnt; /* AP data packets on the wire, ack expected */
925 atomic_t rs_pending_cnt; /* RS request/data packets on the wire */
926 atomic_t unacked_cnt; /* Need to send replys for */
927 atomic_t local_cnt; /* Waiting for local completion */
928 atomic_t net_cnt; /* Users of net_conf */
929 spinlock_t req_lock;
930 struct drbd_tl_epoch *unused_spare_tle; /* for pre-allocation */
931 struct drbd_tl_epoch *newest_tle;
932 struct drbd_tl_epoch *oldest_tle;
933 struct list_head out_of_sequence_requests;
934 struct hlist_head *tl_hash;
935 unsigned int tl_hash_s;
936
937 /* blocks to sync in this run [unit BM_BLOCK_SIZE] */
938 unsigned long rs_total;
939 /* number of sync IOs that failed in this run */
940 unsigned long rs_failed;
941 /* Syncer's start time [unit jiffies] */
942 unsigned long rs_start;
943 /* cumulated time in PausedSyncX state [unit jiffies] */
944 unsigned long rs_paused;
945 /* block not up-to-date at mark [unit BM_BLOCK_SIZE] */
946 unsigned long rs_mark_left;
947 /* marks's time [unit jiffies] */
948 unsigned long rs_mark_time;
949 /* skipped because csum was equeal [unit BM_BLOCK_SIZE] */
950 unsigned long rs_same_csum;
951
952 /* where does the admin want us to start? (sector) */
953 sector_t ov_start_sector;
954 /* where are we now? (sector) */
955 sector_t ov_position;
956 /* Start sector of out of sync range (to merge printk reporting). */
957 sector_t ov_last_oos_start;
958 /* size of out-of-sync range in sectors. */
959 sector_t ov_last_oos_size;
960 unsigned long ov_left; /* in bits */
961 struct crypto_hash *csums_tfm;
962 struct crypto_hash *verify_tfm;
963
964 struct drbd_thread receiver;
965 struct drbd_thread worker;
966 struct drbd_thread asender;
967 struct drbd_bitmap *bitmap;
968 unsigned long bm_resync_fo; /* bit offset for drbd_bm_find_next */
969
970 /* Used to track operations of resync... */
971 struct lru_cache *resync;
972 /* Number of locked elements in resync LRU */
973 unsigned int resync_locked;
974 /* resync extent number waiting for application requests */
975 unsigned int resync_wenr;
976
977 int open_cnt;
978 u64 *p_uuid;
979 struct drbd_epoch *current_epoch;
980 spinlock_t epoch_lock;
981 unsigned int epochs;
982 enum write_ordering_e write_ordering;
983 struct list_head active_ee; /* IO in progress */
984 struct list_head sync_ee; /* IO in progress */
985 struct list_head done_ee; /* send ack */
986 struct list_head read_ee; /* IO in progress */
987 struct list_head net_ee; /* zero-copy network send in progress */
988 struct hlist_head *ee_hash; /* is proteced by req_lock! */
989 unsigned int ee_hash_s;
990
991 /* this one is protected by ee_lock, single thread */
992 struct drbd_epoch_entry *last_write_w_barrier;
993
994 int next_barrier_nr;
995 struct hlist_head *app_reads_hash; /* is proteced by req_lock */
996 struct list_head resync_reads;
997 atomic_t pp_in_use;
998 wait_queue_head_t ee_wait;
999 struct page *md_io_page; /* one page buffer for md_io */
1000 struct page *md_io_tmpp; /* for logical_block_size != 512 */
1001 struct mutex md_io_mutex; /* protects the md_io_buffer */
1002 spinlock_t al_lock;
1003 wait_queue_head_t al_wait;
1004 struct lru_cache *act_log; /* activity log */
1005 unsigned int al_tr_number;
1006 int al_tr_cycle;
1007 int al_tr_pos; /* position of the next transaction in the journal */
1008 struct crypto_hash *cram_hmac_tfm;
1009 struct crypto_hash *integrity_w_tfm; /* to be used by the worker thread */
1010 struct crypto_hash *integrity_r_tfm; /* to be used by the receiver thread */
1011 void *int_dig_out;
1012 void *int_dig_in;
1013 void *int_dig_vv;
1014 wait_queue_head_t seq_wait;
1015 atomic_t packet_seq;
1016 unsigned int peer_seq;
1017 spinlock_t peer_seq_lock;
1018 unsigned int minor;
1019 unsigned long comm_bm_set; /* communicated number of set bits. */
1020 cpumask_var_t cpu_mask;
1021 struct bm_io_work bm_io_work;
1022 u64 ed_uuid; /* UUID of the exposed data */
1023 struct mutex state_mutex;
1024 char congestion_reason; /* Why we where congested... */
1025};
1026
1027static inline struct drbd_conf *minor_to_mdev(unsigned int minor)
1028{
1029 struct drbd_conf *mdev;
1030
1031 mdev = minor < minor_count ? minor_table[minor] : NULL;
1032
1033 return mdev;
1034}
1035
1036static inline unsigned int mdev_to_minor(struct drbd_conf *mdev)
1037{
1038 return mdev->minor;
1039}
1040
1041/* returns 1 if it was successfull,
1042 * returns 0 if there was no data socket.
1043 * so wherever you are going to use the data.socket, e.g. do
1044 * if (!drbd_get_data_sock(mdev))
1045 * return 0;
1046 * CODE();
1047 * drbd_put_data_sock(mdev);
1048 */
1049static inline int drbd_get_data_sock(struct drbd_conf *mdev)
1050{
1051 mutex_lock(&mdev->data.mutex);
1052 /* drbd_disconnect() could have called drbd_free_sock()
1053 * while we were waiting in down()... */
1054 if (unlikely(mdev->data.socket == NULL)) {
1055 mutex_unlock(&mdev->data.mutex);
1056 return 0;
1057 }
1058 return 1;
1059}
1060
1061static inline void drbd_put_data_sock(struct drbd_conf *mdev)
1062{
1063 mutex_unlock(&mdev->data.mutex);
1064}
1065
1066/*
1067 * function declarations
1068 *************************/
1069
1070/* drbd_main.c */
1071
1072enum chg_state_flags {
1073 CS_HARD = 1,
1074 CS_VERBOSE = 2,
1075 CS_WAIT_COMPLETE = 4,
1076 CS_SERIALIZE = 8,
1077 CS_ORDERED = CS_WAIT_COMPLETE + CS_SERIALIZE,
1078};
1079
1080extern void drbd_init_set_defaults(struct drbd_conf *mdev);
1081extern int drbd_change_state(struct drbd_conf *mdev, enum chg_state_flags f,
1082 union drbd_state mask, union drbd_state val);
1083extern void drbd_force_state(struct drbd_conf *, union drbd_state,
1084 union drbd_state);
1085extern int _drbd_request_state(struct drbd_conf *, union drbd_state,
1086 union drbd_state, enum chg_state_flags);
1087extern int __drbd_set_state(struct drbd_conf *, union drbd_state,
1088 enum chg_state_flags, struct completion *done);
1089extern void print_st_err(struct drbd_conf *, union drbd_state,
1090 union drbd_state, int);
1091extern int drbd_thread_start(struct drbd_thread *thi);
1092extern void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait);
1093#ifdef CONFIG_SMP
1094extern void drbd_thread_current_set_cpu(struct drbd_conf *mdev);
1095extern void drbd_calc_cpu_mask(struct drbd_conf *mdev);
1096#else
1097#define drbd_thread_current_set_cpu(A) ({})
1098#define drbd_calc_cpu_mask(A) ({})
1099#endif
1100extern void drbd_free_resources(struct drbd_conf *mdev);
1101extern void tl_release(struct drbd_conf *mdev, unsigned int barrier_nr,
1102 unsigned int set_size);
1103extern void tl_clear(struct drbd_conf *mdev);
1104extern void _tl_add_barrier(struct drbd_conf *, struct drbd_tl_epoch *);
1105extern void drbd_free_sock(struct drbd_conf *mdev);
1106extern int drbd_send(struct drbd_conf *mdev, struct socket *sock,
1107 void *buf, size_t size, unsigned msg_flags);
1108extern int drbd_send_protocol(struct drbd_conf *mdev);
1109extern int drbd_send_uuids(struct drbd_conf *mdev);
1110extern int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev);
1111extern int drbd_send_sync_uuid(struct drbd_conf *mdev, u64 val);
1112extern int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply);
1113extern int _drbd_send_state(struct drbd_conf *mdev);
1114extern int drbd_send_state(struct drbd_conf *mdev);
1115extern int _drbd_send_cmd(struct drbd_conf *mdev, struct socket *sock,
1116 enum drbd_packets cmd, struct p_header *h,
1117 size_t size, unsigned msg_flags);
1118#define USE_DATA_SOCKET 1
1119#define USE_META_SOCKET 0
1120extern int drbd_send_cmd(struct drbd_conf *mdev, int use_data_socket,
1121 enum drbd_packets cmd, struct p_header *h,
1122 size_t size);
1123extern int drbd_send_cmd2(struct drbd_conf *mdev, enum drbd_packets cmd,
1124 char *data, size_t size);
1125extern int drbd_send_sync_param(struct drbd_conf *mdev, struct syncer_conf *sc);
1126extern int drbd_send_b_ack(struct drbd_conf *mdev, u32 barrier_nr,
1127 u32 set_size);
1128extern int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packets cmd,
1129 struct drbd_epoch_entry *e);
1130extern int drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packets cmd,
1131 struct p_block_req *rp);
1132extern int drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packets cmd,
1133 struct p_data *dp);
1134extern int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packets cmd,
1135 sector_t sector, int blksize, u64 block_id);
1136extern int drbd_send_block(struct drbd_conf *mdev, enum drbd_packets cmd,
1137 struct drbd_epoch_entry *e);
1138extern int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req);
1139extern int _drbd_send_barrier(struct drbd_conf *mdev,
1140 struct drbd_tl_epoch *barrier);
1141extern int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1142 sector_t sector, int size, u64 block_id);
1143extern int drbd_send_drequest_csum(struct drbd_conf *mdev,
1144 sector_t sector,int size,
1145 void *digest, int digest_size,
1146 enum drbd_packets cmd);
1147extern int drbd_send_ov_request(struct drbd_conf *mdev,sector_t sector,int size);
1148
1149extern int drbd_send_bitmap(struct drbd_conf *mdev);
1150extern int _drbd_send_bitmap(struct drbd_conf *mdev);
1151extern int drbd_send_sr_reply(struct drbd_conf *mdev, int retcode);
1152extern void drbd_free_bc(struct drbd_backing_dev *ldev);
1153extern void drbd_mdev_cleanup(struct drbd_conf *mdev);
1154
1155/* drbd_meta-data.c (still in drbd_main.c) */
1156extern void drbd_md_sync(struct drbd_conf *mdev);
1157extern int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev);
1158/* maybe define them below as inline? */
1159extern void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local);
1160extern void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local);
1161extern void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local);
1162extern void _drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local);
1163extern void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local);
1164extern void drbd_md_set_flag(struct drbd_conf *mdev, int flags) __must_hold(local);
1165extern void drbd_md_clear_flag(struct drbd_conf *mdev, int flags)__must_hold(local);
1166extern int drbd_md_test_flag(struct drbd_backing_dev *, int);
1167extern void drbd_md_mark_dirty(struct drbd_conf *mdev);
1168extern void drbd_queue_bitmap_io(struct drbd_conf *mdev,
1169 int (*io_fn)(struct drbd_conf *),
1170 void (*done)(struct drbd_conf *, int),
1171 char *why);
1172extern int drbd_bmio_set_n_write(struct drbd_conf *mdev);
1173extern int drbd_bmio_clear_n_write(struct drbd_conf *mdev);
1174extern int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *), char *why);
1175
1176
1177/* Meta data layout
1178 We reserve a 128MB Block (4k aligned)
1179 * either at the end of the backing device
1180 * or on a seperate meta data device. */
1181
1182#define MD_RESERVED_SECT (128LU << 11) /* 128 MB, unit sectors */
1183/* The following numbers are sectors */
1184#define MD_AL_OFFSET 8 /* 8 Sectors after start of meta area */
1185#define MD_AL_MAX_SIZE 64 /* = 32 kb LOG ~ 3776 extents ~ 14 GB Storage */
1186/* Allows up to about 3.8TB */
1187#define MD_BM_OFFSET (MD_AL_OFFSET + MD_AL_MAX_SIZE)
1188
1189/* Since the smalles IO unit is usually 512 byte */
1190#define MD_SECTOR_SHIFT 9
1191#define MD_SECTOR_SIZE (1<<MD_SECTOR_SHIFT)
1192
1193/* activity log */
1194#define AL_EXTENTS_PT ((MD_SECTOR_SIZE-12)/8-1) /* 61 ; Extents per 512B sector */
1195#define AL_EXTENT_SHIFT 22 /* One extent represents 4M Storage */
1196#define AL_EXTENT_SIZE (1<<AL_EXTENT_SHIFT)
1197
1198#if BITS_PER_LONG == 32
1199#define LN2_BPL 5
1200#define cpu_to_lel(A) cpu_to_le32(A)
1201#define lel_to_cpu(A) le32_to_cpu(A)
1202#elif BITS_PER_LONG == 64
1203#define LN2_BPL 6
1204#define cpu_to_lel(A) cpu_to_le64(A)
1205#define lel_to_cpu(A) le64_to_cpu(A)
1206#else
1207#error "LN2 of BITS_PER_LONG unknown!"
1208#endif
1209
1210/* resync bitmap */
1211/* 16MB sized 'bitmap extent' to track syncer usage */
1212struct bm_extent {
1213 int rs_left; /* number of bits set (out of sync) in this extent. */
1214 int rs_failed; /* number of failed resync requests in this extent. */
1215 unsigned long flags;
1216 struct lc_element lce;
1217};
1218
1219#define BME_NO_WRITES 0 /* bm_extent.flags: no more requests on this one! */
1220#define BME_LOCKED 1 /* bm_extent.flags: syncer active on this one. */
1221
1222/* drbd_bitmap.c */
1223/*
1224 * We need to store one bit for a block.
1225 * Example: 1GB disk @ 4096 byte blocks ==> we need 32 KB bitmap.
1226 * Bit 0 ==> local node thinks this block is binary identical on both nodes
1227 * Bit 1 ==> local node thinks this block needs to be synced.
1228 */
1229
1230#define BM_BLOCK_SHIFT 12 /* 4k per bit */
1231#define BM_BLOCK_SIZE (1<<BM_BLOCK_SHIFT)
1232/* (9+3) : 512 bytes @ 8 bits; representing 16M storage
1233 * per sector of on disk bitmap */
1234#define BM_EXT_SHIFT (BM_BLOCK_SHIFT + MD_SECTOR_SHIFT + 3) /* = 24 */
1235#define BM_EXT_SIZE (1<<BM_EXT_SHIFT)
1236
1237#if (BM_EXT_SHIFT != 24) || (BM_BLOCK_SHIFT != 12)
1238#error "HAVE YOU FIXED drbdmeta AS WELL??"
1239#endif
1240
1241/* thus many _storage_ sectors are described by one bit */
1242#define BM_SECT_TO_BIT(x) ((x)>>(BM_BLOCK_SHIFT-9))
1243#define BM_BIT_TO_SECT(x) ((sector_t)(x)<<(BM_BLOCK_SHIFT-9))
1244#define BM_SECT_PER_BIT BM_BIT_TO_SECT(1)
1245
1246/* bit to represented kilo byte conversion */
1247#define Bit2KB(bits) ((bits)<<(BM_BLOCK_SHIFT-10))
1248
1249/* in which _bitmap_ extent (resp. sector) the bit for a certain
1250 * _storage_ sector is located in */
1251#define BM_SECT_TO_EXT(x) ((x)>>(BM_EXT_SHIFT-9))
1252
1253/* how much _storage_ sectors we have per bitmap sector */
1254#define BM_EXT_TO_SECT(x) ((sector_t)(x) << (BM_EXT_SHIFT-9))
1255#define BM_SECT_PER_EXT BM_EXT_TO_SECT(1)
1256
1257/* in one sector of the bitmap, we have this many activity_log extents. */
1258#define AL_EXT_PER_BM_SECT (1 << (BM_EXT_SHIFT - AL_EXTENT_SHIFT))
1259#define BM_WORDS_PER_AL_EXT (1 << (AL_EXTENT_SHIFT-BM_BLOCK_SHIFT-LN2_BPL))
1260
1261#define BM_BLOCKS_PER_BM_EXT_B (BM_EXT_SHIFT - BM_BLOCK_SHIFT)
1262#define BM_BLOCKS_PER_BM_EXT_MASK ((1<<BM_BLOCKS_PER_BM_EXT_B) - 1)
1263
1264/* the extent in "PER_EXTENT" below is an activity log extent
1265 * we need that many (long words/bytes) to store the bitmap
1266 * of one AL_EXTENT_SIZE chunk of storage.
1267 * we can store the bitmap for that many AL_EXTENTS within
1268 * one sector of the _on_disk_ bitmap:
1269 * bit 0 bit 37 bit 38 bit (512*8)-1
1270 * ...|........|........|.. // ..|........|
1271 * sect. 0 `296 `304 ^(512*8*8)-1
1272 *
1273#define BM_WORDS_PER_EXT ( (AL_EXT_SIZE/BM_BLOCK_SIZE) / BITS_PER_LONG )
1274#define BM_BYTES_PER_EXT ( (AL_EXT_SIZE/BM_BLOCK_SIZE) / 8 ) // 128
1275#define BM_EXT_PER_SECT ( 512 / BM_BYTES_PER_EXTENT ) // 4
1276 */
1277
1278#define DRBD_MAX_SECTORS_32 (0xffffffffLU)
1279#define DRBD_MAX_SECTORS_BM \
1280 ((MD_RESERVED_SECT - MD_BM_OFFSET) * (1LL<<(BM_EXT_SHIFT-9)))
1281#if DRBD_MAX_SECTORS_BM < DRBD_MAX_SECTORS_32
1282#define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_BM
1283#define DRBD_MAX_SECTORS_FLEX DRBD_MAX_SECTORS_BM
Lars Ellenberg36bfc7e2010-01-05 19:33:54 +01001284#elif !defined(CONFIG_LBDAF) && BITS_PER_LONG == 32
Philipp Reisnerb411b362009-09-25 16:07:19 -07001285#define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_32
1286#define DRBD_MAX_SECTORS_FLEX DRBD_MAX_SECTORS_32
1287#else
1288#define DRBD_MAX_SECTORS DRBD_MAX_SECTORS_BM
1289/* 16 TB in units of sectors */
1290#if BITS_PER_LONG == 32
1291/* adjust by one page worth of bitmap,
1292 * so we won't wrap around in drbd_bm_find_next_bit.
1293 * you should use 64bit OS for that much storage, anyways. */
1294#define DRBD_MAX_SECTORS_FLEX BM_BIT_TO_SECT(0xffff7fff)
1295#else
1296#define DRBD_MAX_SECTORS_FLEX BM_BIT_TO_SECT(0x1LU << 32)
1297#endif
1298#endif
1299
1300/* Sector shift value for the "hash" functions of tl_hash and ee_hash tables.
1301 * With a value of 6 all IO in one 32K block make it to the same slot of the
1302 * hash table. */
1303#define HT_SHIFT 6
1304#define DRBD_MAX_SEGMENT_SIZE (1U<<(9+HT_SHIFT))
1305
1306/* Number of elements in the app_reads_hash */
1307#define APP_R_HSIZE 15
1308
1309extern int drbd_bm_init(struct drbd_conf *mdev);
1310extern int drbd_bm_resize(struct drbd_conf *mdev, sector_t sectors);
1311extern void drbd_bm_cleanup(struct drbd_conf *mdev);
1312extern void drbd_bm_set_all(struct drbd_conf *mdev);
1313extern void drbd_bm_clear_all(struct drbd_conf *mdev);
1314extern int drbd_bm_set_bits(
1315 struct drbd_conf *mdev, unsigned long s, unsigned long e);
1316extern int drbd_bm_clear_bits(
1317 struct drbd_conf *mdev, unsigned long s, unsigned long e);
1318/* bm_set_bits variant for use while holding drbd_bm_lock */
1319extern void _drbd_bm_set_bits(struct drbd_conf *mdev,
1320 const unsigned long s, const unsigned long e);
1321extern int drbd_bm_test_bit(struct drbd_conf *mdev, unsigned long bitnr);
1322extern int drbd_bm_e_weight(struct drbd_conf *mdev, unsigned long enr);
1323extern int drbd_bm_write_sect(struct drbd_conf *mdev, unsigned long enr) __must_hold(local);
1324extern int drbd_bm_read(struct drbd_conf *mdev) __must_hold(local);
1325extern int drbd_bm_write(struct drbd_conf *mdev) __must_hold(local);
1326extern unsigned long drbd_bm_ALe_set_all(struct drbd_conf *mdev,
1327 unsigned long al_enr);
1328extern size_t drbd_bm_words(struct drbd_conf *mdev);
1329extern unsigned long drbd_bm_bits(struct drbd_conf *mdev);
1330extern sector_t drbd_bm_capacity(struct drbd_conf *mdev);
1331extern unsigned long drbd_bm_find_next(struct drbd_conf *mdev, unsigned long bm_fo);
1332/* bm_find_next variants for use while you hold drbd_bm_lock() */
1333extern unsigned long _drbd_bm_find_next(struct drbd_conf *mdev, unsigned long bm_fo);
1334extern unsigned long _drbd_bm_find_next_zero(struct drbd_conf *mdev, unsigned long bm_fo);
1335extern unsigned long drbd_bm_total_weight(struct drbd_conf *mdev);
1336extern int drbd_bm_rs_done(struct drbd_conf *mdev);
1337/* for receive_bitmap */
1338extern void drbd_bm_merge_lel(struct drbd_conf *mdev, size_t offset,
1339 size_t number, unsigned long *buffer);
1340/* for _drbd_send_bitmap and drbd_bm_write_sect */
1341extern void drbd_bm_get_lel(struct drbd_conf *mdev, size_t offset,
1342 size_t number, unsigned long *buffer);
1343
1344extern void drbd_bm_lock(struct drbd_conf *mdev, char *why);
1345extern void drbd_bm_unlock(struct drbd_conf *mdev);
1346
1347extern int drbd_bm_count_bits(struct drbd_conf *mdev, const unsigned long s, const unsigned long e);
1348/* drbd_main.c */
1349
1350extern struct kmem_cache *drbd_request_cache;
1351extern struct kmem_cache *drbd_ee_cache; /* epoch entries */
1352extern struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */
1353extern struct kmem_cache *drbd_al_ext_cache; /* activity log extents */
1354extern mempool_t *drbd_request_mempool;
1355extern mempool_t *drbd_ee_mempool;
1356
1357extern struct page *drbd_pp_pool; /* drbd's page pool */
1358extern spinlock_t drbd_pp_lock;
1359extern int drbd_pp_vacant;
1360extern wait_queue_head_t drbd_pp_wait;
1361
1362extern rwlock_t global_state_lock;
1363
1364extern struct drbd_conf *drbd_new_device(unsigned int minor);
1365extern void drbd_free_mdev(struct drbd_conf *mdev);
1366
1367extern int proc_details;
1368
1369/* drbd_req */
1370extern int drbd_make_request_26(struct request_queue *q, struct bio *bio);
1371extern int drbd_read_remote(struct drbd_conf *mdev, struct drbd_request *req);
1372extern int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec);
1373extern int is_valid_ar_handle(struct drbd_request *, sector_t);
1374
1375
1376/* drbd_nl.c */
1377extern void drbd_suspend_io(struct drbd_conf *mdev);
1378extern void drbd_resume_io(struct drbd_conf *mdev);
1379extern char *ppsize(char *buf, unsigned long long size);
Philipp Reisnera393db62009-12-22 13:35:52 +01001380extern sector_t drbd_new_dev_size(struct drbd_conf *, struct drbd_backing_dev *, int);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001381enum determine_dev_size { dev_size_error = -1, unchanged = 0, shrunk = 1, grew = 2 };
Philipp Reisnera393db62009-12-22 13:35:52 +01001382extern enum determine_dev_size drbd_determin_dev_size(struct drbd_conf *, int force) __must_hold(local);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001383extern void resync_after_online_grow(struct drbd_conf *);
1384extern void drbd_setup_queue_param(struct drbd_conf *mdev, unsigned int) __must_hold(local);
1385extern int drbd_set_role(struct drbd_conf *mdev, enum drbd_role new_role,
1386 int force);
1387enum drbd_disk_state drbd_try_outdate_peer(struct drbd_conf *mdev);
1388extern int drbd_khelper(struct drbd_conf *mdev, char *cmd);
1389
1390/* drbd_worker.c */
1391extern int drbd_worker(struct drbd_thread *thi);
1392extern int drbd_alter_sa(struct drbd_conf *mdev, int na);
1393extern void drbd_start_resync(struct drbd_conf *mdev, enum drbd_conns side);
1394extern void resume_next_sg(struct drbd_conf *mdev);
1395extern void suspend_other_sg(struct drbd_conf *mdev);
1396extern int drbd_resync_finished(struct drbd_conf *mdev);
1397/* maybe rather drbd_main.c ? */
1398extern int drbd_md_sync_page_io(struct drbd_conf *mdev,
1399 struct drbd_backing_dev *bdev, sector_t sector, int rw);
1400extern void drbd_ov_oos_found(struct drbd_conf*, sector_t, int);
1401
1402static inline void ov_oos_print(struct drbd_conf *mdev)
1403{
1404 if (mdev->ov_last_oos_size) {
1405 dev_err(DEV, "Out of sync: start=%llu, size=%lu (sectors)\n",
1406 (unsigned long long)mdev->ov_last_oos_start,
1407 (unsigned long)mdev->ov_last_oos_size);
1408 }
1409 mdev->ov_last_oos_size=0;
1410}
1411
1412
1413extern void drbd_csum(struct drbd_conf *, struct crypto_hash *, struct bio *, void *);
1414/* worker callbacks */
1415extern int w_req_cancel_conflict(struct drbd_conf *, struct drbd_work *, int);
1416extern int w_read_retry_remote(struct drbd_conf *, struct drbd_work *, int);
1417extern int w_e_end_data_req(struct drbd_conf *, struct drbd_work *, int);
1418extern int w_e_end_rsdata_req(struct drbd_conf *, struct drbd_work *, int);
1419extern int w_e_end_csum_rs_req(struct drbd_conf *, struct drbd_work *, int);
1420extern int w_e_end_ov_reply(struct drbd_conf *, struct drbd_work *, int);
1421extern int w_e_end_ov_req(struct drbd_conf *, struct drbd_work *, int);
1422extern int w_ov_finished(struct drbd_conf *, struct drbd_work *, int);
1423extern int w_resync_inactive(struct drbd_conf *, struct drbd_work *, int);
1424extern int w_resume_next_sg(struct drbd_conf *, struct drbd_work *, int);
1425extern int w_io_error(struct drbd_conf *, struct drbd_work *, int);
1426extern int w_send_write_hint(struct drbd_conf *, struct drbd_work *, int);
1427extern int w_make_resync_request(struct drbd_conf *, struct drbd_work *, int);
1428extern int w_send_dblock(struct drbd_conf *, struct drbd_work *, int);
1429extern int w_send_barrier(struct drbd_conf *, struct drbd_work *, int);
1430extern int w_send_read_req(struct drbd_conf *, struct drbd_work *, int);
1431extern int w_prev_work_done(struct drbd_conf *, struct drbd_work *, int);
1432extern int w_e_reissue(struct drbd_conf *, struct drbd_work *, int);
1433
1434extern void resync_timer_fn(unsigned long data);
1435
1436/* drbd_receiver.c */
1437extern int drbd_release_ee(struct drbd_conf *mdev, struct list_head *list);
1438extern struct drbd_epoch_entry *drbd_alloc_ee(struct drbd_conf *mdev,
1439 u64 id,
1440 sector_t sector,
1441 unsigned int data_size,
1442 gfp_t gfp_mask) __must_hold(local);
1443extern void drbd_free_ee(struct drbd_conf *mdev, struct drbd_epoch_entry *e);
1444extern void drbd_wait_ee_list_empty(struct drbd_conf *mdev,
1445 struct list_head *head);
1446extern void _drbd_wait_ee_list_empty(struct drbd_conf *mdev,
1447 struct list_head *head);
1448extern void drbd_set_recv_tcq(struct drbd_conf *mdev, int tcq_enabled);
1449extern void _drbd_clear_done_ee(struct drbd_conf *mdev, struct list_head *to_be_freed);
1450extern void drbd_flush_workqueue(struct drbd_conf *mdev);
1451
1452/* yes, there is kernel_setsockopt, but only since 2.6.18. we don't need to
1453 * mess with get_fs/set_fs, we know we are KERNEL_DS always. */
1454static inline int drbd_setsockopt(struct socket *sock, int level, int optname,
1455 char __user *optval, int optlen)
1456{
1457 int err;
1458 if (level == SOL_SOCKET)
1459 err = sock_setsockopt(sock, level, optname, optval, optlen);
1460 else
1461 err = sock->ops->setsockopt(sock, level, optname, optval,
1462 optlen);
1463 return err;
1464}
1465
1466static inline void drbd_tcp_cork(struct socket *sock)
1467{
1468 int __user val = 1;
1469 (void) drbd_setsockopt(sock, SOL_TCP, TCP_CORK,
1470 (char __user *)&val, sizeof(val));
1471}
1472
1473static inline void drbd_tcp_uncork(struct socket *sock)
1474{
1475 int __user val = 0;
1476 (void) drbd_setsockopt(sock, SOL_TCP, TCP_CORK,
1477 (char __user *)&val, sizeof(val));
1478}
1479
1480static inline void drbd_tcp_nodelay(struct socket *sock)
1481{
1482 int __user val = 1;
1483 (void) drbd_setsockopt(sock, SOL_TCP, TCP_NODELAY,
1484 (char __user *)&val, sizeof(val));
1485}
1486
1487static inline void drbd_tcp_quickack(struct socket *sock)
1488{
1489 int __user val = 1;
1490 (void) drbd_setsockopt(sock, SOL_TCP, TCP_QUICKACK,
1491 (char __user *)&val, sizeof(val));
1492}
1493
1494void drbd_bump_write_ordering(struct drbd_conf *mdev, enum write_ordering_e wo);
1495
1496/* drbd_proc.c */
1497extern struct proc_dir_entry *drbd_proc;
Emese Revfy7d4e9d02009-12-14 00:59:30 +01001498extern const struct file_operations drbd_proc_fops;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001499extern const char *drbd_conn_str(enum drbd_conns s);
1500extern const char *drbd_role_str(enum drbd_role s);
1501
1502/* drbd_actlog.c */
1503extern void drbd_al_begin_io(struct drbd_conf *mdev, sector_t sector);
1504extern void drbd_al_complete_io(struct drbd_conf *mdev, sector_t sector);
1505extern void drbd_rs_complete_io(struct drbd_conf *mdev, sector_t sector);
1506extern int drbd_rs_begin_io(struct drbd_conf *mdev, sector_t sector);
1507extern int drbd_try_rs_begin_io(struct drbd_conf *mdev, sector_t sector);
1508extern void drbd_rs_cancel_all(struct drbd_conf *mdev);
1509extern int drbd_rs_del_all(struct drbd_conf *mdev);
1510extern void drbd_rs_failed_io(struct drbd_conf *mdev,
1511 sector_t sector, int size);
1512extern int drbd_al_read_log(struct drbd_conf *mdev, struct drbd_backing_dev *);
1513extern void __drbd_set_in_sync(struct drbd_conf *mdev, sector_t sector,
1514 int size, const char *file, const unsigned int line);
1515#define drbd_set_in_sync(mdev, sector, size) \
1516 __drbd_set_in_sync(mdev, sector, size, __FILE__, __LINE__)
1517extern void __drbd_set_out_of_sync(struct drbd_conf *mdev, sector_t sector,
1518 int size, const char *file, const unsigned int line);
1519#define drbd_set_out_of_sync(mdev, sector, size) \
1520 __drbd_set_out_of_sync(mdev, sector, size, __FILE__, __LINE__)
1521extern void drbd_al_apply_to_bm(struct drbd_conf *mdev);
1522extern void drbd_al_to_on_disk_bm(struct drbd_conf *mdev);
1523extern void drbd_al_shrink(struct drbd_conf *mdev);
1524
1525
1526/* drbd_nl.c */
1527
1528void drbd_nl_cleanup(void);
1529int __init drbd_nl_init(void);
1530void drbd_bcast_state(struct drbd_conf *mdev, union drbd_state);
1531void drbd_bcast_sync_progress(struct drbd_conf *mdev);
1532void drbd_bcast_ee(struct drbd_conf *mdev,
1533 const char *reason, const int dgs,
1534 const char* seen_hash, const char* calc_hash,
1535 const struct drbd_epoch_entry* e);
1536
1537
1538/**
1539 * DOC: DRBD State macros
1540 *
1541 * These macros are used to express state changes in easily readable form.
1542 *
1543 * The NS macros expand to a mask and a value, that can be bit ored onto the
1544 * current state as soon as the spinlock (req_lock) was taken.
1545 *
1546 * The _NS macros are used for state functions that get called with the
1547 * spinlock. These macros expand directly to the new state value.
1548 *
1549 * Besides the basic forms NS() and _NS() additional _?NS[23] are defined
1550 * to express state changes that affect more than one aspect of the state.
1551 *
1552 * E.g. NS2(conn, C_CONNECTED, peer, R_SECONDARY)
1553 * Means that the network connection was established and that the peer
1554 * is in secondary role.
1555 */
1556#define role_MASK R_MASK
1557#define peer_MASK R_MASK
1558#define disk_MASK D_MASK
1559#define pdsk_MASK D_MASK
1560#define conn_MASK C_MASK
1561#define susp_MASK 1
1562#define user_isp_MASK 1
1563#define aftr_isp_MASK 1
1564
1565#define NS(T, S) \
1566 ({ union drbd_state mask; mask.i = 0; mask.T = T##_MASK; mask; }), \
1567 ({ union drbd_state val; val.i = 0; val.T = (S); val; })
1568#define NS2(T1, S1, T2, S2) \
1569 ({ union drbd_state mask; mask.i = 0; mask.T1 = T1##_MASK; \
1570 mask.T2 = T2##_MASK; mask; }), \
1571 ({ union drbd_state val; val.i = 0; val.T1 = (S1); \
1572 val.T2 = (S2); val; })
1573#define NS3(T1, S1, T2, S2, T3, S3) \
1574 ({ union drbd_state mask; mask.i = 0; mask.T1 = T1##_MASK; \
1575 mask.T2 = T2##_MASK; mask.T3 = T3##_MASK; mask; }), \
1576 ({ union drbd_state val; val.i = 0; val.T1 = (S1); \
1577 val.T2 = (S2); val.T3 = (S3); val; })
1578
1579#define _NS(D, T, S) \
1580 D, ({ union drbd_state __ns; __ns.i = D->state.i; __ns.T = (S); __ns; })
1581#define _NS2(D, T1, S1, T2, S2) \
1582 D, ({ union drbd_state __ns; __ns.i = D->state.i; __ns.T1 = (S1); \
1583 __ns.T2 = (S2); __ns; })
1584#define _NS3(D, T1, S1, T2, S2, T3, S3) \
1585 D, ({ union drbd_state __ns; __ns.i = D->state.i; __ns.T1 = (S1); \
1586 __ns.T2 = (S2); __ns.T3 = (S3); __ns; })
1587
1588/*
1589 * inline helper functions
1590 *************************/
1591
1592static inline void drbd_state_lock(struct drbd_conf *mdev)
1593{
1594 wait_event(mdev->misc_wait,
1595 !test_and_set_bit(CLUSTER_ST_CHANGE, &mdev->flags));
1596}
1597
1598static inline void drbd_state_unlock(struct drbd_conf *mdev)
1599{
1600 clear_bit(CLUSTER_ST_CHANGE, &mdev->flags);
1601 wake_up(&mdev->misc_wait);
1602}
1603
1604static inline int _drbd_set_state(struct drbd_conf *mdev,
1605 union drbd_state ns, enum chg_state_flags flags,
1606 struct completion *done)
1607{
1608 int rv;
1609
1610 read_lock(&global_state_lock);
1611 rv = __drbd_set_state(mdev, ns, flags, done);
1612 read_unlock(&global_state_lock);
1613
1614 return rv;
1615}
1616
1617/**
1618 * drbd_request_state() - Reqest a state change
1619 * @mdev: DRBD device.
1620 * @mask: mask of state bits to change.
1621 * @val: value of new state bits.
1622 *
1623 * This is the most graceful way of requesting a state change. It is verbose
1624 * quite verbose in case the state change is not possible, and all those
1625 * state changes are globally serialized.
1626 */
1627static inline int drbd_request_state(struct drbd_conf *mdev,
1628 union drbd_state mask,
1629 union drbd_state val)
1630{
1631 return _drbd_request_state(mdev, mask, val, CS_VERBOSE + CS_ORDERED);
1632}
1633
1634#define __drbd_chk_io_error(m,f) __drbd_chk_io_error_(m,f, __func__)
1635static inline void __drbd_chk_io_error_(struct drbd_conf *mdev, int forcedetach, const char *where)
1636{
1637 switch (mdev->ldev->dc.on_io_error) {
1638 case EP_PASS_ON:
1639 if (!forcedetach) {
1640 if (printk_ratelimit())
1641 dev_err(DEV, "Local IO failed in %s."
1642 "Passing error on...\n", where);
1643 break;
1644 }
1645 /* NOTE fall through to detach case if forcedetach set */
1646 case EP_DETACH:
1647 case EP_CALL_HELPER:
1648 if (mdev->state.disk > D_FAILED) {
1649 _drbd_set_state(_NS(mdev, disk, D_FAILED), CS_HARD, NULL);
1650 dev_err(DEV, "Local IO failed in %s."
1651 "Detaching...\n", where);
1652 }
1653 break;
1654 }
1655}
1656
1657/**
1658 * drbd_chk_io_error: Handle the on_io_error setting, should be called from all io completion handlers
1659 * @mdev: DRBD device.
1660 * @error: Error code passed to the IO completion callback
1661 * @forcedetach: Force detach. I.e. the error happened while accessing the meta data
1662 *
1663 * See also drbd_main.c:after_state_ch() if (os.disk > D_FAILED && ns.disk == D_FAILED)
1664 */
1665#define drbd_chk_io_error(m,e,f) drbd_chk_io_error_(m,e,f, __func__)
1666static inline void drbd_chk_io_error_(struct drbd_conf *mdev,
1667 int error, int forcedetach, const char *where)
1668{
1669 if (error) {
1670 unsigned long flags;
1671 spin_lock_irqsave(&mdev->req_lock, flags);
1672 __drbd_chk_io_error_(mdev, forcedetach, where);
1673 spin_unlock_irqrestore(&mdev->req_lock, flags);
1674 }
1675}
1676
1677
1678/**
1679 * drbd_md_first_sector() - Returns the first sector number of the meta data area
1680 * @bdev: Meta data block device.
1681 *
1682 * BTW, for internal meta data, this happens to be the maximum capacity
1683 * we could agree upon with our peer node.
1684 */
1685static inline sector_t drbd_md_first_sector(struct drbd_backing_dev *bdev)
1686{
1687 switch (bdev->dc.meta_dev_idx) {
1688 case DRBD_MD_INDEX_INTERNAL:
1689 case DRBD_MD_INDEX_FLEX_INT:
1690 return bdev->md.md_offset + bdev->md.bm_offset;
1691 case DRBD_MD_INDEX_FLEX_EXT:
1692 default:
1693 return bdev->md.md_offset;
1694 }
1695}
1696
1697/**
1698 * drbd_md_last_sector() - Return the last sector number of the meta data area
1699 * @bdev: Meta data block device.
1700 */
1701static inline sector_t drbd_md_last_sector(struct drbd_backing_dev *bdev)
1702{
1703 switch (bdev->dc.meta_dev_idx) {
1704 case DRBD_MD_INDEX_INTERNAL:
1705 case DRBD_MD_INDEX_FLEX_INT:
1706 return bdev->md.md_offset + MD_AL_OFFSET - 1;
1707 case DRBD_MD_INDEX_FLEX_EXT:
1708 default:
1709 return bdev->md.md_offset + bdev->md.md_size_sect;
1710 }
1711}
1712
1713/* Returns the number of 512 byte sectors of the device */
1714static inline sector_t drbd_get_capacity(struct block_device *bdev)
1715{
1716 /* return bdev ? get_capacity(bdev->bd_disk) : 0; */
1717 return bdev ? bdev->bd_inode->i_size >> 9 : 0;
1718}
1719
1720/**
1721 * drbd_get_max_capacity() - Returns the capacity we announce to out peer
1722 * @bdev: Meta data block device.
1723 *
1724 * returns the capacity we announce to out peer. we clip ourselves at the
1725 * various MAX_SECTORS, because if we don't, current implementation will
1726 * oops sooner or later
1727 */
1728static inline sector_t drbd_get_max_capacity(struct drbd_backing_dev *bdev)
1729{
1730 sector_t s;
1731 switch (bdev->dc.meta_dev_idx) {
1732 case DRBD_MD_INDEX_INTERNAL:
1733 case DRBD_MD_INDEX_FLEX_INT:
1734 s = drbd_get_capacity(bdev->backing_bdev)
1735 ? min_t(sector_t, DRBD_MAX_SECTORS_FLEX,
1736 drbd_md_first_sector(bdev))
1737 : 0;
1738 break;
1739 case DRBD_MD_INDEX_FLEX_EXT:
1740 s = min_t(sector_t, DRBD_MAX_SECTORS_FLEX,
1741 drbd_get_capacity(bdev->backing_bdev));
1742 /* clip at maximum size the meta device can support */
1743 s = min_t(sector_t, s,
1744 BM_EXT_TO_SECT(bdev->md.md_size_sect
1745 - bdev->md.bm_offset));
1746 break;
1747 default:
1748 s = min_t(sector_t, DRBD_MAX_SECTORS,
1749 drbd_get_capacity(bdev->backing_bdev));
1750 }
1751 return s;
1752}
1753
1754/**
1755 * drbd_md_ss__() - Return the sector number of our meta data super block
1756 * @mdev: DRBD device.
1757 * @bdev: Meta data block device.
1758 */
1759static inline sector_t drbd_md_ss__(struct drbd_conf *mdev,
1760 struct drbd_backing_dev *bdev)
1761{
1762 switch (bdev->dc.meta_dev_idx) {
1763 default: /* external, some index */
1764 return MD_RESERVED_SECT * bdev->dc.meta_dev_idx;
1765 case DRBD_MD_INDEX_INTERNAL:
1766 /* with drbd08, internal meta data is always "flexible" */
1767 case DRBD_MD_INDEX_FLEX_INT:
1768 /* sizeof(struct md_on_disk_07) == 4k
1769 * position: last 4k aligned block of 4k size */
1770 if (!bdev->backing_bdev) {
1771 if (__ratelimit(&drbd_ratelimit_state)) {
1772 dev_err(DEV, "bdev->backing_bdev==NULL\n");
1773 dump_stack();
1774 }
1775 return 0;
1776 }
1777 return (drbd_get_capacity(bdev->backing_bdev) & ~7ULL)
1778 - MD_AL_OFFSET;
1779 case DRBD_MD_INDEX_FLEX_EXT:
1780 return 0;
1781 }
1782}
1783
1784static inline void
1785_drbd_queue_work(struct drbd_work_queue *q, struct drbd_work *w)
1786{
1787 list_add_tail(&w->list, &q->q);
1788 up(&q->s);
1789}
1790
1791static inline void
1792drbd_queue_work_front(struct drbd_work_queue *q, struct drbd_work *w)
1793{
1794 unsigned long flags;
1795 spin_lock_irqsave(&q->q_lock, flags);
1796 list_add(&w->list, &q->q);
1797 up(&q->s); /* within the spinlock,
1798 see comment near end of drbd_worker() */
1799 spin_unlock_irqrestore(&q->q_lock, flags);
1800}
1801
1802static inline void
1803drbd_queue_work(struct drbd_work_queue *q, struct drbd_work *w)
1804{
1805 unsigned long flags;
1806 spin_lock_irqsave(&q->q_lock, flags);
1807 list_add_tail(&w->list, &q->q);
1808 up(&q->s); /* within the spinlock,
1809 see comment near end of drbd_worker() */
1810 spin_unlock_irqrestore(&q->q_lock, flags);
1811}
1812
1813static inline void wake_asender(struct drbd_conf *mdev)
1814{
1815 if (test_bit(SIGNAL_ASENDER, &mdev->flags))
1816 force_sig(DRBD_SIG, mdev->asender.task);
1817}
1818
1819static inline void request_ping(struct drbd_conf *mdev)
1820{
1821 set_bit(SEND_PING, &mdev->flags);
1822 wake_asender(mdev);
1823}
1824
1825static inline int drbd_send_short_cmd(struct drbd_conf *mdev,
1826 enum drbd_packets cmd)
1827{
1828 struct p_header h;
1829 return drbd_send_cmd(mdev, USE_DATA_SOCKET, cmd, &h, sizeof(h));
1830}
1831
1832static inline int drbd_send_ping(struct drbd_conf *mdev)
1833{
1834 struct p_header h;
1835 return drbd_send_cmd(mdev, USE_META_SOCKET, P_PING, &h, sizeof(h));
1836}
1837
1838static inline int drbd_send_ping_ack(struct drbd_conf *mdev)
1839{
1840 struct p_header h;
1841 return drbd_send_cmd(mdev, USE_META_SOCKET, P_PING_ACK, &h, sizeof(h));
1842}
1843
1844static inline void drbd_thread_stop(struct drbd_thread *thi)
1845{
1846 _drbd_thread_stop(thi, FALSE, TRUE);
1847}
1848
1849static inline void drbd_thread_stop_nowait(struct drbd_thread *thi)
1850{
1851 _drbd_thread_stop(thi, FALSE, FALSE);
1852}
1853
1854static inline void drbd_thread_restart_nowait(struct drbd_thread *thi)
1855{
1856 _drbd_thread_stop(thi, TRUE, FALSE);
1857}
1858
1859/* counts how many answer packets packets we expect from our peer,
1860 * for either explicit application requests,
1861 * or implicit barrier packets as necessary.
1862 * increased:
1863 * w_send_barrier
1864 * _req_mod(req, queue_for_net_write or queue_for_net_read);
1865 * it is much easier and equally valid to count what we queue for the
1866 * worker, even before it actually was queued or send.
1867 * (drbd_make_request_common; recovery path on read io-error)
1868 * decreased:
1869 * got_BarrierAck (respective tl_clear, tl_clear_barrier)
1870 * _req_mod(req, data_received)
1871 * [from receive_DataReply]
1872 * _req_mod(req, write_acked_by_peer or recv_acked_by_peer or neg_acked)
1873 * [from got_BlockAck (P_WRITE_ACK, P_RECV_ACK)]
1874 * for some reason it is NOT decreased in got_NegAck,
1875 * but in the resulting cleanup code from report_params.
1876 * we should try to remember the reason for that...
1877 * _req_mod(req, send_failed or send_canceled)
1878 * _req_mod(req, connection_lost_while_pending)
1879 * [from tl_clear_barrier]
1880 */
1881static inline void inc_ap_pending(struct drbd_conf *mdev)
1882{
1883 atomic_inc(&mdev->ap_pending_cnt);
1884}
1885
1886#define ERR_IF_CNT_IS_NEGATIVE(which) \
1887 if (atomic_read(&mdev->which) < 0) \
1888 dev_err(DEV, "in %s:%d: " #which " = %d < 0 !\n", \
1889 __func__ , __LINE__ , \
1890 atomic_read(&mdev->which))
1891
1892#define dec_ap_pending(mdev) do { \
1893 typecheck(struct drbd_conf *, mdev); \
1894 if (atomic_dec_and_test(&mdev->ap_pending_cnt)) \
1895 wake_up(&mdev->misc_wait); \
1896 ERR_IF_CNT_IS_NEGATIVE(ap_pending_cnt); } while (0)
1897
1898/* counts how many resync-related answers we still expect from the peer
1899 * increase decrease
1900 * C_SYNC_TARGET sends P_RS_DATA_REQUEST (and expects P_RS_DATA_REPLY)
1901 * C_SYNC_SOURCE sends P_RS_DATA_REPLY (and expects P_WRITE_ACK whith ID_SYNCER)
1902 * (or P_NEG_ACK with ID_SYNCER)
1903 */
1904static inline void inc_rs_pending(struct drbd_conf *mdev)
1905{
1906 atomic_inc(&mdev->rs_pending_cnt);
1907}
1908
1909#define dec_rs_pending(mdev) do { \
1910 typecheck(struct drbd_conf *, mdev); \
1911 atomic_dec(&mdev->rs_pending_cnt); \
1912 ERR_IF_CNT_IS_NEGATIVE(rs_pending_cnt); } while (0)
1913
1914/* counts how many answers we still need to send to the peer.
1915 * increased on
1916 * receive_Data unless protocol A;
1917 * we need to send a P_RECV_ACK (proto B)
1918 * or P_WRITE_ACK (proto C)
1919 * receive_RSDataReply (recv_resync_read) we need to send a P_WRITE_ACK
1920 * receive_DataRequest (receive_RSDataRequest) we need to send back P_DATA
1921 * receive_Barrier_* we need to send a P_BARRIER_ACK
1922 */
1923static inline void inc_unacked(struct drbd_conf *mdev)
1924{
1925 atomic_inc(&mdev->unacked_cnt);
1926}
1927
1928#define dec_unacked(mdev) do { \
1929 typecheck(struct drbd_conf *, mdev); \
1930 atomic_dec(&mdev->unacked_cnt); \
1931 ERR_IF_CNT_IS_NEGATIVE(unacked_cnt); } while (0)
1932
1933#define sub_unacked(mdev, n) do { \
1934 typecheck(struct drbd_conf *, mdev); \
1935 atomic_sub(n, &mdev->unacked_cnt); \
1936 ERR_IF_CNT_IS_NEGATIVE(unacked_cnt); } while (0)
1937
1938
1939static inline void put_net_conf(struct drbd_conf *mdev)
1940{
1941 if (atomic_dec_and_test(&mdev->net_cnt))
1942 wake_up(&mdev->misc_wait);
1943}
1944
1945/**
1946 * get_net_conf() - Increase ref count on mdev->net_conf; Returns 0 if nothing there
1947 * @mdev: DRBD device.
1948 *
1949 * You have to call put_net_conf() when finished working with mdev->net_conf.
1950 */
1951static inline int get_net_conf(struct drbd_conf *mdev)
1952{
1953 int have_net_conf;
1954
1955 atomic_inc(&mdev->net_cnt);
1956 have_net_conf = mdev->state.conn >= C_UNCONNECTED;
1957 if (!have_net_conf)
1958 put_net_conf(mdev);
1959 return have_net_conf;
1960}
1961
1962/**
1963 * get_ldev() - Increase the ref count on mdev->ldev. Returns 0 if there is no ldev
1964 * @M: DRBD device.
1965 *
1966 * You have to call put_ldev() when finished working with mdev->ldev.
1967 */
1968#define get_ldev(M) __cond_lock(local, _get_ldev_if_state(M,D_INCONSISTENT))
1969#define get_ldev_if_state(M,MINS) __cond_lock(local, _get_ldev_if_state(M,MINS))
1970
1971static inline void put_ldev(struct drbd_conf *mdev)
1972{
1973 __release(local);
1974 if (atomic_dec_and_test(&mdev->local_cnt))
1975 wake_up(&mdev->misc_wait);
1976 D_ASSERT(atomic_read(&mdev->local_cnt) >= 0);
1977}
1978
1979#ifndef __CHECKER__
1980static inline int _get_ldev_if_state(struct drbd_conf *mdev, enum drbd_disk_state mins)
1981{
1982 int io_allowed;
1983
1984 atomic_inc(&mdev->local_cnt);
1985 io_allowed = (mdev->state.disk >= mins);
1986 if (!io_allowed)
1987 put_ldev(mdev);
1988 return io_allowed;
1989}
1990#else
1991extern int _get_ldev_if_state(struct drbd_conf *mdev, enum drbd_disk_state mins);
1992#endif
1993
1994/* you must have an "get_ldev" reference */
1995static inline void drbd_get_syncer_progress(struct drbd_conf *mdev,
1996 unsigned long *bits_left, unsigned int *per_mil_done)
1997{
1998 /*
1999 * this is to break it at compile time when we change that
2000 * (we may feel 4TB maximum storage per drbd is not enough)
2001 */
2002 typecheck(unsigned long, mdev->rs_total);
2003
2004 /* note: both rs_total and rs_left are in bits, i.e. in
2005 * units of BM_BLOCK_SIZE.
2006 * for the percentage, we don't care. */
2007
2008 *bits_left = drbd_bm_total_weight(mdev) - mdev->rs_failed;
2009 /* >> 10 to prevent overflow,
2010 * +1 to prevent division by zero */
2011 if (*bits_left > mdev->rs_total) {
2012 /* doh. maybe a logic bug somewhere.
2013 * may also be just a race condition
2014 * between this and a disconnect during sync.
2015 * for now, just prevent in-kernel buffer overflow.
2016 */
2017 smp_rmb();
2018 dev_warn(DEV, "cs:%s rs_left=%lu > rs_total=%lu (rs_failed %lu)\n",
2019 drbd_conn_str(mdev->state.conn),
2020 *bits_left, mdev->rs_total, mdev->rs_failed);
2021 *per_mil_done = 0;
2022 } else {
2023 /* make sure the calculation happens in long context */
2024 unsigned long tmp = 1000UL -
2025 (*bits_left >> 10)*1000UL
2026 / ((mdev->rs_total >> 10) + 1UL);
2027 *per_mil_done = tmp;
2028 }
2029}
2030
2031
2032/* this throttles on-the-fly application requests
2033 * according to max_buffers settings;
2034 * maybe re-implement using semaphores? */
2035static inline int drbd_get_max_buffers(struct drbd_conf *mdev)
2036{
2037 int mxb = 1000000; /* arbitrary limit on open requests */
2038 if (get_net_conf(mdev)) {
2039 mxb = mdev->net_conf->max_buffers;
2040 put_net_conf(mdev);
2041 }
2042 return mxb;
2043}
2044
2045static inline int drbd_state_is_stable(union drbd_state s)
2046{
2047
2048 /* DO NOT add a default clause, we want the compiler to warn us
2049 * for any newly introduced state we may have forgotten to add here */
2050
2051 switch ((enum drbd_conns)s.conn) {
2052 /* new io only accepted when there is no connection, ... */
2053 case C_STANDALONE:
2054 case C_WF_CONNECTION:
2055 /* ... or there is a well established connection. */
2056 case C_CONNECTED:
2057 case C_SYNC_SOURCE:
2058 case C_SYNC_TARGET:
2059 case C_VERIFY_S:
2060 case C_VERIFY_T:
2061 case C_PAUSED_SYNC_S:
2062 case C_PAUSED_SYNC_T:
2063 /* maybe stable, look at the disk state */
2064 break;
2065
2066 /* no new io accepted during tansitional states
2067 * like handshake or teardown */
2068 case C_DISCONNECTING:
2069 case C_UNCONNECTED:
2070 case C_TIMEOUT:
2071 case C_BROKEN_PIPE:
2072 case C_NETWORK_FAILURE:
2073 case C_PROTOCOL_ERROR:
2074 case C_TEAR_DOWN:
2075 case C_WF_REPORT_PARAMS:
2076 case C_STARTING_SYNC_S:
2077 case C_STARTING_SYNC_T:
2078 case C_WF_BITMAP_S:
2079 case C_WF_BITMAP_T:
2080 case C_WF_SYNC_UUID:
2081 case C_MASK:
2082 /* not "stable" */
2083 return 0;
2084 }
2085
2086 switch ((enum drbd_disk_state)s.disk) {
2087 case D_DISKLESS:
2088 case D_INCONSISTENT:
2089 case D_OUTDATED:
2090 case D_CONSISTENT:
2091 case D_UP_TO_DATE:
2092 /* disk state is stable as well. */
2093 break;
2094
2095 /* no new io accepted during tansitional states */
2096 case D_ATTACHING:
2097 case D_FAILED:
2098 case D_NEGOTIATING:
2099 case D_UNKNOWN:
2100 case D_MASK:
2101 /* not "stable" */
2102 return 0;
2103 }
2104
2105 return 1;
2106}
2107
2108static inline int __inc_ap_bio_cond(struct drbd_conf *mdev)
2109{
2110 int mxb = drbd_get_max_buffers(mdev);
2111
2112 if (mdev->state.susp)
2113 return 0;
2114 if (test_bit(SUSPEND_IO, &mdev->flags))
2115 return 0;
2116
2117 /* to avoid potential deadlock or bitmap corruption,
2118 * in various places, we only allow new application io
2119 * to start during "stable" states. */
2120
2121 /* no new io accepted when attaching or detaching the disk */
2122 if (!drbd_state_is_stable(mdev->state))
2123 return 0;
2124
2125 /* since some older kernels don't have atomic_add_unless,
2126 * and we are within the spinlock anyways, we have this workaround. */
2127 if (atomic_read(&mdev->ap_bio_cnt) > mxb)
2128 return 0;
2129 if (test_bit(BITMAP_IO, &mdev->flags))
2130 return 0;
2131 return 1;
2132}
2133
2134/* I'd like to use wait_event_lock_irq,
2135 * but I'm not sure when it got introduced,
2136 * and not sure when it has 3 or 4 arguments */
2137static inline void inc_ap_bio(struct drbd_conf *mdev, int one_or_two)
2138{
2139 /* compare with after_state_ch,
2140 * os.conn != C_WF_BITMAP_S && ns.conn == C_WF_BITMAP_S */
2141 DEFINE_WAIT(wait);
2142
2143 /* we wait here
2144 * as long as the device is suspended
2145 * until the bitmap is no longer on the fly during connection
2146 * handshake as long as we would exeed the max_buffer limit.
2147 *
2148 * to avoid races with the reconnect code,
2149 * we need to atomic_inc within the spinlock. */
2150
2151 spin_lock_irq(&mdev->req_lock);
2152 while (!__inc_ap_bio_cond(mdev)) {
2153 prepare_to_wait(&mdev->misc_wait, &wait, TASK_UNINTERRUPTIBLE);
2154 spin_unlock_irq(&mdev->req_lock);
2155 schedule();
2156 finish_wait(&mdev->misc_wait, &wait);
2157 spin_lock_irq(&mdev->req_lock);
2158 }
2159 atomic_add(one_or_two, &mdev->ap_bio_cnt);
2160 spin_unlock_irq(&mdev->req_lock);
2161}
2162
2163static inline void dec_ap_bio(struct drbd_conf *mdev)
2164{
2165 int mxb = drbd_get_max_buffers(mdev);
2166 int ap_bio = atomic_dec_return(&mdev->ap_bio_cnt);
2167
2168 D_ASSERT(ap_bio >= 0);
2169 /* this currently does wake_up for every dec_ap_bio!
2170 * maybe rather introduce some type of hysteresis?
2171 * e.g. (ap_bio == mxb/2 || ap_bio == 0) ? */
2172 if (ap_bio < mxb)
2173 wake_up(&mdev->misc_wait);
2174 if (ap_bio == 0 && test_bit(BITMAP_IO, &mdev->flags)) {
2175 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
2176 drbd_queue_work(&mdev->data.work, &mdev->bm_io_work.w);
2177 }
2178}
2179
2180static inline void drbd_set_ed_uuid(struct drbd_conf *mdev, u64 val)
2181{
2182 mdev->ed_uuid = val;
2183}
2184
2185static inline int seq_cmp(u32 a, u32 b)
2186{
2187 /* we assume wrap around at 32bit.
2188 * for wrap around at 24bit (old atomic_t),
2189 * we'd have to
2190 * a <<= 8; b <<= 8;
2191 */
2192 return (s32)(a) - (s32)(b);
2193}
2194#define seq_lt(a, b) (seq_cmp((a), (b)) < 0)
2195#define seq_gt(a, b) (seq_cmp((a), (b)) > 0)
2196#define seq_ge(a, b) (seq_cmp((a), (b)) >= 0)
2197#define seq_le(a, b) (seq_cmp((a), (b)) <= 0)
2198/* CAUTION: please no side effects in arguments! */
2199#define seq_max(a, b) ((u32)(seq_gt((a), (b)) ? (a) : (b)))
2200
2201static inline void update_peer_seq(struct drbd_conf *mdev, unsigned int new_seq)
2202{
2203 unsigned int m;
2204 spin_lock(&mdev->peer_seq_lock);
2205 m = seq_max(mdev->peer_seq, new_seq);
2206 mdev->peer_seq = m;
2207 spin_unlock(&mdev->peer_seq_lock);
2208 if (m == new_seq)
2209 wake_up(&mdev->seq_wait);
2210}
2211
2212static inline void drbd_update_congested(struct drbd_conf *mdev)
2213{
2214 struct sock *sk = mdev->data.socket->sk;
2215 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
2216 set_bit(NET_CONGESTED, &mdev->flags);
2217}
2218
2219static inline int drbd_queue_order_type(struct drbd_conf *mdev)
2220{
2221 /* sorry, we currently have no working implementation
2222 * of distributed TCQ stuff */
2223#ifndef QUEUE_ORDERED_NONE
2224#define QUEUE_ORDERED_NONE 0
2225#endif
2226 return QUEUE_ORDERED_NONE;
2227}
2228
2229static inline void drbd_blk_run_queue(struct request_queue *q)
2230{
2231 if (q && q->unplug_fn)
2232 q->unplug_fn(q);
2233}
2234
2235static inline void drbd_kick_lo(struct drbd_conf *mdev)
2236{
2237 if (get_ldev(mdev)) {
2238 drbd_blk_run_queue(bdev_get_queue(mdev->ldev->backing_bdev));
2239 put_ldev(mdev);
2240 }
2241}
2242
2243static inline void drbd_md_flush(struct drbd_conf *mdev)
2244{
2245 int r;
2246
2247 if (test_bit(MD_NO_BARRIER, &mdev->flags))
2248 return;
2249
2250 r = blkdev_issue_flush(mdev->ldev->md_bdev, NULL);
2251 if (r) {
2252 set_bit(MD_NO_BARRIER, &mdev->flags);
2253 dev_err(DEV, "meta data flush failed with status %d, disabling md-flushes\n", r);
2254 }
2255}
2256
2257#endif