drbd.h 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. /*
  2. drbd.h
  3. Kernel module for 2.6.x Kernels
  4. This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
  5. Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
  6. Copyright (C) 2001-2008, Philipp Reisner <philipp.reisner@linbit.com>.
  7. Copyright (C) 2001-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
  8. drbd is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12. drbd is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with drbd; see the file COPYING. If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. #ifndef DRBD_H
  21. #define DRBD_H
  22. #include <linux/connector.h>
  23. #include <asm/types.h>
  24. #ifdef __KERNEL__
  25. #include <linux/types.h>
  26. #include <asm/byteorder.h>
  27. #else
  28. #include <sys/types.h>
  29. #include <sys/wait.h>
  30. #include <limits.h>
  31. /* Although the Linux source code makes a difference between
  32. generic endianness and the bitfields' endianness, there is no
  33. architecture as of Linux-2.6.24-rc4 where the bitfields' endianness
  34. does not match the generic endianness. */
  35. #if __BYTE_ORDER == __LITTLE_ENDIAN
  36. #define __LITTLE_ENDIAN_BITFIELD
  37. #elif __BYTE_ORDER == __BIG_ENDIAN
  38. #define __BIG_ENDIAN_BITFIELD
  39. #else
  40. # error "sorry, weird endianness on this box"
  41. #endif
  42. #endif
  43. extern const char *drbd_buildtag(void);
  44. #define REL_VERSION "8.3.11"
  45. #define API_VERSION 88
  46. #define PRO_VERSION_MIN 86
  47. #define PRO_VERSION_MAX 96
  48. enum drbd_io_error_p {
  49. EP_PASS_ON, /* FIXME should the better be named "Ignore"? */
  50. EP_CALL_HELPER,
  51. EP_DETACH
  52. };
  53. enum drbd_fencing_p {
  54. FP_DONT_CARE,
  55. FP_RESOURCE,
  56. FP_STONITH
  57. };
  58. enum drbd_disconnect_p {
  59. DP_RECONNECT,
  60. DP_DROP_NET_CONF,
  61. DP_FREEZE_IO
  62. };
  63. enum drbd_after_sb_p {
  64. ASB_DISCONNECT,
  65. ASB_DISCARD_YOUNGER_PRI,
  66. ASB_DISCARD_OLDER_PRI,
  67. ASB_DISCARD_ZERO_CHG,
  68. ASB_DISCARD_LEAST_CHG,
  69. ASB_DISCARD_LOCAL,
  70. ASB_DISCARD_REMOTE,
  71. ASB_CONSENSUS,
  72. ASB_DISCARD_SECONDARY,
  73. ASB_CALL_HELPER,
  74. ASB_VIOLENTLY
  75. };
  76. enum drbd_on_no_data {
  77. OND_IO_ERROR,
  78. OND_SUSPEND_IO
  79. };
  80. enum drbd_on_congestion {
  81. OC_BLOCK,
  82. OC_PULL_AHEAD,
  83. OC_DISCONNECT,
  84. };
  85. /* KEEP the order, do not delete or insert. Only append. */
  86. enum drbd_ret_code {
  87. ERR_CODE_BASE = 100,
  88. NO_ERROR = 101,
  89. ERR_LOCAL_ADDR = 102,
  90. ERR_PEER_ADDR = 103,
  91. ERR_OPEN_DISK = 104,
  92. ERR_OPEN_MD_DISK = 105,
  93. ERR_DISK_NOT_BDEV = 107,
  94. ERR_MD_NOT_BDEV = 108,
  95. ERR_DISK_TO_SMALL = 111,
  96. ERR_MD_DISK_TO_SMALL = 112,
  97. ERR_BDCLAIM_DISK = 114,
  98. ERR_BDCLAIM_MD_DISK = 115,
  99. ERR_MD_IDX_INVALID = 116,
  100. ERR_IO_MD_DISK = 118,
  101. ERR_MD_INVALID = 119,
  102. ERR_AUTH_ALG = 120,
  103. ERR_AUTH_ALG_ND = 121,
  104. ERR_NOMEM = 122,
  105. ERR_DISCARD = 123,
  106. ERR_DISK_CONFIGURED = 124,
  107. ERR_NET_CONFIGURED = 125,
  108. ERR_MANDATORY_TAG = 126,
  109. ERR_MINOR_INVALID = 127,
  110. ERR_INTR = 129, /* EINTR */
  111. ERR_RESIZE_RESYNC = 130,
  112. ERR_NO_PRIMARY = 131,
  113. ERR_SYNC_AFTER = 132,
  114. ERR_SYNC_AFTER_CYCLE = 133,
  115. ERR_PAUSE_IS_SET = 134,
  116. ERR_PAUSE_IS_CLEAR = 135,
  117. ERR_PACKET_NR = 137,
  118. ERR_NO_DISK = 138,
  119. ERR_NOT_PROTO_C = 139,
  120. ERR_NOMEM_BITMAP = 140,
  121. ERR_INTEGRITY_ALG = 141, /* DRBD 8.2 only */
  122. ERR_INTEGRITY_ALG_ND = 142, /* DRBD 8.2 only */
  123. ERR_CPU_MASK_PARSE = 143, /* DRBD 8.2 only */
  124. ERR_CSUMS_ALG = 144, /* DRBD 8.2 only */
  125. ERR_CSUMS_ALG_ND = 145, /* DRBD 8.2 only */
  126. ERR_VERIFY_ALG = 146, /* DRBD 8.2 only */
  127. ERR_VERIFY_ALG_ND = 147, /* DRBD 8.2 only */
  128. ERR_CSUMS_RESYNC_RUNNING= 148, /* DRBD 8.2 only */
  129. ERR_VERIFY_RUNNING = 149, /* DRBD 8.2 only */
  130. ERR_DATA_NOT_CURRENT = 150,
  131. ERR_CONNECTED = 151, /* DRBD 8.3 only */
  132. ERR_PERM = 152,
  133. ERR_NEED_APV_93 = 153,
  134. ERR_STONITH_AND_PROT_A = 154,
  135. ERR_CONG_NOT_PROTO_A = 155,
  136. ERR_PIC_AFTER_DEP = 156,
  137. ERR_PIC_PEER_DEP = 157,
  138. /* insert new ones above this line */
  139. AFTER_LAST_ERR_CODE
  140. };
  141. #define DRBD_PROT_A 1
  142. #define DRBD_PROT_B 2
  143. #define DRBD_PROT_C 3
  144. enum drbd_role {
  145. R_UNKNOWN = 0,
  146. R_PRIMARY = 1, /* role */
  147. R_SECONDARY = 2, /* role */
  148. R_MASK = 3,
  149. };
  150. /* The order of these constants is important.
  151. * The lower ones (<C_WF_REPORT_PARAMS) indicate
  152. * that there is no socket!
  153. * >=C_WF_REPORT_PARAMS ==> There is a socket
  154. */
  155. enum drbd_conns {
  156. C_STANDALONE,
  157. C_DISCONNECTING, /* Temporal state on the way to StandAlone. */
  158. C_UNCONNECTED, /* >= C_UNCONNECTED -> inc_net() succeeds */
  159. /* These temporal states are all used on the way
  160. * from >= C_CONNECTED to Unconnected.
  161. * The 'disconnect reason' states
  162. * I do not allow to change between them. */
  163. C_TIMEOUT,
  164. C_BROKEN_PIPE,
  165. C_NETWORK_FAILURE,
  166. C_PROTOCOL_ERROR,
  167. C_TEAR_DOWN,
  168. C_WF_CONNECTION,
  169. C_WF_REPORT_PARAMS, /* we have a socket */
  170. C_CONNECTED, /* we have introduced each other */
  171. C_STARTING_SYNC_S, /* starting full sync by admin request. */
  172. C_STARTING_SYNC_T, /* starting full sync by admin request. */
  173. C_WF_BITMAP_S,
  174. C_WF_BITMAP_T,
  175. C_WF_SYNC_UUID,
  176. /* All SyncStates are tested with this comparison
  177. * xx >= C_SYNC_SOURCE && xx <= C_PAUSED_SYNC_T */
  178. C_SYNC_SOURCE,
  179. C_SYNC_TARGET,
  180. C_VERIFY_S,
  181. C_VERIFY_T,
  182. C_PAUSED_SYNC_S,
  183. C_PAUSED_SYNC_T,
  184. C_AHEAD,
  185. C_BEHIND,
  186. C_MASK = 31
  187. };
  188. enum drbd_disk_state {
  189. D_DISKLESS,
  190. D_ATTACHING, /* In the process of reading the meta-data */
  191. D_FAILED, /* Becomes D_DISKLESS as soon as we told it the peer */
  192. /* when >= D_FAILED it is legal to access mdev->bc */
  193. D_NEGOTIATING, /* Late attaching state, we need to talk to the peer */
  194. D_INCONSISTENT,
  195. D_OUTDATED,
  196. D_UNKNOWN, /* Only used for the peer, never for myself */
  197. D_CONSISTENT, /* Might be D_OUTDATED, might be D_UP_TO_DATE ... */
  198. D_UP_TO_DATE, /* Only this disk state allows applications' IO ! */
  199. D_MASK = 15
  200. };
  201. union drbd_state {
  202. /* According to gcc's docs is the ...
  203. * The order of allocation of bit-fields within a unit (C90 6.5.2.1, C99 6.7.2.1).
  204. * Determined by ABI.
  205. * pointed out by Maxim Uvarov q<muvarov@ru.mvista.com>
  206. * even though we transmit as "cpu_to_be32(state)",
  207. * the offsets of the bitfields still need to be swapped
  208. * on different endianness.
  209. */
  210. struct {
  211. #if defined(__LITTLE_ENDIAN_BITFIELD)
  212. unsigned role:2 ; /* 3/4 primary/secondary/unknown */
  213. unsigned peer:2 ; /* 3/4 primary/secondary/unknown */
  214. unsigned conn:5 ; /* 17/32 cstates */
  215. unsigned disk:4 ; /* 8/16 from D_DISKLESS to D_UP_TO_DATE */
  216. unsigned pdsk:4 ; /* 8/16 from D_DISKLESS to D_UP_TO_DATE */
  217. unsigned susp:1 ; /* 2/2 IO suspended no/yes (by user) */
  218. unsigned aftr_isp:1 ; /* isp .. imposed sync pause */
  219. unsigned peer_isp:1 ;
  220. unsigned user_isp:1 ;
  221. unsigned susp_nod:1 ; /* IO suspended because no data */
  222. unsigned susp_fen:1 ; /* IO suspended because fence peer handler runs*/
  223. unsigned _pad:9; /* 0 unused */
  224. #elif defined(__BIG_ENDIAN_BITFIELD)
  225. unsigned _pad:9;
  226. unsigned susp_fen:1 ;
  227. unsigned susp_nod:1 ;
  228. unsigned user_isp:1 ;
  229. unsigned peer_isp:1 ;
  230. unsigned aftr_isp:1 ; /* isp .. imposed sync pause */
  231. unsigned susp:1 ; /* 2/2 IO suspended no/yes */
  232. unsigned pdsk:4 ; /* 8/16 from D_DISKLESS to D_UP_TO_DATE */
  233. unsigned disk:4 ; /* 8/16 from D_DISKLESS to D_UP_TO_DATE */
  234. unsigned conn:5 ; /* 17/32 cstates */
  235. unsigned peer:2 ; /* 3/4 primary/secondary/unknown */
  236. unsigned role:2 ; /* 3/4 primary/secondary/unknown */
  237. #else
  238. # error "this endianness is not supported"
  239. #endif
  240. };
  241. unsigned int i;
  242. };
  243. enum drbd_state_rv {
  244. SS_CW_NO_NEED = 4,
  245. SS_CW_SUCCESS = 3,
  246. SS_NOTHING_TO_DO = 2,
  247. SS_SUCCESS = 1,
  248. SS_UNKNOWN_ERROR = 0, /* Used to sleep longer in _drbd_request_state */
  249. SS_TWO_PRIMARIES = -1,
  250. SS_NO_UP_TO_DATE_DISK = -2,
  251. SS_NO_LOCAL_DISK = -4,
  252. SS_NO_REMOTE_DISK = -5,
  253. SS_CONNECTED_OUTDATES = -6,
  254. SS_PRIMARY_NOP = -7,
  255. SS_RESYNC_RUNNING = -8,
  256. SS_ALREADY_STANDALONE = -9,
  257. SS_CW_FAILED_BY_PEER = -10,
  258. SS_IS_DISKLESS = -11,
  259. SS_DEVICE_IN_USE = -12,
  260. SS_NO_NET_CONFIG = -13,
  261. SS_NO_VERIFY_ALG = -14, /* drbd-8.2 only */
  262. SS_NEED_CONNECTION = -15, /* drbd-8.2 only */
  263. SS_LOWER_THAN_OUTDATED = -16,
  264. SS_NOT_SUPPORTED = -17, /* drbd-8.2 only */
  265. SS_IN_TRANSIENT_STATE = -18, /* Retry after the next state change */
  266. SS_CONCURRENT_ST_CHG = -19, /* Concurrent cluster side state change! */
  267. SS_AFTER_LAST_ERROR = -20, /* Keep this at bottom */
  268. };
  269. /* from drbd_strings.c */
  270. extern const char *drbd_conn_str(enum drbd_conns);
  271. extern const char *drbd_role_str(enum drbd_role);
  272. extern const char *drbd_disk_str(enum drbd_disk_state);
  273. extern const char *drbd_set_st_err_str(enum drbd_state_rv);
  274. #define SHARED_SECRET_MAX 64
  275. #define MDF_CONSISTENT (1 << 0)
  276. #define MDF_PRIMARY_IND (1 << 1)
  277. #define MDF_CONNECTED_IND (1 << 2)
  278. #define MDF_FULL_SYNC (1 << 3)
  279. #define MDF_WAS_UP_TO_DATE (1 << 4)
  280. #define MDF_PEER_OUT_DATED (1 << 5)
  281. #define MDF_CRASHED_PRIMARY (1 << 6)
  282. enum drbd_uuid_index {
  283. UI_CURRENT,
  284. UI_BITMAP,
  285. UI_HISTORY_START,
  286. UI_HISTORY_END,
  287. UI_SIZE, /* nl-packet: number of dirty bits */
  288. UI_FLAGS, /* nl-packet: flags */
  289. UI_EXTENDED_SIZE /* Everything. */
  290. };
  291. enum drbd_timeout_flag {
  292. UT_DEFAULT = 0,
  293. UT_DEGRADED = 1,
  294. UT_PEER_OUTDATED = 2,
  295. };
  296. #define UUID_JUST_CREATED ((__u64)4)
  297. #define DRBD_MAGIC 0x83740267
  298. #define BE_DRBD_MAGIC __constant_cpu_to_be32(DRBD_MAGIC)
  299. #define DRBD_MAGIC_BIG 0x835a
  300. #define BE_DRBD_MAGIC_BIG __constant_cpu_to_be16(DRBD_MAGIC_BIG)
  301. /* these are of type "int" */
  302. #define DRBD_MD_INDEX_INTERNAL -1
  303. #define DRBD_MD_INDEX_FLEX_EXT -2
  304. #define DRBD_MD_INDEX_FLEX_INT -3
  305. /* Start of the new netlink/connector stuff */
  306. #define DRBD_NL_CREATE_DEVICE 0x01
  307. #define DRBD_NL_SET_DEFAULTS 0x02
  308. /* For searching a vacant cn_idx value */
  309. #define CN_IDX_STEP 6977
  310. struct drbd_nl_cfg_req {
  311. int packet_type;
  312. unsigned int drbd_minor;
  313. int flags;
  314. unsigned short tag_list[];
  315. };
  316. struct drbd_nl_cfg_reply {
  317. int packet_type;
  318. unsigned int minor;
  319. int ret_code; /* enum ret_code or set_st_err_t */
  320. unsigned short tag_list[]; /* only used with get_* calls */
  321. };
  322. #endif