drbd_int.h 71 KB

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