1 #ifndef __DRBD_PROTOCOL_H
2 #define __DRBD_PROTOCOL_H
5 /* receiver (data socket) */
7 P_DATA_REPLY
= 0x01, /* Response to P_DATA_REQUEST */
8 P_RS_DATA_REPLY
= 0x02, /* Response to P_RS_DATA_REQUEST */
11 P_BECOME_SYNC_TARGET
= 0x05,
12 P_BECOME_SYNC_SOURCE
= 0x06,
13 P_UNPLUG_REMOTE
= 0x07, /* Used at various times to hint the peer */
14 P_DATA_REQUEST
= 0x08, /* Used to ask for a data block */
15 P_RS_DATA_REQUEST
= 0x09, /* Used to ask for a data block for resync */
22 P_AUTH_CHALLENGE
= 0x10,
23 P_AUTH_RESPONSE
= 0x11,
24 P_STATE_CHG_REQ
= 0x12,
29 P_RECV_ACK
= 0x15, /* Used in protocol B */
30 P_WRITE_ACK
= 0x16, /* Used in protocol C */
31 P_RS_WRITE_ACK
= 0x17, /* Is a P_WRITE_ACK, additionally call set_in_sync(). */
32 P_SUPERSEDED
= 0x18, /* Used in proto C, two-primaries conflict detection */
33 P_NEG_ACK
= 0x19, /* Sent if local disk is unusable */
34 P_NEG_DREPLY
= 0x1a, /* Local disk is broken... */
35 P_NEG_RS_DREPLY
= 0x1b, /* Local disk is broken... */
37 P_STATE_CHG_REPLY
= 0x1d,
39 /* "new" commands, no longer fitting into the ordering scheme above */
41 P_OV_REQUEST
= 0x1e, /* data socket */
43 P_OV_RESULT
= 0x20, /* meta socket */
44 P_CSUM_RS_REQUEST
= 0x21, /* data socket */
45 P_RS_IS_IN_SYNC
= 0x22, /* meta socket */
46 P_SYNC_PARAM89
= 0x23, /* data socket, protocol version 89 replacement for P_SYNC_PARAM */
47 P_COMPRESSED_BITMAP
= 0x24, /* compressed or otherwise encoded bitmap transfer */
48 /* P_CKPT_FENCE_REQ = 0x25, * currently reserved for protocol D */
49 /* P_CKPT_DISABLE_REQ = 0x26, * currently reserved for protocol D */
50 P_DELAY_PROBE
= 0x27, /* is used on BOTH sockets */
51 P_OUT_OF_SYNC
= 0x28, /* Mark as out of sync (Outrunning), data socket */
52 P_RS_CANCEL
= 0x29, /* meta: Used to cancel RS_DATA_REQUEST packet by SyncSource */
53 P_CONN_ST_CHG_REQ
= 0x2a, /* data sock: Connection wide state request */
54 P_CONN_ST_CHG_REPLY
= 0x2b, /* meta sock: Connection side state req reply */
55 P_RETRY_WRITE
= 0x2c, /* Protocol C: retry conflicting write request */
56 P_PROTOCOL_UPDATE
= 0x2d, /* data sock: is used in established connections */
57 /* 0x2e to 0x30 reserved, used in drbd 9 */
59 /* REQ_DISCARD. We used "discard" in different contexts before,
60 * which is why I chose TRIM here, to disambiguate. */
63 /* Only use these two if both support FF_THIN_RESYNC */
64 P_RS_THIN_REQ
= 0x32, /* Request a block for resync or reply P_RS_DEALLOCATED */
65 P_RS_DEALLOCATED
= 0x33, /* Contains only zeros on sync source node */
68 * On a receiving side without REQ_WRITE_SAME,
69 * we may fall back to an opencoded loop instead. */
72 P_MAY_IGNORE
= 0x100, /* Flag to test if (cmd > P_MAY_IGNORE) ... */
73 P_MAX_OPT_CMD
= 0x101,
75 /* special command ids for handshake */
77 P_INITIAL_META
= 0xfff1, /* First Packet on the MetaSock */
78 P_INITIAL_DATA
= 0xfff2, /* First Packet on the Socket */
80 P_CONNECTION_FEATURES
= 0xfffe /* FIXED for the next century! */
84 #define __packed __attribute__((packed))
87 /* This is the layout for a packet on the wire.
88 * The byteorder is the network byte order.
89 * (except block_id and barrier fields.
90 * these are pointers to local structs
91 * and have no relevance for the partner,
92 * which just echoes them as received.)
94 * NOTE that the payload starts at a long aligned offset,
95 * regardless of 32 or 64 bit arch!
100 u16 length
; /* bytes of data after this header */
103 /* Header for big packets, Used for data packets exceeding 64kB */
105 u16 magic
; /* use DRBD_MAGIC_BIG here */
118 /* These defines must not be changed without changing the protocol version.
119 * New defines may only be introduced together with protocol version bump or
120 * new protocol feature flags.
122 #define DP_HARDBARRIER 1 /* no longer used */
123 #define DP_RW_SYNC 2 /* equals REQ_SYNC */
124 #define DP_MAY_SET_IN_SYNC 4
125 #define DP_UNPLUG 8 /* not used anymore */
126 #define DP_FUA 16 /* equals REQ_FUA */
127 #define DP_FLUSH 32 /* equals REQ_PREFLUSH */
128 #define DP_DISCARD 64 /* equals REQ_DISCARD */
129 #define DP_SEND_RECEIVE_ACK 128 /* This is a proto B write request */
130 #define DP_SEND_WRITE_ACK 256 /* This is a proto C write request */
131 #define DP_WSAME 512 /* equiv. REQ_WRITE_SAME */
134 u64 sector
; /* 64 bits sector number */
135 u64 block_id
; /* to identify the request in protocol B&C */
141 struct p_data p_data
;
142 u32 size
; /* == bio->bi_size */
146 struct p_data p_data
;
147 u32 size
; /* == bio->bi_size */
151 * commands which share a struct:
153 * P_RECV_ACK (proto B), P_WRITE_ACK (proto C),
154 * P_SUPERSEDED (proto C, two-primaries conflict detection)
156 * P_DATA_REQUEST, P_RS_DATA_REQUEST
169 u32 pad
; /* to multiple of 8 Byte */
173 * commands with their own struct for additional fields:
174 * P_CONNECTION_FEATURES
181 /* supports TRIM/DISCARD on the "wire" protocol */
182 #define DRBD_FF_TRIM 1
184 /* Detect all-zeros during resync, and rather TRIM/UNMAP/DISCARD those blocks
185 * instead of fully allocate a supposedly thin volume on initial resync */
186 #define DRBD_FF_THIN_RESYNC 2
188 /* supports REQ_WRITE_SAME on the "wire" protocol.
189 * Note: this flag is overloaded,
191 * - indicates support for 128 MiB "batch bios",
192 * max discard size of 128 MiB
193 * instead of 4M before that.
194 * - indicates that we exchange additional settings in p_sizes
195 * drbd_send_sizes()/receive_sizes()
197 #define DRBD_FF_WSAME 4
199 struct p_connection_features
{
204 /* should be more than enough for future enhancements
205 * for now, feature_flags and the reserved array shall be zero.
213 u32 barrier
; /* barrier number _handle_ only */
214 u32 pad
; /* to multiple of 8 Byte */
217 struct p_barrier_ack
{
225 /* Since protocol version 88 and higher. */
229 struct p_rs_param_89
{
231 /* protocol version 89: */
232 char verify_alg
[SHARED_SECRET_MAX
];
233 char csums_alg
[SHARED_SECRET_MAX
];
236 struct p_rs_param_95
{
238 char verify_alg
[SHARED_SECRET_MAX
];
239 char csums_alg
[SHARED_SECRET_MAX
];
246 enum drbd_conn_flags
{
247 CF_DISCARD_MY_DATA
= 1,
259 /* Since protocol version 87 and higher. */
260 char integrity_alg
[0];
265 u64 uuid
[UI_EXTENDED_SIZE
];
272 /* optional queue_limits if (agreed_features & DRBD_FF_WSAME)
273 * see also struct queue_limits, as of late 2015 */
275 /* we don't need it yet, but we may as well communicate it now */
276 u32 physical_block_size
;
278 /* so the original in struct queue_limits is unsigned short,
279 * but I'd have to put in padding anyways. */
280 u32 logical_block_size
;
282 /* One incoming bio becomes one DRBD request,
283 * which may be translated to several bio on the receiving side.
284 * We don't need to communicate chunk/boundary/segment ... limits.
287 /* various IO hints may be useful with "diskless client" setups */
288 u32 alignment_offset
;
292 /* We may need to communicate integrity stuff at some point,
293 * but let's not get ahead of ourselves. */
295 /* Backend discard capabilities.
296 * Receiving side uses "blkdev_issue_discard()", no need to communicate
297 * more specifics. If the backend cannot do discards, the DRBD peer
298 * may fall back to blkdev_issue_zeroout().
301 u8 discard_zeroes_data
;
302 u8 write_same_capable
;
307 u64 d_size
; /* size of disk */
308 u64 u_size
; /* user requested size */
309 u64 c_size
; /* current exported size */
310 u32 max_bio_size
; /* Maximal size of a BIO */
311 u16 queue_order_type
; /* not yet implemented in DRBD*/
312 u16 dds_flags
; /* use enum dds_flags here. */
314 /* optional queue_limits if (agreed_features & DRBD_FF_WSAME) */
315 struct o_qlim qlim
[0];
327 struct p_req_state_reply
{
331 struct p_drbd06_param
{
341 struct p_block_desc
{
344 u32 pad
; /* to multiple of 8 Byte */
347 /* Valid values for the encoding field.
348 * Bump proto version when changing this. */
349 enum drbd_bitmap_code
{
350 /* RLE_VLI_Bytes = 0,
351 * and other bit variants had been defined during
352 * algorithm evaluation. */
356 struct p_compressed_bm
{
357 /* (encoding & 0x0f): actual encoding, see enum drbd_bitmap_code
358 * (encoding & 0x80): polarity (set/unset) of first runlength
359 * ((encoding >> 4) & 0x07): pad_bits, number of trailing zero bits
360 * used to pad up to head.length bytes
367 struct p_delay_probe93
{
368 u32 seq_num
; /* sequence number to match the two probe packets */
369 u32 offset
; /* usecs the probe got sent after the reference time point */
373 * Bitmap packets need to fit within a single page on the sender and receiver,
374 * so we are limited to 4 KiB (and not to PAGE_SIZE, which can be bigger).
376 #define DRBD_SOCKET_BUFFER_SIZE 4096
378 #endif /* __DRBD_PROTOCOL_H */