drbd_int.h 74 KB

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