drbd_int.h 76 KB

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