drbd_int.h 78 KB

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