drbd_int.h 76 KB

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