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,
26 /* asender (meta socket */
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 P_MAY_IGNORE
= 0x100, /* Flag to test if (cmd > P_MAY_IGNORE) ... */
64 P_MAX_OPT_CMD
= 0x101,
66 /* special command ids for handshake */
68 P_INITIAL_META
= 0xfff1, /* First Packet on the MetaSock */
69 P_INITIAL_DATA
= 0xfff2, /* First Packet on the Socket */
71 P_CONNECTION_FEATURES
= 0xfffe /* FIXED for the next century! */
75 #define __packed __attribute__((packed))
78 /* This is the layout for a packet on the wire.
79 * The byteorder is the network byte order.
80 * (except block_id and barrier fields.
81 * these are pointers to local structs
82 * and have no relevance for the partner,
83 * which just echoes them as received.)
85 * NOTE that the payload starts at a long aligned offset,
86 * regardless of 32 or 64 bit arch!
91 u16 length
; /* bytes of data after this header */
94 /* Header for big packets, Used for data packets exceeding 64kB */
96 u16 magic
; /* use DRBD_MAGIC_BIG here */
109 /* these defines must not be changed without changing the protocol version */
110 #define DP_HARDBARRIER 1 /* depricated */
111 #define DP_RW_SYNC 2 /* equals REQ_SYNC */
112 #define DP_MAY_SET_IN_SYNC 4
113 #define DP_UNPLUG 8 /* not used anymore */
114 #define DP_FUA 16 /* equals REQ_FUA */
115 #define DP_FLUSH 32 /* equals REQ_FLUSH */
116 #define DP_DISCARD 64 /* equals REQ_DISCARD */
117 #define DP_SEND_RECEIVE_ACK 128 /* This is a proto B write request */
118 #define DP_SEND_WRITE_ACK 256 /* This is a proto C write request */
121 u64 sector
; /* 64 bits sector number */
122 u64 block_id
; /* to identify the request in protocol B&C */
128 struct p_data p_data
;
129 u32 size
; /* == bio->bi_size */
133 * commands which share a struct:
135 * P_RECV_ACK (proto B), P_WRITE_ACK (proto C),
136 * P_SUPERSEDED (proto C, two-primaries conflict detection)
138 * P_DATA_REQUEST, P_RS_DATA_REQUEST
151 u32 pad
; /* to multiple of 8 Byte */
155 * commands with their own struct for additional fields:
156 * P_CONNECTION_FEATURES
165 struct p_connection_features
{
170 /* should be more than enough for future enhancements
171 * for now, feature_flags and the reserved array shall be zero.
179 u32 barrier
; /* barrier number _handle_ only */
180 u32 pad
; /* to multiple of 8 Byte */
183 struct p_barrier_ack
{
191 /* Since protocol version 88 and higher. */
195 struct p_rs_param_89
{
197 /* protocol version 89: */
198 char verify_alg
[SHARED_SECRET_MAX
];
199 char csums_alg
[SHARED_SECRET_MAX
];
202 struct p_rs_param_95
{
204 char verify_alg
[SHARED_SECRET_MAX
];
205 char csums_alg
[SHARED_SECRET_MAX
];
212 enum drbd_conn_flags
{
213 CF_DISCARD_MY_DATA
= 1,
225 /* Since protocol version 87 and higher. */
226 char integrity_alg
[0];
231 u64 uuid
[UI_EXTENDED_SIZE
];
239 u64 d_size
; /* size of disk */
240 u64 u_size
; /* user requested size */
241 u64 c_size
; /* current exported size */
242 u32 max_bio_size
; /* Maximal size of a BIO */
243 u16 queue_order_type
; /* not yet implemented in DRBD*/
244 u16 dds_flags
; /* use enum dds_flags here. */
256 struct p_req_state_reply
{
260 struct p_drbd06_param
{
270 struct p_block_desc
{
273 u32 pad
; /* to multiple of 8 Byte */
276 /* Valid values for the encoding field.
277 * Bump proto version when changing this. */
278 enum drbd_bitmap_code
{
279 /* RLE_VLI_Bytes = 0,
280 * and other bit variants had been defined during
281 * algorithm evaluation. */
285 struct p_compressed_bm
{
286 /* (encoding & 0x0f): actual encoding, see enum drbd_bitmap_code
287 * (encoding & 0x80): polarity (set/unset) of first runlength
288 * ((encoding >> 4) & 0x07): pad_bits, number of trailing zero bits
289 * used to pad up to head.length bytes
296 struct p_delay_probe93
{
297 u32 seq_num
; /* sequence number to match the two probe packets */
298 u32 offset
; /* usecs the probe got sent after the reference time point */
302 * Bitmap packets need to fit within a single page on the sender and receiver,
303 * so we are limited to 4 KiB (and not to PAGE_SIZE, which can be bigger).
305 #define DRBD_SOCKET_BUFFER_SIZE 4096
307 #endif /* __DRBD_PROTOCOL_H */