drbd_int.h 75 KB

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