drbd: fix for truncated minor number in callback command line
[cascardo/linux.git] / drivers / block / drbd / drbd_protocol.h
1 #ifndef __DRBD_PROTOCOL_H
2 #define __DRBD_PROTOCOL_H
3
4 enum drbd_packet {
5         /* receiver (data socket) */
6         P_DATA                = 0x00,
7         P_DATA_REPLY          = 0x01, /* Response to P_DATA_REQUEST */
8         P_RS_DATA_REPLY       = 0x02, /* Response to P_RS_DATA_REQUEST */
9         P_BARRIER             = 0x03,
10         P_BITMAP              = 0x04,
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 */
16         P_SYNC_PARAM          = 0x0a,
17         P_PROTOCOL            = 0x0b,
18         P_UUIDS               = 0x0c,
19         P_SIZES               = 0x0d,
20         P_STATE               = 0x0e,
21         P_SYNC_UUID           = 0x0f,
22         P_AUTH_CHALLENGE      = 0x10,
23         P_AUTH_RESPONSE       = 0x11,
24         P_STATE_CHG_REQ       = 0x12,
25
26         /* (meta socket) */
27         P_PING                = 0x13,
28         P_PING_ACK            = 0x14,
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... */
36         P_BARRIER_ACK         = 0x1c,
37         P_STATE_CHG_REPLY     = 0x1d,
38
39         /* "new" commands, no longer fitting into the ordering scheme above */
40
41         P_OV_REQUEST          = 0x1e, /* data socket */
42         P_OV_REPLY            = 0x1f,
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 */
58
59         /* REQ_DISCARD. We used "discard" in different contexts before,
60          * which is why I chose TRIM here, to disambiguate. */
61         P_TRIM                = 0x31,
62
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 */
66
67         P_MAY_IGNORE          = 0x100, /* Flag to test if (cmd > P_MAY_IGNORE) ... */
68         P_MAX_OPT_CMD         = 0x101,
69
70         /* special command ids for handshake */
71
72         P_INITIAL_META        = 0xfff1, /* First Packet on the MetaSock */
73         P_INITIAL_DATA        = 0xfff2, /* First Packet on the Socket */
74
75         P_CONNECTION_FEATURES = 0xfffe  /* FIXED for the next century! */
76 };
77
78 #ifndef __packed
79 #define __packed __attribute__((packed))
80 #endif
81
82 /* This is the layout for a packet on the wire.
83  * The byteorder is the network byte order.
84  *     (except block_id and barrier fields.
85  *      these are pointers to local structs
86  *      and have no relevance for the partner,
87  *      which just echoes them as received.)
88  *
89  * NOTE that the payload starts at a long aligned offset,
90  * regardless of 32 or 64 bit arch!
91  */
92 struct p_header80 {
93         u32       magic;
94         u16       command;
95         u16       length;       /* bytes of data after this header */
96 } __packed;
97
98 /* Header for big packets, Used for data packets exceeding 64kB */
99 struct p_header95 {
100         u16       magic;        /* use DRBD_MAGIC_BIG here */
101         u16       command;
102         u32       length;
103 } __packed;
104
105 struct p_header100 {
106         u32       magic;
107         u16       volume;
108         u16       command;
109         u32       length;
110         u32       pad;
111 } __packed;
112
113 /* these defines must not be changed without changing the protocol version */
114 #define DP_HARDBARRIER        1 /* depricated */
115 #define DP_RW_SYNC            2 /* equals REQ_SYNC    */
116 #define DP_MAY_SET_IN_SYNC    4
117 #define DP_UNPLUG             8 /* not used anymore   */
118 #define DP_FUA               16 /* equals REQ_FUA     */
119 #define DP_FLUSH             32 /* equals REQ_PREFLUSH   */
120 #define DP_DISCARD           64 /* equals REQ_DISCARD */
121 #define DP_SEND_RECEIVE_ACK 128 /* This is a proto B write request */
122 #define DP_SEND_WRITE_ACK   256 /* This is a proto C write request */
123
124 struct p_data {
125         u64         sector;    /* 64 bits sector number */
126         u64         block_id;  /* to identify the request in protocol B&C */
127         u32         seq_num;
128         u32         dp_flags;
129 } __packed;
130
131 struct p_trim {
132         struct p_data p_data;
133         u32         size;       /* == bio->bi_size */
134 } __packed;
135
136 /*
137  * commands which share a struct:
138  *  p_block_ack:
139  *   P_RECV_ACK (proto B), P_WRITE_ACK (proto C),
140  *   P_SUPERSEDED (proto C, two-primaries conflict detection)
141  *  p_block_req:
142  *   P_DATA_REQUEST, P_RS_DATA_REQUEST
143  */
144 struct p_block_ack {
145         u64         sector;
146         u64         block_id;
147         u32         blksize;
148         u32         seq_num;
149 } __packed;
150
151 struct p_block_req {
152         u64 sector;
153         u64 block_id;
154         u32 blksize;
155         u32 pad;        /* to multiple of 8 Byte */
156 } __packed;
157
158 /*
159  * commands with their own struct for additional fields:
160  *   P_CONNECTION_FEATURES
161  *   P_BARRIER
162  *   P_BARRIER_ACK
163  *   P_SYNC_PARAM
164  *   ReportParams
165  */
166
167 #define FF_TRIM      1
168 #define FF_THIN_RESYNC 2
169
170 struct p_connection_features {
171         u32 protocol_min;
172         u32 feature_flags;
173         u32 protocol_max;
174
175         /* should be more than enough for future enhancements
176          * for now, feature_flags and the reserved array shall be zero.
177          */
178
179         u32 _pad;
180         u64 reserved[7];
181 } __packed;
182
183 struct p_barrier {
184         u32 barrier;    /* barrier number _handle_ only */
185         u32 pad;        /* to multiple of 8 Byte */
186 } __packed;
187
188 struct p_barrier_ack {
189         u32 barrier;
190         u32 set_size;
191 } __packed;
192
193 struct p_rs_param {
194         u32 resync_rate;
195
196               /* Since protocol version 88 and higher. */
197         char verify_alg[0];
198 } __packed;
199
200 struct p_rs_param_89 {
201         u32 resync_rate;
202         /* protocol version 89: */
203         char verify_alg[SHARED_SECRET_MAX];
204         char csums_alg[SHARED_SECRET_MAX];
205 } __packed;
206
207 struct p_rs_param_95 {
208         u32 resync_rate;
209         char verify_alg[SHARED_SECRET_MAX];
210         char csums_alg[SHARED_SECRET_MAX];
211         u32 c_plan_ahead;
212         u32 c_delay_target;
213         u32 c_fill_target;
214         u32 c_max_rate;
215 } __packed;
216
217 enum drbd_conn_flags {
218         CF_DISCARD_MY_DATA = 1,
219         CF_DRY_RUN = 2,
220 };
221
222 struct p_protocol {
223         u32 protocol;
224         u32 after_sb_0p;
225         u32 after_sb_1p;
226         u32 after_sb_2p;
227         u32 conn_flags;
228         u32 two_primaries;
229
230         /* Since protocol version 87 and higher. */
231         char integrity_alg[0];
232
233 } __packed;
234
235 struct p_uuids {
236         u64 uuid[UI_EXTENDED_SIZE];
237 } __packed;
238
239 struct p_rs_uuid {
240         u64         uuid;
241 } __packed;
242
243 struct p_sizes {
244         u64         d_size;  /* size of disk */
245         u64         u_size;  /* user requested size */
246         u64         c_size;  /* current exported size */
247         u32         max_bio_size;  /* Maximal size of a BIO */
248         u16         queue_order_type;  /* not yet implemented in DRBD*/
249         u16         dds_flags; /* use enum dds_flags here. */
250 } __packed;
251
252 struct p_state {
253         u32         state;
254 } __packed;
255
256 struct p_req_state {
257         u32         mask;
258         u32         val;
259 } __packed;
260
261 struct p_req_state_reply {
262         u32         retcode;
263 } __packed;
264
265 struct p_drbd06_param {
266         u64       size;
267         u32       state;
268         u32       blksize;
269         u32       protocol;
270         u32       version;
271         u32       gen_cnt[5];
272         u32       bit_map_gen[5];
273 } __packed;
274
275 struct p_block_desc {
276         u64 sector;
277         u32 blksize;
278         u32 pad;        /* to multiple of 8 Byte */
279 } __packed;
280
281 /* Valid values for the encoding field.
282  * Bump proto version when changing this. */
283 enum drbd_bitmap_code {
284         /* RLE_VLI_Bytes = 0,
285          * and other bit variants had been defined during
286          * algorithm evaluation. */
287         RLE_VLI_Bits = 2,
288 };
289
290 struct p_compressed_bm {
291         /* (encoding & 0x0f): actual encoding, see enum drbd_bitmap_code
292          * (encoding & 0x80): polarity (set/unset) of first runlength
293          * ((encoding >> 4) & 0x07): pad_bits, number of trailing zero bits
294          * used to pad up to head.length bytes
295          */
296         u8 encoding;
297
298         u8 code[0];
299 } __packed;
300
301 struct p_delay_probe93 {
302         u32     seq_num; /* sequence number to match the two probe packets */
303         u32     offset;  /* usecs the probe got sent after the reference time point */
304 } __packed;
305
306 /*
307  * Bitmap packets need to fit within a single page on the sender and receiver,
308  * so we are limited to 4 KiB (and not to PAGE_SIZE, which can be bigger).
309  */
310 #define DRBD_SOCKET_BUFFER_SIZE 4096
311
312 #endif  /* __DRBD_PROTOCOL_H */