drbd_int.h 74 KB

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