drbd_int.h 75 KB

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