drbd_int.h 76 KB

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