dm-thin.c 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404
  1. /*
  2. * Copyright (C) 2011-2012 Red Hat UK.
  3. *
  4. * This file is released under the GPL.
  5. */
  6. #include "dm-thin-metadata.h"
  7. #include "dm-bio-prison.h"
  8. #include "dm.h"
  9. #include <linux/device-mapper.h>
  10. #include <linux/dm-io.h>
  11. #include <linux/dm-kcopyd.h>
  12. #include <linux/jiffies.h>
  13. #include <linux/log2.h>
  14. #include <linux/list.h>
  15. #include <linux/rculist.h>
  16. #include <linux/init.h>
  17. #include <linux/module.h>
  18. #include <linux/slab.h>
  19. #include <linux/vmalloc.h>
  20. #include <linux/sort.h>
  21. #include <linux/rbtree.h>
  22. #define DM_MSG_PREFIX "thin"
  23. /*
  24. * Tunable constants
  25. */
  26. #define ENDIO_HOOK_POOL_SIZE 1024
  27. #define MAPPING_POOL_SIZE 1024
  28. #define COMMIT_PERIOD HZ
  29. #define NO_SPACE_TIMEOUT_SECS 60
  30. static unsigned no_space_timeout_secs = NO_SPACE_TIMEOUT_SECS;
  31. DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(snapshot_copy_throttle,
  32. "A percentage of time allocated for copy on write");
  33. /*
  34. * The block size of the device holding pool data must be
  35. * between 64KB and 1GB.
  36. */
  37. #define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (64 * 1024 >> SECTOR_SHIFT)
  38. #define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
  39. /*
  40. * Device id is restricted to 24 bits.
  41. */
  42. #define MAX_DEV_ID ((1 << 24) - 1)
  43. /*
  44. * How do we handle breaking sharing of data blocks?
  45. * =================================================
  46. *
  47. * We use a standard copy-on-write btree to store the mappings for the
  48. * devices (note I'm talking about copy-on-write of the metadata here, not
  49. * the data). When you take an internal snapshot you clone the root node
  50. * of the origin btree. After this there is no concept of an origin or a
  51. * snapshot. They are just two device trees that happen to point to the
  52. * same data blocks.
  53. *
  54. * When we get a write in we decide if it's to a shared data block using
  55. * some timestamp magic. If it is, we have to break sharing.
  56. *
  57. * Let's say we write to a shared block in what was the origin. The
  58. * steps are:
  59. *
  60. * i) plug io further to this physical block. (see bio_prison code).
  61. *
  62. * ii) quiesce any read io to that shared data block. Obviously
  63. * including all devices that share this block. (see dm_deferred_set code)
  64. *
  65. * iii) copy the data block to a newly allocate block. This step can be
  66. * missed out if the io covers the block. (schedule_copy).
  67. *
  68. * iv) insert the new mapping into the origin's btree
  69. * (process_prepared_mapping). This act of inserting breaks some
  70. * sharing of btree nodes between the two devices. Breaking sharing only
  71. * effects the btree of that specific device. Btrees for the other
  72. * devices that share the block never change. The btree for the origin
  73. * device as it was after the last commit is untouched, ie. we're using
  74. * persistent data structures in the functional programming sense.
  75. *
  76. * v) unplug io to this physical block, including the io that triggered
  77. * the breaking of sharing.
  78. *
  79. * Steps (ii) and (iii) occur in parallel.
  80. *
  81. * The metadata _doesn't_ need to be committed before the io continues. We
  82. * get away with this because the io is always written to a _new_ block.
  83. * If there's a crash, then:
  84. *
  85. * - The origin mapping will point to the old origin block (the shared
  86. * one). This will contain the data as it was before the io that triggered
  87. * the breaking of sharing came in.
  88. *
  89. * - The snap mapping still points to the old block. As it would after
  90. * the commit.
  91. *
  92. * The downside of this scheme is the timestamp magic isn't perfect, and
  93. * will continue to think that data block in the snapshot device is shared
  94. * even after the write to the origin has broken sharing. I suspect data
  95. * blocks will typically be shared by many different devices, so we're
  96. * breaking sharing n + 1 times, rather than n, where n is the number of
  97. * devices that reference this data block. At the moment I think the
  98. * benefits far, far outweigh the disadvantages.
  99. */
  100. /*----------------------------------------------------------------*/
  101. /*
  102. * Key building.
  103. */
  104. enum lock_space {
  105. VIRTUAL,
  106. PHYSICAL
  107. };
  108. static void build_key(struct dm_thin_device *td, enum lock_space ls,
  109. dm_block_t b, dm_block_t e, struct dm_cell_key *key)
  110. {
  111. key->virtual = (ls == VIRTUAL);
  112. key->dev = dm_thin_dev_id(td);
  113. key->block_begin = b;
  114. key->block_end = e;
  115. }
  116. static void build_data_key(struct dm_thin_device *td, dm_block_t b,
  117. struct dm_cell_key *key)
  118. {
  119. build_key(td, PHYSICAL, b, b + 1llu, key);
  120. }
  121. static void build_virtual_key(struct dm_thin_device *td, dm_block_t b,
  122. struct dm_cell_key *key)
  123. {
  124. build_key(td, VIRTUAL, b, b + 1llu, key);
  125. }
  126. /*----------------------------------------------------------------*/
  127. #define THROTTLE_THRESHOLD (1 * HZ)
  128. struct throttle {
  129. struct rw_semaphore lock;
  130. unsigned long threshold;
  131. bool throttle_applied;
  132. };
  133. static void throttle_init(struct throttle *t)
  134. {
  135. init_rwsem(&t->lock);
  136. t->throttle_applied = false;
  137. }
  138. static void throttle_work_start(struct throttle *t)
  139. {
  140. t->threshold = jiffies + THROTTLE_THRESHOLD;
  141. }
  142. static void throttle_work_update(struct throttle *t)
  143. {
  144. if (!t->throttle_applied && jiffies > t->threshold) {
  145. down_write(&t->lock);
  146. t->throttle_applied = true;
  147. }
  148. }
  149. static void throttle_work_complete(struct throttle *t)
  150. {
  151. if (t->throttle_applied) {
  152. t->throttle_applied = false;
  153. up_write(&t->lock);
  154. }
  155. }
  156. static void throttle_lock(struct throttle *t)
  157. {
  158. down_read(&t->lock);
  159. }
  160. static void throttle_unlock(struct throttle *t)
  161. {
  162. up_read(&t->lock);
  163. }
  164. /*----------------------------------------------------------------*/
  165. /*
  166. * A pool device ties together a metadata device and a data device. It
  167. * also provides the interface for creating and destroying internal
  168. * devices.
  169. */
  170. struct dm_thin_new_mapping;
  171. /*
  172. * The pool runs in 4 modes. Ordered in degraded order for comparisons.
  173. */
  174. enum pool_mode {
  175. PM_WRITE, /* metadata may be changed */
  176. PM_OUT_OF_DATA_SPACE, /* metadata may be changed, though data may not be allocated */
  177. PM_READ_ONLY, /* metadata may not be changed */
  178. PM_FAIL, /* all I/O fails */
  179. };
  180. struct pool_features {
  181. enum pool_mode mode;
  182. bool zero_new_blocks:1;
  183. bool discard_enabled:1;
  184. bool discard_passdown:1;
  185. bool error_if_no_space:1;
  186. };
  187. struct thin_c;
  188. typedef void (*process_bio_fn)(struct thin_c *tc, struct bio *bio);
  189. typedef void (*process_cell_fn)(struct thin_c *tc, struct dm_bio_prison_cell *cell);
  190. typedef void (*process_mapping_fn)(struct dm_thin_new_mapping *m);
  191. #define CELL_SORT_ARRAY_SIZE 8192
  192. struct pool {
  193. struct list_head list;
  194. struct dm_target *ti; /* Only set if a pool target is bound */
  195. struct mapped_device *pool_md;
  196. struct block_device *md_dev;
  197. struct dm_pool_metadata *pmd;
  198. dm_block_t low_water_blocks;
  199. uint32_t sectors_per_block;
  200. int sectors_per_block_shift;
  201. struct pool_features pf;
  202. bool low_water_triggered:1; /* A dm event has been sent */
  203. bool suspended:1;
  204. bool out_of_data_space:1;
  205. struct dm_bio_prison *prison;
  206. struct dm_kcopyd_client *copier;
  207. struct workqueue_struct *wq;
  208. struct throttle throttle;
  209. struct work_struct worker;
  210. struct delayed_work waker;
  211. struct delayed_work no_space_timeout;
  212. unsigned long last_commit_jiffies;
  213. unsigned ref_count;
  214. spinlock_t lock;
  215. struct bio_list deferred_flush_bios;
  216. struct list_head prepared_mappings;
  217. struct list_head prepared_discards;
  218. struct list_head prepared_discards_pt2;
  219. struct list_head active_thins;
  220. struct dm_deferred_set *shared_read_ds;
  221. struct dm_deferred_set *all_io_ds;
  222. struct dm_thin_new_mapping *next_mapping;
  223. mempool_t *mapping_pool;
  224. process_bio_fn process_bio;
  225. process_bio_fn process_discard;
  226. process_cell_fn process_cell;
  227. process_cell_fn process_discard_cell;
  228. process_mapping_fn process_prepared_mapping;
  229. process_mapping_fn process_prepared_discard;
  230. process_mapping_fn process_prepared_discard_pt2;
  231. struct dm_bio_prison_cell **cell_sort_array;
  232. };
  233. static enum pool_mode get_pool_mode(struct pool *pool);
  234. static void metadata_operation_failed(struct pool *pool, const char *op, int r);
  235. /*
  236. * Target context for a pool.
  237. */
  238. struct pool_c {
  239. struct dm_target *ti;
  240. struct pool *pool;
  241. struct dm_dev *data_dev;
  242. struct dm_dev *metadata_dev;
  243. struct dm_target_callbacks callbacks;
  244. dm_block_t low_water_blocks;
  245. struct pool_features requested_pf; /* Features requested during table load */
  246. struct pool_features adjusted_pf; /* Features used after adjusting for constituent devices */
  247. };
  248. /*
  249. * Target context for a thin.
  250. */
  251. struct thin_c {
  252. struct list_head list;
  253. struct dm_dev *pool_dev;
  254. struct dm_dev *origin_dev;
  255. sector_t origin_size;
  256. dm_thin_id dev_id;
  257. struct pool *pool;
  258. struct dm_thin_device *td;
  259. struct mapped_device *thin_md;
  260. bool requeue_mode:1;
  261. spinlock_t lock;
  262. struct list_head deferred_cells;
  263. struct bio_list deferred_bio_list;
  264. struct bio_list retry_on_resume_list;
  265. struct rb_root sort_bio_list; /* sorted list of deferred bios */
  266. /*
  267. * Ensures the thin is not destroyed until the worker has finished
  268. * iterating the active_thins list.
  269. */
  270. atomic_t refcount;
  271. struct completion can_destroy;
  272. };
  273. /*----------------------------------------------------------------*/
  274. static bool block_size_is_power_of_two(struct pool *pool)
  275. {
  276. return pool->sectors_per_block_shift >= 0;
  277. }
  278. static sector_t block_to_sectors(struct pool *pool, dm_block_t b)
  279. {
  280. return block_size_is_power_of_two(pool) ?
  281. (b << pool->sectors_per_block_shift) :
  282. (b * pool->sectors_per_block);
  283. }
  284. /*----------------------------------------------------------------*/
  285. struct discard_op {
  286. struct thin_c *tc;
  287. struct blk_plug plug;
  288. struct bio *parent_bio;
  289. struct bio *bio;
  290. };
  291. static void begin_discard(struct discard_op *op, struct thin_c *tc, struct bio *parent)
  292. {
  293. BUG_ON(!parent);
  294. op->tc = tc;
  295. blk_start_plug(&op->plug);
  296. op->parent_bio = parent;
  297. op->bio = NULL;
  298. }
  299. static int issue_discard(struct discard_op *op, dm_block_t data_b, dm_block_t data_e)
  300. {
  301. struct thin_c *tc = op->tc;
  302. sector_t s = block_to_sectors(tc->pool, data_b);
  303. sector_t len = block_to_sectors(tc->pool, data_e - data_b);
  304. return __blkdev_issue_discard(tc->pool_dev->bdev, s, len,
  305. GFP_NOWAIT, 0, &op->bio);
  306. }
  307. static void end_discard(struct discard_op *op, int r)
  308. {
  309. if (op->bio) {
  310. /*
  311. * Even if one of the calls to issue_discard failed, we
  312. * need to wait for the chain to complete.
  313. */
  314. bio_chain(op->bio, op->parent_bio);
  315. bio_set_op_attrs(op->bio, REQ_OP_DISCARD, 0);
  316. submit_bio(op->bio);
  317. }
  318. blk_finish_plug(&op->plug);
  319. /*
  320. * Even if r is set, there could be sub discards in flight that we
  321. * need to wait for.
  322. */
  323. if (r && !op->parent_bio->bi_error)
  324. op->parent_bio->bi_error = r;
  325. bio_endio(op->parent_bio);
  326. }
  327. /*----------------------------------------------------------------*/
  328. /*
  329. * wake_worker() is used when new work is queued and when pool_resume is
  330. * ready to continue deferred IO processing.
  331. */
  332. static void wake_worker(struct pool *pool)
  333. {
  334. queue_work(pool->wq, &pool->worker);
  335. }
  336. /*----------------------------------------------------------------*/
  337. static int bio_detain(struct pool *pool, struct dm_cell_key *key, struct bio *bio,
  338. struct dm_bio_prison_cell **cell_result)
  339. {
  340. int r;
  341. struct dm_bio_prison_cell *cell_prealloc;
  342. /*
  343. * Allocate a cell from the prison's mempool.
  344. * This might block but it can't fail.
  345. */
  346. cell_prealloc = dm_bio_prison_alloc_cell(pool->prison, GFP_NOIO);
  347. r = dm_bio_detain(pool->prison, key, bio, cell_prealloc, cell_result);
  348. if (r)
  349. /*
  350. * We reused an old cell; we can get rid of
  351. * the new one.
  352. */
  353. dm_bio_prison_free_cell(pool->prison, cell_prealloc);
  354. return r;
  355. }
  356. static void cell_release(struct pool *pool,
  357. struct dm_bio_prison_cell *cell,
  358. struct bio_list *bios)
  359. {
  360. dm_cell_release(pool->prison, cell, bios);
  361. dm_bio_prison_free_cell(pool->prison, cell);
  362. }
  363. static void cell_visit_release(struct pool *pool,
  364. void (*fn)(void *, struct dm_bio_prison_cell *),
  365. void *context,
  366. struct dm_bio_prison_cell *cell)
  367. {
  368. dm_cell_visit_release(pool->prison, fn, context, cell);
  369. dm_bio_prison_free_cell(pool->prison, cell);
  370. }
  371. static void cell_release_no_holder(struct pool *pool,
  372. struct dm_bio_prison_cell *cell,
  373. struct bio_list *bios)
  374. {
  375. dm_cell_release_no_holder(pool->prison, cell, bios);
  376. dm_bio_prison_free_cell(pool->prison, cell);
  377. }
  378. static void cell_error_with_code(struct pool *pool,
  379. struct dm_bio_prison_cell *cell, int error_code)
  380. {
  381. dm_cell_error(pool->prison, cell, error_code);
  382. dm_bio_prison_free_cell(pool->prison, cell);
  383. }
  384. static int get_pool_io_error_code(struct pool *pool)
  385. {
  386. return pool->out_of_data_space ? -ENOSPC : -EIO;
  387. }
  388. static void cell_error(struct pool *pool, struct dm_bio_prison_cell *cell)
  389. {
  390. int error = get_pool_io_error_code(pool);
  391. cell_error_with_code(pool, cell, error);
  392. }
  393. static void cell_success(struct pool *pool, struct dm_bio_prison_cell *cell)
  394. {
  395. cell_error_with_code(pool, cell, 0);
  396. }
  397. static void cell_requeue(struct pool *pool, struct dm_bio_prison_cell *cell)
  398. {
  399. cell_error_with_code(pool, cell, DM_ENDIO_REQUEUE);
  400. }
  401. /*----------------------------------------------------------------*/
  402. /*
  403. * A global list of pools that uses a struct mapped_device as a key.
  404. */
  405. static struct dm_thin_pool_table {
  406. struct mutex mutex;
  407. struct list_head pools;
  408. } dm_thin_pool_table;
  409. static void pool_table_init(void)
  410. {
  411. mutex_init(&dm_thin_pool_table.mutex);
  412. INIT_LIST_HEAD(&dm_thin_pool_table.pools);
  413. }
  414. static void __pool_table_insert(struct pool *pool)
  415. {
  416. BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
  417. list_add(&pool->list, &dm_thin_pool_table.pools);
  418. }
  419. static void __pool_table_remove(struct pool *pool)
  420. {
  421. BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
  422. list_del(&pool->list);
  423. }
  424. static struct pool *__pool_table_lookup(struct mapped_device *md)
  425. {
  426. struct pool *pool = NULL, *tmp;
  427. BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
  428. list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
  429. if (tmp->pool_md == md) {
  430. pool = tmp;
  431. break;
  432. }
  433. }
  434. return pool;
  435. }
  436. static struct pool *__pool_table_lookup_metadata_dev(struct block_device *md_dev)
  437. {
  438. struct pool *pool = NULL, *tmp;
  439. BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
  440. list_for_each_entry(tmp, &dm_thin_pool_table.pools, list) {
  441. if (tmp->md_dev == md_dev) {
  442. pool = tmp;
  443. break;
  444. }
  445. }
  446. return pool;
  447. }
  448. /*----------------------------------------------------------------*/
  449. struct dm_thin_endio_hook {
  450. struct thin_c *tc;
  451. struct dm_deferred_entry *shared_read_entry;
  452. struct dm_deferred_entry *all_io_entry;
  453. struct dm_thin_new_mapping *overwrite_mapping;
  454. struct rb_node rb_node;
  455. struct dm_bio_prison_cell *cell;
  456. };
  457. static void __merge_bio_list(struct bio_list *bios, struct bio_list *master)
  458. {
  459. bio_list_merge(bios, master);
  460. bio_list_init(master);
  461. }
  462. static void error_bio_list(struct bio_list *bios, int error)
  463. {
  464. struct bio *bio;
  465. while ((bio = bio_list_pop(bios))) {
  466. bio->bi_error = error;
  467. bio_endio(bio);
  468. }
  469. }
  470. static void error_thin_bio_list(struct thin_c *tc, struct bio_list *master, int error)
  471. {
  472. struct bio_list bios;
  473. unsigned long flags;
  474. bio_list_init(&bios);
  475. spin_lock_irqsave(&tc->lock, flags);
  476. __merge_bio_list(&bios, master);
  477. spin_unlock_irqrestore(&tc->lock, flags);
  478. error_bio_list(&bios, error);
  479. }
  480. static void requeue_deferred_cells(struct thin_c *tc)
  481. {
  482. struct pool *pool = tc->pool;
  483. unsigned long flags;
  484. struct list_head cells;
  485. struct dm_bio_prison_cell *cell, *tmp;
  486. INIT_LIST_HEAD(&cells);
  487. spin_lock_irqsave(&tc->lock, flags);
  488. list_splice_init(&tc->deferred_cells, &cells);
  489. spin_unlock_irqrestore(&tc->lock, flags);
  490. list_for_each_entry_safe(cell, tmp, &cells, user_list)
  491. cell_requeue(pool, cell);
  492. }
  493. static void requeue_io(struct thin_c *tc)
  494. {
  495. struct bio_list bios;
  496. unsigned long flags;
  497. bio_list_init(&bios);
  498. spin_lock_irqsave(&tc->lock, flags);
  499. __merge_bio_list(&bios, &tc->deferred_bio_list);
  500. __merge_bio_list(&bios, &tc->retry_on_resume_list);
  501. spin_unlock_irqrestore(&tc->lock, flags);
  502. error_bio_list(&bios, DM_ENDIO_REQUEUE);
  503. requeue_deferred_cells(tc);
  504. }
  505. static void error_retry_list_with_code(struct pool *pool, int error)
  506. {
  507. struct thin_c *tc;
  508. rcu_read_lock();
  509. list_for_each_entry_rcu(tc, &pool->active_thins, list)
  510. error_thin_bio_list(tc, &tc->retry_on_resume_list, error);
  511. rcu_read_unlock();
  512. }
  513. static void error_retry_list(struct pool *pool)
  514. {
  515. int error = get_pool_io_error_code(pool);
  516. error_retry_list_with_code(pool, error);
  517. }
  518. /*
  519. * This section of code contains the logic for processing a thin device's IO.
  520. * Much of the code depends on pool object resources (lists, workqueues, etc)
  521. * but most is exclusively called from the thin target rather than the thin-pool
  522. * target.
  523. */
  524. static dm_block_t get_bio_block(struct thin_c *tc, struct bio *bio)
  525. {
  526. struct pool *pool = tc->pool;
  527. sector_t block_nr = bio->bi_iter.bi_sector;
  528. if (block_size_is_power_of_two(pool))
  529. block_nr >>= pool->sectors_per_block_shift;
  530. else
  531. (void) sector_div(block_nr, pool->sectors_per_block);
  532. return block_nr;
  533. }
  534. /*
  535. * Returns the _complete_ blocks that this bio covers.
  536. */
  537. static void get_bio_block_range(struct thin_c *tc, struct bio *bio,
  538. dm_block_t *begin, dm_block_t *end)
  539. {
  540. struct pool *pool = tc->pool;
  541. sector_t b = bio->bi_iter.bi_sector;
  542. sector_t e = b + (bio->bi_iter.bi_size >> SECTOR_SHIFT);
  543. b += pool->sectors_per_block - 1ull; /* so we round up */
  544. if (block_size_is_power_of_two(pool)) {
  545. b >>= pool->sectors_per_block_shift;
  546. e >>= pool->sectors_per_block_shift;
  547. } else {
  548. (void) sector_div(b, pool->sectors_per_block);
  549. (void) sector_div(e, pool->sectors_per_block);
  550. }
  551. if (e < b)
  552. /* Can happen if the bio is within a single block. */
  553. e = b;
  554. *begin = b;
  555. *end = e;
  556. }
  557. static void remap(struct thin_c *tc, struct bio *bio, dm_block_t block)
  558. {
  559. struct pool *pool = tc->pool;
  560. sector_t bi_sector = bio->bi_iter.bi_sector;
  561. bio->bi_bdev = tc->pool_dev->bdev;
  562. if (block_size_is_power_of_two(pool))
  563. bio->bi_iter.bi_sector =
  564. (block << pool->sectors_per_block_shift) |
  565. (bi_sector & (pool->sectors_per_block - 1));
  566. else
  567. bio->bi_iter.bi_sector = (block * pool->sectors_per_block) +
  568. sector_div(bi_sector, pool->sectors_per_block);
  569. }
  570. static void remap_to_origin(struct thin_c *tc, struct bio *bio)
  571. {
  572. bio->bi_bdev = tc->origin_dev->bdev;
  573. }
  574. static int bio_triggers_commit(struct thin_c *tc, struct bio *bio)
  575. {
  576. return op_is_flush(bio->bi_opf) &&
  577. dm_thin_changed_this_transaction(tc->td);
  578. }
  579. static void inc_all_io_entry(struct pool *pool, struct bio *bio)
  580. {
  581. struct dm_thin_endio_hook *h;
  582. if (bio_op(bio) == REQ_OP_DISCARD)
  583. return;
  584. h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
  585. h->all_io_entry = dm_deferred_entry_inc(pool->all_io_ds);
  586. }
  587. static void issue(struct thin_c *tc, struct bio *bio)
  588. {
  589. struct pool *pool = tc->pool;
  590. unsigned long flags;
  591. if (!bio_triggers_commit(tc, bio)) {
  592. generic_make_request(bio);
  593. return;
  594. }
  595. /*
  596. * Complete bio with an error if earlier I/O caused changes to
  597. * the metadata that can't be committed e.g, due to I/O errors
  598. * on the metadata device.
  599. */
  600. if (dm_thin_aborted_changes(tc->td)) {
  601. bio_io_error(bio);
  602. return;
  603. }
  604. /*
  605. * Batch together any bios that trigger commits and then issue a
  606. * single commit for them in process_deferred_bios().
  607. */
  608. spin_lock_irqsave(&pool->lock, flags);
  609. bio_list_add(&pool->deferred_flush_bios, bio);
  610. spin_unlock_irqrestore(&pool->lock, flags);
  611. }
  612. static void remap_to_origin_and_issue(struct thin_c *tc, struct bio *bio)
  613. {
  614. remap_to_origin(tc, bio);
  615. issue(tc, bio);
  616. }
  617. static void remap_and_issue(struct thin_c *tc, struct bio *bio,
  618. dm_block_t block)
  619. {
  620. remap(tc, bio, block);
  621. issue(tc, bio);
  622. }
  623. /*----------------------------------------------------------------*/
  624. /*
  625. * Bio endio functions.
  626. */
  627. struct dm_thin_new_mapping {
  628. struct list_head list;
  629. bool pass_discard:1;
  630. bool maybe_shared:1;
  631. /*
  632. * Track quiescing, copying and zeroing preparation actions. When this
  633. * counter hits zero the block is prepared and can be inserted into the
  634. * btree.
  635. */
  636. atomic_t prepare_actions;
  637. int err;
  638. struct thin_c *tc;
  639. dm_block_t virt_begin, virt_end;
  640. dm_block_t data_block;
  641. struct dm_bio_prison_cell *cell;
  642. /*
  643. * If the bio covers the whole area of a block then we can avoid
  644. * zeroing or copying. Instead this bio is hooked. The bio will
  645. * still be in the cell, so care has to be taken to avoid issuing
  646. * the bio twice.
  647. */
  648. struct bio *bio;
  649. bio_end_io_t *saved_bi_end_io;
  650. };
  651. static void __complete_mapping_preparation(struct dm_thin_new_mapping *m)
  652. {
  653. struct pool *pool = m->tc->pool;
  654. if (atomic_dec_and_test(&m->prepare_actions)) {
  655. list_add_tail(&m->list, &pool->prepared_mappings);
  656. wake_worker(pool);
  657. }
  658. }
  659. static void complete_mapping_preparation(struct dm_thin_new_mapping *m)
  660. {
  661. unsigned long flags;
  662. struct pool *pool = m->tc->pool;
  663. spin_lock_irqsave(&pool->lock, flags);
  664. __complete_mapping_preparation(m);
  665. spin_unlock_irqrestore(&pool->lock, flags);
  666. }
  667. static void copy_complete(int read_err, unsigned long write_err, void *context)
  668. {
  669. struct dm_thin_new_mapping *m = context;
  670. m->err = read_err || write_err ? -EIO : 0;
  671. complete_mapping_preparation(m);
  672. }
  673. static void overwrite_endio(struct bio *bio)
  674. {
  675. struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
  676. struct dm_thin_new_mapping *m = h->overwrite_mapping;
  677. bio->bi_end_io = m->saved_bi_end_io;
  678. m->err = bio->bi_error;
  679. complete_mapping_preparation(m);
  680. }
  681. /*----------------------------------------------------------------*/
  682. /*
  683. * Workqueue.
  684. */
  685. /*
  686. * Prepared mapping jobs.
  687. */
  688. /*
  689. * This sends the bios in the cell, except the original holder, back
  690. * to the deferred_bios list.
  691. */
  692. static void cell_defer_no_holder(struct thin_c *tc, struct dm_bio_prison_cell *cell)
  693. {
  694. struct pool *pool = tc->pool;
  695. unsigned long flags;
  696. spin_lock_irqsave(&tc->lock, flags);
  697. cell_release_no_holder(pool, cell, &tc->deferred_bio_list);
  698. spin_unlock_irqrestore(&tc->lock, flags);
  699. wake_worker(pool);
  700. }
  701. static void thin_defer_bio(struct thin_c *tc, struct bio *bio);
  702. struct remap_info {
  703. struct thin_c *tc;
  704. struct bio_list defer_bios;
  705. struct bio_list issue_bios;
  706. };
  707. static void __inc_remap_and_issue_cell(void *context,
  708. struct dm_bio_prison_cell *cell)
  709. {
  710. struct remap_info *info = context;
  711. struct bio *bio;
  712. while ((bio = bio_list_pop(&cell->bios))) {
  713. if (op_is_flush(bio->bi_opf) || bio_op(bio) == REQ_OP_DISCARD)
  714. bio_list_add(&info->defer_bios, bio);
  715. else {
  716. inc_all_io_entry(info->tc->pool, bio);
  717. /*
  718. * We can't issue the bios with the bio prison lock
  719. * held, so we add them to a list to issue on
  720. * return from this function.
  721. */
  722. bio_list_add(&info->issue_bios, bio);
  723. }
  724. }
  725. }
  726. static void inc_remap_and_issue_cell(struct thin_c *tc,
  727. struct dm_bio_prison_cell *cell,
  728. dm_block_t block)
  729. {
  730. struct bio *bio;
  731. struct remap_info info;
  732. info.tc = tc;
  733. bio_list_init(&info.defer_bios);
  734. bio_list_init(&info.issue_bios);
  735. /*
  736. * We have to be careful to inc any bios we're about to issue
  737. * before the cell is released, and avoid a race with new bios
  738. * being added to the cell.
  739. */
  740. cell_visit_release(tc->pool, __inc_remap_and_issue_cell,
  741. &info, cell);
  742. while ((bio = bio_list_pop(&info.defer_bios)))
  743. thin_defer_bio(tc, bio);
  744. while ((bio = bio_list_pop(&info.issue_bios)))
  745. remap_and_issue(info.tc, bio, block);
  746. }
  747. static void process_prepared_mapping_fail(struct dm_thin_new_mapping *m)
  748. {
  749. cell_error(m->tc->pool, m->cell);
  750. list_del(&m->list);
  751. mempool_free(m, m->tc->pool->mapping_pool);
  752. }
  753. static void process_prepared_mapping(struct dm_thin_new_mapping *m)
  754. {
  755. struct thin_c *tc = m->tc;
  756. struct pool *pool = tc->pool;
  757. struct bio *bio = m->bio;
  758. int r;
  759. if (m->err) {
  760. cell_error(pool, m->cell);
  761. goto out;
  762. }
  763. /*
  764. * Commit the prepared block into the mapping btree.
  765. * Any I/O for this block arriving after this point will get
  766. * remapped to it directly.
  767. */
  768. r = dm_thin_insert_block(tc->td, m->virt_begin, m->data_block);
  769. if (r) {
  770. metadata_operation_failed(pool, "dm_thin_insert_block", r);
  771. cell_error(pool, m->cell);
  772. goto out;
  773. }
  774. /*
  775. * Release any bios held while the block was being provisioned.
  776. * If we are processing a write bio that completely covers the block,
  777. * we already processed it so can ignore it now when processing
  778. * the bios in the cell.
  779. */
  780. if (bio) {
  781. inc_remap_and_issue_cell(tc, m->cell, m->data_block);
  782. bio_endio(bio);
  783. } else {
  784. inc_all_io_entry(tc->pool, m->cell->holder);
  785. remap_and_issue(tc, m->cell->holder, m->data_block);
  786. inc_remap_and_issue_cell(tc, m->cell, m->data_block);
  787. }
  788. out:
  789. list_del(&m->list);
  790. mempool_free(m, pool->mapping_pool);
  791. }
  792. /*----------------------------------------------------------------*/
  793. static void free_discard_mapping(struct dm_thin_new_mapping *m)
  794. {
  795. struct thin_c *tc = m->tc;
  796. if (m->cell)
  797. cell_defer_no_holder(tc, m->cell);
  798. mempool_free(m, tc->pool->mapping_pool);
  799. }
  800. static void process_prepared_discard_fail(struct dm_thin_new_mapping *m)
  801. {
  802. bio_io_error(m->bio);
  803. free_discard_mapping(m);
  804. }
  805. static void process_prepared_discard_success(struct dm_thin_new_mapping *m)
  806. {
  807. bio_endio(m->bio);
  808. free_discard_mapping(m);
  809. }
  810. static void process_prepared_discard_no_passdown(struct dm_thin_new_mapping *m)
  811. {
  812. int r;
  813. struct thin_c *tc = m->tc;
  814. r = dm_thin_remove_range(tc->td, m->cell->key.block_begin, m->cell->key.block_end);
  815. if (r) {
  816. metadata_operation_failed(tc->pool, "dm_thin_remove_range", r);
  817. bio_io_error(m->bio);
  818. } else
  819. bio_endio(m->bio);
  820. cell_defer_no_holder(tc, m->cell);
  821. mempool_free(m, tc->pool->mapping_pool);
  822. }
  823. /*----------------------------------------------------------------*/
  824. static void passdown_double_checking_shared_status(struct dm_thin_new_mapping *m,
  825. struct bio *discard_parent)
  826. {
  827. /*
  828. * We've already unmapped this range of blocks, but before we
  829. * passdown we have to check that these blocks are now unused.
  830. */
  831. int r = 0;
  832. bool used = true;
  833. struct thin_c *tc = m->tc;
  834. struct pool *pool = tc->pool;
  835. dm_block_t b = m->data_block, e, end = m->data_block + m->virt_end - m->virt_begin;
  836. struct discard_op op;
  837. begin_discard(&op, tc, discard_parent);
  838. while (b != end) {
  839. /* find start of unmapped run */
  840. for (; b < end; b++) {
  841. r = dm_pool_block_is_used(pool->pmd, b, &used);
  842. if (r)
  843. goto out;
  844. if (!used)
  845. break;
  846. }
  847. if (b == end)
  848. break;
  849. /* find end of run */
  850. for (e = b + 1; e != end; e++) {
  851. r = dm_pool_block_is_used(pool->pmd, e, &used);
  852. if (r)
  853. goto out;
  854. if (used)
  855. break;
  856. }
  857. r = issue_discard(&op, b, e);
  858. if (r)
  859. goto out;
  860. b = e;
  861. }
  862. out:
  863. end_discard(&op, r);
  864. }
  865. static void queue_passdown_pt2(struct dm_thin_new_mapping *m)
  866. {
  867. unsigned long flags;
  868. struct pool *pool = m->tc->pool;
  869. spin_lock_irqsave(&pool->lock, flags);
  870. list_add_tail(&m->list, &pool->prepared_discards_pt2);
  871. spin_unlock_irqrestore(&pool->lock, flags);
  872. wake_worker(pool);
  873. }
  874. static void passdown_endio(struct bio *bio)
  875. {
  876. /*
  877. * It doesn't matter if the passdown discard failed, we still want
  878. * to unmap (we ignore err).
  879. */
  880. queue_passdown_pt2(bio->bi_private);
  881. }
  882. static void process_prepared_discard_passdown_pt1(struct dm_thin_new_mapping *m)
  883. {
  884. int r;
  885. struct thin_c *tc = m->tc;
  886. struct pool *pool = tc->pool;
  887. struct bio *discard_parent;
  888. dm_block_t data_end = m->data_block + (m->virt_end - m->virt_begin);
  889. /*
  890. * Only this thread allocates blocks, so we can be sure that the
  891. * newly unmapped blocks will not be allocated before the end of
  892. * the function.
  893. */
  894. r = dm_thin_remove_range(tc->td, m->virt_begin, m->virt_end);
  895. if (r) {
  896. metadata_operation_failed(pool, "dm_thin_remove_range", r);
  897. bio_io_error(m->bio);
  898. cell_defer_no_holder(tc, m->cell);
  899. mempool_free(m, pool->mapping_pool);
  900. return;
  901. }
  902. discard_parent = bio_alloc(GFP_NOIO, 1);
  903. if (!discard_parent) {
  904. DMWARN("%s: unable to allocate top level discard bio for passdown. Skipping passdown.",
  905. dm_device_name(tc->pool->pool_md));
  906. queue_passdown_pt2(m);
  907. } else {
  908. discard_parent->bi_end_io = passdown_endio;
  909. discard_parent->bi_private = m;
  910. if (m->maybe_shared)
  911. passdown_double_checking_shared_status(m, discard_parent);
  912. else {
  913. struct discard_op op;
  914. begin_discard(&op, tc, discard_parent);
  915. r = issue_discard(&op, m->data_block, data_end);
  916. end_discard(&op, r);
  917. }
  918. }
  919. /*
  920. * Increment the unmapped blocks. This prevents a race between the
  921. * passdown io and reallocation of freed blocks.
  922. */
  923. r = dm_pool_inc_data_range(pool->pmd, m->data_block, data_end);
  924. if (r) {
  925. metadata_operation_failed(pool, "dm_pool_inc_data_range", r);
  926. bio_io_error(m->bio);
  927. cell_defer_no_holder(tc, m->cell);
  928. mempool_free(m, pool->mapping_pool);
  929. return;
  930. }
  931. }
  932. static void process_prepared_discard_passdown_pt2(struct dm_thin_new_mapping *m)
  933. {
  934. int r;
  935. struct thin_c *tc = m->tc;
  936. struct pool *pool = tc->pool;
  937. /*
  938. * The passdown has completed, so now we can decrement all those
  939. * unmapped blocks.
  940. */
  941. r = dm_pool_dec_data_range(pool->pmd, m->data_block,
  942. m->data_block + (m->virt_end - m->virt_begin));
  943. if (r) {
  944. metadata_operation_failed(pool, "dm_pool_dec_data_range", r);
  945. bio_io_error(m->bio);
  946. } else
  947. bio_endio(m->bio);
  948. cell_defer_no_holder(tc, m->cell);
  949. mempool_free(m, pool->mapping_pool);
  950. }
  951. static void process_prepared(struct pool *pool, struct list_head *head,
  952. process_mapping_fn *fn)
  953. {
  954. unsigned long flags;
  955. struct list_head maps;
  956. struct dm_thin_new_mapping *m, *tmp;
  957. INIT_LIST_HEAD(&maps);
  958. spin_lock_irqsave(&pool->lock, flags);
  959. list_splice_init(head, &maps);
  960. spin_unlock_irqrestore(&pool->lock, flags);
  961. list_for_each_entry_safe(m, tmp, &maps, list)
  962. (*fn)(m);
  963. }
  964. /*
  965. * Deferred bio jobs.
  966. */
  967. static int io_overlaps_block(struct pool *pool, struct bio *bio)
  968. {
  969. return bio->bi_iter.bi_size ==
  970. (pool->sectors_per_block << SECTOR_SHIFT);
  971. }
  972. static int io_overwrites_block(struct pool *pool, struct bio *bio)
  973. {
  974. return (bio_data_dir(bio) == WRITE) &&
  975. io_overlaps_block(pool, bio);
  976. }
  977. static void save_and_set_endio(struct bio *bio, bio_end_io_t **save,
  978. bio_end_io_t *fn)
  979. {
  980. *save = bio->bi_end_io;
  981. bio->bi_end_io = fn;
  982. }
  983. static int ensure_next_mapping(struct pool *pool)
  984. {
  985. if (pool->next_mapping)
  986. return 0;
  987. pool->next_mapping = mempool_alloc(pool->mapping_pool, GFP_ATOMIC);
  988. return pool->next_mapping ? 0 : -ENOMEM;
  989. }
  990. static struct dm_thin_new_mapping *get_next_mapping(struct pool *pool)
  991. {
  992. struct dm_thin_new_mapping *m = pool->next_mapping;
  993. BUG_ON(!pool->next_mapping);
  994. memset(m, 0, sizeof(struct dm_thin_new_mapping));
  995. INIT_LIST_HEAD(&m->list);
  996. m->bio = NULL;
  997. pool->next_mapping = NULL;
  998. return m;
  999. }
  1000. static void ll_zero(struct thin_c *tc, struct dm_thin_new_mapping *m,
  1001. sector_t begin, sector_t end)
  1002. {
  1003. int r;
  1004. struct dm_io_region to;
  1005. to.bdev = tc->pool_dev->bdev;
  1006. to.sector = begin;
  1007. to.count = end - begin;
  1008. r = dm_kcopyd_zero(tc->pool->copier, 1, &to, 0, copy_complete, m);
  1009. if (r < 0) {
  1010. DMERR_LIMIT("dm_kcopyd_zero() failed");
  1011. copy_complete(1, 1, m);
  1012. }
  1013. }
  1014. static void remap_and_issue_overwrite(struct thin_c *tc, struct bio *bio,
  1015. dm_block_t data_begin,
  1016. struct dm_thin_new_mapping *m)
  1017. {
  1018. struct pool *pool = tc->pool;
  1019. struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
  1020. h->overwrite_mapping = m;
  1021. m->bio = bio;
  1022. save_and_set_endio(bio, &m->saved_bi_end_io, overwrite_endio);
  1023. inc_all_io_entry(pool, bio);
  1024. remap_and_issue(tc, bio, data_begin);
  1025. }
  1026. /*
  1027. * A partial copy also needs to zero the uncopied region.
  1028. */
  1029. static void schedule_copy(struct thin_c *tc, dm_block_t virt_block,
  1030. struct dm_dev *origin, dm_block_t data_origin,
  1031. dm_block_t data_dest,
  1032. struct dm_bio_prison_cell *cell, struct bio *bio,
  1033. sector_t len)
  1034. {
  1035. int r;
  1036. struct pool *pool = tc->pool;
  1037. struct dm_thin_new_mapping *m = get_next_mapping(pool);
  1038. m->tc = tc;
  1039. m->virt_begin = virt_block;
  1040. m->virt_end = virt_block + 1u;
  1041. m->data_block = data_dest;
  1042. m->cell = cell;
  1043. /*
  1044. * quiesce action + copy action + an extra reference held for the
  1045. * duration of this function (we may need to inc later for a
  1046. * partial zero).
  1047. */
  1048. atomic_set(&m->prepare_actions, 3);
  1049. if (!dm_deferred_set_add_work(pool->shared_read_ds, &m->list))
  1050. complete_mapping_preparation(m); /* already quiesced */
  1051. /*
  1052. * IO to pool_dev remaps to the pool target's data_dev.
  1053. *
  1054. * If the whole block of data is being overwritten, we can issue the
  1055. * bio immediately. Otherwise we use kcopyd to clone the data first.
  1056. */
  1057. if (io_overwrites_block(pool, bio))
  1058. remap_and_issue_overwrite(tc, bio, data_dest, m);
  1059. else {
  1060. struct dm_io_region from, to;
  1061. from.bdev = origin->bdev;
  1062. from.sector = data_origin * pool->sectors_per_block;
  1063. from.count = len;
  1064. to.bdev = tc->pool_dev->bdev;
  1065. to.sector = data_dest * pool->sectors_per_block;
  1066. to.count = len;
  1067. r = dm_kcopyd_copy(pool->copier, &from, 1, &to,
  1068. 0, copy_complete, m);
  1069. if (r < 0) {
  1070. DMERR_LIMIT("dm_kcopyd_copy() failed");
  1071. copy_complete(1, 1, m);
  1072. /*
  1073. * We allow the zero to be issued, to simplify the
  1074. * error path. Otherwise we'd need to start
  1075. * worrying about decrementing the prepare_actions
  1076. * counter.
  1077. */
  1078. }
  1079. /*
  1080. * Do we need to zero a tail region?
  1081. */
  1082. if (len < pool->sectors_per_block && pool->pf.zero_new_blocks) {
  1083. atomic_inc(&m->prepare_actions);
  1084. ll_zero(tc, m,
  1085. data_dest * pool->sectors_per_block + len,
  1086. (data_dest + 1) * pool->sectors_per_block);
  1087. }
  1088. }
  1089. complete_mapping_preparation(m); /* drop our ref */
  1090. }
  1091. static void schedule_internal_copy(struct thin_c *tc, dm_block_t virt_block,
  1092. dm_block_t data_origin, dm_block_t data_dest,
  1093. struct dm_bio_prison_cell *cell, struct bio *bio)
  1094. {
  1095. schedule_copy(tc, virt_block, tc->pool_dev,
  1096. data_origin, data_dest, cell, bio,
  1097. tc->pool->sectors_per_block);
  1098. }
  1099. static void schedule_zero(struct thin_c *tc, dm_block_t virt_block,
  1100. dm_block_t data_block, struct dm_bio_prison_cell *cell,
  1101. struct bio *bio)
  1102. {
  1103. struct pool *pool = tc->pool;
  1104. struct dm_thin_new_mapping *m = get_next_mapping(pool);
  1105. atomic_set(&m->prepare_actions, 1); /* no need to quiesce */
  1106. m->tc = tc;
  1107. m->virt_begin = virt_block;
  1108. m->virt_end = virt_block + 1u;
  1109. m->data_block = data_block;
  1110. m->cell = cell;
  1111. /*
  1112. * If the whole block of data is being overwritten or we are not
  1113. * zeroing pre-existing data, we can issue the bio immediately.
  1114. * Otherwise we use kcopyd to zero the data first.
  1115. */
  1116. if (pool->pf.zero_new_blocks) {
  1117. if (io_overwrites_block(pool, bio))
  1118. remap_and_issue_overwrite(tc, bio, data_block, m);
  1119. else
  1120. ll_zero(tc, m, data_block * pool->sectors_per_block,
  1121. (data_block + 1) * pool->sectors_per_block);
  1122. } else
  1123. process_prepared_mapping(m);
  1124. }
  1125. static void schedule_external_copy(struct thin_c *tc, dm_block_t virt_block,
  1126. dm_block_t data_dest,
  1127. struct dm_bio_prison_cell *cell, struct bio *bio)
  1128. {
  1129. struct pool *pool = tc->pool;
  1130. sector_t virt_block_begin = virt_block * pool->sectors_per_block;
  1131. sector_t virt_block_end = (virt_block + 1) * pool->sectors_per_block;
  1132. if (virt_block_end <= tc->origin_size)
  1133. schedule_copy(tc, virt_block, tc->origin_dev,
  1134. virt_block, data_dest, cell, bio,
  1135. pool->sectors_per_block);
  1136. else if (virt_block_begin < tc->origin_size)
  1137. schedule_copy(tc, virt_block, tc->origin_dev,
  1138. virt_block, data_dest, cell, bio,
  1139. tc->origin_size - virt_block_begin);
  1140. else
  1141. schedule_zero(tc, virt_block, data_dest, cell, bio);
  1142. }
  1143. static void set_pool_mode(struct pool *pool, enum pool_mode new_mode);
  1144. static void check_for_space(struct pool *pool)
  1145. {
  1146. int r;
  1147. dm_block_t nr_free;
  1148. if (get_pool_mode(pool) != PM_OUT_OF_DATA_SPACE)
  1149. return;
  1150. r = dm_pool_get_free_block_count(pool->pmd, &nr_free);
  1151. if (r)
  1152. return;
  1153. if (nr_free)
  1154. set_pool_mode(pool, PM_WRITE);
  1155. }
  1156. /*
  1157. * A non-zero return indicates read_only or fail_io mode.
  1158. * Many callers don't care about the return value.
  1159. */
  1160. static int commit(struct pool *pool)
  1161. {
  1162. int r;
  1163. if (get_pool_mode(pool) >= PM_READ_ONLY)
  1164. return -EINVAL;
  1165. r = dm_pool_commit_metadata(pool->pmd);
  1166. if (r)
  1167. metadata_operation_failed(pool, "dm_pool_commit_metadata", r);
  1168. else
  1169. check_for_space(pool);
  1170. return r;
  1171. }
  1172. static void check_low_water_mark(struct pool *pool, dm_block_t free_blocks)
  1173. {
  1174. unsigned long flags;
  1175. if (free_blocks <= pool->low_water_blocks && !pool->low_water_triggered) {
  1176. DMWARN("%s: reached low water mark for data device: sending event.",
  1177. dm_device_name(pool->pool_md));
  1178. spin_lock_irqsave(&pool->lock, flags);
  1179. pool->low_water_triggered = true;
  1180. spin_unlock_irqrestore(&pool->lock, flags);
  1181. dm_table_event(pool->ti->table);
  1182. }
  1183. }
  1184. static int alloc_data_block(struct thin_c *tc, dm_block_t *result)
  1185. {
  1186. int r;
  1187. dm_block_t free_blocks;
  1188. struct pool *pool = tc->pool;
  1189. if (WARN_ON(get_pool_mode(pool) != PM_WRITE))
  1190. return -EINVAL;
  1191. r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
  1192. if (r) {
  1193. metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
  1194. return r;
  1195. }
  1196. check_low_water_mark(pool, free_blocks);
  1197. if (!free_blocks) {
  1198. /*
  1199. * Try to commit to see if that will free up some
  1200. * more space.
  1201. */
  1202. r = commit(pool);
  1203. if (r)
  1204. return r;
  1205. r = dm_pool_get_free_block_count(pool->pmd, &free_blocks);
  1206. if (r) {
  1207. metadata_operation_failed(pool, "dm_pool_get_free_block_count", r);
  1208. return r;
  1209. }
  1210. if (!free_blocks) {
  1211. set_pool_mode(pool, PM_OUT_OF_DATA_SPACE);
  1212. return -ENOSPC;
  1213. }
  1214. }
  1215. r = dm_pool_alloc_data_block(pool->pmd, result);
  1216. if (r) {
  1217. metadata_operation_failed(pool, "dm_pool_alloc_data_block", r);
  1218. return r;
  1219. }
  1220. return 0;
  1221. }
  1222. /*
  1223. * If we have run out of space, queue bios until the device is
  1224. * resumed, presumably after having been reloaded with more space.
  1225. */
  1226. static void retry_on_resume(struct bio *bio)
  1227. {
  1228. struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
  1229. struct thin_c *tc = h->tc;
  1230. unsigned long flags;
  1231. spin_lock_irqsave(&tc->lock, flags);
  1232. bio_list_add(&tc->retry_on_resume_list, bio);
  1233. spin_unlock_irqrestore(&tc->lock, flags);
  1234. }
  1235. static int should_error_unserviceable_bio(struct pool *pool)
  1236. {
  1237. enum pool_mode m = get_pool_mode(pool);
  1238. switch (m) {
  1239. case PM_WRITE:
  1240. /* Shouldn't get here */
  1241. DMERR_LIMIT("bio unserviceable, yet pool is in PM_WRITE mode");
  1242. return -EIO;
  1243. case PM_OUT_OF_DATA_SPACE:
  1244. return pool->pf.error_if_no_space ? -ENOSPC : 0;
  1245. case PM_READ_ONLY:
  1246. case PM_FAIL:
  1247. return -EIO;
  1248. default:
  1249. /* Shouldn't get here */
  1250. DMERR_LIMIT("bio unserviceable, yet pool has an unknown mode");
  1251. return -EIO;
  1252. }
  1253. }
  1254. static void handle_unserviceable_bio(struct pool *pool, struct bio *bio)
  1255. {
  1256. int error = should_error_unserviceable_bio(pool);
  1257. if (error) {
  1258. bio->bi_error = error;
  1259. bio_endio(bio);
  1260. } else
  1261. retry_on_resume(bio);
  1262. }
  1263. static void retry_bios_on_resume(struct pool *pool, struct dm_bio_prison_cell *cell)
  1264. {
  1265. struct bio *bio;
  1266. struct bio_list bios;
  1267. int error;
  1268. error = should_error_unserviceable_bio(pool);
  1269. if (error) {
  1270. cell_error_with_code(pool, cell, error);
  1271. return;
  1272. }
  1273. bio_list_init(&bios);
  1274. cell_release(pool, cell, &bios);
  1275. while ((bio = bio_list_pop(&bios)))
  1276. retry_on_resume(bio);
  1277. }
  1278. static void process_discard_cell_no_passdown(struct thin_c *tc,
  1279. struct dm_bio_prison_cell *virt_cell)
  1280. {
  1281. struct pool *pool = tc->pool;
  1282. struct dm_thin_new_mapping *m = get_next_mapping(pool);
  1283. /*
  1284. * We don't need to lock the data blocks, since there's no
  1285. * passdown. We only lock data blocks for allocation and breaking sharing.
  1286. */
  1287. m->tc = tc;
  1288. m->virt_begin = virt_cell->key.block_begin;
  1289. m->virt_end = virt_cell->key.block_end;
  1290. m->cell = virt_cell;
  1291. m->bio = virt_cell->holder;
  1292. if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
  1293. pool->process_prepared_discard(m);
  1294. }
  1295. static void break_up_discard_bio(struct thin_c *tc, dm_block_t begin, dm_block_t end,
  1296. struct bio *bio)
  1297. {
  1298. struct pool *pool = tc->pool;
  1299. int r;
  1300. bool maybe_shared;
  1301. struct dm_cell_key data_key;
  1302. struct dm_bio_prison_cell *data_cell;
  1303. struct dm_thin_new_mapping *m;
  1304. dm_block_t virt_begin, virt_end, data_begin;
  1305. while (begin != end) {
  1306. r = ensure_next_mapping(pool);
  1307. if (r)
  1308. /* we did our best */
  1309. return;
  1310. r = dm_thin_find_mapped_range(tc->td, begin, end, &virt_begin, &virt_end,
  1311. &data_begin, &maybe_shared);
  1312. if (r)
  1313. /*
  1314. * Silently fail, letting any mappings we've
  1315. * created complete.
  1316. */
  1317. break;
  1318. build_key(tc->td, PHYSICAL, data_begin, data_begin + (virt_end - virt_begin), &data_key);
  1319. if (bio_detain(tc->pool, &data_key, NULL, &data_cell)) {
  1320. /* contention, we'll give up with this range */
  1321. begin = virt_end;
  1322. continue;
  1323. }
  1324. /*
  1325. * IO may still be going to the destination block. We must
  1326. * quiesce before we can do the removal.
  1327. */
  1328. m = get_next_mapping(pool);
  1329. m->tc = tc;
  1330. m->maybe_shared = maybe_shared;
  1331. m->virt_begin = virt_begin;
  1332. m->virt_end = virt_end;
  1333. m->data_block = data_begin;
  1334. m->cell = data_cell;
  1335. m->bio = bio;
  1336. /*
  1337. * The parent bio must not complete before sub discard bios are
  1338. * chained to it (see end_discard's bio_chain)!
  1339. *
  1340. * This per-mapping bi_remaining increment is paired with
  1341. * the implicit decrement that occurs via bio_endio() in
  1342. * end_discard().
  1343. */
  1344. bio_inc_remaining(bio);
  1345. if (!dm_deferred_set_add_work(pool->all_io_ds, &m->list))
  1346. pool->process_prepared_discard(m);
  1347. begin = virt_end;
  1348. }
  1349. }
  1350. static void process_discard_cell_passdown(struct thin_c *tc, struct dm_bio_prison_cell *virt_cell)
  1351. {
  1352. struct bio *bio = virt_cell->holder;
  1353. struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
  1354. /*
  1355. * The virt_cell will only get freed once the origin bio completes.
  1356. * This means it will remain locked while all the individual
  1357. * passdown bios are in flight.
  1358. */
  1359. h->cell = virt_cell;
  1360. break_up_discard_bio(tc, virt_cell->key.block_begin, virt_cell->key.block_end, bio);
  1361. /*
  1362. * We complete the bio now, knowing that the bi_remaining field
  1363. * will prevent completion until the sub range discards have
  1364. * completed.
  1365. */
  1366. bio_endio(bio);
  1367. }
  1368. static void process_discard_bio(struct thin_c *tc, struct bio *bio)
  1369. {
  1370. dm_block_t begin, end;
  1371. struct dm_cell_key virt_key;
  1372. struct dm_bio_prison_cell *virt_cell;
  1373. get_bio_block_range(tc, bio, &begin, &end);
  1374. if (begin == end) {
  1375. /*
  1376. * The discard covers less than a block.
  1377. */
  1378. bio_endio(bio);
  1379. return;
  1380. }
  1381. build_key(tc->td, VIRTUAL, begin, end, &virt_key);
  1382. if (bio_detain(tc->pool, &virt_key, bio, &virt_cell))
  1383. /*
  1384. * Potential starvation issue: We're relying on the
  1385. * fs/application being well behaved, and not trying to
  1386. * send IO to a region at the same time as discarding it.
  1387. * If they do this persistently then it's possible this
  1388. * cell will never be granted.
  1389. */
  1390. return;
  1391. tc->pool->process_discard_cell(tc, virt_cell);
  1392. }
  1393. static void break_sharing(struct thin_c *tc, struct bio *bio, dm_block_t block,
  1394. struct dm_cell_key *key,
  1395. struct dm_thin_lookup_result *lookup_result,
  1396. struct dm_bio_prison_cell *cell)
  1397. {
  1398. int r;
  1399. dm_block_t data_block;
  1400. struct pool *pool = tc->pool;
  1401. r = alloc_data_block(tc, &data_block);
  1402. switch (r) {
  1403. case 0:
  1404. schedule_internal_copy(tc, block, lookup_result->block,
  1405. data_block, cell, bio);
  1406. break;
  1407. case -ENOSPC:
  1408. retry_bios_on_resume(pool, cell);
  1409. break;
  1410. default:
  1411. DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
  1412. __func__, r);
  1413. cell_error(pool, cell);
  1414. break;
  1415. }
  1416. }
  1417. static void __remap_and_issue_shared_cell(void *context,
  1418. struct dm_bio_prison_cell *cell)
  1419. {
  1420. struct remap_info *info = context;
  1421. struct bio *bio;
  1422. while ((bio = bio_list_pop(&cell->bios))) {
  1423. if (bio_data_dir(bio) == WRITE || op_is_flush(bio->bi_opf) ||
  1424. bio_op(bio) == REQ_OP_DISCARD)
  1425. bio_list_add(&info->defer_bios, bio);
  1426. else {
  1427. struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));;
  1428. h->shared_read_entry = dm_deferred_entry_inc(info->tc->pool->shared_read_ds);
  1429. inc_all_io_entry(info->tc->pool, bio);
  1430. bio_list_add(&info->issue_bios, bio);
  1431. }
  1432. }
  1433. }
  1434. static void remap_and_issue_shared_cell(struct thin_c *tc,
  1435. struct dm_bio_prison_cell *cell,
  1436. dm_block_t block)
  1437. {
  1438. struct bio *bio;
  1439. struct remap_info info;
  1440. info.tc = tc;
  1441. bio_list_init(&info.defer_bios);
  1442. bio_list_init(&info.issue_bios);
  1443. cell_visit_release(tc->pool, __remap_and_issue_shared_cell,
  1444. &info, cell);
  1445. while ((bio = bio_list_pop(&info.defer_bios)))
  1446. thin_defer_bio(tc, bio);
  1447. while ((bio = bio_list_pop(&info.issue_bios)))
  1448. remap_and_issue(tc, bio, block);
  1449. }
  1450. static void process_shared_bio(struct thin_c *tc, struct bio *bio,
  1451. dm_block_t block,
  1452. struct dm_thin_lookup_result *lookup_result,
  1453. struct dm_bio_prison_cell *virt_cell)
  1454. {
  1455. struct dm_bio_prison_cell *data_cell;
  1456. struct pool *pool = tc->pool;
  1457. struct dm_cell_key key;
  1458. /*
  1459. * If cell is already occupied, then sharing is already in the process
  1460. * of being broken so we have nothing further to do here.
  1461. */
  1462. build_data_key(tc->td, lookup_result->block, &key);
  1463. if (bio_detain(pool, &key, bio, &data_cell)) {
  1464. cell_defer_no_holder(tc, virt_cell);
  1465. return;
  1466. }
  1467. if (bio_data_dir(bio) == WRITE && bio->bi_iter.bi_size) {
  1468. break_sharing(tc, bio, block, &key, lookup_result, data_cell);
  1469. cell_defer_no_holder(tc, virt_cell);
  1470. } else {
  1471. struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
  1472. h->shared_read_entry = dm_deferred_entry_inc(pool->shared_read_ds);
  1473. inc_all_io_entry(pool, bio);
  1474. remap_and_issue(tc, bio, lookup_result->block);
  1475. remap_and_issue_shared_cell(tc, data_cell, lookup_result->block);
  1476. remap_and_issue_shared_cell(tc, virt_cell, lookup_result->block);
  1477. }
  1478. }
  1479. static void provision_block(struct thin_c *tc, struct bio *bio, dm_block_t block,
  1480. struct dm_bio_prison_cell *cell)
  1481. {
  1482. int r;
  1483. dm_block_t data_block;
  1484. struct pool *pool = tc->pool;
  1485. /*
  1486. * Remap empty bios (flushes) immediately, without provisioning.
  1487. */
  1488. if (!bio->bi_iter.bi_size) {
  1489. inc_all_io_entry(pool, bio);
  1490. cell_defer_no_holder(tc, cell);
  1491. remap_and_issue(tc, bio, 0);
  1492. return;
  1493. }
  1494. /*
  1495. * Fill read bios with zeroes and complete them immediately.
  1496. */
  1497. if (bio_data_dir(bio) == READ) {
  1498. zero_fill_bio(bio);
  1499. cell_defer_no_holder(tc, cell);
  1500. bio_endio(bio);
  1501. return;
  1502. }
  1503. r = alloc_data_block(tc, &data_block);
  1504. switch (r) {
  1505. case 0:
  1506. if (tc->origin_dev)
  1507. schedule_external_copy(tc, block, data_block, cell, bio);
  1508. else
  1509. schedule_zero(tc, block, data_block, cell, bio);
  1510. break;
  1511. case -ENOSPC:
  1512. retry_bios_on_resume(pool, cell);
  1513. break;
  1514. default:
  1515. DMERR_LIMIT("%s: alloc_data_block() failed: error = %d",
  1516. __func__, r);
  1517. cell_error(pool, cell);
  1518. break;
  1519. }
  1520. }
  1521. static void process_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
  1522. {
  1523. int r;
  1524. struct pool *pool = tc->pool;
  1525. struct bio *bio = cell->holder;
  1526. dm_block_t block = get_bio_block(tc, bio);
  1527. struct dm_thin_lookup_result lookup_result;
  1528. if (tc->requeue_mode) {
  1529. cell_requeue(pool, cell);
  1530. return;
  1531. }
  1532. r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
  1533. switch (r) {
  1534. case 0:
  1535. if (lookup_result.shared)
  1536. process_shared_bio(tc, bio, block, &lookup_result, cell);
  1537. else {
  1538. inc_all_io_entry(pool, bio);
  1539. remap_and_issue(tc, bio, lookup_result.block);
  1540. inc_remap_and_issue_cell(tc, cell, lookup_result.block);
  1541. }
  1542. break;
  1543. case -ENODATA:
  1544. if (bio_data_dir(bio) == READ && tc->origin_dev) {
  1545. inc_all_io_entry(pool, bio);
  1546. cell_defer_no_holder(tc, cell);
  1547. if (bio_end_sector(bio) <= tc->origin_size)
  1548. remap_to_origin_and_issue(tc, bio);
  1549. else if (bio->bi_iter.bi_sector < tc->origin_size) {
  1550. zero_fill_bio(bio);
  1551. bio->bi_iter.bi_size = (tc->origin_size - bio->bi_iter.bi_sector) << SECTOR_SHIFT;
  1552. remap_to_origin_and_issue(tc, bio);
  1553. } else {
  1554. zero_fill_bio(bio);
  1555. bio_endio(bio);
  1556. }
  1557. } else
  1558. provision_block(tc, bio, block, cell);
  1559. break;
  1560. default:
  1561. DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
  1562. __func__, r);
  1563. cell_defer_no_holder(tc, cell);
  1564. bio_io_error(bio);
  1565. break;
  1566. }
  1567. }
  1568. static void process_bio(struct thin_c *tc, struct bio *bio)
  1569. {
  1570. struct pool *pool = tc->pool;
  1571. dm_block_t block = get_bio_block(tc, bio);
  1572. struct dm_bio_prison_cell *cell;
  1573. struct dm_cell_key key;
  1574. /*
  1575. * If cell is already occupied, then the block is already
  1576. * being provisioned so we have nothing further to do here.
  1577. */
  1578. build_virtual_key(tc->td, block, &key);
  1579. if (bio_detain(pool, &key, bio, &cell))
  1580. return;
  1581. process_cell(tc, cell);
  1582. }
  1583. static void __process_bio_read_only(struct thin_c *tc, struct bio *bio,
  1584. struct dm_bio_prison_cell *cell)
  1585. {
  1586. int r;
  1587. int rw = bio_data_dir(bio);
  1588. dm_block_t block = get_bio_block(tc, bio);
  1589. struct dm_thin_lookup_result lookup_result;
  1590. r = dm_thin_find_block(tc->td, block, 1, &lookup_result);
  1591. switch (r) {
  1592. case 0:
  1593. if (lookup_result.shared && (rw == WRITE) && bio->bi_iter.bi_size) {
  1594. handle_unserviceable_bio(tc->pool, bio);
  1595. if (cell)
  1596. cell_defer_no_holder(tc, cell);
  1597. } else {
  1598. inc_all_io_entry(tc->pool, bio);
  1599. remap_and_issue(tc, bio, lookup_result.block);
  1600. if (cell)
  1601. inc_remap_and_issue_cell(tc, cell, lookup_result.block);
  1602. }
  1603. break;
  1604. case -ENODATA:
  1605. if (cell)
  1606. cell_defer_no_holder(tc, cell);
  1607. if (rw != READ) {
  1608. handle_unserviceable_bio(tc->pool, bio);
  1609. break;
  1610. }
  1611. if (tc->origin_dev) {
  1612. inc_all_io_entry(tc->pool, bio);
  1613. remap_to_origin_and_issue(tc, bio);
  1614. break;
  1615. }
  1616. zero_fill_bio(bio);
  1617. bio_endio(bio);
  1618. break;
  1619. default:
  1620. DMERR_LIMIT("%s: dm_thin_find_block() failed: error = %d",
  1621. __func__, r);
  1622. if (cell)
  1623. cell_defer_no_holder(tc, cell);
  1624. bio_io_error(bio);
  1625. break;
  1626. }
  1627. }
  1628. static void process_bio_read_only(struct thin_c *tc, struct bio *bio)
  1629. {
  1630. __process_bio_read_only(tc, bio, NULL);
  1631. }
  1632. static void process_cell_read_only(struct thin_c *tc, struct dm_bio_prison_cell *cell)
  1633. {
  1634. __process_bio_read_only(tc, cell->holder, cell);
  1635. }
  1636. static void process_bio_success(struct thin_c *tc, struct bio *bio)
  1637. {
  1638. bio_endio(bio);
  1639. }
  1640. static void process_bio_fail(struct thin_c *tc, struct bio *bio)
  1641. {
  1642. bio_io_error(bio);
  1643. }
  1644. static void process_cell_success(struct thin_c *tc, struct dm_bio_prison_cell *cell)
  1645. {
  1646. cell_success(tc->pool, cell);
  1647. }
  1648. static void process_cell_fail(struct thin_c *tc, struct dm_bio_prison_cell *cell)
  1649. {
  1650. cell_error(tc->pool, cell);
  1651. }
  1652. /*
  1653. * FIXME: should we also commit due to size of transaction, measured in
  1654. * metadata blocks?
  1655. */
  1656. static int need_commit_due_to_time(struct pool *pool)
  1657. {
  1658. return !time_in_range(jiffies, pool->last_commit_jiffies,
  1659. pool->last_commit_jiffies + COMMIT_PERIOD);
  1660. }
  1661. #define thin_pbd(node) rb_entry((node), struct dm_thin_endio_hook, rb_node)
  1662. #define thin_bio(pbd) dm_bio_from_per_bio_data((pbd), sizeof(struct dm_thin_endio_hook))
  1663. static void __thin_bio_rb_add(struct thin_c *tc, struct bio *bio)
  1664. {
  1665. struct rb_node **rbp, *parent;
  1666. struct dm_thin_endio_hook *pbd;
  1667. sector_t bi_sector = bio->bi_iter.bi_sector;
  1668. rbp = &tc->sort_bio_list.rb_node;
  1669. parent = NULL;
  1670. while (*rbp) {
  1671. parent = *rbp;
  1672. pbd = thin_pbd(parent);
  1673. if (bi_sector < thin_bio(pbd)->bi_iter.bi_sector)
  1674. rbp = &(*rbp)->rb_left;
  1675. else
  1676. rbp = &(*rbp)->rb_right;
  1677. }
  1678. pbd = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
  1679. rb_link_node(&pbd->rb_node, parent, rbp);
  1680. rb_insert_color(&pbd->rb_node, &tc->sort_bio_list);
  1681. }
  1682. static void __extract_sorted_bios(struct thin_c *tc)
  1683. {
  1684. struct rb_node *node;
  1685. struct dm_thin_endio_hook *pbd;
  1686. struct bio *bio;
  1687. for (node = rb_first(&tc->sort_bio_list); node; node = rb_next(node)) {
  1688. pbd = thin_pbd(node);
  1689. bio = thin_bio(pbd);
  1690. bio_list_add(&tc->deferred_bio_list, bio);
  1691. rb_erase(&pbd->rb_node, &tc->sort_bio_list);
  1692. }
  1693. WARN_ON(!RB_EMPTY_ROOT(&tc->sort_bio_list));
  1694. }
  1695. static void __sort_thin_deferred_bios(struct thin_c *tc)
  1696. {
  1697. struct bio *bio;
  1698. struct bio_list bios;
  1699. bio_list_init(&bios);
  1700. bio_list_merge(&bios, &tc->deferred_bio_list);
  1701. bio_list_init(&tc->deferred_bio_list);
  1702. /* Sort deferred_bio_list using rb-tree */
  1703. while ((bio = bio_list_pop(&bios)))
  1704. __thin_bio_rb_add(tc, bio);
  1705. /*
  1706. * Transfer the sorted bios in sort_bio_list back to
  1707. * deferred_bio_list to allow lockless submission of
  1708. * all bios.
  1709. */
  1710. __extract_sorted_bios(tc);
  1711. }
  1712. static void process_thin_deferred_bios(struct thin_c *tc)
  1713. {
  1714. struct pool *pool = tc->pool;
  1715. unsigned long flags;
  1716. struct bio *bio;
  1717. struct bio_list bios;
  1718. struct blk_plug plug;
  1719. unsigned count = 0;
  1720. if (tc->requeue_mode) {
  1721. error_thin_bio_list(tc, &tc->deferred_bio_list, DM_ENDIO_REQUEUE);
  1722. return;
  1723. }
  1724. bio_list_init(&bios);
  1725. spin_lock_irqsave(&tc->lock, flags);
  1726. if (bio_list_empty(&tc->deferred_bio_list)) {
  1727. spin_unlock_irqrestore(&tc->lock, flags);
  1728. return;
  1729. }
  1730. __sort_thin_deferred_bios(tc);
  1731. bio_list_merge(&bios, &tc->deferred_bio_list);
  1732. bio_list_init(&tc->deferred_bio_list);
  1733. spin_unlock_irqrestore(&tc->lock, flags);
  1734. blk_start_plug(&plug);
  1735. while ((bio = bio_list_pop(&bios))) {
  1736. /*
  1737. * If we've got no free new_mapping structs, and processing
  1738. * this bio might require one, we pause until there are some
  1739. * prepared mappings to process.
  1740. */
  1741. if (ensure_next_mapping(pool)) {
  1742. spin_lock_irqsave(&tc->lock, flags);
  1743. bio_list_add(&tc->deferred_bio_list, bio);
  1744. bio_list_merge(&tc->deferred_bio_list, &bios);
  1745. spin_unlock_irqrestore(&tc->lock, flags);
  1746. break;
  1747. }
  1748. if (bio_op(bio) == REQ_OP_DISCARD)
  1749. pool->process_discard(tc, bio);
  1750. else
  1751. pool->process_bio(tc, bio);
  1752. if ((count++ & 127) == 0) {
  1753. throttle_work_update(&pool->throttle);
  1754. dm_pool_issue_prefetches(pool->pmd);
  1755. }
  1756. }
  1757. blk_finish_plug(&plug);
  1758. }
  1759. static int cmp_cells(const void *lhs, const void *rhs)
  1760. {
  1761. struct dm_bio_prison_cell *lhs_cell = *((struct dm_bio_prison_cell **) lhs);
  1762. struct dm_bio_prison_cell *rhs_cell = *((struct dm_bio_prison_cell **) rhs);
  1763. BUG_ON(!lhs_cell->holder);
  1764. BUG_ON(!rhs_cell->holder);
  1765. if (lhs_cell->holder->bi_iter.bi_sector < rhs_cell->holder->bi_iter.bi_sector)
  1766. return -1;
  1767. if (lhs_cell->holder->bi_iter.bi_sector > rhs_cell->holder->bi_iter.bi_sector)
  1768. return 1;
  1769. return 0;
  1770. }
  1771. static unsigned sort_cells(struct pool *pool, struct list_head *cells)
  1772. {
  1773. unsigned count = 0;
  1774. struct dm_bio_prison_cell *cell, *tmp;
  1775. list_for_each_entry_safe(cell, tmp, cells, user_list) {
  1776. if (count >= CELL_SORT_ARRAY_SIZE)
  1777. break;
  1778. pool->cell_sort_array[count++] = cell;
  1779. list_del(&cell->user_list);
  1780. }
  1781. sort(pool->cell_sort_array, count, sizeof(cell), cmp_cells, NULL);
  1782. return count;
  1783. }
  1784. static void process_thin_deferred_cells(struct thin_c *tc)
  1785. {
  1786. struct pool *pool = tc->pool;
  1787. unsigned long flags;
  1788. struct list_head cells;
  1789. struct dm_bio_prison_cell *cell;
  1790. unsigned i, j, count;
  1791. INIT_LIST_HEAD(&cells);
  1792. spin_lock_irqsave(&tc->lock, flags);
  1793. list_splice_init(&tc->deferred_cells, &cells);
  1794. spin_unlock_irqrestore(&tc->lock, flags);
  1795. if (list_empty(&cells))
  1796. return;
  1797. do {
  1798. count = sort_cells(tc->pool, &cells);
  1799. for (i = 0; i < count; i++) {
  1800. cell = pool->cell_sort_array[i];
  1801. BUG_ON(!cell->holder);
  1802. /*
  1803. * If we've got no free new_mapping structs, and processing
  1804. * this bio might require one, we pause until there are some
  1805. * prepared mappings to process.
  1806. */
  1807. if (ensure_next_mapping(pool)) {
  1808. for (j = i; j < count; j++)
  1809. list_add(&pool->cell_sort_array[j]->user_list, &cells);
  1810. spin_lock_irqsave(&tc->lock, flags);
  1811. list_splice(&cells, &tc->deferred_cells);
  1812. spin_unlock_irqrestore(&tc->lock, flags);
  1813. return;
  1814. }
  1815. if (bio_op(cell->holder) == REQ_OP_DISCARD)
  1816. pool->process_discard_cell(tc, cell);
  1817. else
  1818. pool->process_cell(tc, cell);
  1819. }
  1820. } while (!list_empty(&cells));
  1821. }
  1822. static void thin_get(struct thin_c *tc);
  1823. static void thin_put(struct thin_c *tc);
  1824. /*
  1825. * We can't hold rcu_read_lock() around code that can block. So we
  1826. * find a thin with the rcu lock held; bump a refcount; then drop
  1827. * the lock.
  1828. */
  1829. static struct thin_c *get_first_thin(struct pool *pool)
  1830. {
  1831. struct thin_c *tc = NULL;
  1832. rcu_read_lock();
  1833. if (!list_empty(&pool->active_thins)) {
  1834. tc = list_entry_rcu(pool->active_thins.next, struct thin_c, list);
  1835. thin_get(tc);
  1836. }
  1837. rcu_read_unlock();
  1838. return tc;
  1839. }
  1840. static struct thin_c *get_next_thin(struct pool *pool, struct thin_c *tc)
  1841. {
  1842. struct thin_c *old_tc = tc;
  1843. rcu_read_lock();
  1844. list_for_each_entry_continue_rcu(tc, &pool->active_thins, list) {
  1845. thin_get(tc);
  1846. thin_put(old_tc);
  1847. rcu_read_unlock();
  1848. return tc;
  1849. }
  1850. thin_put(old_tc);
  1851. rcu_read_unlock();
  1852. return NULL;
  1853. }
  1854. static void process_deferred_bios(struct pool *pool)
  1855. {
  1856. unsigned long flags;
  1857. struct bio *bio;
  1858. struct bio_list bios;
  1859. struct thin_c *tc;
  1860. tc = get_first_thin(pool);
  1861. while (tc) {
  1862. process_thin_deferred_cells(tc);
  1863. process_thin_deferred_bios(tc);
  1864. tc = get_next_thin(pool, tc);
  1865. }
  1866. /*
  1867. * If there are any deferred flush bios, we must commit
  1868. * the metadata before issuing them.
  1869. */
  1870. bio_list_init(&bios);
  1871. spin_lock_irqsave(&pool->lock, flags);
  1872. bio_list_merge(&bios, &pool->deferred_flush_bios);
  1873. bio_list_init(&pool->deferred_flush_bios);
  1874. spin_unlock_irqrestore(&pool->lock, flags);
  1875. if (bio_list_empty(&bios) &&
  1876. !(dm_pool_changed_this_transaction(pool->pmd) && need_commit_due_to_time(pool)))
  1877. return;
  1878. if (commit(pool)) {
  1879. while ((bio = bio_list_pop(&bios)))
  1880. bio_io_error(bio);
  1881. return;
  1882. }
  1883. pool->last_commit_jiffies = jiffies;
  1884. while ((bio = bio_list_pop(&bios)))
  1885. generic_make_request(bio);
  1886. }
  1887. static void do_worker(struct work_struct *ws)
  1888. {
  1889. struct pool *pool = container_of(ws, struct pool, worker);
  1890. throttle_work_start(&pool->throttle);
  1891. dm_pool_issue_prefetches(pool->pmd);
  1892. throttle_work_update(&pool->throttle);
  1893. process_prepared(pool, &pool->prepared_mappings, &pool->process_prepared_mapping);
  1894. throttle_work_update(&pool->throttle);
  1895. process_prepared(pool, &pool->prepared_discards, &pool->process_prepared_discard);
  1896. throttle_work_update(&pool->throttle);
  1897. process_prepared(pool, &pool->prepared_discards_pt2, &pool->process_prepared_discard_pt2);
  1898. throttle_work_update(&pool->throttle);
  1899. process_deferred_bios(pool);
  1900. throttle_work_complete(&pool->throttle);
  1901. }
  1902. /*
  1903. * We want to commit periodically so that not too much
  1904. * unwritten data builds up.
  1905. */
  1906. static void do_waker(struct work_struct *ws)
  1907. {
  1908. struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker);
  1909. wake_worker(pool);
  1910. queue_delayed_work(pool->wq, &pool->waker, COMMIT_PERIOD);
  1911. }
  1912. static void notify_of_pool_mode_change_to_oods(struct pool *pool);
  1913. /*
  1914. * We're holding onto IO to allow userland time to react. After the
  1915. * timeout either the pool will have been resized (and thus back in
  1916. * PM_WRITE mode), or we degrade to PM_OUT_OF_DATA_SPACE w/ error_if_no_space.
  1917. */
  1918. static void do_no_space_timeout(struct work_struct *ws)
  1919. {
  1920. struct pool *pool = container_of(to_delayed_work(ws), struct pool,
  1921. no_space_timeout);
  1922. if (get_pool_mode(pool) == PM_OUT_OF_DATA_SPACE && !pool->pf.error_if_no_space) {
  1923. pool->pf.error_if_no_space = true;
  1924. notify_of_pool_mode_change_to_oods(pool);
  1925. error_retry_list_with_code(pool, -ENOSPC);
  1926. }
  1927. }
  1928. /*----------------------------------------------------------------*/
  1929. struct pool_work {
  1930. struct work_struct worker;
  1931. struct completion complete;
  1932. };
  1933. static struct pool_work *to_pool_work(struct work_struct *ws)
  1934. {
  1935. return container_of(ws, struct pool_work, worker);
  1936. }
  1937. static void pool_work_complete(struct pool_work *pw)
  1938. {
  1939. complete(&pw->complete);
  1940. }
  1941. static void pool_work_wait(struct pool_work *pw, struct pool *pool,
  1942. void (*fn)(struct work_struct *))
  1943. {
  1944. INIT_WORK_ONSTACK(&pw->worker, fn);
  1945. init_completion(&pw->complete);
  1946. queue_work(pool->wq, &pw->worker);
  1947. wait_for_completion(&pw->complete);
  1948. }
  1949. /*----------------------------------------------------------------*/
  1950. struct noflush_work {
  1951. struct pool_work pw;
  1952. struct thin_c *tc;
  1953. };
  1954. static struct noflush_work *to_noflush(struct work_struct *ws)
  1955. {
  1956. return container_of(to_pool_work(ws), struct noflush_work, pw);
  1957. }
  1958. static void do_noflush_start(struct work_struct *ws)
  1959. {
  1960. struct noflush_work *w = to_noflush(ws);
  1961. w->tc->requeue_mode = true;
  1962. requeue_io(w->tc);
  1963. pool_work_complete(&w->pw);
  1964. }
  1965. static void do_noflush_stop(struct work_struct *ws)
  1966. {
  1967. struct noflush_work *w = to_noflush(ws);
  1968. w->tc->requeue_mode = false;
  1969. pool_work_complete(&w->pw);
  1970. }
  1971. static void noflush_work(struct thin_c *tc, void (*fn)(struct work_struct *))
  1972. {
  1973. struct noflush_work w;
  1974. w.tc = tc;
  1975. pool_work_wait(&w.pw, tc->pool, fn);
  1976. }
  1977. /*----------------------------------------------------------------*/
  1978. static enum pool_mode get_pool_mode(struct pool *pool)
  1979. {
  1980. return pool->pf.mode;
  1981. }
  1982. static void notify_of_pool_mode_change(struct pool *pool, const char *new_mode)
  1983. {
  1984. dm_table_event(pool->ti->table);
  1985. DMINFO("%s: switching pool to %s mode",
  1986. dm_device_name(pool->pool_md), new_mode);
  1987. }
  1988. static void notify_of_pool_mode_change_to_oods(struct pool *pool)
  1989. {
  1990. if (!pool->pf.error_if_no_space)
  1991. notify_of_pool_mode_change(pool, "out-of-data-space (queue IO)");
  1992. else
  1993. notify_of_pool_mode_change(pool, "out-of-data-space (error IO)");
  1994. }
  1995. static bool passdown_enabled(struct pool_c *pt)
  1996. {
  1997. return pt->adjusted_pf.discard_passdown;
  1998. }
  1999. static void set_discard_callbacks(struct pool *pool)
  2000. {
  2001. struct pool_c *pt = pool->ti->private;
  2002. if (passdown_enabled(pt)) {
  2003. pool->process_discard_cell = process_discard_cell_passdown;
  2004. pool->process_prepared_discard = process_prepared_discard_passdown_pt1;
  2005. pool->process_prepared_discard_pt2 = process_prepared_discard_passdown_pt2;
  2006. } else {
  2007. pool->process_discard_cell = process_discard_cell_no_passdown;
  2008. pool->process_prepared_discard = process_prepared_discard_no_passdown;
  2009. }
  2010. }
  2011. static void set_pool_mode(struct pool *pool, enum pool_mode new_mode)
  2012. {
  2013. struct pool_c *pt = pool->ti->private;
  2014. bool needs_check = dm_pool_metadata_needs_check(pool->pmd);
  2015. enum pool_mode old_mode = get_pool_mode(pool);
  2016. unsigned long no_space_timeout = ACCESS_ONCE(no_space_timeout_secs) * HZ;
  2017. /*
  2018. * Never allow the pool to transition to PM_WRITE mode if user
  2019. * intervention is required to verify metadata and data consistency.
  2020. */
  2021. if (new_mode == PM_WRITE && needs_check) {
  2022. DMERR("%s: unable to switch pool to write mode until repaired.",
  2023. dm_device_name(pool->pool_md));
  2024. if (old_mode != new_mode)
  2025. new_mode = old_mode;
  2026. else
  2027. new_mode = PM_READ_ONLY;
  2028. }
  2029. /*
  2030. * If we were in PM_FAIL mode, rollback of metadata failed. We're
  2031. * not going to recover without a thin_repair. So we never let the
  2032. * pool move out of the old mode.
  2033. */
  2034. if (old_mode == PM_FAIL)
  2035. new_mode = old_mode;
  2036. switch (new_mode) {
  2037. case PM_FAIL:
  2038. if (old_mode != new_mode)
  2039. notify_of_pool_mode_change(pool, "failure");
  2040. dm_pool_metadata_read_only(pool->pmd);
  2041. pool->process_bio = process_bio_fail;
  2042. pool->process_discard = process_bio_fail;
  2043. pool->process_cell = process_cell_fail;
  2044. pool->process_discard_cell = process_cell_fail;
  2045. pool->process_prepared_mapping = process_prepared_mapping_fail;
  2046. pool->process_prepared_discard = process_prepared_discard_fail;
  2047. error_retry_list(pool);
  2048. break;
  2049. case PM_READ_ONLY:
  2050. if (old_mode != new_mode)
  2051. notify_of_pool_mode_change(pool, "read-only");
  2052. dm_pool_metadata_read_only(pool->pmd);
  2053. pool->process_bio = process_bio_read_only;
  2054. pool->process_discard = process_bio_success;
  2055. pool->process_cell = process_cell_read_only;
  2056. pool->process_discard_cell = process_cell_success;
  2057. pool->process_prepared_mapping = process_prepared_mapping_fail;
  2058. pool->process_prepared_discard = process_prepared_discard_success;
  2059. error_retry_list(pool);
  2060. break;
  2061. case PM_OUT_OF_DATA_SPACE:
  2062. /*
  2063. * Ideally we'd never hit this state; the low water mark
  2064. * would trigger userland to extend the pool before we
  2065. * completely run out of data space. However, many small
  2066. * IOs to unprovisioned space can consume data space at an
  2067. * alarming rate. Adjust your low water mark if you're
  2068. * frequently seeing this mode.
  2069. */
  2070. if (old_mode != new_mode)
  2071. notify_of_pool_mode_change_to_oods(pool);
  2072. pool->out_of_data_space = true;
  2073. pool->process_bio = process_bio_read_only;
  2074. pool->process_discard = process_discard_bio;
  2075. pool->process_cell = process_cell_read_only;
  2076. pool->process_prepared_mapping = process_prepared_mapping;
  2077. set_discard_callbacks(pool);
  2078. if (!pool->pf.error_if_no_space && no_space_timeout)
  2079. queue_delayed_work(pool->wq, &pool->no_space_timeout, no_space_timeout);
  2080. break;
  2081. case PM_WRITE:
  2082. if (old_mode != new_mode)
  2083. notify_of_pool_mode_change(pool, "write");
  2084. pool->out_of_data_space = false;
  2085. pool->pf.error_if_no_space = pt->requested_pf.error_if_no_space;
  2086. dm_pool_metadata_read_write(pool->pmd);
  2087. pool->process_bio = process_bio;
  2088. pool->process_discard = process_discard_bio;
  2089. pool->process_cell = process_cell;
  2090. pool->process_prepared_mapping = process_prepared_mapping;
  2091. set_discard_callbacks(pool);
  2092. break;
  2093. }
  2094. pool->pf.mode = new_mode;
  2095. /*
  2096. * The pool mode may have changed, sync it so bind_control_target()
  2097. * doesn't cause an unexpected mode transition on resume.
  2098. */
  2099. pt->adjusted_pf.mode = new_mode;
  2100. }
  2101. static void abort_transaction(struct pool *pool)
  2102. {
  2103. const char *dev_name = dm_device_name(pool->pool_md);
  2104. DMERR_LIMIT("%s: aborting current metadata transaction", dev_name);
  2105. if (dm_pool_abort_metadata(pool->pmd)) {
  2106. DMERR("%s: failed to abort metadata transaction", dev_name);
  2107. set_pool_mode(pool, PM_FAIL);
  2108. }
  2109. if (dm_pool_metadata_set_needs_check(pool->pmd)) {
  2110. DMERR("%s: failed to set 'needs_check' flag in metadata", dev_name);
  2111. set_pool_mode(pool, PM_FAIL);
  2112. }
  2113. }
  2114. static void metadata_operation_failed(struct pool *pool, const char *op, int r)
  2115. {
  2116. DMERR_LIMIT("%s: metadata operation '%s' failed: error = %d",
  2117. dm_device_name(pool->pool_md), op, r);
  2118. abort_transaction(pool);
  2119. set_pool_mode(pool, PM_READ_ONLY);
  2120. }
  2121. /*----------------------------------------------------------------*/
  2122. /*
  2123. * Mapping functions.
  2124. */
  2125. /*
  2126. * Called only while mapping a thin bio to hand it over to the workqueue.
  2127. */
  2128. static void thin_defer_bio(struct thin_c *tc, struct bio *bio)
  2129. {
  2130. unsigned long flags;
  2131. struct pool *pool = tc->pool;
  2132. spin_lock_irqsave(&tc->lock, flags);
  2133. bio_list_add(&tc->deferred_bio_list, bio);
  2134. spin_unlock_irqrestore(&tc->lock, flags);
  2135. wake_worker(pool);
  2136. }
  2137. static void thin_defer_bio_with_throttle(struct thin_c *tc, struct bio *bio)
  2138. {
  2139. struct pool *pool = tc->pool;
  2140. throttle_lock(&pool->throttle);
  2141. thin_defer_bio(tc, bio);
  2142. throttle_unlock(&pool->throttle);
  2143. }
  2144. static void thin_defer_cell(struct thin_c *tc, struct dm_bio_prison_cell *cell)
  2145. {
  2146. unsigned long flags;
  2147. struct pool *pool = tc->pool;
  2148. throttle_lock(&pool->throttle);
  2149. spin_lock_irqsave(&tc->lock, flags);
  2150. list_add_tail(&cell->user_list, &tc->deferred_cells);
  2151. spin_unlock_irqrestore(&tc->lock, flags);
  2152. throttle_unlock(&pool->throttle);
  2153. wake_worker(pool);
  2154. }
  2155. static void thin_hook_bio(struct thin_c *tc, struct bio *bio)
  2156. {
  2157. struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
  2158. h->tc = tc;
  2159. h->shared_read_entry = NULL;
  2160. h->all_io_entry = NULL;
  2161. h->overwrite_mapping = NULL;
  2162. h->cell = NULL;
  2163. }
  2164. /*
  2165. * Non-blocking function called from the thin target's map function.
  2166. */
  2167. static int thin_bio_map(struct dm_target *ti, struct bio *bio)
  2168. {
  2169. int r;
  2170. struct thin_c *tc = ti->private;
  2171. dm_block_t block = get_bio_block(tc, bio);
  2172. struct dm_thin_device *td = tc->td;
  2173. struct dm_thin_lookup_result result;
  2174. struct dm_bio_prison_cell *virt_cell, *data_cell;
  2175. struct dm_cell_key key;
  2176. thin_hook_bio(tc, bio);
  2177. if (tc->requeue_mode) {
  2178. bio->bi_error = DM_ENDIO_REQUEUE;
  2179. bio_endio(bio);
  2180. return DM_MAPIO_SUBMITTED;
  2181. }
  2182. if (get_pool_mode(tc->pool) == PM_FAIL) {
  2183. bio_io_error(bio);
  2184. return DM_MAPIO_SUBMITTED;
  2185. }
  2186. if (op_is_flush(bio->bi_opf) || bio_op(bio) == REQ_OP_DISCARD) {
  2187. thin_defer_bio_with_throttle(tc, bio);
  2188. return DM_MAPIO_SUBMITTED;
  2189. }
  2190. /*
  2191. * We must hold the virtual cell before doing the lookup, otherwise
  2192. * there's a race with discard.
  2193. */
  2194. build_virtual_key(tc->td, block, &key);
  2195. if (bio_detain(tc->pool, &key, bio, &virt_cell))
  2196. return DM_MAPIO_SUBMITTED;
  2197. r = dm_thin_find_block(td, block, 0, &result);
  2198. /*
  2199. * Note that we defer readahead too.
  2200. */
  2201. switch (r) {
  2202. case 0:
  2203. if (unlikely(result.shared)) {
  2204. /*
  2205. * We have a race condition here between the
  2206. * result.shared value returned by the lookup and
  2207. * snapshot creation, which may cause new
  2208. * sharing.
  2209. *
  2210. * To avoid this always quiesce the origin before
  2211. * taking the snap. You want to do this anyway to
  2212. * ensure a consistent application view
  2213. * (i.e. lockfs).
  2214. *
  2215. * More distant ancestors are irrelevant. The
  2216. * shared flag will be set in their case.
  2217. */
  2218. thin_defer_cell(tc, virt_cell);
  2219. return DM_MAPIO_SUBMITTED;
  2220. }
  2221. build_data_key(tc->td, result.block, &key);
  2222. if (bio_detain(tc->pool, &key, bio, &data_cell)) {
  2223. cell_defer_no_holder(tc, virt_cell);
  2224. return DM_MAPIO_SUBMITTED;
  2225. }
  2226. inc_all_io_entry(tc->pool, bio);
  2227. cell_defer_no_holder(tc, data_cell);
  2228. cell_defer_no_holder(tc, virt_cell);
  2229. remap(tc, bio, result.block);
  2230. return DM_MAPIO_REMAPPED;
  2231. case -ENODATA:
  2232. case -EWOULDBLOCK:
  2233. thin_defer_cell(tc, virt_cell);
  2234. return DM_MAPIO_SUBMITTED;
  2235. default:
  2236. /*
  2237. * Must always call bio_io_error on failure.
  2238. * dm_thin_find_block can fail with -EINVAL if the
  2239. * pool is switched to fail-io mode.
  2240. */
  2241. bio_io_error(bio);
  2242. cell_defer_no_holder(tc, virt_cell);
  2243. return DM_MAPIO_SUBMITTED;
  2244. }
  2245. }
  2246. static int pool_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
  2247. {
  2248. struct pool_c *pt = container_of(cb, struct pool_c, callbacks);
  2249. struct request_queue *q;
  2250. if (get_pool_mode(pt->pool) == PM_OUT_OF_DATA_SPACE)
  2251. return 1;
  2252. q = bdev_get_queue(pt->data_dev->bdev);
  2253. return bdi_congested(q->backing_dev_info, bdi_bits);
  2254. }
  2255. static void requeue_bios(struct pool *pool)
  2256. {
  2257. unsigned long flags;
  2258. struct thin_c *tc;
  2259. rcu_read_lock();
  2260. list_for_each_entry_rcu(tc, &pool->active_thins, list) {
  2261. spin_lock_irqsave(&tc->lock, flags);
  2262. bio_list_merge(&tc->deferred_bio_list, &tc->retry_on_resume_list);
  2263. bio_list_init(&tc->retry_on_resume_list);
  2264. spin_unlock_irqrestore(&tc->lock, flags);
  2265. }
  2266. rcu_read_unlock();
  2267. }
  2268. /*----------------------------------------------------------------
  2269. * Binding of control targets to a pool object
  2270. *--------------------------------------------------------------*/
  2271. static bool data_dev_supports_discard(struct pool_c *pt)
  2272. {
  2273. struct request_queue *q = bdev_get_queue(pt->data_dev->bdev);
  2274. return q && blk_queue_discard(q);
  2275. }
  2276. static bool is_factor(sector_t block_size, uint32_t n)
  2277. {
  2278. return !sector_div(block_size, n);
  2279. }
  2280. /*
  2281. * If discard_passdown was enabled verify that the data device
  2282. * supports discards. Disable discard_passdown if not.
  2283. */
  2284. static void disable_passdown_if_not_supported(struct pool_c *pt)
  2285. {
  2286. struct pool *pool = pt->pool;
  2287. struct block_device *data_bdev = pt->data_dev->bdev;
  2288. struct queue_limits *data_limits = &bdev_get_queue(data_bdev)->limits;
  2289. const char *reason = NULL;
  2290. char buf[BDEVNAME_SIZE];
  2291. if (!pt->adjusted_pf.discard_passdown)
  2292. return;
  2293. if (!data_dev_supports_discard(pt))
  2294. reason = "discard unsupported";
  2295. else if (data_limits->max_discard_sectors < pool->sectors_per_block)
  2296. reason = "max discard sectors smaller than a block";
  2297. if (reason) {
  2298. DMWARN("Data device (%s) %s: Disabling discard passdown.", bdevname(data_bdev, buf), reason);
  2299. pt->adjusted_pf.discard_passdown = false;
  2300. }
  2301. }
  2302. static int bind_control_target(struct pool *pool, struct dm_target *ti)
  2303. {
  2304. struct pool_c *pt = ti->private;
  2305. /*
  2306. * We want to make sure that a pool in PM_FAIL mode is never upgraded.
  2307. */
  2308. enum pool_mode old_mode = get_pool_mode(pool);
  2309. enum pool_mode new_mode = pt->adjusted_pf.mode;
  2310. /*
  2311. * Don't change the pool's mode until set_pool_mode() below.
  2312. * Otherwise the pool's process_* function pointers may
  2313. * not match the desired pool mode.
  2314. */
  2315. pt->adjusted_pf.mode = old_mode;
  2316. pool->ti = ti;
  2317. pool->pf = pt->adjusted_pf;
  2318. pool->low_water_blocks = pt->low_water_blocks;
  2319. set_pool_mode(pool, new_mode);
  2320. return 0;
  2321. }
  2322. static void unbind_control_target(struct pool *pool, struct dm_target *ti)
  2323. {
  2324. if (pool->ti == ti)
  2325. pool->ti = NULL;
  2326. }
  2327. /*----------------------------------------------------------------
  2328. * Pool creation
  2329. *--------------------------------------------------------------*/
  2330. /* Initialize pool features. */
  2331. static void pool_features_init(struct pool_features *pf)
  2332. {
  2333. pf->mode = PM_WRITE;
  2334. pf->zero_new_blocks = true;
  2335. pf->discard_enabled = true;
  2336. pf->discard_passdown = true;
  2337. pf->error_if_no_space = false;
  2338. }
  2339. static void __pool_destroy(struct pool *pool)
  2340. {
  2341. __pool_table_remove(pool);
  2342. vfree(pool->cell_sort_array);
  2343. if (dm_pool_metadata_close(pool->pmd) < 0)
  2344. DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
  2345. dm_bio_prison_destroy(pool->prison);
  2346. dm_kcopyd_client_destroy(pool->copier);
  2347. if (pool->wq)
  2348. destroy_workqueue(pool->wq);
  2349. if (pool->next_mapping)
  2350. mempool_free(pool->next_mapping, pool->mapping_pool);
  2351. mempool_destroy(pool->mapping_pool);
  2352. dm_deferred_set_destroy(pool->shared_read_ds);
  2353. dm_deferred_set_destroy(pool->all_io_ds);
  2354. kfree(pool);
  2355. }
  2356. static struct kmem_cache *_new_mapping_cache;
  2357. static struct pool *pool_create(struct mapped_device *pool_md,
  2358. struct block_device *metadata_dev,
  2359. unsigned long block_size,
  2360. int read_only, char **error)
  2361. {
  2362. int r;
  2363. void *err_p;
  2364. struct pool *pool;
  2365. struct dm_pool_metadata *pmd;
  2366. bool format_device = read_only ? false : true;
  2367. pmd = dm_pool_metadata_open(metadata_dev, block_size, format_device);
  2368. if (IS_ERR(pmd)) {
  2369. *error = "Error creating metadata object";
  2370. return (struct pool *)pmd;
  2371. }
  2372. pool = kmalloc(sizeof(*pool), GFP_KERNEL);
  2373. if (!pool) {
  2374. *error = "Error allocating memory for pool";
  2375. err_p = ERR_PTR(-ENOMEM);
  2376. goto bad_pool;
  2377. }
  2378. pool->pmd = pmd;
  2379. pool->sectors_per_block = block_size;
  2380. if (block_size & (block_size - 1))
  2381. pool->sectors_per_block_shift = -1;
  2382. else
  2383. pool->sectors_per_block_shift = __ffs(block_size);
  2384. pool->low_water_blocks = 0;
  2385. pool_features_init(&pool->pf);
  2386. pool->prison = dm_bio_prison_create();
  2387. if (!pool->prison) {
  2388. *error = "Error creating pool's bio prison";
  2389. err_p = ERR_PTR(-ENOMEM);
  2390. goto bad_prison;
  2391. }
  2392. pool->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
  2393. if (IS_ERR(pool->copier)) {
  2394. r = PTR_ERR(pool->copier);
  2395. *error = "Error creating pool's kcopyd client";
  2396. err_p = ERR_PTR(r);
  2397. goto bad_kcopyd_client;
  2398. }
  2399. /*
  2400. * Create singlethreaded workqueue that will service all devices
  2401. * that use this metadata.
  2402. */
  2403. pool->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
  2404. if (!pool->wq) {
  2405. *error = "Error creating pool's workqueue";
  2406. err_p = ERR_PTR(-ENOMEM);
  2407. goto bad_wq;
  2408. }
  2409. throttle_init(&pool->throttle);
  2410. INIT_WORK(&pool->worker, do_worker);
  2411. INIT_DELAYED_WORK(&pool->waker, do_waker);
  2412. INIT_DELAYED_WORK(&pool->no_space_timeout, do_no_space_timeout);
  2413. spin_lock_init(&pool->lock);
  2414. bio_list_init(&pool->deferred_flush_bios);
  2415. INIT_LIST_HEAD(&pool->prepared_mappings);
  2416. INIT_LIST_HEAD(&pool->prepared_discards);
  2417. INIT_LIST_HEAD(&pool->prepared_discards_pt2);
  2418. INIT_LIST_HEAD(&pool->active_thins);
  2419. pool->low_water_triggered = false;
  2420. pool->suspended = true;
  2421. pool->out_of_data_space = false;
  2422. pool->shared_read_ds = dm_deferred_set_create();
  2423. if (!pool->shared_read_ds) {
  2424. *error = "Error creating pool's shared read deferred set";
  2425. err_p = ERR_PTR(-ENOMEM);
  2426. goto bad_shared_read_ds;
  2427. }
  2428. pool->all_io_ds = dm_deferred_set_create();
  2429. if (!pool->all_io_ds) {
  2430. *error = "Error creating pool's all io deferred set";
  2431. err_p = ERR_PTR(-ENOMEM);
  2432. goto bad_all_io_ds;
  2433. }
  2434. pool->next_mapping = NULL;
  2435. pool->mapping_pool = mempool_create_slab_pool(MAPPING_POOL_SIZE,
  2436. _new_mapping_cache);
  2437. if (!pool->mapping_pool) {
  2438. *error = "Error creating pool's mapping mempool";
  2439. err_p = ERR_PTR(-ENOMEM);
  2440. goto bad_mapping_pool;
  2441. }
  2442. pool->cell_sort_array = vmalloc(sizeof(*pool->cell_sort_array) * CELL_SORT_ARRAY_SIZE);
  2443. if (!pool->cell_sort_array) {
  2444. *error = "Error allocating cell sort array";
  2445. err_p = ERR_PTR(-ENOMEM);
  2446. goto bad_sort_array;
  2447. }
  2448. pool->ref_count = 1;
  2449. pool->last_commit_jiffies = jiffies;
  2450. pool->pool_md = pool_md;
  2451. pool->md_dev = metadata_dev;
  2452. __pool_table_insert(pool);
  2453. return pool;
  2454. bad_sort_array:
  2455. mempool_destroy(pool->mapping_pool);
  2456. bad_mapping_pool:
  2457. dm_deferred_set_destroy(pool->all_io_ds);
  2458. bad_all_io_ds:
  2459. dm_deferred_set_destroy(pool->shared_read_ds);
  2460. bad_shared_read_ds:
  2461. destroy_workqueue(pool->wq);
  2462. bad_wq:
  2463. dm_kcopyd_client_destroy(pool->copier);
  2464. bad_kcopyd_client:
  2465. dm_bio_prison_destroy(pool->prison);
  2466. bad_prison:
  2467. kfree(pool);
  2468. bad_pool:
  2469. if (dm_pool_metadata_close(pmd))
  2470. DMWARN("%s: dm_pool_metadata_close() failed.", __func__);
  2471. return err_p;
  2472. }
  2473. static void __pool_inc(struct pool *pool)
  2474. {
  2475. BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
  2476. pool->ref_count++;
  2477. }
  2478. static void __pool_dec(struct pool *pool)
  2479. {
  2480. BUG_ON(!mutex_is_locked(&dm_thin_pool_table.mutex));
  2481. BUG_ON(!pool->ref_count);
  2482. if (!--pool->ref_count)
  2483. __pool_destroy(pool);
  2484. }
  2485. static struct pool *__pool_find(struct mapped_device *pool_md,
  2486. struct block_device *metadata_dev,
  2487. unsigned long block_size, int read_only,
  2488. char **error, int *created)
  2489. {
  2490. struct pool *pool = __pool_table_lookup_metadata_dev(metadata_dev);
  2491. if (pool) {
  2492. if (pool->pool_md != pool_md) {
  2493. *error = "metadata device already in use by a pool";
  2494. return ERR_PTR(-EBUSY);
  2495. }
  2496. __pool_inc(pool);
  2497. } else {
  2498. pool = __pool_table_lookup(pool_md);
  2499. if (pool) {
  2500. if (pool->md_dev != metadata_dev) {
  2501. *error = "different pool cannot replace a pool";
  2502. return ERR_PTR(-EINVAL);
  2503. }
  2504. __pool_inc(pool);
  2505. } else {
  2506. pool = pool_create(pool_md, metadata_dev, block_size, read_only, error);
  2507. *created = 1;
  2508. }
  2509. }
  2510. return pool;
  2511. }
  2512. /*----------------------------------------------------------------
  2513. * Pool target methods
  2514. *--------------------------------------------------------------*/
  2515. static void pool_dtr(struct dm_target *ti)
  2516. {
  2517. struct pool_c *pt = ti->private;
  2518. mutex_lock(&dm_thin_pool_table.mutex);
  2519. unbind_control_target(pt->pool, ti);
  2520. __pool_dec(pt->pool);
  2521. dm_put_device(ti, pt->metadata_dev);
  2522. dm_put_device(ti, pt->data_dev);
  2523. kfree(pt);
  2524. mutex_unlock(&dm_thin_pool_table.mutex);
  2525. }
  2526. static int parse_pool_features(struct dm_arg_set *as, struct pool_features *pf,
  2527. struct dm_target *ti)
  2528. {
  2529. int r;
  2530. unsigned argc;
  2531. const char *arg_name;
  2532. static struct dm_arg _args[] = {
  2533. {0, 4, "Invalid number of pool feature arguments"},
  2534. };
  2535. /*
  2536. * No feature arguments supplied.
  2537. */
  2538. if (!as->argc)
  2539. return 0;
  2540. r = dm_read_arg_group(_args, as, &argc, &ti->error);
  2541. if (r)
  2542. return -EINVAL;
  2543. while (argc && !r) {
  2544. arg_name = dm_shift_arg(as);
  2545. argc--;
  2546. if (!strcasecmp(arg_name, "skip_block_zeroing"))
  2547. pf->zero_new_blocks = false;
  2548. else if (!strcasecmp(arg_name, "ignore_discard"))
  2549. pf->discard_enabled = false;
  2550. else if (!strcasecmp(arg_name, "no_discard_passdown"))
  2551. pf->discard_passdown = false;
  2552. else if (!strcasecmp(arg_name, "read_only"))
  2553. pf->mode = PM_READ_ONLY;
  2554. else if (!strcasecmp(arg_name, "error_if_no_space"))
  2555. pf->error_if_no_space = true;
  2556. else {
  2557. ti->error = "Unrecognised pool feature requested";
  2558. r = -EINVAL;
  2559. break;
  2560. }
  2561. }
  2562. return r;
  2563. }
  2564. static void metadata_low_callback(void *context)
  2565. {
  2566. struct pool *pool = context;
  2567. DMWARN("%s: reached low water mark for metadata device: sending event.",
  2568. dm_device_name(pool->pool_md));
  2569. dm_table_event(pool->ti->table);
  2570. }
  2571. static sector_t get_dev_size(struct block_device *bdev)
  2572. {
  2573. return i_size_read(bdev->bd_inode) >> SECTOR_SHIFT;
  2574. }
  2575. static void warn_if_metadata_device_too_big(struct block_device *bdev)
  2576. {
  2577. sector_t metadata_dev_size = get_dev_size(bdev);
  2578. char buffer[BDEVNAME_SIZE];
  2579. if (metadata_dev_size > THIN_METADATA_MAX_SECTORS_WARNING)
  2580. DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
  2581. bdevname(bdev, buffer), THIN_METADATA_MAX_SECTORS);
  2582. }
  2583. static sector_t get_metadata_dev_size(struct block_device *bdev)
  2584. {
  2585. sector_t metadata_dev_size = get_dev_size(bdev);
  2586. if (metadata_dev_size > THIN_METADATA_MAX_SECTORS)
  2587. metadata_dev_size = THIN_METADATA_MAX_SECTORS;
  2588. return metadata_dev_size;
  2589. }
  2590. static dm_block_t get_metadata_dev_size_in_blocks(struct block_device *bdev)
  2591. {
  2592. sector_t metadata_dev_size = get_metadata_dev_size(bdev);
  2593. sector_div(metadata_dev_size, THIN_METADATA_BLOCK_SIZE);
  2594. return metadata_dev_size;
  2595. }
  2596. /*
  2597. * When a metadata threshold is crossed a dm event is triggered, and
  2598. * userland should respond by growing the metadata device. We could let
  2599. * userland set the threshold, like we do with the data threshold, but I'm
  2600. * not sure they know enough to do this well.
  2601. */
  2602. static dm_block_t calc_metadata_threshold(struct pool_c *pt)
  2603. {
  2604. /*
  2605. * 4M is ample for all ops with the possible exception of thin
  2606. * device deletion which is harmless if it fails (just retry the
  2607. * delete after you've grown the device).
  2608. */
  2609. dm_block_t quarter = get_metadata_dev_size_in_blocks(pt->metadata_dev->bdev) / 4;
  2610. return min((dm_block_t)1024ULL /* 4M */, quarter);
  2611. }
  2612. /*
  2613. * thin-pool <metadata dev> <data dev>
  2614. * <data block size (sectors)>
  2615. * <low water mark (blocks)>
  2616. * [<#feature args> [<arg>]*]
  2617. *
  2618. * Optional feature arguments are:
  2619. * skip_block_zeroing: skips the zeroing of newly-provisioned blocks.
  2620. * ignore_discard: disable discard
  2621. * no_discard_passdown: don't pass discards down to the data device
  2622. * read_only: Don't allow any changes to be made to the pool metadata.
  2623. * error_if_no_space: error IOs, instead of queueing, if no space.
  2624. */
  2625. static int pool_ctr(struct dm_target *ti, unsigned argc, char **argv)
  2626. {
  2627. int r, pool_created = 0;
  2628. struct pool_c *pt;
  2629. struct pool *pool;
  2630. struct pool_features pf;
  2631. struct dm_arg_set as;
  2632. struct dm_dev *data_dev;
  2633. unsigned long block_size;
  2634. dm_block_t low_water_blocks;
  2635. struct dm_dev *metadata_dev;
  2636. fmode_t metadata_mode;
  2637. /*
  2638. * FIXME Remove validation from scope of lock.
  2639. */
  2640. mutex_lock(&dm_thin_pool_table.mutex);
  2641. if (argc < 4) {
  2642. ti->error = "Invalid argument count";
  2643. r = -EINVAL;
  2644. goto out_unlock;
  2645. }
  2646. as.argc = argc;
  2647. as.argv = argv;
  2648. /*
  2649. * Set default pool features.
  2650. */
  2651. pool_features_init(&pf);
  2652. dm_consume_args(&as, 4);
  2653. r = parse_pool_features(&as, &pf, ti);
  2654. if (r)
  2655. goto out_unlock;
  2656. metadata_mode = FMODE_READ | ((pf.mode == PM_READ_ONLY) ? 0 : FMODE_WRITE);
  2657. r = dm_get_device(ti, argv[0], metadata_mode, &metadata_dev);
  2658. if (r) {
  2659. ti->error = "Error opening metadata block device";
  2660. goto out_unlock;
  2661. }
  2662. warn_if_metadata_device_too_big(metadata_dev->bdev);
  2663. r = dm_get_device(ti, argv[1], FMODE_READ | FMODE_WRITE, &data_dev);
  2664. if (r) {
  2665. ti->error = "Error getting data device";
  2666. goto out_metadata;
  2667. }
  2668. if (kstrtoul(argv[2], 10, &block_size) || !block_size ||
  2669. block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
  2670. block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
  2671. block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
  2672. ti->error = "Invalid block size";
  2673. r = -EINVAL;
  2674. goto out;
  2675. }
  2676. if (kstrtoull(argv[3], 10, (unsigned long long *)&low_water_blocks)) {
  2677. ti->error = "Invalid low water mark";
  2678. r = -EINVAL;
  2679. goto out;
  2680. }
  2681. pt = kzalloc(sizeof(*pt), GFP_KERNEL);
  2682. if (!pt) {
  2683. r = -ENOMEM;
  2684. goto out;
  2685. }
  2686. pool = __pool_find(dm_table_get_md(ti->table), metadata_dev->bdev,
  2687. block_size, pf.mode == PM_READ_ONLY, &ti->error, &pool_created);
  2688. if (IS_ERR(pool)) {
  2689. r = PTR_ERR(pool);
  2690. goto out_free_pt;
  2691. }
  2692. /*
  2693. * 'pool_created' reflects whether this is the first table load.
  2694. * Top level discard support is not allowed to be changed after
  2695. * initial load. This would require a pool reload to trigger thin
  2696. * device changes.
  2697. */
  2698. if (!pool_created && pf.discard_enabled != pool->pf.discard_enabled) {
  2699. ti->error = "Discard support cannot be disabled once enabled";
  2700. r = -EINVAL;
  2701. goto out_flags_changed;
  2702. }
  2703. pt->pool = pool;
  2704. pt->ti = ti;
  2705. pt->metadata_dev = metadata_dev;
  2706. pt->data_dev = data_dev;
  2707. pt->low_water_blocks = low_water_blocks;
  2708. pt->adjusted_pf = pt->requested_pf = pf;
  2709. ti->num_flush_bios = 1;
  2710. /*
  2711. * Only need to enable discards if the pool should pass
  2712. * them down to the data device. The thin device's discard
  2713. * processing will cause mappings to be removed from the btree.
  2714. */
  2715. ti->discard_zeroes_data_unsupported = true;
  2716. if (pf.discard_enabled && pf.discard_passdown) {
  2717. ti->num_discard_bios = 1;
  2718. /*
  2719. * Setting 'discards_supported' circumvents the normal
  2720. * stacking of discard limits (this keeps the pool and
  2721. * thin devices' discard limits consistent).
  2722. */
  2723. ti->discards_supported = true;
  2724. }
  2725. ti->private = pt;
  2726. r = dm_pool_register_metadata_threshold(pt->pool->pmd,
  2727. calc_metadata_threshold(pt),
  2728. metadata_low_callback,
  2729. pool);
  2730. if (r)
  2731. goto out_flags_changed;
  2732. pt->callbacks.congested_fn = pool_is_congested;
  2733. dm_table_add_target_callbacks(ti->table, &pt->callbacks);
  2734. mutex_unlock(&dm_thin_pool_table.mutex);
  2735. return 0;
  2736. out_flags_changed:
  2737. __pool_dec(pool);
  2738. out_free_pt:
  2739. kfree(pt);
  2740. out:
  2741. dm_put_device(ti, data_dev);
  2742. out_metadata:
  2743. dm_put_device(ti, metadata_dev);
  2744. out_unlock:
  2745. mutex_unlock(&dm_thin_pool_table.mutex);
  2746. return r;
  2747. }
  2748. static int pool_map(struct dm_target *ti, struct bio *bio)
  2749. {
  2750. int r;
  2751. struct pool_c *pt = ti->private;
  2752. struct pool *pool = pt->pool;
  2753. unsigned long flags;
  2754. /*
  2755. * As this is a singleton target, ti->begin is always zero.
  2756. */
  2757. spin_lock_irqsave(&pool->lock, flags);
  2758. bio->bi_bdev = pt->data_dev->bdev;
  2759. r = DM_MAPIO_REMAPPED;
  2760. spin_unlock_irqrestore(&pool->lock, flags);
  2761. return r;
  2762. }
  2763. static int maybe_resize_data_dev(struct dm_target *ti, bool *need_commit)
  2764. {
  2765. int r;
  2766. struct pool_c *pt = ti->private;
  2767. struct pool *pool = pt->pool;
  2768. sector_t data_size = ti->len;
  2769. dm_block_t sb_data_size;
  2770. *need_commit = false;
  2771. (void) sector_div(data_size, pool->sectors_per_block);
  2772. r = dm_pool_get_data_dev_size(pool->pmd, &sb_data_size);
  2773. if (r) {
  2774. DMERR("%s: failed to retrieve data device size",
  2775. dm_device_name(pool->pool_md));
  2776. return r;
  2777. }
  2778. if (data_size < sb_data_size) {
  2779. DMERR("%s: pool target (%llu blocks) too small: expected %llu",
  2780. dm_device_name(pool->pool_md),
  2781. (unsigned long long)data_size, sb_data_size);
  2782. return -EINVAL;
  2783. } else if (data_size > sb_data_size) {
  2784. if (dm_pool_metadata_needs_check(pool->pmd)) {
  2785. DMERR("%s: unable to grow the data device until repaired.",
  2786. dm_device_name(pool->pool_md));
  2787. return 0;
  2788. }
  2789. if (sb_data_size)
  2790. DMINFO("%s: growing the data device from %llu to %llu blocks",
  2791. dm_device_name(pool->pool_md),
  2792. sb_data_size, (unsigned long long)data_size);
  2793. r = dm_pool_resize_data_dev(pool->pmd, data_size);
  2794. if (r) {
  2795. metadata_operation_failed(pool, "dm_pool_resize_data_dev", r);
  2796. return r;
  2797. }
  2798. *need_commit = true;
  2799. }
  2800. return 0;
  2801. }
  2802. static int maybe_resize_metadata_dev(struct dm_target *ti, bool *need_commit)
  2803. {
  2804. int r;
  2805. struct pool_c *pt = ti->private;
  2806. struct pool *pool = pt->pool;
  2807. dm_block_t metadata_dev_size, sb_metadata_dev_size;
  2808. *need_commit = false;
  2809. metadata_dev_size = get_metadata_dev_size_in_blocks(pool->md_dev);
  2810. r = dm_pool_get_metadata_dev_size(pool->pmd, &sb_metadata_dev_size);
  2811. if (r) {
  2812. DMERR("%s: failed to retrieve metadata device size",
  2813. dm_device_name(pool->pool_md));
  2814. return r;
  2815. }
  2816. if (metadata_dev_size < sb_metadata_dev_size) {
  2817. DMERR("%s: metadata device (%llu blocks) too small: expected %llu",
  2818. dm_device_name(pool->pool_md),
  2819. metadata_dev_size, sb_metadata_dev_size);
  2820. return -EINVAL;
  2821. } else if (metadata_dev_size > sb_metadata_dev_size) {
  2822. if (dm_pool_metadata_needs_check(pool->pmd)) {
  2823. DMERR("%s: unable to grow the metadata device until repaired.",
  2824. dm_device_name(pool->pool_md));
  2825. return 0;
  2826. }
  2827. warn_if_metadata_device_too_big(pool->md_dev);
  2828. DMINFO("%s: growing the metadata device from %llu to %llu blocks",
  2829. dm_device_name(pool->pool_md),
  2830. sb_metadata_dev_size, metadata_dev_size);
  2831. r = dm_pool_resize_metadata_dev(pool->pmd, metadata_dev_size);
  2832. if (r) {
  2833. metadata_operation_failed(pool, "dm_pool_resize_metadata_dev", r);
  2834. return r;
  2835. }
  2836. *need_commit = true;
  2837. }
  2838. return 0;
  2839. }
  2840. /*
  2841. * Retrieves the number of blocks of the data device from
  2842. * the superblock and compares it to the actual device size,
  2843. * thus resizing the data device in case it has grown.
  2844. *
  2845. * This both copes with opening preallocated data devices in the ctr
  2846. * being followed by a resume
  2847. * -and-
  2848. * calling the resume method individually after userspace has
  2849. * grown the data device in reaction to a table event.
  2850. */
  2851. static int pool_preresume(struct dm_target *ti)
  2852. {
  2853. int r;
  2854. bool need_commit1, need_commit2;
  2855. struct pool_c *pt = ti->private;
  2856. struct pool *pool = pt->pool;
  2857. /*
  2858. * Take control of the pool object.
  2859. */
  2860. r = bind_control_target(pool, ti);
  2861. if (r)
  2862. return r;
  2863. r = maybe_resize_data_dev(ti, &need_commit1);
  2864. if (r)
  2865. return r;
  2866. r = maybe_resize_metadata_dev(ti, &need_commit2);
  2867. if (r)
  2868. return r;
  2869. if (need_commit1 || need_commit2)
  2870. (void) commit(pool);
  2871. return 0;
  2872. }
  2873. static void pool_suspend_active_thins(struct pool *pool)
  2874. {
  2875. struct thin_c *tc;
  2876. /* Suspend all active thin devices */
  2877. tc = get_first_thin(pool);
  2878. while (tc) {
  2879. dm_internal_suspend_noflush(tc->thin_md);
  2880. tc = get_next_thin(pool, tc);
  2881. }
  2882. }
  2883. static void pool_resume_active_thins(struct pool *pool)
  2884. {
  2885. struct thin_c *tc;
  2886. /* Resume all active thin devices */
  2887. tc = get_first_thin(pool);
  2888. while (tc) {
  2889. dm_internal_resume(tc->thin_md);
  2890. tc = get_next_thin(pool, tc);
  2891. }
  2892. }
  2893. static void pool_resume(struct dm_target *ti)
  2894. {
  2895. struct pool_c *pt = ti->private;
  2896. struct pool *pool = pt->pool;
  2897. unsigned long flags;
  2898. /*
  2899. * Must requeue active_thins' bios and then resume
  2900. * active_thins _before_ clearing 'suspend' flag.
  2901. */
  2902. requeue_bios(pool);
  2903. pool_resume_active_thins(pool);
  2904. spin_lock_irqsave(&pool->lock, flags);
  2905. pool->low_water_triggered = false;
  2906. pool->suspended = false;
  2907. spin_unlock_irqrestore(&pool->lock, flags);
  2908. do_waker(&pool->waker.work);
  2909. }
  2910. static void pool_presuspend(struct dm_target *ti)
  2911. {
  2912. struct pool_c *pt = ti->private;
  2913. struct pool *pool = pt->pool;
  2914. unsigned long flags;
  2915. spin_lock_irqsave(&pool->lock, flags);
  2916. pool->suspended = true;
  2917. spin_unlock_irqrestore(&pool->lock, flags);
  2918. pool_suspend_active_thins(pool);
  2919. }
  2920. static void pool_presuspend_undo(struct dm_target *ti)
  2921. {
  2922. struct pool_c *pt = ti->private;
  2923. struct pool *pool = pt->pool;
  2924. unsigned long flags;
  2925. pool_resume_active_thins(pool);
  2926. spin_lock_irqsave(&pool->lock, flags);
  2927. pool->suspended = false;
  2928. spin_unlock_irqrestore(&pool->lock, flags);
  2929. }
  2930. static void pool_postsuspend(struct dm_target *ti)
  2931. {
  2932. struct pool_c *pt = ti->private;
  2933. struct pool *pool = pt->pool;
  2934. cancel_delayed_work_sync(&pool->waker);
  2935. cancel_delayed_work_sync(&pool->no_space_timeout);
  2936. flush_workqueue(pool->wq);
  2937. (void) commit(pool);
  2938. }
  2939. static int check_arg_count(unsigned argc, unsigned args_required)
  2940. {
  2941. if (argc != args_required) {
  2942. DMWARN("Message received with %u arguments instead of %u.",
  2943. argc, args_required);
  2944. return -EINVAL;
  2945. }
  2946. return 0;
  2947. }
  2948. static int read_dev_id(char *arg, dm_thin_id *dev_id, int warning)
  2949. {
  2950. if (!kstrtoull(arg, 10, (unsigned long long *)dev_id) &&
  2951. *dev_id <= MAX_DEV_ID)
  2952. return 0;
  2953. if (warning)
  2954. DMWARN("Message received with invalid device id: %s", arg);
  2955. return -EINVAL;
  2956. }
  2957. static int process_create_thin_mesg(unsigned argc, char **argv, struct pool *pool)
  2958. {
  2959. dm_thin_id dev_id;
  2960. int r;
  2961. r = check_arg_count(argc, 2);
  2962. if (r)
  2963. return r;
  2964. r = read_dev_id(argv[1], &dev_id, 1);
  2965. if (r)
  2966. return r;
  2967. r = dm_pool_create_thin(pool->pmd, dev_id);
  2968. if (r) {
  2969. DMWARN("Creation of new thinly-provisioned device with id %s failed.",
  2970. argv[1]);
  2971. return r;
  2972. }
  2973. return 0;
  2974. }
  2975. static int process_create_snap_mesg(unsigned argc, char **argv, struct pool *pool)
  2976. {
  2977. dm_thin_id dev_id;
  2978. dm_thin_id origin_dev_id;
  2979. int r;
  2980. r = check_arg_count(argc, 3);
  2981. if (r)
  2982. return r;
  2983. r = read_dev_id(argv[1], &dev_id, 1);
  2984. if (r)
  2985. return r;
  2986. r = read_dev_id(argv[2], &origin_dev_id, 1);
  2987. if (r)
  2988. return r;
  2989. r = dm_pool_create_snap(pool->pmd, dev_id, origin_dev_id);
  2990. if (r) {
  2991. DMWARN("Creation of new snapshot %s of device %s failed.",
  2992. argv[1], argv[2]);
  2993. return r;
  2994. }
  2995. return 0;
  2996. }
  2997. static int process_delete_mesg(unsigned argc, char **argv, struct pool *pool)
  2998. {
  2999. dm_thin_id dev_id;
  3000. int r;
  3001. r = check_arg_count(argc, 2);
  3002. if (r)
  3003. return r;
  3004. r = read_dev_id(argv[1], &dev_id, 1);
  3005. if (r)
  3006. return r;
  3007. r = dm_pool_delete_thin_device(pool->pmd, dev_id);
  3008. if (r)
  3009. DMWARN("Deletion of thin device %s failed.", argv[1]);
  3010. return r;
  3011. }
  3012. static int process_set_transaction_id_mesg(unsigned argc, char **argv, struct pool *pool)
  3013. {
  3014. dm_thin_id old_id, new_id;
  3015. int r;
  3016. r = check_arg_count(argc, 3);
  3017. if (r)
  3018. return r;
  3019. if (kstrtoull(argv[1], 10, (unsigned long long *)&old_id)) {
  3020. DMWARN("set_transaction_id message: Unrecognised id %s.", argv[1]);
  3021. return -EINVAL;
  3022. }
  3023. if (kstrtoull(argv[2], 10, (unsigned long long *)&new_id)) {
  3024. DMWARN("set_transaction_id message: Unrecognised new id %s.", argv[2]);
  3025. return -EINVAL;
  3026. }
  3027. r = dm_pool_set_metadata_transaction_id(pool->pmd, old_id, new_id);
  3028. if (r) {
  3029. DMWARN("Failed to change transaction id from %s to %s.",
  3030. argv[1], argv[2]);
  3031. return r;
  3032. }
  3033. return 0;
  3034. }
  3035. static int process_reserve_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
  3036. {
  3037. int r;
  3038. r = check_arg_count(argc, 1);
  3039. if (r)
  3040. return r;
  3041. (void) commit(pool);
  3042. r = dm_pool_reserve_metadata_snap(pool->pmd);
  3043. if (r)
  3044. DMWARN("reserve_metadata_snap message failed.");
  3045. return r;
  3046. }
  3047. static int process_release_metadata_snap_mesg(unsigned argc, char **argv, struct pool *pool)
  3048. {
  3049. int r;
  3050. r = check_arg_count(argc, 1);
  3051. if (r)
  3052. return r;
  3053. r = dm_pool_release_metadata_snap(pool->pmd);
  3054. if (r)
  3055. DMWARN("release_metadata_snap message failed.");
  3056. return r;
  3057. }
  3058. /*
  3059. * Messages supported:
  3060. * create_thin <dev_id>
  3061. * create_snap <dev_id> <origin_id>
  3062. * delete <dev_id>
  3063. * set_transaction_id <current_trans_id> <new_trans_id>
  3064. * reserve_metadata_snap
  3065. * release_metadata_snap
  3066. */
  3067. static int pool_message(struct dm_target *ti, unsigned argc, char **argv)
  3068. {
  3069. int r = -EINVAL;
  3070. struct pool_c *pt = ti->private;
  3071. struct pool *pool = pt->pool;
  3072. if (get_pool_mode(pool) >= PM_READ_ONLY) {
  3073. DMERR("%s: unable to service pool target messages in READ_ONLY or FAIL mode",
  3074. dm_device_name(pool->pool_md));
  3075. return -EOPNOTSUPP;
  3076. }
  3077. if (!strcasecmp(argv[0], "create_thin"))
  3078. r = process_create_thin_mesg(argc, argv, pool);
  3079. else if (!strcasecmp(argv[0], "create_snap"))
  3080. r = process_create_snap_mesg(argc, argv, pool);
  3081. else if (!strcasecmp(argv[0], "delete"))
  3082. r = process_delete_mesg(argc, argv, pool);
  3083. else if (!strcasecmp(argv[0], "set_transaction_id"))
  3084. r = process_set_transaction_id_mesg(argc, argv, pool);
  3085. else if (!strcasecmp(argv[0], "reserve_metadata_snap"))
  3086. r = process_reserve_metadata_snap_mesg(argc, argv, pool);
  3087. else if (!strcasecmp(argv[0], "release_metadata_snap"))
  3088. r = process_release_metadata_snap_mesg(argc, argv, pool);
  3089. else
  3090. DMWARN("Unrecognised thin pool target message received: %s", argv[0]);
  3091. if (!r)
  3092. (void) commit(pool);
  3093. return r;
  3094. }
  3095. static void emit_flags(struct pool_features *pf, char *result,
  3096. unsigned sz, unsigned maxlen)
  3097. {
  3098. unsigned count = !pf->zero_new_blocks + !pf->discard_enabled +
  3099. !pf->discard_passdown + (pf->mode == PM_READ_ONLY) +
  3100. pf->error_if_no_space;
  3101. DMEMIT("%u ", count);
  3102. if (!pf->zero_new_blocks)
  3103. DMEMIT("skip_block_zeroing ");
  3104. if (!pf->discard_enabled)
  3105. DMEMIT("ignore_discard ");
  3106. if (!pf->discard_passdown)
  3107. DMEMIT("no_discard_passdown ");
  3108. if (pf->mode == PM_READ_ONLY)
  3109. DMEMIT("read_only ");
  3110. if (pf->error_if_no_space)
  3111. DMEMIT("error_if_no_space ");
  3112. }
  3113. /*
  3114. * Status line is:
  3115. * <transaction id> <used metadata sectors>/<total metadata sectors>
  3116. * <used data sectors>/<total data sectors> <held metadata root>
  3117. * <pool mode> <discard config> <no space config> <needs_check>
  3118. */
  3119. static void pool_status(struct dm_target *ti, status_type_t type,
  3120. unsigned status_flags, char *result, unsigned maxlen)
  3121. {
  3122. int r;
  3123. unsigned sz = 0;
  3124. uint64_t transaction_id;
  3125. dm_block_t nr_free_blocks_data;
  3126. dm_block_t nr_free_blocks_metadata;
  3127. dm_block_t nr_blocks_data;
  3128. dm_block_t nr_blocks_metadata;
  3129. dm_block_t held_root;
  3130. char buf[BDEVNAME_SIZE];
  3131. char buf2[BDEVNAME_SIZE];
  3132. struct pool_c *pt = ti->private;
  3133. struct pool *pool = pt->pool;
  3134. switch (type) {
  3135. case STATUSTYPE_INFO:
  3136. if (get_pool_mode(pool) == PM_FAIL) {
  3137. DMEMIT("Fail");
  3138. break;
  3139. }
  3140. /* Commit to ensure statistics aren't out-of-date */
  3141. if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
  3142. (void) commit(pool);
  3143. r = dm_pool_get_metadata_transaction_id(pool->pmd, &transaction_id);
  3144. if (r) {
  3145. DMERR("%s: dm_pool_get_metadata_transaction_id returned %d",
  3146. dm_device_name(pool->pool_md), r);
  3147. goto err;
  3148. }
  3149. r = dm_pool_get_free_metadata_block_count(pool->pmd, &nr_free_blocks_metadata);
  3150. if (r) {
  3151. DMERR("%s: dm_pool_get_free_metadata_block_count returned %d",
  3152. dm_device_name(pool->pool_md), r);
  3153. goto err;
  3154. }
  3155. r = dm_pool_get_metadata_dev_size(pool->pmd, &nr_blocks_metadata);
  3156. if (r) {
  3157. DMERR("%s: dm_pool_get_metadata_dev_size returned %d",
  3158. dm_device_name(pool->pool_md), r);
  3159. goto err;
  3160. }
  3161. r = dm_pool_get_free_block_count(pool->pmd, &nr_free_blocks_data);
  3162. if (r) {
  3163. DMERR("%s: dm_pool_get_free_block_count returned %d",
  3164. dm_device_name(pool->pool_md), r);
  3165. goto err;
  3166. }
  3167. r = dm_pool_get_data_dev_size(pool->pmd, &nr_blocks_data);
  3168. if (r) {
  3169. DMERR("%s: dm_pool_get_data_dev_size returned %d",
  3170. dm_device_name(pool->pool_md), r);
  3171. goto err;
  3172. }
  3173. r = dm_pool_get_metadata_snap(pool->pmd, &held_root);
  3174. if (r) {
  3175. DMERR("%s: dm_pool_get_metadata_snap returned %d",
  3176. dm_device_name(pool->pool_md), r);
  3177. goto err;
  3178. }
  3179. DMEMIT("%llu %llu/%llu %llu/%llu ",
  3180. (unsigned long long)transaction_id,
  3181. (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
  3182. (unsigned long long)nr_blocks_metadata,
  3183. (unsigned long long)(nr_blocks_data - nr_free_blocks_data),
  3184. (unsigned long long)nr_blocks_data);
  3185. if (held_root)
  3186. DMEMIT("%llu ", held_root);
  3187. else
  3188. DMEMIT("- ");
  3189. if (pool->pf.mode == PM_OUT_OF_DATA_SPACE)
  3190. DMEMIT("out_of_data_space ");
  3191. else if (pool->pf.mode == PM_READ_ONLY)
  3192. DMEMIT("ro ");
  3193. else
  3194. DMEMIT("rw ");
  3195. if (!pool->pf.discard_enabled)
  3196. DMEMIT("ignore_discard ");
  3197. else if (pool->pf.discard_passdown)
  3198. DMEMIT("discard_passdown ");
  3199. else
  3200. DMEMIT("no_discard_passdown ");
  3201. if (pool->pf.error_if_no_space)
  3202. DMEMIT("error_if_no_space ");
  3203. else
  3204. DMEMIT("queue_if_no_space ");
  3205. if (dm_pool_metadata_needs_check(pool->pmd))
  3206. DMEMIT("needs_check ");
  3207. else
  3208. DMEMIT("- ");
  3209. break;
  3210. case STATUSTYPE_TABLE:
  3211. DMEMIT("%s %s %lu %llu ",
  3212. format_dev_t(buf, pt->metadata_dev->bdev->bd_dev),
  3213. format_dev_t(buf2, pt->data_dev->bdev->bd_dev),
  3214. (unsigned long)pool->sectors_per_block,
  3215. (unsigned long long)pt->low_water_blocks);
  3216. emit_flags(&pt->requested_pf, result, sz, maxlen);
  3217. break;
  3218. }
  3219. return;
  3220. err:
  3221. DMEMIT("Error");
  3222. }
  3223. static int pool_iterate_devices(struct dm_target *ti,
  3224. iterate_devices_callout_fn fn, void *data)
  3225. {
  3226. struct pool_c *pt = ti->private;
  3227. return fn(ti, pt->data_dev, 0, ti->len, data);
  3228. }
  3229. static void pool_io_hints(struct dm_target *ti, struct queue_limits *limits)
  3230. {
  3231. struct pool_c *pt = ti->private;
  3232. struct pool *pool = pt->pool;
  3233. sector_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
  3234. /*
  3235. * If max_sectors is smaller than pool->sectors_per_block adjust it
  3236. * to the highest possible power-of-2 factor of pool->sectors_per_block.
  3237. * This is especially beneficial when the pool's data device is a RAID
  3238. * device that has a full stripe width that matches pool->sectors_per_block
  3239. * -- because even though partial RAID stripe-sized IOs will be issued to a
  3240. * single RAID stripe; when aggregated they will end on a full RAID stripe
  3241. * boundary.. which avoids additional partial RAID stripe writes cascading
  3242. */
  3243. if (limits->max_sectors < pool->sectors_per_block) {
  3244. while (!is_factor(pool->sectors_per_block, limits->max_sectors)) {
  3245. if ((limits->max_sectors & (limits->max_sectors - 1)) == 0)
  3246. limits->max_sectors--;
  3247. limits->max_sectors = rounddown_pow_of_two(limits->max_sectors);
  3248. }
  3249. }
  3250. /*
  3251. * If the system-determined stacked limits are compatible with the
  3252. * pool's blocksize (io_opt is a factor) do not override them.
  3253. */
  3254. if (io_opt_sectors < pool->sectors_per_block ||
  3255. !is_factor(io_opt_sectors, pool->sectors_per_block)) {
  3256. if (is_factor(pool->sectors_per_block, limits->max_sectors))
  3257. blk_limits_io_min(limits, limits->max_sectors << SECTOR_SHIFT);
  3258. else
  3259. blk_limits_io_min(limits, pool->sectors_per_block << SECTOR_SHIFT);
  3260. blk_limits_io_opt(limits, pool->sectors_per_block << SECTOR_SHIFT);
  3261. }
  3262. /*
  3263. * pt->adjusted_pf is a staging area for the actual features to use.
  3264. * They get transferred to the live pool in bind_control_target()
  3265. * called from pool_preresume().
  3266. */
  3267. if (!pt->adjusted_pf.discard_enabled) {
  3268. /*
  3269. * Must explicitly disallow stacking discard limits otherwise the
  3270. * block layer will stack them if pool's data device has support.
  3271. * QUEUE_FLAG_DISCARD wouldn't be set but there is no way for the
  3272. * user to see that, so make sure to set all discard limits to 0.
  3273. */
  3274. limits->discard_granularity = 0;
  3275. return;
  3276. }
  3277. disable_passdown_if_not_supported(pt);
  3278. /*
  3279. * The pool uses the same discard limits as the underlying data
  3280. * device. DM core has already set this up.
  3281. */
  3282. }
  3283. static struct target_type pool_target = {
  3284. .name = "thin-pool",
  3285. .features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE |
  3286. DM_TARGET_IMMUTABLE,
  3287. .version = {1, 19, 0},
  3288. .module = THIS_MODULE,
  3289. .ctr = pool_ctr,
  3290. .dtr = pool_dtr,
  3291. .map = pool_map,
  3292. .presuspend = pool_presuspend,
  3293. .presuspend_undo = pool_presuspend_undo,
  3294. .postsuspend = pool_postsuspend,
  3295. .preresume = pool_preresume,
  3296. .resume = pool_resume,
  3297. .message = pool_message,
  3298. .status = pool_status,
  3299. .iterate_devices = pool_iterate_devices,
  3300. .io_hints = pool_io_hints,
  3301. };
  3302. /*----------------------------------------------------------------
  3303. * Thin target methods
  3304. *--------------------------------------------------------------*/
  3305. static void thin_get(struct thin_c *tc)
  3306. {
  3307. atomic_inc(&tc->refcount);
  3308. }
  3309. static void thin_put(struct thin_c *tc)
  3310. {
  3311. if (atomic_dec_and_test(&tc->refcount))
  3312. complete(&tc->can_destroy);
  3313. }
  3314. static void thin_dtr(struct dm_target *ti)
  3315. {
  3316. struct thin_c *tc = ti->private;
  3317. unsigned long flags;
  3318. spin_lock_irqsave(&tc->pool->lock, flags);
  3319. list_del_rcu(&tc->list);
  3320. spin_unlock_irqrestore(&tc->pool->lock, flags);
  3321. synchronize_rcu();
  3322. thin_put(tc);
  3323. wait_for_completion(&tc->can_destroy);
  3324. mutex_lock(&dm_thin_pool_table.mutex);
  3325. __pool_dec(tc->pool);
  3326. dm_pool_close_thin_device(tc->td);
  3327. dm_put_device(ti, tc->pool_dev);
  3328. if (tc->origin_dev)
  3329. dm_put_device(ti, tc->origin_dev);
  3330. kfree(tc);
  3331. mutex_unlock(&dm_thin_pool_table.mutex);
  3332. }
  3333. /*
  3334. * Thin target parameters:
  3335. *
  3336. * <pool_dev> <dev_id> [origin_dev]
  3337. *
  3338. * pool_dev: the path to the pool (eg, /dev/mapper/my_pool)
  3339. * dev_id: the internal device identifier
  3340. * origin_dev: a device external to the pool that should act as the origin
  3341. *
  3342. * If the pool device has discards disabled, they get disabled for the thin
  3343. * device as well.
  3344. */
  3345. static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv)
  3346. {
  3347. int r;
  3348. struct thin_c *tc;
  3349. struct dm_dev *pool_dev, *origin_dev;
  3350. struct mapped_device *pool_md;
  3351. unsigned long flags;
  3352. mutex_lock(&dm_thin_pool_table.mutex);
  3353. if (argc != 2 && argc != 3) {
  3354. ti->error = "Invalid argument count";
  3355. r = -EINVAL;
  3356. goto out_unlock;
  3357. }
  3358. tc = ti->private = kzalloc(sizeof(*tc), GFP_KERNEL);
  3359. if (!tc) {
  3360. ti->error = "Out of memory";
  3361. r = -ENOMEM;
  3362. goto out_unlock;
  3363. }
  3364. tc->thin_md = dm_table_get_md(ti->table);
  3365. spin_lock_init(&tc->lock);
  3366. INIT_LIST_HEAD(&tc->deferred_cells);
  3367. bio_list_init(&tc->deferred_bio_list);
  3368. bio_list_init(&tc->retry_on_resume_list);
  3369. tc->sort_bio_list = RB_ROOT;
  3370. if (argc == 3) {
  3371. r = dm_get_device(ti, argv[2], FMODE_READ, &origin_dev);
  3372. if (r) {
  3373. ti->error = "Error opening origin device";
  3374. goto bad_origin_dev;
  3375. }
  3376. tc->origin_dev = origin_dev;
  3377. }
  3378. r = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &pool_dev);
  3379. if (r) {
  3380. ti->error = "Error opening pool device";
  3381. goto bad_pool_dev;
  3382. }
  3383. tc->pool_dev = pool_dev;
  3384. if (read_dev_id(argv[1], (unsigned long long *)&tc->dev_id, 0)) {
  3385. ti->error = "Invalid device id";
  3386. r = -EINVAL;
  3387. goto bad_common;
  3388. }
  3389. pool_md = dm_get_md(tc->pool_dev->bdev->bd_dev);
  3390. if (!pool_md) {
  3391. ti->error = "Couldn't get pool mapped device";
  3392. r = -EINVAL;
  3393. goto bad_common;
  3394. }
  3395. tc->pool = __pool_table_lookup(pool_md);
  3396. if (!tc->pool) {
  3397. ti->error = "Couldn't find pool object";
  3398. r = -EINVAL;
  3399. goto bad_pool_lookup;
  3400. }
  3401. __pool_inc(tc->pool);
  3402. if (get_pool_mode(tc->pool) == PM_FAIL) {
  3403. ti->error = "Couldn't open thin device, Pool is in fail mode";
  3404. r = -EINVAL;
  3405. goto bad_pool;
  3406. }
  3407. r = dm_pool_open_thin_device(tc->pool->pmd, tc->dev_id, &tc->td);
  3408. if (r) {
  3409. ti->error = "Couldn't open thin internal device";
  3410. goto bad_pool;
  3411. }
  3412. r = dm_set_target_max_io_len(ti, tc->pool->sectors_per_block);
  3413. if (r)
  3414. goto bad;
  3415. ti->num_flush_bios = 1;
  3416. ti->flush_supported = true;
  3417. ti->per_io_data_size = sizeof(struct dm_thin_endio_hook);
  3418. /* In case the pool supports discards, pass them on. */
  3419. ti->discard_zeroes_data_unsupported = true;
  3420. if (tc->pool->pf.discard_enabled) {
  3421. ti->discards_supported = true;
  3422. ti->num_discard_bios = 1;
  3423. ti->split_discard_bios = false;
  3424. }
  3425. mutex_unlock(&dm_thin_pool_table.mutex);
  3426. spin_lock_irqsave(&tc->pool->lock, flags);
  3427. if (tc->pool->suspended) {
  3428. spin_unlock_irqrestore(&tc->pool->lock, flags);
  3429. mutex_lock(&dm_thin_pool_table.mutex); /* reacquire for __pool_dec */
  3430. ti->error = "Unable to activate thin device while pool is suspended";
  3431. r = -EINVAL;
  3432. goto bad;
  3433. }
  3434. atomic_set(&tc->refcount, 1);
  3435. init_completion(&tc->can_destroy);
  3436. list_add_tail_rcu(&tc->list, &tc->pool->active_thins);
  3437. spin_unlock_irqrestore(&tc->pool->lock, flags);
  3438. /*
  3439. * This synchronize_rcu() call is needed here otherwise we risk a
  3440. * wake_worker() call finding no bios to process (because the newly
  3441. * added tc isn't yet visible). So this reduces latency since we
  3442. * aren't then dependent on the periodic commit to wake_worker().
  3443. */
  3444. synchronize_rcu();
  3445. dm_put(pool_md);
  3446. return 0;
  3447. bad:
  3448. dm_pool_close_thin_device(tc->td);
  3449. bad_pool:
  3450. __pool_dec(tc->pool);
  3451. bad_pool_lookup:
  3452. dm_put(pool_md);
  3453. bad_common:
  3454. dm_put_device(ti, tc->pool_dev);
  3455. bad_pool_dev:
  3456. if (tc->origin_dev)
  3457. dm_put_device(ti, tc->origin_dev);
  3458. bad_origin_dev:
  3459. kfree(tc);
  3460. out_unlock:
  3461. mutex_unlock(&dm_thin_pool_table.mutex);
  3462. return r;
  3463. }
  3464. static int thin_map(struct dm_target *ti, struct bio *bio)
  3465. {
  3466. bio->bi_iter.bi_sector = dm_target_offset(ti, bio->bi_iter.bi_sector);
  3467. return thin_bio_map(ti, bio);
  3468. }
  3469. static int thin_endio(struct dm_target *ti, struct bio *bio, int err)
  3470. {
  3471. unsigned long flags;
  3472. struct dm_thin_endio_hook *h = dm_per_bio_data(bio, sizeof(struct dm_thin_endio_hook));
  3473. struct list_head work;
  3474. struct dm_thin_new_mapping *m, *tmp;
  3475. struct pool *pool = h->tc->pool;
  3476. if (h->shared_read_entry) {
  3477. INIT_LIST_HEAD(&work);
  3478. dm_deferred_entry_dec(h->shared_read_entry, &work);
  3479. spin_lock_irqsave(&pool->lock, flags);
  3480. list_for_each_entry_safe(m, tmp, &work, list) {
  3481. list_del(&m->list);
  3482. __complete_mapping_preparation(m);
  3483. }
  3484. spin_unlock_irqrestore(&pool->lock, flags);
  3485. }
  3486. if (h->all_io_entry) {
  3487. INIT_LIST_HEAD(&work);
  3488. dm_deferred_entry_dec(h->all_io_entry, &work);
  3489. if (!list_empty(&work)) {
  3490. spin_lock_irqsave(&pool->lock, flags);
  3491. list_for_each_entry_safe(m, tmp, &work, list)
  3492. list_add_tail(&m->list, &pool->prepared_discards);
  3493. spin_unlock_irqrestore(&pool->lock, flags);
  3494. wake_worker(pool);
  3495. }
  3496. }
  3497. if (h->cell)
  3498. cell_defer_no_holder(h->tc, h->cell);
  3499. return 0;
  3500. }
  3501. static void thin_presuspend(struct dm_target *ti)
  3502. {
  3503. struct thin_c *tc = ti->private;
  3504. if (dm_noflush_suspending(ti))
  3505. noflush_work(tc, do_noflush_start);
  3506. }
  3507. static void thin_postsuspend(struct dm_target *ti)
  3508. {
  3509. struct thin_c *tc = ti->private;
  3510. /*
  3511. * The dm_noflush_suspending flag has been cleared by now, so
  3512. * unfortunately we must always run this.
  3513. */
  3514. noflush_work(tc, do_noflush_stop);
  3515. }
  3516. static int thin_preresume(struct dm_target *ti)
  3517. {
  3518. struct thin_c *tc = ti->private;
  3519. if (tc->origin_dev)
  3520. tc->origin_size = get_dev_size(tc->origin_dev->bdev);
  3521. return 0;
  3522. }
  3523. /*
  3524. * <nr mapped sectors> <highest mapped sector>
  3525. */
  3526. static void thin_status(struct dm_target *ti, status_type_t type,
  3527. unsigned status_flags, char *result, unsigned maxlen)
  3528. {
  3529. int r;
  3530. ssize_t sz = 0;
  3531. dm_block_t mapped, highest;
  3532. char buf[BDEVNAME_SIZE];
  3533. struct thin_c *tc = ti->private;
  3534. if (get_pool_mode(tc->pool) == PM_FAIL) {
  3535. DMEMIT("Fail");
  3536. return;
  3537. }
  3538. if (!tc->td)
  3539. DMEMIT("-");
  3540. else {
  3541. switch (type) {
  3542. case STATUSTYPE_INFO:
  3543. r = dm_thin_get_mapped_count(tc->td, &mapped);
  3544. if (r) {
  3545. DMERR("dm_thin_get_mapped_count returned %d", r);
  3546. goto err;
  3547. }
  3548. r = dm_thin_get_highest_mapped_block(tc->td, &highest);
  3549. if (r < 0) {
  3550. DMERR("dm_thin_get_highest_mapped_block returned %d", r);
  3551. goto err;
  3552. }
  3553. DMEMIT("%llu ", mapped * tc->pool->sectors_per_block);
  3554. if (r)
  3555. DMEMIT("%llu", ((highest + 1) *
  3556. tc->pool->sectors_per_block) - 1);
  3557. else
  3558. DMEMIT("-");
  3559. break;
  3560. case STATUSTYPE_TABLE:
  3561. DMEMIT("%s %lu",
  3562. format_dev_t(buf, tc->pool_dev->bdev->bd_dev),
  3563. (unsigned long) tc->dev_id);
  3564. if (tc->origin_dev)
  3565. DMEMIT(" %s", format_dev_t(buf, tc->origin_dev->bdev->bd_dev));
  3566. break;
  3567. }
  3568. }
  3569. return;
  3570. err:
  3571. DMEMIT("Error");
  3572. }
  3573. static int thin_iterate_devices(struct dm_target *ti,
  3574. iterate_devices_callout_fn fn, void *data)
  3575. {
  3576. sector_t blocks;
  3577. struct thin_c *tc = ti->private;
  3578. struct pool *pool = tc->pool;
  3579. /*
  3580. * We can't call dm_pool_get_data_dev_size() since that blocks. So
  3581. * we follow a more convoluted path through to the pool's target.
  3582. */
  3583. if (!pool->ti)
  3584. return 0; /* nothing is bound */
  3585. blocks = pool->ti->len;
  3586. (void) sector_div(blocks, pool->sectors_per_block);
  3587. if (blocks)
  3588. return fn(ti, tc->pool_dev, 0, pool->sectors_per_block * blocks, data);
  3589. return 0;
  3590. }
  3591. static void thin_io_hints(struct dm_target *ti, struct queue_limits *limits)
  3592. {
  3593. struct thin_c *tc = ti->private;
  3594. struct pool *pool = tc->pool;
  3595. if (!pool->pf.discard_enabled)
  3596. return;
  3597. limits->discard_granularity = pool->sectors_per_block << SECTOR_SHIFT;
  3598. limits->max_discard_sectors = 2048 * 1024 * 16; /* 16G */
  3599. }
  3600. static struct target_type thin_target = {
  3601. .name = "thin",
  3602. .version = {1, 19, 0},
  3603. .module = THIS_MODULE,
  3604. .ctr = thin_ctr,
  3605. .dtr = thin_dtr,
  3606. .map = thin_map,
  3607. .end_io = thin_endio,
  3608. .preresume = thin_preresume,
  3609. .presuspend = thin_presuspend,
  3610. .postsuspend = thin_postsuspend,
  3611. .status = thin_status,
  3612. .iterate_devices = thin_iterate_devices,
  3613. .io_hints = thin_io_hints,
  3614. };
  3615. /*----------------------------------------------------------------*/
  3616. static int __init dm_thin_init(void)
  3617. {
  3618. int r;
  3619. pool_table_init();
  3620. r = dm_register_target(&thin_target);
  3621. if (r)
  3622. return r;
  3623. r = dm_register_target(&pool_target);
  3624. if (r)
  3625. goto bad_pool_target;
  3626. r = -ENOMEM;
  3627. _new_mapping_cache = KMEM_CACHE(dm_thin_new_mapping, 0);
  3628. if (!_new_mapping_cache)
  3629. goto bad_new_mapping_cache;
  3630. return 0;
  3631. bad_new_mapping_cache:
  3632. dm_unregister_target(&pool_target);
  3633. bad_pool_target:
  3634. dm_unregister_target(&thin_target);
  3635. return r;
  3636. }
  3637. static void dm_thin_exit(void)
  3638. {
  3639. dm_unregister_target(&thin_target);
  3640. dm_unregister_target(&pool_target);
  3641. kmem_cache_destroy(_new_mapping_cache);
  3642. }
  3643. module_init(dm_thin_init);
  3644. module_exit(dm_thin_exit);
  3645. module_param_named(no_space_timeout, no_space_timeout_secs, uint, S_IRUGO | S_IWUSR);
  3646. MODULE_PARM_DESC(no_space_timeout, "Out of data space queue IO timeout in seconds");
  3647. MODULE_DESCRIPTION(DM_NAME " thin provisioning target");
  3648. MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
  3649. MODULE_LICENSE("GPL");