volumes.c 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867
  1. /*
  2. * Copyright (C) 2007 Oracle. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public
  6. * License v2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public
  14. * License along with this program; if not, write to the
  15. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. * Boston, MA 021110-1307, USA.
  17. */
  18. #include <linux/sched.h>
  19. #include <linux/bio.h>
  20. #include <linux/slab.h>
  21. #include <linux/buffer_head.h>
  22. #include <linux/blkdev.h>
  23. #include <linux/random.h>
  24. #include <linux/iocontext.h>
  25. #include <linux/capability.h>
  26. #include <asm/div64.h>
  27. #include "compat.h"
  28. #include "ctree.h"
  29. #include "extent_map.h"
  30. #include "disk-io.h"
  31. #include "transaction.h"
  32. #include "print-tree.h"
  33. #include "volumes.h"
  34. #include "async-thread.h"
  35. static int init_first_rw_device(struct btrfs_trans_handle *trans,
  36. struct btrfs_root *root,
  37. struct btrfs_device *device);
  38. static int btrfs_relocate_sys_chunks(struct btrfs_root *root);
  39. static DEFINE_MUTEX(uuid_mutex);
  40. static LIST_HEAD(fs_uuids);
  41. static void lock_chunks(struct btrfs_root *root)
  42. {
  43. mutex_lock(&root->fs_info->chunk_mutex);
  44. }
  45. static void unlock_chunks(struct btrfs_root *root)
  46. {
  47. mutex_unlock(&root->fs_info->chunk_mutex);
  48. }
  49. static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
  50. {
  51. struct btrfs_device *device;
  52. WARN_ON(fs_devices->opened);
  53. while (!list_empty(&fs_devices->devices)) {
  54. device = list_entry(fs_devices->devices.next,
  55. struct btrfs_device, dev_list);
  56. list_del(&device->dev_list);
  57. kfree(device->name);
  58. kfree(device);
  59. }
  60. kfree(fs_devices);
  61. }
  62. int btrfs_cleanup_fs_uuids(void)
  63. {
  64. struct btrfs_fs_devices *fs_devices;
  65. while (!list_empty(&fs_uuids)) {
  66. fs_devices = list_entry(fs_uuids.next,
  67. struct btrfs_fs_devices, list);
  68. list_del(&fs_devices->list);
  69. free_fs_devices(fs_devices);
  70. }
  71. return 0;
  72. }
  73. static noinline struct btrfs_device *__find_device(struct list_head *head,
  74. u64 devid, u8 *uuid)
  75. {
  76. struct btrfs_device *dev;
  77. list_for_each_entry(dev, head, dev_list) {
  78. if (dev->devid == devid &&
  79. (!uuid || !memcmp(dev->uuid, uuid, BTRFS_UUID_SIZE))) {
  80. return dev;
  81. }
  82. }
  83. return NULL;
  84. }
  85. static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid)
  86. {
  87. struct btrfs_fs_devices *fs_devices;
  88. list_for_each_entry(fs_devices, &fs_uuids, list) {
  89. if (memcmp(fsid, fs_devices->fsid, BTRFS_FSID_SIZE) == 0)
  90. return fs_devices;
  91. }
  92. return NULL;
  93. }
  94. static void requeue_list(struct btrfs_pending_bios *pending_bios,
  95. struct bio *head, struct bio *tail)
  96. {
  97. struct bio *old_head;
  98. old_head = pending_bios->head;
  99. pending_bios->head = head;
  100. if (pending_bios->tail)
  101. tail->bi_next = old_head;
  102. else
  103. pending_bios->tail = tail;
  104. }
  105. /*
  106. * we try to collect pending bios for a device so we don't get a large
  107. * number of procs sending bios down to the same device. This greatly
  108. * improves the schedulers ability to collect and merge the bios.
  109. *
  110. * But, it also turns into a long list of bios to process and that is sure
  111. * to eventually make the worker thread block. The solution here is to
  112. * make some progress and then put this work struct back at the end of
  113. * the list if the block device is congested. This way, multiple devices
  114. * can make progress from a single worker thread.
  115. */
  116. static noinline int run_scheduled_bios(struct btrfs_device *device)
  117. {
  118. struct bio *pending;
  119. struct backing_dev_info *bdi;
  120. struct btrfs_fs_info *fs_info;
  121. struct btrfs_pending_bios *pending_bios;
  122. struct bio *tail;
  123. struct bio *cur;
  124. int again = 0;
  125. unsigned long num_run;
  126. unsigned long batch_run = 0;
  127. unsigned long limit;
  128. unsigned long last_waited = 0;
  129. int force_reg = 0;
  130. int sync_pending = 0;
  131. struct blk_plug plug;
  132. /*
  133. * this function runs all the bios we've collected for
  134. * a particular device. We don't want to wander off to
  135. * another device without first sending all of these down.
  136. * So, setup a plug here and finish it off before we return
  137. */
  138. blk_start_plug(&plug);
  139. bdi = blk_get_backing_dev_info(device->bdev);
  140. fs_info = device->dev_root->fs_info;
  141. limit = btrfs_async_submit_limit(fs_info);
  142. limit = limit * 2 / 3;
  143. loop:
  144. spin_lock(&device->io_lock);
  145. loop_lock:
  146. num_run = 0;
  147. /* take all the bios off the list at once and process them
  148. * later on (without the lock held). But, remember the
  149. * tail and other pointers so the bios can be properly reinserted
  150. * into the list if we hit congestion
  151. */
  152. if (!force_reg && device->pending_sync_bios.head) {
  153. pending_bios = &device->pending_sync_bios;
  154. force_reg = 1;
  155. } else {
  156. pending_bios = &device->pending_bios;
  157. force_reg = 0;
  158. }
  159. pending = pending_bios->head;
  160. tail = pending_bios->tail;
  161. WARN_ON(pending && !tail);
  162. /*
  163. * if pending was null this time around, no bios need processing
  164. * at all and we can stop. Otherwise it'll loop back up again
  165. * and do an additional check so no bios are missed.
  166. *
  167. * device->running_pending is used to synchronize with the
  168. * schedule_bio code.
  169. */
  170. if (device->pending_sync_bios.head == NULL &&
  171. device->pending_bios.head == NULL) {
  172. again = 0;
  173. device->running_pending = 0;
  174. } else {
  175. again = 1;
  176. device->running_pending = 1;
  177. }
  178. pending_bios->head = NULL;
  179. pending_bios->tail = NULL;
  180. spin_unlock(&device->io_lock);
  181. while (pending) {
  182. rmb();
  183. /* we want to work on both lists, but do more bios on the
  184. * sync list than the regular list
  185. */
  186. if ((num_run > 32 &&
  187. pending_bios != &device->pending_sync_bios &&
  188. device->pending_sync_bios.head) ||
  189. (num_run > 64 && pending_bios == &device->pending_sync_bios &&
  190. device->pending_bios.head)) {
  191. spin_lock(&device->io_lock);
  192. requeue_list(pending_bios, pending, tail);
  193. goto loop_lock;
  194. }
  195. cur = pending;
  196. pending = pending->bi_next;
  197. cur->bi_next = NULL;
  198. atomic_dec(&fs_info->nr_async_bios);
  199. if (atomic_read(&fs_info->nr_async_bios) < limit &&
  200. waitqueue_active(&fs_info->async_submit_wait))
  201. wake_up(&fs_info->async_submit_wait);
  202. BUG_ON(atomic_read(&cur->bi_cnt) == 0);
  203. /*
  204. * if we're doing the sync list, record that our
  205. * plug has some sync requests on it
  206. *
  207. * If we're doing the regular list and there are
  208. * sync requests sitting around, unplug before
  209. * we add more
  210. */
  211. if (pending_bios == &device->pending_sync_bios) {
  212. sync_pending = 1;
  213. } else if (sync_pending) {
  214. blk_finish_plug(&plug);
  215. blk_start_plug(&plug);
  216. sync_pending = 0;
  217. }
  218. submit_bio(cur->bi_rw, cur);
  219. num_run++;
  220. batch_run++;
  221. if (need_resched())
  222. cond_resched();
  223. /*
  224. * we made progress, there is more work to do and the bdi
  225. * is now congested. Back off and let other work structs
  226. * run instead
  227. */
  228. if (pending && bdi_write_congested(bdi) && batch_run > 8 &&
  229. fs_info->fs_devices->open_devices > 1) {
  230. struct io_context *ioc;
  231. ioc = current->io_context;
  232. /*
  233. * the main goal here is that we don't want to
  234. * block if we're going to be able to submit
  235. * more requests without blocking.
  236. *
  237. * This code does two great things, it pokes into
  238. * the elevator code from a filesystem _and_
  239. * it makes assumptions about how batching works.
  240. */
  241. if (ioc && ioc->nr_batch_requests > 0 &&
  242. time_before(jiffies, ioc->last_waited + HZ/50UL) &&
  243. (last_waited == 0 ||
  244. ioc->last_waited == last_waited)) {
  245. /*
  246. * we want to go through our batch of
  247. * requests and stop. So, we copy out
  248. * the ioc->last_waited time and test
  249. * against it before looping
  250. */
  251. last_waited = ioc->last_waited;
  252. if (need_resched())
  253. cond_resched();
  254. continue;
  255. }
  256. spin_lock(&device->io_lock);
  257. requeue_list(pending_bios, pending, tail);
  258. device->running_pending = 1;
  259. spin_unlock(&device->io_lock);
  260. btrfs_requeue_work(&device->work);
  261. goto done;
  262. }
  263. /* unplug every 64 requests just for good measure */
  264. if (batch_run % 64 == 0) {
  265. blk_finish_plug(&plug);
  266. blk_start_plug(&plug);
  267. sync_pending = 0;
  268. }
  269. }
  270. cond_resched();
  271. if (again)
  272. goto loop;
  273. spin_lock(&device->io_lock);
  274. if (device->pending_bios.head || device->pending_sync_bios.head)
  275. goto loop_lock;
  276. spin_unlock(&device->io_lock);
  277. done:
  278. blk_finish_plug(&plug);
  279. return 0;
  280. }
  281. static void pending_bios_fn(struct btrfs_work *work)
  282. {
  283. struct btrfs_device *device;
  284. device = container_of(work, struct btrfs_device, work);
  285. run_scheduled_bios(device);
  286. }
  287. static noinline int device_list_add(const char *path,
  288. struct btrfs_super_block *disk_super,
  289. u64 devid, struct btrfs_fs_devices **fs_devices_ret)
  290. {
  291. struct btrfs_device *device;
  292. struct btrfs_fs_devices *fs_devices;
  293. u64 found_transid = btrfs_super_generation(disk_super);
  294. char *name;
  295. fs_devices = find_fsid(disk_super->fsid);
  296. if (!fs_devices) {
  297. fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
  298. if (!fs_devices)
  299. return -ENOMEM;
  300. INIT_LIST_HEAD(&fs_devices->devices);
  301. INIT_LIST_HEAD(&fs_devices->alloc_list);
  302. list_add(&fs_devices->list, &fs_uuids);
  303. memcpy(fs_devices->fsid, disk_super->fsid, BTRFS_FSID_SIZE);
  304. fs_devices->latest_devid = devid;
  305. fs_devices->latest_trans = found_transid;
  306. mutex_init(&fs_devices->device_list_mutex);
  307. device = NULL;
  308. } else {
  309. device = __find_device(&fs_devices->devices, devid,
  310. disk_super->dev_item.uuid);
  311. }
  312. if (!device) {
  313. if (fs_devices->opened)
  314. return -EBUSY;
  315. device = kzalloc(sizeof(*device), GFP_NOFS);
  316. if (!device) {
  317. /* we can safely leave the fs_devices entry around */
  318. return -ENOMEM;
  319. }
  320. device->devid = devid;
  321. device->work.func = pending_bios_fn;
  322. memcpy(device->uuid, disk_super->dev_item.uuid,
  323. BTRFS_UUID_SIZE);
  324. spin_lock_init(&device->io_lock);
  325. device->name = kstrdup(path, GFP_NOFS);
  326. if (!device->name) {
  327. kfree(device);
  328. return -ENOMEM;
  329. }
  330. INIT_LIST_HEAD(&device->dev_alloc_list);
  331. /* init readahead state */
  332. spin_lock_init(&device->reada_lock);
  333. device->reada_curr_zone = NULL;
  334. atomic_set(&device->reada_in_flight, 0);
  335. device->reada_next = 0;
  336. INIT_RADIX_TREE(&device->reada_zones, GFP_NOFS & ~__GFP_WAIT);
  337. INIT_RADIX_TREE(&device->reada_extents, GFP_NOFS & ~__GFP_WAIT);
  338. mutex_lock(&fs_devices->device_list_mutex);
  339. list_add_rcu(&device->dev_list, &fs_devices->devices);
  340. mutex_unlock(&fs_devices->device_list_mutex);
  341. device->fs_devices = fs_devices;
  342. fs_devices->num_devices++;
  343. } else if (!device->name || strcmp(device->name, path)) {
  344. name = kstrdup(path, GFP_NOFS);
  345. if (!name)
  346. return -ENOMEM;
  347. kfree(device->name);
  348. device->name = name;
  349. if (device->missing) {
  350. fs_devices->missing_devices--;
  351. device->missing = 0;
  352. }
  353. }
  354. if (found_transid > fs_devices->latest_trans) {
  355. fs_devices->latest_devid = devid;
  356. fs_devices->latest_trans = found_transid;
  357. }
  358. *fs_devices_ret = fs_devices;
  359. return 0;
  360. }
  361. static struct btrfs_fs_devices *clone_fs_devices(struct btrfs_fs_devices *orig)
  362. {
  363. struct btrfs_fs_devices *fs_devices;
  364. struct btrfs_device *device;
  365. struct btrfs_device *orig_dev;
  366. fs_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
  367. if (!fs_devices)
  368. return ERR_PTR(-ENOMEM);
  369. INIT_LIST_HEAD(&fs_devices->devices);
  370. INIT_LIST_HEAD(&fs_devices->alloc_list);
  371. INIT_LIST_HEAD(&fs_devices->list);
  372. mutex_init(&fs_devices->device_list_mutex);
  373. fs_devices->latest_devid = orig->latest_devid;
  374. fs_devices->latest_trans = orig->latest_trans;
  375. memcpy(fs_devices->fsid, orig->fsid, sizeof(fs_devices->fsid));
  376. /* We have held the volume lock, it is safe to get the devices. */
  377. list_for_each_entry(orig_dev, &orig->devices, dev_list) {
  378. device = kzalloc(sizeof(*device), GFP_NOFS);
  379. if (!device)
  380. goto error;
  381. device->name = kstrdup(orig_dev->name, GFP_NOFS);
  382. if (!device->name) {
  383. kfree(device);
  384. goto error;
  385. }
  386. device->devid = orig_dev->devid;
  387. device->work.func = pending_bios_fn;
  388. memcpy(device->uuid, orig_dev->uuid, sizeof(device->uuid));
  389. spin_lock_init(&device->io_lock);
  390. INIT_LIST_HEAD(&device->dev_list);
  391. INIT_LIST_HEAD(&device->dev_alloc_list);
  392. list_add(&device->dev_list, &fs_devices->devices);
  393. device->fs_devices = fs_devices;
  394. fs_devices->num_devices++;
  395. }
  396. return fs_devices;
  397. error:
  398. free_fs_devices(fs_devices);
  399. return ERR_PTR(-ENOMEM);
  400. }
  401. int btrfs_close_extra_devices(struct btrfs_fs_devices *fs_devices)
  402. {
  403. struct btrfs_device *device, *next;
  404. mutex_lock(&uuid_mutex);
  405. again:
  406. /* This is the initialized path, it is safe to release the devices. */
  407. list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
  408. if (device->in_fs_metadata)
  409. continue;
  410. if (device->bdev) {
  411. blkdev_put(device->bdev, device->mode);
  412. device->bdev = NULL;
  413. fs_devices->open_devices--;
  414. }
  415. if (device->writeable) {
  416. list_del_init(&device->dev_alloc_list);
  417. device->writeable = 0;
  418. fs_devices->rw_devices--;
  419. }
  420. list_del_init(&device->dev_list);
  421. fs_devices->num_devices--;
  422. kfree(device->name);
  423. kfree(device);
  424. }
  425. if (fs_devices->seed) {
  426. fs_devices = fs_devices->seed;
  427. goto again;
  428. }
  429. mutex_unlock(&uuid_mutex);
  430. return 0;
  431. }
  432. static void __free_device(struct work_struct *work)
  433. {
  434. struct btrfs_device *device;
  435. device = container_of(work, struct btrfs_device, rcu_work);
  436. if (device->bdev)
  437. blkdev_put(device->bdev, device->mode);
  438. kfree(device->name);
  439. kfree(device);
  440. }
  441. static void free_device(struct rcu_head *head)
  442. {
  443. struct btrfs_device *device;
  444. device = container_of(head, struct btrfs_device, rcu);
  445. INIT_WORK(&device->rcu_work, __free_device);
  446. schedule_work(&device->rcu_work);
  447. }
  448. static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
  449. {
  450. struct btrfs_device *device;
  451. if (--fs_devices->opened > 0)
  452. return 0;
  453. mutex_lock(&fs_devices->device_list_mutex);
  454. list_for_each_entry(device, &fs_devices->devices, dev_list) {
  455. struct btrfs_device *new_device;
  456. if (device->bdev)
  457. fs_devices->open_devices--;
  458. if (device->writeable) {
  459. list_del_init(&device->dev_alloc_list);
  460. fs_devices->rw_devices--;
  461. }
  462. if (device->can_discard)
  463. fs_devices->num_can_discard--;
  464. new_device = kmalloc(sizeof(*new_device), GFP_NOFS);
  465. BUG_ON(!new_device);
  466. memcpy(new_device, device, sizeof(*new_device));
  467. new_device->name = kstrdup(device->name, GFP_NOFS);
  468. BUG_ON(device->name && !new_device->name);
  469. new_device->bdev = NULL;
  470. new_device->writeable = 0;
  471. new_device->in_fs_metadata = 0;
  472. new_device->can_discard = 0;
  473. list_replace_rcu(&device->dev_list, &new_device->dev_list);
  474. call_rcu(&device->rcu, free_device);
  475. }
  476. mutex_unlock(&fs_devices->device_list_mutex);
  477. WARN_ON(fs_devices->open_devices);
  478. WARN_ON(fs_devices->rw_devices);
  479. fs_devices->opened = 0;
  480. fs_devices->seeding = 0;
  481. return 0;
  482. }
  483. int btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
  484. {
  485. struct btrfs_fs_devices *seed_devices = NULL;
  486. int ret;
  487. mutex_lock(&uuid_mutex);
  488. ret = __btrfs_close_devices(fs_devices);
  489. if (!fs_devices->opened) {
  490. seed_devices = fs_devices->seed;
  491. fs_devices->seed = NULL;
  492. }
  493. mutex_unlock(&uuid_mutex);
  494. while (seed_devices) {
  495. fs_devices = seed_devices;
  496. seed_devices = fs_devices->seed;
  497. __btrfs_close_devices(fs_devices);
  498. free_fs_devices(fs_devices);
  499. }
  500. return ret;
  501. }
  502. static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
  503. fmode_t flags, void *holder)
  504. {
  505. struct request_queue *q;
  506. struct block_device *bdev;
  507. struct list_head *head = &fs_devices->devices;
  508. struct btrfs_device *device;
  509. struct block_device *latest_bdev = NULL;
  510. struct buffer_head *bh;
  511. struct btrfs_super_block *disk_super;
  512. u64 latest_devid = 0;
  513. u64 latest_transid = 0;
  514. u64 devid;
  515. int seeding = 1;
  516. int ret = 0;
  517. flags |= FMODE_EXCL;
  518. list_for_each_entry(device, head, dev_list) {
  519. if (device->bdev)
  520. continue;
  521. if (!device->name)
  522. continue;
  523. bdev = blkdev_get_by_path(device->name, flags, holder);
  524. if (IS_ERR(bdev)) {
  525. printk(KERN_INFO "open %s failed\n", device->name);
  526. goto error;
  527. }
  528. set_blocksize(bdev, 4096);
  529. bh = btrfs_read_dev_super(bdev);
  530. if (!bh)
  531. goto error_close;
  532. disk_super = (struct btrfs_super_block *)bh->b_data;
  533. devid = btrfs_stack_device_id(&disk_super->dev_item);
  534. if (devid != device->devid)
  535. goto error_brelse;
  536. if (memcmp(device->uuid, disk_super->dev_item.uuid,
  537. BTRFS_UUID_SIZE))
  538. goto error_brelse;
  539. device->generation = btrfs_super_generation(disk_super);
  540. if (!latest_transid || device->generation > latest_transid) {
  541. latest_devid = devid;
  542. latest_transid = device->generation;
  543. latest_bdev = bdev;
  544. }
  545. if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_SEEDING) {
  546. device->writeable = 0;
  547. } else {
  548. device->writeable = !bdev_read_only(bdev);
  549. seeding = 0;
  550. }
  551. q = bdev_get_queue(bdev);
  552. if (blk_queue_discard(q)) {
  553. device->can_discard = 1;
  554. fs_devices->num_can_discard++;
  555. }
  556. device->bdev = bdev;
  557. device->in_fs_metadata = 0;
  558. device->mode = flags;
  559. if (!blk_queue_nonrot(bdev_get_queue(bdev)))
  560. fs_devices->rotating = 1;
  561. fs_devices->open_devices++;
  562. if (device->writeable) {
  563. fs_devices->rw_devices++;
  564. list_add(&device->dev_alloc_list,
  565. &fs_devices->alloc_list);
  566. }
  567. brelse(bh);
  568. continue;
  569. error_brelse:
  570. brelse(bh);
  571. error_close:
  572. blkdev_put(bdev, flags);
  573. error:
  574. continue;
  575. }
  576. if (fs_devices->open_devices == 0) {
  577. ret = -EINVAL;
  578. goto out;
  579. }
  580. fs_devices->seeding = seeding;
  581. fs_devices->opened = 1;
  582. fs_devices->latest_bdev = latest_bdev;
  583. fs_devices->latest_devid = latest_devid;
  584. fs_devices->latest_trans = latest_transid;
  585. fs_devices->total_rw_bytes = 0;
  586. out:
  587. return ret;
  588. }
  589. int btrfs_open_devices(struct btrfs_fs_devices *fs_devices,
  590. fmode_t flags, void *holder)
  591. {
  592. int ret;
  593. mutex_lock(&uuid_mutex);
  594. if (fs_devices->opened) {
  595. fs_devices->opened++;
  596. ret = 0;
  597. } else {
  598. ret = __btrfs_open_devices(fs_devices, flags, holder);
  599. }
  600. mutex_unlock(&uuid_mutex);
  601. return ret;
  602. }
  603. int btrfs_scan_one_device(const char *path, fmode_t flags, void *holder,
  604. struct btrfs_fs_devices **fs_devices_ret)
  605. {
  606. struct btrfs_super_block *disk_super;
  607. struct block_device *bdev;
  608. struct buffer_head *bh;
  609. int ret;
  610. u64 devid;
  611. u64 transid;
  612. mutex_lock(&uuid_mutex);
  613. flags |= FMODE_EXCL;
  614. bdev = blkdev_get_by_path(path, flags, holder);
  615. if (IS_ERR(bdev)) {
  616. ret = PTR_ERR(bdev);
  617. goto error;
  618. }
  619. ret = set_blocksize(bdev, 4096);
  620. if (ret)
  621. goto error_close;
  622. bh = btrfs_read_dev_super(bdev);
  623. if (!bh) {
  624. ret = -EINVAL;
  625. goto error_close;
  626. }
  627. disk_super = (struct btrfs_super_block *)bh->b_data;
  628. devid = btrfs_stack_device_id(&disk_super->dev_item);
  629. transid = btrfs_super_generation(disk_super);
  630. if (disk_super->label[0])
  631. printk(KERN_INFO "device label %s ", disk_super->label);
  632. else
  633. printk(KERN_INFO "device fsid %pU ", disk_super->fsid);
  634. printk(KERN_CONT "devid %llu transid %llu %s\n",
  635. (unsigned long long)devid, (unsigned long long)transid, path);
  636. ret = device_list_add(path, disk_super, devid, fs_devices_ret);
  637. brelse(bh);
  638. error_close:
  639. blkdev_put(bdev, flags);
  640. error:
  641. mutex_unlock(&uuid_mutex);
  642. return ret;
  643. }
  644. /* helper to account the used device space in the range */
  645. int btrfs_account_dev_extents_size(struct btrfs_device *device, u64 start,
  646. u64 end, u64 *length)
  647. {
  648. struct btrfs_key key;
  649. struct btrfs_root *root = device->dev_root;
  650. struct btrfs_dev_extent *dev_extent;
  651. struct btrfs_path *path;
  652. u64 extent_end;
  653. int ret;
  654. int slot;
  655. struct extent_buffer *l;
  656. *length = 0;
  657. if (start >= device->total_bytes)
  658. return 0;
  659. path = btrfs_alloc_path();
  660. if (!path)
  661. return -ENOMEM;
  662. path->reada = 2;
  663. key.objectid = device->devid;
  664. key.offset = start;
  665. key.type = BTRFS_DEV_EXTENT_KEY;
  666. ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
  667. if (ret < 0)
  668. goto out;
  669. if (ret > 0) {
  670. ret = btrfs_previous_item(root, path, key.objectid, key.type);
  671. if (ret < 0)
  672. goto out;
  673. }
  674. while (1) {
  675. l = path->nodes[0];
  676. slot = path->slots[0];
  677. if (slot >= btrfs_header_nritems(l)) {
  678. ret = btrfs_next_leaf(root, path);
  679. if (ret == 0)
  680. continue;
  681. if (ret < 0)
  682. goto out;
  683. break;
  684. }
  685. btrfs_item_key_to_cpu(l, &key, slot);
  686. if (key.objectid < device->devid)
  687. goto next;
  688. if (key.objectid > device->devid)
  689. break;
  690. if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
  691. goto next;
  692. dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
  693. extent_end = key.offset + btrfs_dev_extent_length(l,
  694. dev_extent);
  695. if (key.offset <= start && extent_end > end) {
  696. *length = end - start + 1;
  697. break;
  698. } else if (key.offset <= start && extent_end > start)
  699. *length += extent_end - start;
  700. else if (key.offset > start && extent_end <= end)
  701. *length += extent_end - key.offset;
  702. else if (key.offset > start && key.offset <= end) {
  703. *length += end - key.offset + 1;
  704. break;
  705. } else if (key.offset > end)
  706. break;
  707. next:
  708. path->slots[0]++;
  709. }
  710. ret = 0;
  711. out:
  712. btrfs_free_path(path);
  713. return ret;
  714. }
  715. /*
  716. * find_free_dev_extent - find free space in the specified device
  717. * @trans: transaction handler
  718. * @device: the device which we search the free space in
  719. * @num_bytes: the size of the free space that we need
  720. * @start: store the start of the free space.
  721. * @len: the size of the free space. that we find, or the size of the max
  722. * free space if we don't find suitable free space
  723. *
  724. * this uses a pretty simple search, the expectation is that it is
  725. * called very infrequently and that a given device has a small number
  726. * of extents
  727. *
  728. * @start is used to store the start of the free space if we find. But if we
  729. * don't find suitable free space, it will be used to store the start position
  730. * of the max free space.
  731. *
  732. * @len is used to store the size of the free space that we find.
  733. * But if we don't find suitable free space, it is used to store the size of
  734. * the max free space.
  735. */
  736. int find_free_dev_extent(struct btrfs_trans_handle *trans,
  737. struct btrfs_device *device, u64 num_bytes,
  738. u64 *start, u64 *len)
  739. {
  740. struct btrfs_key key;
  741. struct btrfs_root *root = device->dev_root;
  742. struct btrfs_dev_extent *dev_extent;
  743. struct btrfs_path *path;
  744. u64 hole_size;
  745. u64 max_hole_start;
  746. u64 max_hole_size;
  747. u64 extent_end;
  748. u64 search_start;
  749. u64 search_end = device->total_bytes;
  750. int ret;
  751. int slot;
  752. struct extent_buffer *l;
  753. /* FIXME use last free of some kind */
  754. /* we don't want to overwrite the superblock on the drive,
  755. * so we make sure to start at an offset of at least 1MB
  756. */
  757. search_start = max(root->fs_info->alloc_start, 1024ull * 1024);
  758. max_hole_start = search_start;
  759. max_hole_size = 0;
  760. hole_size = 0;
  761. if (search_start >= search_end) {
  762. ret = -ENOSPC;
  763. goto error;
  764. }
  765. path = btrfs_alloc_path();
  766. if (!path) {
  767. ret = -ENOMEM;
  768. goto error;
  769. }
  770. path->reada = 2;
  771. key.objectid = device->devid;
  772. key.offset = search_start;
  773. key.type = BTRFS_DEV_EXTENT_KEY;
  774. ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
  775. if (ret < 0)
  776. goto out;
  777. if (ret > 0) {
  778. ret = btrfs_previous_item(root, path, key.objectid, key.type);
  779. if (ret < 0)
  780. goto out;
  781. }
  782. while (1) {
  783. l = path->nodes[0];
  784. slot = path->slots[0];
  785. if (slot >= btrfs_header_nritems(l)) {
  786. ret = btrfs_next_leaf(root, path);
  787. if (ret == 0)
  788. continue;
  789. if (ret < 0)
  790. goto out;
  791. break;
  792. }
  793. btrfs_item_key_to_cpu(l, &key, slot);
  794. if (key.objectid < device->devid)
  795. goto next;
  796. if (key.objectid > device->devid)
  797. break;
  798. if (btrfs_key_type(&key) != BTRFS_DEV_EXTENT_KEY)
  799. goto next;
  800. if (key.offset > search_start) {
  801. hole_size = key.offset - search_start;
  802. if (hole_size > max_hole_size) {
  803. max_hole_start = search_start;
  804. max_hole_size = hole_size;
  805. }
  806. /*
  807. * If this free space is greater than which we need,
  808. * it must be the max free space that we have found
  809. * until now, so max_hole_start must point to the start
  810. * of this free space and the length of this free space
  811. * is stored in max_hole_size. Thus, we return
  812. * max_hole_start and max_hole_size and go back to the
  813. * caller.
  814. */
  815. if (hole_size >= num_bytes) {
  816. ret = 0;
  817. goto out;
  818. }
  819. }
  820. dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
  821. extent_end = key.offset + btrfs_dev_extent_length(l,
  822. dev_extent);
  823. if (extent_end > search_start)
  824. search_start = extent_end;
  825. next:
  826. path->slots[0]++;
  827. cond_resched();
  828. }
  829. /*
  830. * At this point, search_start should be the end of
  831. * allocated dev extents, and when shrinking the device,
  832. * search_end may be smaller than search_start.
  833. */
  834. if (search_end > search_start)
  835. hole_size = search_end - search_start;
  836. if (hole_size > max_hole_size) {
  837. max_hole_start = search_start;
  838. max_hole_size = hole_size;
  839. }
  840. /* See above. */
  841. if (hole_size < num_bytes)
  842. ret = -ENOSPC;
  843. else
  844. ret = 0;
  845. out:
  846. btrfs_free_path(path);
  847. error:
  848. *start = max_hole_start;
  849. if (len)
  850. *len = max_hole_size;
  851. return ret;
  852. }
  853. static int btrfs_free_dev_extent(struct btrfs_trans_handle *trans,
  854. struct btrfs_device *device,
  855. u64 start)
  856. {
  857. int ret;
  858. struct btrfs_path *path;
  859. struct btrfs_root *root = device->dev_root;
  860. struct btrfs_key key;
  861. struct btrfs_key found_key;
  862. struct extent_buffer *leaf = NULL;
  863. struct btrfs_dev_extent *extent = NULL;
  864. path = btrfs_alloc_path();
  865. if (!path)
  866. return -ENOMEM;
  867. key.objectid = device->devid;
  868. key.offset = start;
  869. key.type = BTRFS_DEV_EXTENT_KEY;
  870. again:
  871. ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
  872. if (ret > 0) {
  873. ret = btrfs_previous_item(root, path, key.objectid,
  874. BTRFS_DEV_EXTENT_KEY);
  875. if (ret)
  876. goto out;
  877. leaf = path->nodes[0];
  878. btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
  879. extent = btrfs_item_ptr(leaf, path->slots[0],
  880. struct btrfs_dev_extent);
  881. BUG_ON(found_key.offset > start || found_key.offset +
  882. btrfs_dev_extent_length(leaf, extent) < start);
  883. key = found_key;
  884. btrfs_release_path(path);
  885. goto again;
  886. } else if (ret == 0) {
  887. leaf = path->nodes[0];
  888. extent = btrfs_item_ptr(leaf, path->slots[0],
  889. struct btrfs_dev_extent);
  890. }
  891. BUG_ON(ret);
  892. if (device->bytes_used > 0) {
  893. u64 len = btrfs_dev_extent_length(leaf, extent);
  894. device->bytes_used -= len;
  895. spin_lock(&root->fs_info->free_chunk_lock);
  896. root->fs_info->free_chunk_space += len;
  897. spin_unlock(&root->fs_info->free_chunk_lock);
  898. }
  899. ret = btrfs_del_item(trans, root, path);
  900. out:
  901. btrfs_free_path(path);
  902. return ret;
  903. }
  904. int btrfs_alloc_dev_extent(struct btrfs_trans_handle *trans,
  905. struct btrfs_device *device,
  906. u64 chunk_tree, u64 chunk_objectid,
  907. u64 chunk_offset, u64 start, u64 num_bytes)
  908. {
  909. int ret;
  910. struct btrfs_path *path;
  911. struct btrfs_root *root = device->dev_root;
  912. struct btrfs_dev_extent *extent;
  913. struct extent_buffer *leaf;
  914. struct btrfs_key key;
  915. WARN_ON(!device->in_fs_metadata);
  916. path = btrfs_alloc_path();
  917. if (!path)
  918. return -ENOMEM;
  919. key.objectid = device->devid;
  920. key.offset = start;
  921. key.type = BTRFS_DEV_EXTENT_KEY;
  922. ret = btrfs_insert_empty_item(trans, root, path, &key,
  923. sizeof(*extent));
  924. BUG_ON(ret);
  925. leaf = path->nodes[0];
  926. extent = btrfs_item_ptr(leaf, path->slots[0],
  927. struct btrfs_dev_extent);
  928. btrfs_set_dev_extent_chunk_tree(leaf, extent, chunk_tree);
  929. btrfs_set_dev_extent_chunk_objectid(leaf, extent, chunk_objectid);
  930. btrfs_set_dev_extent_chunk_offset(leaf, extent, chunk_offset);
  931. write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
  932. (unsigned long)btrfs_dev_extent_chunk_tree_uuid(extent),
  933. BTRFS_UUID_SIZE);
  934. btrfs_set_dev_extent_length(leaf, extent, num_bytes);
  935. btrfs_mark_buffer_dirty(leaf);
  936. btrfs_free_path(path);
  937. return ret;
  938. }
  939. static noinline int find_next_chunk(struct btrfs_root *root,
  940. u64 objectid, u64 *offset)
  941. {
  942. struct btrfs_path *path;
  943. int ret;
  944. struct btrfs_key key;
  945. struct btrfs_chunk *chunk;
  946. struct btrfs_key found_key;
  947. path = btrfs_alloc_path();
  948. if (!path)
  949. return -ENOMEM;
  950. key.objectid = objectid;
  951. key.offset = (u64)-1;
  952. key.type = BTRFS_CHUNK_ITEM_KEY;
  953. ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
  954. if (ret < 0)
  955. goto error;
  956. BUG_ON(ret == 0);
  957. ret = btrfs_previous_item(root, path, 0, BTRFS_CHUNK_ITEM_KEY);
  958. if (ret) {
  959. *offset = 0;
  960. } else {
  961. btrfs_item_key_to_cpu(path->nodes[0], &found_key,
  962. path->slots[0]);
  963. if (found_key.objectid != objectid)
  964. *offset = 0;
  965. else {
  966. chunk = btrfs_item_ptr(path->nodes[0], path->slots[0],
  967. struct btrfs_chunk);
  968. *offset = found_key.offset +
  969. btrfs_chunk_length(path->nodes[0], chunk);
  970. }
  971. }
  972. ret = 0;
  973. error:
  974. btrfs_free_path(path);
  975. return ret;
  976. }
  977. static noinline int find_next_devid(struct btrfs_root *root, u64 *objectid)
  978. {
  979. int ret;
  980. struct btrfs_key key;
  981. struct btrfs_key found_key;
  982. struct btrfs_path *path;
  983. root = root->fs_info->chunk_root;
  984. path = btrfs_alloc_path();
  985. if (!path)
  986. return -ENOMEM;
  987. key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
  988. key.type = BTRFS_DEV_ITEM_KEY;
  989. key.offset = (u64)-1;
  990. ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
  991. if (ret < 0)
  992. goto error;
  993. BUG_ON(ret == 0);
  994. ret = btrfs_previous_item(root, path, BTRFS_DEV_ITEMS_OBJECTID,
  995. BTRFS_DEV_ITEM_KEY);
  996. if (ret) {
  997. *objectid = 1;
  998. } else {
  999. btrfs_item_key_to_cpu(path->nodes[0], &found_key,
  1000. path->slots[0]);
  1001. *objectid = found_key.offset + 1;
  1002. }
  1003. ret = 0;
  1004. error:
  1005. btrfs_free_path(path);
  1006. return ret;
  1007. }
  1008. /*
  1009. * the device information is stored in the chunk root
  1010. * the btrfs_device struct should be fully filled in
  1011. */
  1012. int btrfs_add_device(struct btrfs_trans_handle *trans,
  1013. struct btrfs_root *root,
  1014. struct btrfs_device *device)
  1015. {
  1016. int ret;
  1017. struct btrfs_path *path;
  1018. struct btrfs_dev_item *dev_item;
  1019. struct extent_buffer *leaf;
  1020. struct btrfs_key key;
  1021. unsigned long ptr;
  1022. root = root->fs_info->chunk_root;
  1023. path = btrfs_alloc_path();
  1024. if (!path)
  1025. return -ENOMEM;
  1026. key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
  1027. key.type = BTRFS_DEV_ITEM_KEY;
  1028. key.offset = device->devid;
  1029. ret = btrfs_insert_empty_item(trans, root, path, &key,
  1030. sizeof(*dev_item));
  1031. if (ret)
  1032. goto out;
  1033. leaf = path->nodes[0];
  1034. dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
  1035. btrfs_set_device_id(leaf, dev_item, device->devid);
  1036. btrfs_set_device_generation(leaf, dev_item, 0);
  1037. btrfs_set_device_type(leaf, dev_item, device->type);
  1038. btrfs_set_device_io_align(leaf, dev_item, device->io_align);
  1039. btrfs_set_device_io_width(leaf, dev_item, device->io_width);
  1040. btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
  1041. btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes);
  1042. btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
  1043. btrfs_set_device_group(leaf, dev_item, 0);
  1044. btrfs_set_device_seek_speed(leaf, dev_item, 0);
  1045. btrfs_set_device_bandwidth(leaf, dev_item, 0);
  1046. btrfs_set_device_start_offset(leaf, dev_item, 0);
  1047. ptr = (unsigned long)btrfs_device_uuid(dev_item);
  1048. write_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
  1049. ptr = (unsigned long)btrfs_device_fsid(dev_item);
  1050. write_extent_buffer(leaf, root->fs_info->fsid, ptr, BTRFS_UUID_SIZE);
  1051. btrfs_mark_buffer_dirty(leaf);
  1052. ret = 0;
  1053. out:
  1054. btrfs_free_path(path);
  1055. return ret;
  1056. }
  1057. static int btrfs_rm_dev_item(struct btrfs_root *root,
  1058. struct btrfs_device *device)
  1059. {
  1060. int ret;
  1061. struct btrfs_path *path;
  1062. struct btrfs_key key;
  1063. struct btrfs_trans_handle *trans;
  1064. root = root->fs_info->chunk_root;
  1065. path = btrfs_alloc_path();
  1066. if (!path)
  1067. return -ENOMEM;
  1068. trans = btrfs_start_transaction(root, 0);
  1069. if (IS_ERR(trans)) {
  1070. btrfs_free_path(path);
  1071. return PTR_ERR(trans);
  1072. }
  1073. key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
  1074. key.type = BTRFS_DEV_ITEM_KEY;
  1075. key.offset = device->devid;
  1076. lock_chunks(root);
  1077. ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
  1078. if (ret < 0)
  1079. goto out;
  1080. if (ret > 0) {
  1081. ret = -ENOENT;
  1082. goto out;
  1083. }
  1084. ret = btrfs_del_item(trans, root, path);
  1085. if (ret)
  1086. goto out;
  1087. out:
  1088. btrfs_free_path(path);
  1089. unlock_chunks(root);
  1090. btrfs_commit_transaction(trans, root);
  1091. return ret;
  1092. }
  1093. int btrfs_rm_device(struct btrfs_root *root, char *device_path)
  1094. {
  1095. struct btrfs_device *device;
  1096. struct btrfs_device *next_device;
  1097. struct block_device *bdev;
  1098. struct buffer_head *bh = NULL;
  1099. struct btrfs_super_block *disk_super;
  1100. struct btrfs_fs_devices *cur_devices;
  1101. u64 all_avail;
  1102. u64 devid;
  1103. u64 num_devices;
  1104. u8 *dev_uuid;
  1105. int ret = 0;
  1106. bool clear_super = false;
  1107. mutex_lock(&uuid_mutex);
  1108. all_avail = root->fs_info->avail_data_alloc_bits |
  1109. root->fs_info->avail_system_alloc_bits |
  1110. root->fs_info->avail_metadata_alloc_bits;
  1111. if ((all_avail & BTRFS_BLOCK_GROUP_RAID10) &&
  1112. root->fs_info->fs_devices->num_devices <= 4) {
  1113. printk(KERN_ERR "btrfs: unable to go below four devices "
  1114. "on raid10\n");
  1115. ret = -EINVAL;
  1116. goto out;
  1117. }
  1118. if ((all_avail & BTRFS_BLOCK_GROUP_RAID1) &&
  1119. root->fs_info->fs_devices->num_devices <= 2) {
  1120. printk(KERN_ERR "btrfs: unable to go below two "
  1121. "devices on raid1\n");
  1122. ret = -EINVAL;
  1123. goto out;
  1124. }
  1125. if (strcmp(device_path, "missing") == 0) {
  1126. struct list_head *devices;
  1127. struct btrfs_device *tmp;
  1128. device = NULL;
  1129. devices = &root->fs_info->fs_devices->devices;
  1130. /*
  1131. * It is safe to read the devices since the volume_mutex
  1132. * is held.
  1133. */
  1134. list_for_each_entry(tmp, devices, dev_list) {
  1135. if (tmp->in_fs_metadata && !tmp->bdev) {
  1136. device = tmp;
  1137. break;
  1138. }
  1139. }
  1140. bdev = NULL;
  1141. bh = NULL;
  1142. disk_super = NULL;
  1143. if (!device) {
  1144. printk(KERN_ERR "btrfs: no missing devices found to "
  1145. "remove\n");
  1146. goto out;
  1147. }
  1148. } else {
  1149. bdev = blkdev_get_by_path(device_path, FMODE_READ | FMODE_EXCL,
  1150. root->fs_info->bdev_holder);
  1151. if (IS_ERR(bdev)) {
  1152. ret = PTR_ERR(bdev);
  1153. goto out;
  1154. }
  1155. set_blocksize(bdev, 4096);
  1156. bh = btrfs_read_dev_super(bdev);
  1157. if (!bh) {
  1158. ret = -EINVAL;
  1159. goto error_close;
  1160. }
  1161. disk_super = (struct btrfs_super_block *)bh->b_data;
  1162. devid = btrfs_stack_device_id(&disk_super->dev_item);
  1163. dev_uuid = disk_super->dev_item.uuid;
  1164. device = btrfs_find_device(root, devid, dev_uuid,
  1165. disk_super->fsid);
  1166. if (!device) {
  1167. ret = -ENOENT;
  1168. goto error_brelse;
  1169. }
  1170. }
  1171. if (device->writeable && root->fs_info->fs_devices->rw_devices == 1) {
  1172. printk(KERN_ERR "btrfs: unable to remove the only writeable "
  1173. "device\n");
  1174. ret = -EINVAL;
  1175. goto error_brelse;
  1176. }
  1177. if (device->writeable) {
  1178. lock_chunks(root);
  1179. list_del_init(&device->dev_alloc_list);
  1180. unlock_chunks(root);
  1181. root->fs_info->fs_devices->rw_devices--;
  1182. clear_super = true;
  1183. }
  1184. ret = btrfs_shrink_device(device, 0);
  1185. if (ret)
  1186. goto error_undo;
  1187. ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
  1188. if (ret)
  1189. goto error_undo;
  1190. spin_lock(&root->fs_info->free_chunk_lock);
  1191. root->fs_info->free_chunk_space = device->total_bytes -
  1192. device->bytes_used;
  1193. spin_unlock(&root->fs_info->free_chunk_lock);
  1194. device->in_fs_metadata = 0;
  1195. btrfs_scrub_cancel_dev(root, device);
  1196. /*
  1197. * the device list mutex makes sure that we don't change
  1198. * the device list while someone else is writing out all
  1199. * the device supers.
  1200. */
  1201. cur_devices = device->fs_devices;
  1202. mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
  1203. list_del_rcu(&device->dev_list);
  1204. device->fs_devices->num_devices--;
  1205. if (device->missing)
  1206. root->fs_info->fs_devices->missing_devices--;
  1207. next_device = list_entry(root->fs_info->fs_devices->devices.next,
  1208. struct btrfs_device, dev_list);
  1209. if (device->bdev == root->fs_info->sb->s_bdev)
  1210. root->fs_info->sb->s_bdev = next_device->bdev;
  1211. if (device->bdev == root->fs_info->fs_devices->latest_bdev)
  1212. root->fs_info->fs_devices->latest_bdev = next_device->bdev;
  1213. if (device->bdev)
  1214. device->fs_devices->open_devices--;
  1215. call_rcu(&device->rcu, free_device);
  1216. mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
  1217. num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
  1218. btrfs_set_super_num_devices(root->fs_info->super_copy, num_devices);
  1219. if (cur_devices->open_devices == 0) {
  1220. struct btrfs_fs_devices *fs_devices;
  1221. fs_devices = root->fs_info->fs_devices;
  1222. while (fs_devices) {
  1223. if (fs_devices->seed == cur_devices)
  1224. break;
  1225. fs_devices = fs_devices->seed;
  1226. }
  1227. fs_devices->seed = cur_devices->seed;
  1228. cur_devices->seed = NULL;
  1229. lock_chunks(root);
  1230. __btrfs_close_devices(cur_devices);
  1231. unlock_chunks(root);
  1232. free_fs_devices(cur_devices);
  1233. }
  1234. /*
  1235. * at this point, the device is zero sized. We want to
  1236. * remove it from the devices list and zero out the old super
  1237. */
  1238. if (clear_super) {
  1239. /* make sure this device isn't detected as part of
  1240. * the FS anymore
  1241. */
  1242. memset(&disk_super->magic, 0, sizeof(disk_super->magic));
  1243. set_buffer_dirty(bh);
  1244. sync_dirty_buffer(bh);
  1245. }
  1246. ret = 0;
  1247. error_brelse:
  1248. brelse(bh);
  1249. error_close:
  1250. if (bdev)
  1251. blkdev_put(bdev, FMODE_READ | FMODE_EXCL);
  1252. out:
  1253. mutex_unlock(&uuid_mutex);
  1254. return ret;
  1255. error_undo:
  1256. if (device->writeable) {
  1257. lock_chunks(root);
  1258. list_add(&device->dev_alloc_list,
  1259. &root->fs_info->fs_devices->alloc_list);
  1260. unlock_chunks(root);
  1261. root->fs_info->fs_devices->rw_devices++;
  1262. }
  1263. goto error_brelse;
  1264. }
  1265. /*
  1266. * does all the dirty work required for changing file system's UUID.
  1267. */
  1268. static int btrfs_prepare_sprout(struct btrfs_trans_handle *trans,
  1269. struct btrfs_root *root)
  1270. {
  1271. struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
  1272. struct btrfs_fs_devices *old_devices;
  1273. struct btrfs_fs_devices *seed_devices;
  1274. struct btrfs_super_block *disk_super = root->fs_info->super_copy;
  1275. struct btrfs_device *device;
  1276. u64 super_flags;
  1277. BUG_ON(!mutex_is_locked(&uuid_mutex));
  1278. if (!fs_devices->seeding)
  1279. return -EINVAL;
  1280. seed_devices = kzalloc(sizeof(*fs_devices), GFP_NOFS);
  1281. if (!seed_devices)
  1282. return -ENOMEM;
  1283. old_devices = clone_fs_devices(fs_devices);
  1284. if (IS_ERR(old_devices)) {
  1285. kfree(seed_devices);
  1286. return PTR_ERR(old_devices);
  1287. }
  1288. list_add(&old_devices->list, &fs_uuids);
  1289. memcpy(seed_devices, fs_devices, sizeof(*seed_devices));
  1290. seed_devices->opened = 1;
  1291. INIT_LIST_HEAD(&seed_devices->devices);
  1292. INIT_LIST_HEAD(&seed_devices->alloc_list);
  1293. mutex_init(&seed_devices->device_list_mutex);
  1294. mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
  1295. list_splice_init_rcu(&fs_devices->devices, &seed_devices->devices,
  1296. synchronize_rcu);
  1297. mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
  1298. list_splice_init(&fs_devices->alloc_list, &seed_devices->alloc_list);
  1299. list_for_each_entry(device, &seed_devices->devices, dev_list) {
  1300. device->fs_devices = seed_devices;
  1301. }
  1302. fs_devices->seeding = 0;
  1303. fs_devices->num_devices = 0;
  1304. fs_devices->open_devices = 0;
  1305. fs_devices->seed = seed_devices;
  1306. generate_random_uuid(fs_devices->fsid);
  1307. memcpy(root->fs_info->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
  1308. memcpy(disk_super->fsid, fs_devices->fsid, BTRFS_FSID_SIZE);
  1309. super_flags = btrfs_super_flags(disk_super) &
  1310. ~BTRFS_SUPER_FLAG_SEEDING;
  1311. btrfs_set_super_flags(disk_super, super_flags);
  1312. return 0;
  1313. }
  1314. /*
  1315. * strore the expected generation for seed devices in device items.
  1316. */
  1317. static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
  1318. struct btrfs_root *root)
  1319. {
  1320. struct btrfs_path *path;
  1321. struct extent_buffer *leaf;
  1322. struct btrfs_dev_item *dev_item;
  1323. struct btrfs_device *device;
  1324. struct btrfs_key key;
  1325. u8 fs_uuid[BTRFS_UUID_SIZE];
  1326. u8 dev_uuid[BTRFS_UUID_SIZE];
  1327. u64 devid;
  1328. int ret;
  1329. path = btrfs_alloc_path();
  1330. if (!path)
  1331. return -ENOMEM;
  1332. root = root->fs_info->chunk_root;
  1333. key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
  1334. key.offset = 0;
  1335. key.type = BTRFS_DEV_ITEM_KEY;
  1336. while (1) {
  1337. ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
  1338. if (ret < 0)
  1339. goto error;
  1340. leaf = path->nodes[0];
  1341. next_slot:
  1342. if (path->slots[0] >= btrfs_header_nritems(leaf)) {
  1343. ret = btrfs_next_leaf(root, path);
  1344. if (ret > 0)
  1345. break;
  1346. if (ret < 0)
  1347. goto error;
  1348. leaf = path->nodes[0];
  1349. btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
  1350. btrfs_release_path(path);
  1351. continue;
  1352. }
  1353. btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
  1354. if (key.objectid != BTRFS_DEV_ITEMS_OBJECTID ||
  1355. key.type != BTRFS_DEV_ITEM_KEY)
  1356. break;
  1357. dev_item = btrfs_item_ptr(leaf, path->slots[0],
  1358. struct btrfs_dev_item);
  1359. devid = btrfs_device_id(leaf, dev_item);
  1360. read_extent_buffer(leaf, dev_uuid,
  1361. (unsigned long)btrfs_device_uuid(dev_item),
  1362. BTRFS_UUID_SIZE);
  1363. read_extent_buffer(leaf, fs_uuid,
  1364. (unsigned long)btrfs_device_fsid(dev_item),
  1365. BTRFS_UUID_SIZE);
  1366. device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
  1367. BUG_ON(!device);
  1368. if (device->fs_devices->seeding) {
  1369. btrfs_set_device_generation(leaf, dev_item,
  1370. device->generation);
  1371. btrfs_mark_buffer_dirty(leaf);
  1372. }
  1373. path->slots[0]++;
  1374. goto next_slot;
  1375. }
  1376. ret = 0;
  1377. error:
  1378. btrfs_free_path(path);
  1379. return ret;
  1380. }
  1381. int btrfs_init_new_device(struct btrfs_root *root, char *device_path)
  1382. {
  1383. struct request_queue *q;
  1384. struct btrfs_trans_handle *trans;
  1385. struct btrfs_device *device;
  1386. struct block_device *bdev;
  1387. struct list_head *devices;
  1388. struct super_block *sb = root->fs_info->sb;
  1389. u64 total_bytes;
  1390. int seeding_dev = 0;
  1391. int ret = 0;
  1392. if ((sb->s_flags & MS_RDONLY) && !root->fs_info->fs_devices->seeding)
  1393. return -EINVAL;
  1394. bdev = blkdev_get_by_path(device_path, FMODE_WRITE | FMODE_EXCL,
  1395. root->fs_info->bdev_holder);
  1396. if (IS_ERR(bdev))
  1397. return PTR_ERR(bdev);
  1398. if (root->fs_info->fs_devices->seeding) {
  1399. seeding_dev = 1;
  1400. down_write(&sb->s_umount);
  1401. mutex_lock(&uuid_mutex);
  1402. }
  1403. filemap_write_and_wait(bdev->bd_inode->i_mapping);
  1404. devices = &root->fs_info->fs_devices->devices;
  1405. /*
  1406. * we have the volume lock, so we don't need the extra
  1407. * device list mutex while reading the list here.
  1408. */
  1409. list_for_each_entry(device, devices, dev_list) {
  1410. if (device->bdev == bdev) {
  1411. ret = -EEXIST;
  1412. goto error;
  1413. }
  1414. }
  1415. device = kzalloc(sizeof(*device), GFP_NOFS);
  1416. if (!device) {
  1417. /* we can safely leave the fs_devices entry around */
  1418. ret = -ENOMEM;
  1419. goto error;
  1420. }
  1421. device->name = kstrdup(device_path, GFP_NOFS);
  1422. if (!device->name) {
  1423. kfree(device);
  1424. ret = -ENOMEM;
  1425. goto error;
  1426. }
  1427. ret = find_next_devid(root, &device->devid);
  1428. if (ret) {
  1429. kfree(device->name);
  1430. kfree(device);
  1431. goto error;
  1432. }
  1433. trans = btrfs_start_transaction(root, 0);
  1434. if (IS_ERR(trans)) {
  1435. kfree(device->name);
  1436. kfree(device);
  1437. ret = PTR_ERR(trans);
  1438. goto error;
  1439. }
  1440. lock_chunks(root);
  1441. q = bdev_get_queue(bdev);
  1442. if (blk_queue_discard(q))
  1443. device->can_discard = 1;
  1444. device->writeable = 1;
  1445. device->work.func = pending_bios_fn;
  1446. generate_random_uuid(device->uuid);
  1447. spin_lock_init(&device->io_lock);
  1448. device->generation = trans->transid;
  1449. device->io_width = root->sectorsize;
  1450. device->io_align = root->sectorsize;
  1451. device->sector_size = root->sectorsize;
  1452. device->total_bytes = i_size_read(bdev->bd_inode);
  1453. device->disk_total_bytes = device->total_bytes;
  1454. device->dev_root = root->fs_info->dev_root;
  1455. device->bdev = bdev;
  1456. device->in_fs_metadata = 1;
  1457. device->mode = FMODE_EXCL;
  1458. set_blocksize(device->bdev, 4096);
  1459. if (seeding_dev) {
  1460. sb->s_flags &= ~MS_RDONLY;
  1461. ret = btrfs_prepare_sprout(trans, root);
  1462. BUG_ON(ret);
  1463. }
  1464. device->fs_devices = root->fs_info->fs_devices;
  1465. /*
  1466. * we don't want write_supers to jump in here with our device
  1467. * half setup
  1468. */
  1469. mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
  1470. list_add_rcu(&device->dev_list, &root->fs_info->fs_devices->devices);
  1471. list_add(&device->dev_alloc_list,
  1472. &root->fs_info->fs_devices->alloc_list);
  1473. root->fs_info->fs_devices->num_devices++;
  1474. root->fs_info->fs_devices->open_devices++;
  1475. root->fs_info->fs_devices->rw_devices++;
  1476. if (device->can_discard)
  1477. root->fs_info->fs_devices->num_can_discard++;
  1478. root->fs_info->fs_devices->total_rw_bytes += device->total_bytes;
  1479. spin_lock(&root->fs_info->free_chunk_lock);
  1480. root->fs_info->free_chunk_space += device->total_bytes;
  1481. spin_unlock(&root->fs_info->free_chunk_lock);
  1482. if (!blk_queue_nonrot(bdev_get_queue(bdev)))
  1483. root->fs_info->fs_devices->rotating = 1;
  1484. total_bytes = btrfs_super_total_bytes(root->fs_info->super_copy);
  1485. btrfs_set_super_total_bytes(root->fs_info->super_copy,
  1486. total_bytes + device->total_bytes);
  1487. total_bytes = btrfs_super_num_devices(root->fs_info->super_copy);
  1488. btrfs_set_super_num_devices(root->fs_info->super_copy,
  1489. total_bytes + 1);
  1490. mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
  1491. if (seeding_dev) {
  1492. ret = init_first_rw_device(trans, root, device);
  1493. BUG_ON(ret);
  1494. ret = btrfs_finish_sprout(trans, root);
  1495. BUG_ON(ret);
  1496. } else {
  1497. ret = btrfs_add_device(trans, root, device);
  1498. }
  1499. /*
  1500. * we've got more storage, clear any full flags on the space
  1501. * infos
  1502. */
  1503. btrfs_clear_space_info_full(root->fs_info);
  1504. unlock_chunks(root);
  1505. btrfs_commit_transaction(trans, root);
  1506. if (seeding_dev) {
  1507. mutex_unlock(&uuid_mutex);
  1508. up_write(&sb->s_umount);
  1509. ret = btrfs_relocate_sys_chunks(root);
  1510. BUG_ON(ret);
  1511. }
  1512. return ret;
  1513. error:
  1514. blkdev_put(bdev, FMODE_EXCL);
  1515. if (seeding_dev) {
  1516. mutex_unlock(&uuid_mutex);
  1517. up_write(&sb->s_umount);
  1518. }
  1519. return ret;
  1520. }
  1521. static noinline int btrfs_update_device(struct btrfs_trans_handle *trans,
  1522. struct btrfs_device *device)
  1523. {
  1524. int ret;
  1525. struct btrfs_path *path;
  1526. struct btrfs_root *root;
  1527. struct btrfs_dev_item *dev_item;
  1528. struct extent_buffer *leaf;
  1529. struct btrfs_key key;
  1530. root = device->dev_root->fs_info->chunk_root;
  1531. path = btrfs_alloc_path();
  1532. if (!path)
  1533. return -ENOMEM;
  1534. key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
  1535. key.type = BTRFS_DEV_ITEM_KEY;
  1536. key.offset = device->devid;
  1537. ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
  1538. if (ret < 0)
  1539. goto out;
  1540. if (ret > 0) {
  1541. ret = -ENOENT;
  1542. goto out;
  1543. }
  1544. leaf = path->nodes[0];
  1545. dev_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dev_item);
  1546. btrfs_set_device_id(leaf, dev_item, device->devid);
  1547. btrfs_set_device_type(leaf, dev_item, device->type);
  1548. btrfs_set_device_io_align(leaf, dev_item, device->io_align);
  1549. btrfs_set_device_io_width(leaf, dev_item, device->io_width);
  1550. btrfs_set_device_sector_size(leaf, dev_item, device->sector_size);
  1551. btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes);
  1552. btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used);
  1553. btrfs_mark_buffer_dirty(leaf);
  1554. out:
  1555. btrfs_free_path(path);
  1556. return ret;
  1557. }
  1558. static int __btrfs_grow_device(struct btrfs_trans_handle *trans,
  1559. struct btrfs_device *device, u64 new_size)
  1560. {
  1561. struct btrfs_super_block *super_copy =
  1562. device->dev_root->fs_info->super_copy;
  1563. u64 old_total = btrfs_super_total_bytes(super_copy);
  1564. u64 diff = new_size - device->total_bytes;
  1565. if (!device->writeable)
  1566. return -EACCES;
  1567. if (new_size <= device->total_bytes)
  1568. return -EINVAL;
  1569. btrfs_set_super_total_bytes(super_copy, old_total + diff);
  1570. device->fs_devices->total_rw_bytes += diff;
  1571. device->total_bytes = new_size;
  1572. device->disk_total_bytes = new_size;
  1573. btrfs_clear_space_info_full(device->dev_root->fs_info);
  1574. return btrfs_update_device(trans, device);
  1575. }
  1576. int btrfs_grow_device(struct btrfs_trans_handle *trans,
  1577. struct btrfs_device *device, u64 new_size)
  1578. {
  1579. int ret;
  1580. lock_chunks(device->dev_root);
  1581. ret = __btrfs_grow_device(trans, device, new_size);
  1582. unlock_chunks(device->dev_root);
  1583. return ret;
  1584. }
  1585. static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
  1586. struct btrfs_root *root,
  1587. u64 chunk_tree, u64 chunk_objectid,
  1588. u64 chunk_offset)
  1589. {
  1590. int ret;
  1591. struct btrfs_path *path;
  1592. struct btrfs_key key;
  1593. root = root->fs_info->chunk_root;
  1594. path = btrfs_alloc_path();
  1595. if (!path)
  1596. return -ENOMEM;
  1597. key.objectid = chunk_objectid;
  1598. key.offset = chunk_offset;
  1599. key.type = BTRFS_CHUNK_ITEM_KEY;
  1600. ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
  1601. BUG_ON(ret);
  1602. ret = btrfs_del_item(trans, root, path);
  1603. btrfs_free_path(path);
  1604. return ret;
  1605. }
  1606. static int btrfs_del_sys_chunk(struct btrfs_root *root, u64 chunk_objectid, u64
  1607. chunk_offset)
  1608. {
  1609. struct btrfs_super_block *super_copy = root->fs_info->super_copy;
  1610. struct btrfs_disk_key *disk_key;
  1611. struct btrfs_chunk *chunk;
  1612. u8 *ptr;
  1613. int ret = 0;
  1614. u32 num_stripes;
  1615. u32 array_size;
  1616. u32 len = 0;
  1617. u32 cur;
  1618. struct btrfs_key key;
  1619. array_size = btrfs_super_sys_array_size(super_copy);
  1620. ptr = super_copy->sys_chunk_array;
  1621. cur = 0;
  1622. while (cur < array_size) {
  1623. disk_key = (struct btrfs_disk_key *)ptr;
  1624. btrfs_disk_key_to_cpu(&key, disk_key);
  1625. len = sizeof(*disk_key);
  1626. if (key.type == BTRFS_CHUNK_ITEM_KEY) {
  1627. chunk = (struct btrfs_chunk *)(ptr + len);
  1628. num_stripes = btrfs_stack_chunk_num_stripes(chunk);
  1629. len += btrfs_chunk_item_size(num_stripes);
  1630. } else {
  1631. ret = -EIO;
  1632. break;
  1633. }
  1634. if (key.objectid == chunk_objectid &&
  1635. key.offset == chunk_offset) {
  1636. memmove(ptr, ptr + len, array_size - (cur + len));
  1637. array_size -= len;
  1638. btrfs_set_super_sys_array_size(super_copy, array_size);
  1639. } else {
  1640. ptr += len;
  1641. cur += len;
  1642. }
  1643. }
  1644. return ret;
  1645. }
  1646. static int btrfs_relocate_chunk(struct btrfs_root *root,
  1647. u64 chunk_tree, u64 chunk_objectid,
  1648. u64 chunk_offset)
  1649. {
  1650. struct extent_map_tree *em_tree;
  1651. struct btrfs_root *extent_root;
  1652. struct btrfs_trans_handle *trans;
  1653. struct extent_map *em;
  1654. struct map_lookup *map;
  1655. int ret;
  1656. int i;
  1657. root = root->fs_info->chunk_root;
  1658. extent_root = root->fs_info->extent_root;
  1659. em_tree = &root->fs_info->mapping_tree.map_tree;
  1660. ret = btrfs_can_relocate(extent_root, chunk_offset);
  1661. if (ret)
  1662. return -ENOSPC;
  1663. /* step one, relocate all the extents inside this chunk */
  1664. ret = btrfs_relocate_block_group(extent_root, chunk_offset);
  1665. if (ret)
  1666. return ret;
  1667. trans = btrfs_start_transaction(root, 0);
  1668. BUG_ON(IS_ERR(trans));
  1669. lock_chunks(root);
  1670. /*
  1671. * step two, delete the device extents and the
  1672. * chunk tree entries
  1673. */
  1674. read_lock(&em_tree->lock);
  1675. em = lookup_extent_mapping(em_tree, chunk_offset, 1);
  1676. read_unlock(&em_tree->lock);
  1677. BUG_ON(em->start > chunk_offset ||
  1678. em->start + em->len < chunk_offset);
  1679. map = (struct map_lookup *)em->bdev;
  1680. for (i = 0; i < map->num_stripes; i++) {
  1681. ret = btrfs_free_dev_extent(trans, map->stripes[i].dev,
  1682. map->stripes[i].physical);
  1683. BUG_ON(ret);
  1684. if (map->stripes[i].dev) {
  1685. ret = btrfs_update_device(trans, map->stripes[i].dev);
  1686. BUG_ON(ret);
  1687. }
  1688. }
  1689. ret = btrfs_free_chunk(trans, root, chunk_tree, chunk_objectid,
  1690. chunk_offset);
  1691. BUG_ON(ret);
  1692. trace_btrfs_chunk_free(root, map, chunk_offset, em->len);
  1693. if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
  1694. ret = btrfs_del_sys_chunk(root, chunk_objectid, chunk_offset);
  1695. BUG_ON(ret);
  1696. }
  1697. ret = btrfs_remove_block_group(trans, extent_root, chunk_offset);
  1698. BUG_ON(ret);
  1699. write_lock(&em_tree->lock);
  1700. remove_extent_mapping(em_tree, em);
  1701. write_unlock(&em_tree->lock);
  1702. kfree(map);
  1703. em->bdev = NULL;
  1704. /* once for the tree */
  1705. free_extent_map(em);
  1706. /* once for us */
  1707. free_extent_map(em);
  1708. unlock_chunks(root);
  1709. btrfs_end_transaction(trans, root);
  1710. return 0;
  1711. }
  1712. static int btrfs_relocate_sys_chunks(struct btrfs_root *root)
  1713. {
  1714. struct btrfs_root *chunk_root = root->fs_info->chunk_root;
  1715. struct btrfs_path *path;
  1716. struct extent_buffer *leaf;
  1717. struct btrfs_chunk *chunk;
  1718. struct btrfs_key key;
  1719. struct btrfs_key found_key;
  1720. u64 chunk_tree = chunk_root->root_key.objectid;
  1721. u64 chunk_type;
  1722. bool retried = false;
  1723. int failed = 0;
  1724. int ret;
  1725. path = btrfs_alloc_path();
  1726. if (!path)
  1727. return -ENOMEM;
  1728. again:
  1729. key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
  1730. key.offset = (u64)-1;
  1731. key.type = BTRFS_CHUNK_ITEM_KEY;
  1732. while (1) {
  1733. ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
  1734. if (ret < 0)
  1735. goto error;
  1736. BUG_ON(ret == 0);
  1737. ret = btrfs_previous_item(chunk_root, path, key.objectid,
  1738. key.type);
  1739. if (ret < 0)
  1740. goto error;
  1741. if (ret > 0)
  1742. break;
  1743. leaf = path->nodes[0];
  1744. btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
  1745. chunk = btrfs_item_ptr(leaf, path->slots[0],
  1746. struct btrfs_chunk);
  1747. chunk_type = btrfs_chunk_type(leaf, chunk);
  1748. btrfs_release_path(path);
  1749. if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
  1750. ret = btrfs_relocate_chunk(chunk_root, chunk_tree,
  1751. found_key.objectid,
  1752. found_key.offset);
  1753. if (ret == -ENOSPC)
  1754. failed++;
  1755. else if (ret)
  1756. BUG();
  1757. }
  1758. if (found_key.offset == 0)
  1759. break;
  1760. key.offset = found_key.offset - 1;
  1761. }
  1762. ret = 0;
  1763. if (failed && !retried) {
  1764. failed = 0;
  1765. retried = true;
  1766. goto again;
  1767. } else if (failed && retried) {
  1768. WARN_ON(1);
  1769. ret = -ENOSPC;
  1770. }
  1771. error:
  1772. btrfs_free_path(path);
  1773. return ret;
  1774. }
  1775. /*
  1776. * Should be called with both balance and volume mutexes held to
  1777. * serialize other volume operations (add_dev/rm_dev/resize) with
  1778. * restriper. Same goes for unset_balance_control.
  1779. */
  1780. static void set_balance_control(struct btrfs_balance_control *bctl)
  1781. {
  1782. struct btrfs_fs_info *fs_info = bctl->fs_info;
  1783. BUG_ON(fs_info->balance_ctl);
  1784. spin_lock(&fs_info->balance_lock);
  1785. fs_info->balance_ctl = bctl;
  1786. spin_unlock(&fs_info->balance_lock);
  1787. }
  1788. static void unset_balance_control(struct btrfs_fs_info *fs_info)
  1789. {
  1790. struct btrfs_balance_control *bctl = fs_info->balance_ctl;
  1791. BUG_ON(!fs_info->balance_ctl);
  1792. spin_lock(&fs_info->balance_lock);
  1793. fs_info->balance_ctl = NULL;
  1794. spin_unlock(&fs_info->balance_lock);
  1795. kfree(bctl);
  1796. }
  1797. static u64 div_factor(u64 num, int factor)
  1798. {
  1799. if (factor == 10)
  1800. return num;
  1801. num *= factor;
  1802. do_div(num, 10);
  1803. return num;
  1804. }
  1805. static int __btrfs_balance(struct btrfs_fs_info *fs_info)
  1806. {
  1807. struct btrfs_root *chunk_root = fs_info->chunk_root;
  1808. struct btrfs_root *dev_root = fs_info->dev_root;
  1809. struct list_head *devices;
  1810. struct btrfs_device *device;
  1811. u64 old_size;
  1812. u64 size_to_free;
  1813. struct btrfs_path *path;
  1814. struct btrfs_key key;
  1815. struct btrfs_key found_key;
  1816. struct btrfs_trans_handle *trans;
  1817. int ret;
  1818. int enospc_errors = 0;
  1819. /* step one make some room on all the devices */
  1820. devices = &fs_info->fs_devices->devices;
  1821. list_for_each_entry(device, devices, dev_list) {
  1822. old_size = device->total_bytes;
  1823. size_to_free = div_factor(old_size, 1);
  1824. size_to_free = min(size_to_free, (u64)1 * 1024 * 1024);
  1825. if (!device->writeable ||
  1826. device->total_bytes - device->bytes_used > size_to_free)
  1827. continue;
  1828. ret = btrfs_shrink_device(device, old_size - size_to_free);
  1829. if (ret == -ENOSPC)
  1830. break;
  1831. BUG_ON(ret);
  1832. trans = btrfs_start_transaction(dev_root, 0);
  1833. BUG_ON(IS_ERR(trans));
  1834. ret = btrfs_grow_device(trans, device, old_size);
  1835. BUG_ON(ret);
  1836. btrfs_end_transaction(trans, dev_root);
  1837. }
  1838. /* step two, relocate all the chunks */
  1839. path = btrfs_alloc_path();
  1840. if (!path) {
  1841. ret = -ENOMEM;
  1842. goto error;
  1843. }
  1844. key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
  1845. key.offset = (u64)-1;
  1846. key.type = BTRFS_CHUNK_ITEM_KEY;
  1847. while (1) {
  1848. ret = btrfs_search_slot(NULL, chunk_root, &key, path, 0, 0);
  1849. if (ret < 0)
  1850. goto error;
  1851. /*
  1852. * this shouldn't happen, it means the last relocate
  1853. * failed
  1854. */
  1855. if (ret == 0)
  1856. BUG(); /* FIXME break ? */
  1857. ret = btrfs_previous_item(chunk_root, path, 0,
  1858. BTRFS_CHUNK_ITEM_KEY);
  1859. if (ret) {
  1860. ret = 0;
  1861. break;
  1862. }
  1863. btrfs_item_key_to_cpu(path->nodes[0], &found_key,
  1864. path->slots[0]);
  1865. if (found_key.objectid != key.objectid)
  1866. break;
  1867. /* chunk zero is special */
  1868. if (found_key.offset == 0)
  1869. break;
  1870. btrfs_release_path(path);
  1871. ret = btrfs_relocate_chunk(chunk_root,
  1872. chunk_root->root_key.objectid,
  1873. found_key.objectid,
  1874. found_key.offset);
  1875. if (ret && ret != -ENOSPC)
  1876. goto error;
  1877. if (ret == -ENOSPC)
  1878. enospc_errors++;
  1879. key.offset = found_key.offset - 1;
  1880. }
  1881. error:
  1882. btrfs_free_path(path);
  1883. if (enospc_errors) {
  1884. printk(KERN_INFO "btrfs: %d enospc errors during balance\n",
  1885. enospc_errors);
  1886. if (!ret)
  1887. ret = -ENOSPC;
  1888. }
  1889. return ret;
  1890. }
  1891. static void __cancel_balance(struct btrfs_fs_info *fs_info)
  1892. {
  1893. unset_balance_control(fs_info);
  1894. }
  1895. void update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
  1896. struct btrfs_ioctl_balance_args *bargs);
  1897. /*
  1898. * Should be called with both balance and volume mutexes held
  1899. */
  1900. int btrfs_balance(struct btrfs_balance_control *bctl,
  1901. struct btrfs_ioctl_balance_args *bargs)
  1902. {
  1903. struct btrfs_fs_info *fs_info = bctl->fs_info;
  1904. int ret;
  1905. if (btrfs_fs_closing(fs_info)) {
  1906. ret = -EINVAL;
  1907. goto out;
  1908. }
  1909. set_balance_control(bctl);
  1910. mutex_unlock(&fs_info->balance_mutex);
  1911. ret = __btrfs_balance(fs_info);
  1912. mutex_lock(&fs_info->balance_mutex);
  1913. if (bargs) {
  1914. memset(bargs, 0, sizeof(*bargs));
  1915. update_ioctl_balance_args(fs_info, bargs);
  1916. }
  1917. __cancel_balance(fs_info);
  1918. return ret;
  1919. out:
  1920. kfree(bctl);
  1921. return ret;
  1922. }
  1923. /*
  1924. * shrinking a device means finding all of the device extents past
  1925. * the new size, and then following the back refs to the chunks.
  1926. * The chunk relocation code actually frees the device extent
  1927. */
  1928. int btrfs_shrink_device(struct btrfs_device *device, u64 new_size)
  1929. {
  1930. struct btrfs_trans_handle *trans;
  1931. struct btrfs_root *root = device->dev_root;
  1932. struct btrfs_dev_extent *dev_extent = NULL;
  1933. struct btrfs_path *path;
  1934. u64 length;
  1935. u64 chunk_tree;
  1936. u64 chunk_objectid;
  1937. u64 chunk_offset;
  1938. int ret;
  1939. int slot;
  1940. int failed = 0;
  1941. bool retried = false;
  1942. struct extent_buffer *l;
  1943. struct btrfs_key key;
  1944. struct btrfs_super_block *super_copy = root->fs_info->super_copy;
  1945. u64 old_total = btrfs_super_total_bytes(super_copy);
  1946. u64 old_size = device->total_bytes;
  1947. u64 diff = device->total_bytes - new_size;
  1948. if (new_size >= device->total_bytes)
  1949. return -EINVAL;
  1950. path = btrfs_alloc_path();
  1951. if (!path)
  1952. return -ENOMEM;
  1953. path->reada = 2;
  1954. lock_chunks(root);
  1955. device->total_bytes = new_size;
  1956. if (device->writeable) {
  1957. device->fs_devices->total_rw_bytes -= diff;
  1958. spin_lock(&root->fs_info->free_chunk_lock);
  1959. root->fs_info->free_chunk_space -= diff;
  1960. spin_unlock(&root->fs_info->free_chunk_lock);
  1961. }
  1962. unlock_chunks(root);
  1963. again:
  1964. key.objectid = device->devid;
  1965. key.offset = (u64)-1;
  1966. key.type = BTRFS_DEV_EXTENT_KEY;
  1967. while (1) {
  1968. ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
  1969. if (ret < 0)
  1970. goto done;
  1971. ret = btrfs_previous_item(root, path, 0, key.type);
  1972. if (ret < 0)
  1973. goto done;
  1974. if (ret) {
  1975. ret = 0;
  1976. btrfs_release_path(path);
  1977. break;
  1978. }
  1979. l = path->nodes[0];
  1980. slot = path->slots[0];
  1981. btrfs_item_key_to_cpu(l, &key, path->slots[0]);
  1982. if (key.objectid != device->devid) {
  1983. btrfs_release_path(path);
  1984. break;
  1985. }
  1986. dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
  1987. length = btrfs_dev_extent_length(l, dev_extent);
  1988. if (key.offset + length <= new_size) {
  1989. btrfs_release_path(path);
  1990. break;
  1991. }
  1992. chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent);
  1993. chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent);
  1994. chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
  1995. btrfs_release_path(path);
  1996. ret = btrfs_relocate_chunk(root, chunk_tree, chunk_objectid,
  1997. chunk_offset);
  1998. if (ret && ret != -ENOSPC)
  1999. goto done;
  2000. if (ret == -ENOSPC)
  2001. failed++;
  2002. key.offset -= 1;
  2003. }
  2004. if (failed && !retried) {
  2005. failed = 0;
  2006. retried = true;
  2007. goto again;
  2008. } else if (failed && retried) {
  2009. ret = -ENOSPC;
  2010. lock_chunks(root);
  2011. device->total_bytes = old_size;
  2012. if (device->writeable)
  2013. device->fs_devices->total_rw_bytes += diff;
  2014. spin_lock(&root->fs_info->free_chunk_lock);
  2015. root->fs_info->free_chunk_space += diff;
  2016. spin_unlock(&root->fs_info->free_chunk_lock);
  2017. unlock_chunks(root);
  2018. goto done;
  2019. }
  2020. /* Shrinking succeeded, else we would be at "done". */
  2021. trans = btrfs_start_transaction(root, 0);
  2022. if (IS_ERR(trans)) {
  2023. ret = PTR_ERR(trans);
  2024. goto done;
  2025. }
  2026. lock_chunks(root);
  2027. device->disk_total_bytes = new_size;
  2028. /* Now btrfs_update_device() will change the on-disk size. */
  2029. ret = btrfs_update_device(trans, device);
  2030. if (ret) {
  2031. unlock_chunks(root);
  2032. btrfs_end_transaction(trans, root);
  2033. goto done;
  2034. }
  2035. WARN_ON(diff > old_total);
  2036. btrfs_set_super_total_bytes(super_copy, old_total - diff);
  2037. unlock_chunks(root);
  2038. btrfs_end_transaction(trans, root);
  2039. done:
  2040. btrfs_free_path(path);
  2041. return ret;
  2042. }
  2043. static int btrfs_add_system_chunk(struct btrfs_trans_handle *trans,
  2044. struct btrfs_root *root,
  2045. struct btrfs_key *key,
  2046. struct btrfs_chunk *chunk, int item_size)
  2047. {
  2048. struct btrfs_super_block *super_copy = root->fs_info->super_copy;
  2049. struct btrfs_disk_key disk_key;
  2050. u32 array_size;
  2051. u8 *ptr;
  2052. array_size = btrfs_super_sys_array_size(super_copy);
  2053. if (array_size + item_size > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE)
  2054. return -EFBIG;
  2055. ptr = super_copy->sys_chunk_array + array_size;
  2056. btrfs_cpu_key_to_disk(&disk_key, key);
  2057. memcpy(ptr, &disk_key, sizeof(disk_key));
  2058. ptr += sizeof(disk_key);
  2059. memcpy(ptr, chunk, item_size);
  2060. item_size += sizeof(disk_key);
  2061. btrfs_set_super_sys_array_size(super_copy, array_size + item_size);
  2062. return 0;
  2063. }
  2064. /*
  2065. * sort the devices in descending order by max_avail, total_avail
  2066. */
  2067. static int btrfs_cmp_device_info(const void *a, const void *b)
  2068. {
  2069. const struct btrfs_device_info *di_a = a;
  2070. const struct btrfs_device_info *di_b = b;
  2071. if (di_a->max_avail > di_b->max_avail)
  2072. return -1;
  2073. if (di_a->max_avail < di_b->max_avail)
  2074. return 1;
  2075. if (di_a->total_avail > di_b->total_avail)
  2076. return -1;
  2077. if (di_a->total_avail < di_b->total_avail)
  2078. return 1;
  2079. return 0;
  2080. }
  2081. static int __btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
  2082. struct btrfs_root *extent_root,
  2083. struct map_lookup **map_ret,
  2084. u64 *num_bytes_out, u64 *stripe_size_out,
  2085. u64 start, u64 type)
  2086. {
  2087. struct btrfs_fs_info *info = extent_root->fs_info;
  2088. struct btrfs_fs_devices *fs_devices = info->fs_devices;
  2089. struct list_head *cur;
  2090. struct map_lookup *map = NULL;
  2091. struct extent_map_tree *em_tree;
  2092. struct extent_map *em;
  2093. struct btrfs_device_info *devices_info = NULL;
  2094. u64 total_avail;
  2095. int num_stripes; /* total number of stripes to allocate */
  2096. int sub_stripes; /* sub_stripes info for map */
  2097. int dev_stripes; /* stripes per dev */
  2098. int devs_max; /* max devs to use */
  2099. int devs_min; /* min devs needed */
  2100. int devs_increment; /* ndevs has to be a multiple of this */
  2101. int ncopies; /* how many copies to data has */
  2102. int ret;
  2103. u64 max_stripe_size;
  2104. u64 max_chunk_size;
  2105. u64 stripe_size;
  2106. u64 num_bytes;
  2107. int ndevs;
  2108. int i;
  2109. int j;
  2110. if ((type & BTRFS_BLOCK_GROUP_RAID1) &&
  2111. (type & BTRFS_BLOCK_GROUP_DUP)) {
  2112. WARN_ON(1);
  2113. type &= ~BTRFS_BLOCK_GROUP_DUP;
  2114. }
  2115. if (list_empty(&fs_devices->alloc_list))
  2116. return -ENOSPC;
  2117. sub_stripes = 1;
  2118. dev_stripes = 1;
  2119. devs_increment = 1;
  2120. ncopies = 1;
  2121. devs_max = 0; /* 0 == as many as possible */
  2122. devs_min = 1;
  2123. /*
  2124. * define the properties of each RAID type.
  2125. * FIXME: move this to a global table and use it in all RAID
  2126. * calculation code
  2127. */
  2128. if (type & (BTRFS_BLOCK_GROUP_DUP)) {
  2129. dev_stripes = 2;
  2130. ncopies = 2;
  2131. devs_max = 1;
  2132. } else if (type & (BTRFS_BLOCK_GROUP_RAID0)) {
  2133. devs_min = 2;
  2134. } else if (type & (BTRFS_BLOCK_GROUP_RAID1)) {
  2135. devs_increment = 2;
  2136. ncopies = 2;
  2137. devs_max = 2;
  2138. devs_min = 2;
  2139. } else if (type & (BTRFS_BLOCK_GROUP_RAID10)) {
  2140. sub_stripes = 2;
  2141. devs_increment = 2;
  2142. ncopies = 2;
  2143. devs_min = 4;
  2144. } else {
  2145. devs_max = 1;
  2146. }
  2147. if (type & BTRFS_BLOCK_GROUP_DATA) {
  2148. max_stripe_size = 1024 * 1024 * 1024;
  2149. max_chunk_size = 10 * max_stripe_size;
  2150. } else if (type & BTRFS_BLOCK_GROUP_METADATA) {
  2151. max_stripe_size = 256 * 1024 * 1024;
  2152. max_chunk_size = max_stripe_size;
  2153. } else if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
  2154. max_stripe_size = 8 * 1024 * 1024;
  2155. max_chunk_size = 2 * max_stripe_size;
  2156. } else {
  2157. printk(KERN_ERR "btrfs: invalid chunk type 0x%llx requested\n",
  2158. type);
  2159. BUG_ON(1);
  2160. }
  2161. /* we don't want a chunk larger than 10% of writeable space */
  2162. max_chunk_size = min(div_factor(fs_devices->total_rw_bytes, 1),
  2163. max_chunk_size);
  2164. devices_info = kzalloc(sizeof(*devices_info) * fs_devices->rw_devices,
  2165. GFP_NOFS);
  2166. if (!devices_info)
  2167. return -ENOMEM;
  2168. cur = fs_devices->alloc_list.next;
  2169. /*
  2170. * in the first pass through the devices list, we gather information
  2171. * about the available holes on each device.
  2172. */
  2173. ndevs = 0;
  2174. while (cur != &fs_devices->alloc_list) {
  2175. struct btrfs_device *device;
  2176. u64 max_avail;
  2177. u64 dev_offset;
  2178. device = list_entry(cur, struct btrfs_device, dev_alloc_list);
  2179. cur = cur->next;
  2180. if (!device->writeable) {
  2181. printk(KERN_ERR
  2182. "btrfs: read-only device in alloc_list\n");
  2183. WARN_ON(1);
  2184. continue;
  2185. }
  2186. if (!device->in_fs_metadata)
  2187. continue;
  2188. if (device->total_bytes > device->bytes_used)
  2189. total_avail = device->total_bytes - device->bytes_used;
  2190. else
  2191. total_avail = 0;
  2192. /* If there is no space on this device, skip it. */
  2193. if (total_avail == 0)
  2194. continue;
  2195. ret = find_free_dev_extent(trans, device,
  2196. max_stripe_size * dev_stripes,
  2197. &dev_offset, &max_avail);
  2198. if (ret && ret != -ENOSPC)
  2199. goto error;
  2200. if (ret == 0)
  2201. max_avail = max_stripe_size * dev_stripes;
  2202. if (max_avail < BTRFS_STRIPE_LEN * dev_stripes)
  2203. continue;
  2204. devices_info[ndevs].dev_offset = dev_offset;
  2205. devices_info[ndevs].max_avail = max_avail;
  2206. devices_info[ndevs].total_avail = total_avail;
  2207. devices_info[ndevs].dev = device;
  2208. ++ndevs;
  2209. }
  2210. /*
  2211. * now sort the devices by hole size / available space
  2212. */
  2213. sort(devices_info, ndevs, sizeof(struct btrfs_device_info),
  2214. btrfs_cmp_device_info, NULL);
  2215. /* round down to number of usable stripes */
  2216. ndevs -= ndevs % devs_increment;
  2217. if (ndevs < devs_increment * sub_stripes || ndevs < devs_min) {
  2218. ret = -ENOSPC;
  2219. goto error;
  2220. }
  2221. if (devs_max && ndevs > devs_max)
  2222. ndevs = devs_max;
  2223. /*
  2224. * the primary goal is to maximize the number of stripes, so use as many
  2225. * devices as possible, even if the stripes are not maximum sized.
  2226. */
  2227. stripe_size = devices_info[ndevs-1].max_avail;
  2228. num_stripes = ndevs * dev_stripes;
  2229. if (stripe_size * num_stripes > max_chunk_size * ncopies) {
  2230. stripe_size = max_chunk_size * ncopies;
  2231. do_div(stripe_size, num_stripes);
  2232. }
  2233. do_div(stripe_size, dev_stripes);
  2234. do_div(stripe_size, BTRFS_STRIPE_LEN);
  2235. stripe_size *= BTRFS_STRIPE_LEN;
  2236. map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
  2237. if (!map) {
  2238. ret = -ENOMEM;
  2239. goto error;
  2240. }
  2241. map->num_stripes = num_stripes;
  2242. for (i = 0; i < ndevs; ++i) {
  2243. for (j = 0; j < dev_stripes; ++j) {
  2244. int s = i * dev_stripes + j;
  2245. map->stripes[s].dev = devices_info[i].dev;
  2246. map->stripes[s].physical = devices_info[i].dev_offset +
  2247. j * stripe_size;
  2248. }
  2249. }
  2250. map->sector_size = extent_root->sectorsize;
  2251. map->stripe_len = BTRFS_STRIPE_LEN;
  2252. map->io_align = BTRFS_STRIPE_LEN;
  2253. map->io_width = BTRFS_STRIPE_LEN;
  2254. map->type = type;
  2255. map->sub_stripes = sub_stripes;
  2256. *map_ret = map;
  2257. num_bytes = stripe_size * (num_stripes / ncopies);
  2258. *stripe_size_out = stripe_size;
  2259. *num_bytes_out = num_bytes;
  2260. trace_btrfs_chunk_alloc(info->chunk_root, map, start, num_bytes);
  2261. em = alloc_extent_map();
  2262. if (!em) {
  2263. ret = -ENOMEM;
  2264. goto error;
  2265. }
  2266. em->bdev = (struct block_device *)map;
  2267. em->start = start;
  2268. em->len = num_bytes;
  2269. em->block_start = 0;
  2270. em->block_len = em->len;
  2271. em_tree = &extent_root->fs_info->mapping_tree.map_tree;
  2272. write_lock(&em_tree->lock);
  2273. ret = add_extent_mapping(em_tree, em);
  2274. write_unlock(&em_tree->lock);
  2275. BUG_ON(ret);
  2276. free_extent_map(em);
  2277. ret = btrfs_make_block_group(trans, extent_root, 0, type,
  2278. BTRFS_FIRST_CHUNK_TREE_OBJECTID,
  2279. start, num_bytes);
  2280. BUG_ON(ret);
  2281. for (i = 0; i < map->num_stripes; ++i) {
  2282. struct btrfs_device *device;
  2283. u64 dev_offset;
  2284. device = map->stripes[i].dev;
  2285. dev_offset = map->stripes[i].physical;
  2286. ret = btrfs_alloc_dev_extent(trans, device,
  2287. info->chunk_root->root_key.objectid,
  2288. BTRFS_FIRST_CHUNK_TREE_OBJECTID,
  2289. start, dev_offset, stripe_size);
  2290. BUG_ON(ret);
  2291. }
  2292. kfree(devices_info);
  2293. return 0;
  2294. error:
  2295. kfree(map);
  2296. kfree(devices_info);
  2297. return ret;
  2298. }
  2299. static int __finish_chunk_alloc(struct btrfs_trans_handle *trans,
  2300. struct btrfs_root *extent_root,
  2301. struct map_lookup *map, u64 chunk_offset,
  2302. u64 chunk_size, u64 stripe_size)
  2303. {
  2304. u64 dev_offset;
  2305. struct btrfs_key key;
  2306. struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
  2307. struct btrfs_device *device;
  2308. struct btrfs_chunk *chunk;
  2309. struct btrfs_stripe *stripe;
  2310. size_t item_size = btrfs_chunk_item_size(map->num_stripes);
  2311. int index = 0;
  2312. int ret;
  2313. chunk = kzalloc(item_size, GFP_NOFS);
  2314. if (!chunk)
  2315. return -ENOMEM;
  2316. index = 0;
  2317. while (index < map->num_stripes) {
  2318. device = map->stripes[index].dev;
  2319. device->bytes_used += stripe_size;
  2320. ret = btrfs_update_device(trans, device);
  2321. BUG_ON(ret);
  2322. index++;
  2323. }
  2324. spin_lock(&extent_root->fs_info->free_chunk_lock);
  2325. extent_root->fs_info->free_chunk_space -= (stripe_size *
  2326. map->num_stripes);
  2327. spin_unlock(&extent_root->fs_info->free_chunk_lock);
  2328. index = 0;
  2329. stripe = &chunk->stripe;
  2330. while (index < map->num_stripes) {
  2331. device = map->stripes[index].dev;
  2332. dev_offset = map->stripes[index].physical;
  2333. btrfs_set_stack_stripe_devid(stripe, device->devid);
  2334. btrfs_set_stack_stripe_offset(stripe, dev_offset);
  2335. memcpy(stripe->dev_uuid, device->uuid, BTRFS_UUID_SIZE);
  2336. stripe++;
  2337. index++;
  2338. }
  2339. btrfs_set_stack_chunk_length(chunk, chunk_size);
  2340. btrfs_set_stack_chunk_owner(chunk, extent_root->root_key.objectid);
  2341. btrfs_set_stack_chunk_stripe_len(chunk, map->stripe_len);
  2342. btrfs_set_stack_chunk_type(chunk, map->type);
  2343. btrfs_set_stack_chunk_num_stripes(chunk, map->num_stripes);
  2344. btrfs_set_stack_chunk_io_align(chunk, map->stripe_len);
  2345. btrfs_set_stack_chunk_io_width(chunk, map->stripe_len);
  2346. btrfs_set_stack_chunk_sector_size(chunk, extent_root->sectorsize);
  2347. btrfs_set_stack_chunk_sub_stripes(chunk, map->sub_stripes);
  2348. key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
  2349. key.type = BTRFS_CHUNK_ITEM_KEY;
  2350. key.offset = chunk_offset;
  2351. ret = btrfs_insert_item(trans, chunk_root, &key, chunk, item_size);
  2352. BUG_ON(ret);
  2353. if (map->type & BTRFS_BLOCK_GROUP_SYSTEM) {
  2354. ret = btrfs_add_system_chunk(trans, chunk_root, &key, chunk,
  2355. item_size);
  2356. BUG_ON(ret);
  2357. }
  2358. kfree(chunk);
  2359. return 0;
  2360. }
  2361. /*
  2362. * Chunk allocation falls into two parts. The first part does works
  2363. * that make the new allocated chunk useable, but not do any operation
  2364. * that modifies the chunk tree. The second part does the works that
  2365. * require modifying the chunk tree. This division is important for the
  2366. * bootstrap process of adding storage to a seed btrfs.
  2367. */
  2368. int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
  2369. struct btrfs_root *extent_root, u64 type)
  2370. {
  2371. u64 chunk_offset;
  2372. u64 chunk_size;
  2373. u64 stripe_size;
  2374. struct map_lookup *map;
  2375. struct btrfs_root *chunk_root = extent_root->fs_info->chunk_root;
  2376. int ret;
  2377. ret = find_next_chunk(chunk_root, BTRFS_FIRST_CHUNK_TREE_OBJECTID,
  2378. &chunk_offset);
  2379. if (ret)
  2380. return ret;
  2381. ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
  2382. &stripe_size, chunk_offset, type);
  2383. if (ret)
  2384. return ret;
  2385. ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
  2386. chunk_size, stripe_size);
  2387. BUG_ON(ret);
  2388. return 0;
  2389. }
  2390. static noinline int init_first_rw_device(struct btrfs_trans_handle *trans,
  2391. struct btrfs_root *root,
  2392. struct btrfs_device *device)
  2393. {
  2394. u64 chunk_offset;
  2395. u64 sys_chunk_offset;
  2396. u64 chunk_size;
  2397. u64 sys_chunk_size;
  2398. u64 stripe_size;
  2399. u64 sys_stripe_size;
  2400. u64 alloc_profile;
  2401. struct map_lookup *map;
  2402. struct map_lookup *sys_map;
  2403. struct btrfs_fs_info *fs_info = root->fs_info;
  2404. struct btrfs_root *extent_root = fs_info->extent_root;
  2405. int ret;
  2406. ret = find_next_chunk(fs_info->chunk_root,
  2407. BTRFS_FIRST_CHUNK_TREE_OBJECTID, &chunk_offset);
  2408. if (ret)
  2409. return ret;
  2410. alloc_profile = BTRFS_BLOCK_GROUP_METADATA |
  2411. fs_info->avail_metadata_alloc_bits;
  2412. alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
  2413. ret = __btrfs_alloc_chunk(trans, extent_root, &map, &chunk_size,
  2414. &stripe_size, chunk_offset, alloc_profile);
  2415. BUG_ON(ret);
  2416. sys_chunk_offset = chunk_offset + chunk_size;
  2417. alloc_profile = BTRFS_BLOCK_GROUP_SYSTEM |
  2418. fs_info->avail_system_alloc_bits;
  2419. alloc_profile = btrfs_reduce_alloc_profile(root, alloc_profile);
  2420. ret = __btrfs_alloc_chunk(trans, extent_root, &sys_map,
  2421. &sys_chunk_size, &sys_stripe_size,
  2422. sys_chunk_offset, alloc_profile);
  2423. BUG_ON(ret);
  2424. ret = btrfs_add_device(trans, fs_info->chunk_root, device);
  2425. BUG_ON(ret);
  2426. /*
  2427. * Modifying chunk tree needs allocating new blocks from both
  2428. * system block group and metadata block group. So we only can
  2429. * do operations require modifying the chunk tree after both
  2430. * block groups were created.
  2431. */
  2432. ret = __finish_chunk_alloc(trans, extent_root, map, chunk_offset,
  2433. chunk_size, stripe_size);
  2434. BUG_ON(ret);
  2435. ret = __finish_chunk_alloc(trans, extent_root, sys_map,
  2436. sys_chunk_offset, sys_chunk_size,
  2437. sys_stripe_size);
  2438. BUG_ON(ret);
  2439. return 0;
  2440. }
  2441. int btrfs_chunk_readonly(struct btrfs_root *root, u64 chunk_offset)
  2442. {
  2443. struct extent_map *em;
  2444. struct map_lookup *map;
  2445. struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
  2446. int readonly = 0;
  2447. int i;
  2448. read_lock(&map_tree->map_tree.lock);
  2449. em = lookup_extent_mapping(&map_tree->map_tree, chunk_offset, 1);
  2450. read_unlock(&map_tree->map_tree.lock);
  2451. if (!em)
  2452. return 1;
  2453. if (btrfs_test_opt(root, DEGRADED)) {
  2454. free_extent_map(em);
  2455. return 0;
  2456. }
  2457. map = (struct map_lookup *)em->bdev;
  2458. for (i = 0; i < map->num_stripes; i++) {
  2459. if (!map->stripes[i].dev->writeable) {
  2460. readonly = 1;
  2461. break;
  2462. }
  2463. }
  2464. free_extent_map(em);
  2465. return readonly;
  2466. }
  2467. void btrfs_mapping_init(struct btrfs_mapping_tree *tree)
  2468. {
  2469. extent_map_tree_init(&tree->map_tree);
  2470. }
  2471. void btrfs_mapping_tree_free(struct btrfs_mapping_tree *tree)
  2472. {
  2473. struct extent_map *em;
  2474. while (1) {
  2475. write_lock(&tree->map_tree.lock);
  2476. em = lookup_extent_mapping(&tree->map_tree, 0, (u64)-1);
  2477. if (em)
  2478. remove_extent_mapping(&tree->map_tree, em);
  2479. write_unlock(&tree->map_tree.lock);
  2480. if (!em)
  2481. break;
  2482. kfree(em->bdev);
  2483. /* once for us */
  2484. free_extent_map(em);
  2485. /* once for the tree */
  2486. free_extent_map(em);
  2487. }
  2488. }
  2489. int btrfs_num_copies(struct btrfs_mapping_tree *map_tree, u64 logical, u64 len)
  2490. {
  2491. struct extent_map *em;
  2492. struct map_lookup *map;
  2493. struct extent_map_tree *em_tree = &map_tree->map_tree;
  2494. int ret;
  2495. read_lock(&em_tree->lock);
  2496. em = lookup_extent_mapping(em_tree, logical, len);
  2497. read_unlock(&em_tree->lock);
  2498. BUG_ON(!em);
  2499. BUG_ON(em->start > logical || em->start + em->len < logical);
  2500. map = (struct map_lookup *)em->bdev;
  2501. if (map->type & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1))
  2502. ret = map->num_stripes;
  2503. else if (map->type & BTRFS_BLOCK_GROUP_RAID10)
  2504. ret = map->sub_stripes;
  2505. else
  2506. ret = 1;
  2507. free_extent_map(em);
  2508. return ret;
  2509. }
  2510. static int find_live_mirror(struct map_lookup *map, int first, int num,
  2511. int optimal)
  2512. {
  2513. int i;
  2514. if (map->stripes[optimal].dev->bdev)
  2515. return optimal;
  2516. for (i = first; i < first + num; i++) {
  2517. if (map->stripes[i].dev->bdev)
  2518. return i;
  2519. }
  2520. /* we couldn't find one that doesn't fail. Just return something
  2521. * and the io error handling code will clean up eventually
  2522. */
  2523. return optimal;
  2524. }
  2525. static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
  2526. u64 logical, u64 *length,
  2527. struct btrfs_bio **bbio_ret,
  2528. int mirror_num)
  2529. {
  2530. struct extent_map *em;
  2531. struct map_lookup *map;
  2532. struct extent_map_tree *em_tree = &map_tree->map_tree;
  2533. u64 offset;
  2534. u64 stripe_offset;
  2535. u64 stripe_end_offset;
  2536. u64 stripe_nr;
  2537. u64 stripe_nr_orig;
  2538. u64 stripe_nr_end;
  2539. int stripes_allocated = 8;
  2540. int stripes_required = 1;
  2541. int stripe_index;
  2542. int i;
  2543. int num_stripes;
  2544. int max_errors = 0;
  2545. struct btrfs_bio *bbio = NULL;
  2546. if (bbio_ret && !(rw & (REQ_WRITE | REQ_DISCARD)))
  2547. stripes_allocated = 1;
  2548. again:
  2549. if (bbio_ret) {
  2550. bbio = kzalloc(btrfs_bio_size(stripes_allocated),
  2551. GFP_NOFS);
  2552. if (!bbio)
  2553. return -ENOMEM;
  2554. atomic_set(&bbio->error, 0);
  2555. }
  2556. read_lock(&em_tree->lock);
  2557. em = lookup_extent_mapping(em_tree, logical, *length);
  2558. read_unlock(&em_tree->lock);
  2559. if (!em) {
  2560. printk(KERN_CRIT "unable to find logical %llu len %llu\n",
  2561. (unsigned long long)logical,
  2562. (unsigned long long)*length);
  2563. BUG();
  2564. }
  2565. BUG_ON(em->start > logical || em->start + em->len < logical);
  2566. map = (struct map_lookup *)em->bdev;
  2567. offset = logical - em->start;
  2568. if (mirror_num > map->num_stripes)
  2569. mirror_num = 0;
  2570. /* if our btrfs_bio struct is too small, back off and try again */
  2571. if (rw & REQ_WRITE) {
  2572. if (map->type & (BTRFS_BLOCK_GROUP_RAID1 |
  2573. BTRFS_BLOCK_GROUP_DUP)) {
  2574. stripes_required = map->num_stripes;
  2575. max_errors = 1;
  2576. } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
  2577. stripes_required = map->sub_stripes;
  2578. max_errors = 1;
  2579. }
  2580. }
  2581. if (rw & REQ_DISCARD) {
  2582. if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK)
  2583. stripes_required = map->num_stripes;
  2584. }
  2585. if (bbio_ret && (rw & (REQ_WRITE | REQ_DISCARD)) &&
  2586. stripes_allocated < stripes_required) {
  2587. stripes_allocated = map->num_stripes;
  2588. free_extent_map(em);
  2589. kfree(bbio);
  2590. goto again;
  2591. }
  2592. stripe_nr = offset;
  2593. /*
  2594. * stripe_nr counts the total number of stripes we have to stride
  2595. * to get to this block
  2596. */
  2597. do_div(stripe_nr, map->stripe_len);
  2598. stripe_offset = stripe_nr * map->stripe_len;
  2599. BUG_ON(offset < stripe_offset);
  2600. /* stripe_offset is the offset of this block in its stripe*/
  2601. stripe_offset = offset - stripe_offset;
  2602. if (rw & REQ_DISCARD)
  2603. *length = min_t(u64, em->len - offset, *length);
  2604. else if (map->type & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
  2605. /* we limit the length of each bio to what fits in a stripe */
  2606. *length = min_t(u64, em->len - offset,
  2607. map->stripe_len - stripe_offset);
  2608. } else {
  2609. *length = em->len - offset;
  2610. }
  2611. if (!bbio_ret)
  2612. goto out;
  2613. num_stripes = 1;
  2614. stripe_index = 0;
  2615. stripe_nr_orig = stripe_nr;
  2616. stripe_nr_end = (offset + *length + map->stripe_len - 1) &
  2617. (~(map->stripe_len - 1));
  2618. do_div(stripe_nr_end, map->stripe_len);
  2619. stripe_end_offset = stripe_nr_end * map->stripe_len -
  2620. (offset + *length);
  2621. if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
  2622. if (rw & REQ_DISCARD)
  2623. num_stripes = min_t(u64, map->num_stripes,
  2624. stripe_nr_end - stripe_nr_orig);
  2625. stripe_index = do_div(stripe_nr, map->num_stripes);
  2626. } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
  2627. if (rw & (REQ_WRITE | REQ_DISCARD))
  2628. num_stripes = map->num_stripes;
  2629. else if (mirror_num)
  2630. stripe_index = mirror_num - 1;
  2631. else {
  2632. stripe_index = find_live_mirror(map, 0,
  2633. map->num_stripes,
  2634. current->pid % map->num_stripes);
  2635. mirror_num = stripe_index + 1;
  2636. }
  2637. } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
  2638. if (rw & (REQ_WRITE | REQ_DISCARD)) {
  2639. num_stripes = map->num_stripes;
  2640. } else if (mirror_num) {
  2641. stripe_index = mirror_num - 1;
  2642. } else {
  2643. mirror_num = 1;
  2644. }
  2645. } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
  2646. int factor = map->num_stripes / map->sub_stripes;
  2647. stripe_index = do_div(stripe_nr, factor);
  2648. stripe_index *= map->sub_stripes;
  2649. if (rw & REQ_WRITE)
  2650. num_stripes = map->sub_stripes;
  2651. else if (rw & REQ_DISCARD)
  2652. num_stripes = min_t(u64, map->sub_stripes *
  2653. (stripe_nr_end - stripe_nr_orig),
  2654. map->num_stripes);
  2655. else if (mirror_num)
  2656. stripe_index += mirror_num - 1;
  2657. else {
  2658. stripe_index = find_live_mirror(map, stripe_index,
  2659. map->sub_stripes, stripe_index +
  2660. current->pid % map->sub_stripes);
  2661. mirror_num = stripe_index + 1;
  2662. }
  2663. } else {
  2664. /*
  2665. * after this do_div call, stripe_nr is the number of stripes
  2666. * on this device we have to walk to find the data, and
  2667. * stripe_index is the number of our device in the stripe array
  2668. */
  2669. stripe_index = do_div(stripe_nr, map->num_stripes);
  2670. mirror_num = stripe_index + 1;
  2671. }
  2672. BUG_ON(stripe_index >= map->num_stripes);
  2673. if (rw & REQ_DISCARD) {
  2674. for (i = 0; i < num_stripes; i++) {
  2675. bbio->stripes[i].physical =
  2676. map->stripes[stripe_index].physical +
  2677. stripe_offset + stripe_nr * map->stripe_len;
  2678. bbio->stripes[i].dev = map->stripes[stripe_index].dev;
  2679. if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
  2680. u64 stripes;
  2681. u32 last_stripe = 0;
  2682. int j;
  2683. div_u64_rem(stripe_nr_end - 1,
  2684. map->num_stripes,
  2685. &last_stripe);
  2686. for (j = 0; j < map->num_stripes; j++) {
  2687. u32 test;
  2688. div_u64_rem(stripe_nr_end - 1 - j,
  2689. map->num_stripes, &test);
  2690. if (test == stripe_index)
  2691. break;
  2692. }
  2693. stripes = stripe_nr_end - 1 - j;
  2694. do_div(stripes, map->num_stripes);
  2695. bbio->stripes[i].length = map->stripe_len *
  2696. (stripes - stripe_nr + 1);
  2697. if (i == 0) {
  2698. bbio->stripes[i].length -=
  2699. stripe_offset;
  2700. stripe_offset = 0;
  2701. }
  2702. if (stripe_index == last_stripe)
  2703. bbio->stripes[i].length -=
  2704. stripe_end_offset;
  2705. } else if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
  2706. u64 stripes;
  2707. int j;
  2708. int factor = map->num_stripes /
  2709. map->sub_stripes;
  2710. u32 last_stripe = 0;
  2711. div_u64_rem(stripe_nr_end - 1,
  2712. factor, &last_stripe);
  2713. last_stripe *= map->sub_stripes;
  2714. for (j = 0; j < factor; j++) {
  2715. u32 test;
  2716. div_u64_rem(stripe_nr_end - 1 - j,
  2717. factor, &test);
  2718. if (test ==
  2719. stripe_index / map->sub_stripes)
  2720. break;
  2721. }
  2722. stripes = stripe_nr_end - 1 - j;
  2723. do_div(stripes, factor);
  2724. bbio->stripes[i].length = map->stripe_len *
  2725. (stripes - stripe_nr + 1);
  2726. if (i < map->sub_stripes) {
  2727. bbio->stripes[i].length -=
  2728. stripe_offset;
  2729. if (i == map->sub_stripes - 1)
  2730. stripe_offset = 0;
  2731. }
  2732. if (stripe_index >= last_stripe &&
  2733. stripe_index <= (last_stripe +
  2734. map->sub_stripes - 1)) {
  2735. bbio->stripes[i].length -=
  2736. stripe_end_offset;
  2737. }
  2738. } else
  2739. bbio->stripes[i].length = *length;
  2740. stripe_index++;
  2741. if (stripe_index == map->num_stripes) {
  2742. /* This could only happen for RAID0/10 */
  2743. stripe_index = 0;
  2744. stripe_nr++;
  2745. }
  2746. }
  2747. } else {
  2748. for (i = 0; i < num_stripes; i++) {
  2749. bbio->stripes[i].physical =
  2750. map->stripes[stripe_index].physical +
  2751. stripe_offset +
  2752. stripe_nr * map->stripe_len;
  2753. bbio->stripes[i].dev =
  2754. map->stripes[stripe_index].dev;
  2755. stripe_index++;
  2756. }
  2757. }
  2758. if (bbio_ret) {
  2759. *bbio_ret = bbio;
  2760. bbio->num_stripes = num_stripes;
  2761. bbio->max_errors = max_errors;
  2762. bbio->mirror_num = mirror_num;
  2763. }
  2764. out:
  2765. free_extent_map(em);
  2766. return 0;
  2767. }
  2768. int btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
  2769. u64 logical, u64 *length,
  2770. struct btrfs_bio **bbio_ret, int mirror_num)
  2771. {
  2772. return __btrfs_map_block(map_tree, rw, logical, length, bbio_ret,
  2773. mirror_num);
  2774. }
  2775. int btrfs_rmap_block(struct btrfs_mapping_tree *map_tree,
  2776. u64 chunk_start, u64 physical, u64 devid,
  2777. u64 **logical, int *naddrs, int *stripe_len)
  2778. {
  2779. struct extent_map_tree *em_tree = &map_tree->map_tree;
  2780. struct extent_map *em;
  2781. struct map_lookup *map;
  2782. u64 *buf;
  2783. u64 bytenr;
  2784. u64 length;
  2785. u64 stripe_nr;
  2786. int i, j, nr = 0;
  2787. read_lock(&em_tree->lock);
  2788. em = lookup_extent_mapping(em_tree, chunk_start, 1);
  2789. read_unlock(&em_tree->lock);
  2790. BUG_ON(!em || em->start != chunk_start);
  2791. map = (struct map_lookup *)em->bdev;
  2792. length = em->len;
  2793. if (map->type & BTRFS_BLOCK_GROUP_RAID10)
  2794. do_div(length, map->num_stripes / map->sub_stripes);
  2795. else if (map->type & BTRFS_BLOCK_GROUP_RAID0)
  2796. do_div(length, map->num_stripes);
  2797. buf = kzalloc(sizeof(u64) * map->num_stripes, GFP_NOFS);
  2798. BUG_ON(!buf);
  2799. for (i = 0; i < map->num_stripes; i++) {
  2800. if (devid && map->stripes[i].dev->devid != devid)
  2801. continue;
  2802. if (map->stripes[i].physical > physical ||
  2803. map->stripes[i].physical + length <= physical)
  2804. continue;
  2805. stripe_nr = physical - map->stripes[i].physical;
  2806. do_div(stripe_nr, map->stripe_len);
  2807. if (map->type & BTRFS_BLOCK_GROUP_RAID10) {
  2808. stripe_nr = stripe_nr * map->num_stripes + i;
  2809. do_div(stripe_nr, map->sub_stripes);
  2810. } else if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
  2811. stripe_nr = stripe_nr * map->num_stripes + i;
  2812. }
  2813. bytenr = chunk_start + stripe_nr * map->stripe_len;
  2814. WARN_ON(nr >= map->num_stripes);
  2815. for (j = 0; j < nr; j++) {
  2816. if (buf[j] == bytenr)
  2817. break;
  2818. }
  2819. if (j == nr) {
  2820. WARN_ON(nr >= map->num_stripes);
  2821. buf[nr++] = bytenr;
  2822. }
  2823. }
  2824. *logical = buf;
  2825. *naddrs = nr;
  2826. *stripe_len = map->stripe_len;
  2827. free_extent_map(em);
  2828. return 0;
  2829. }
  2830. static void btrfs_end_bio(struct bio *bio, int err)
  2831. {
  2832. struct btrfs_bio *bbio = bio->bi_private;
  2833. int is_orig_bio = 0;
  2834. if (err)
  2835. atomic_inc(&bbio->error);
  2836. if (bio == bbio->orig_bio)
  2837. is_orig_bio = 1;
  2838. if (atomic_dec_and_test(&bbio->stripes_pending)) {
  2839. if (!is_orig_bio) {
  2840. bio_put(bio);
  2841. bio = bbio->orig_bio;
  2842. }
  2843. bio->bi_private = bbio->private;
  2844. bio->bi_end_io = bbio->end_io;
  2845. bio->bi_bdev = (struct block_device *)
  2846. (unsigned long)bbio->mirror_num;
  2847. /* only send an error to the higher layers if it is
  2848. * beyond the tolerance of the multi-bio
  2849. */
  2850. if (atomic_read(&bbio->error) > bbio->max_errors) {
  2851. err = -EIO;
  2852. } else {
  2853. /*
  2854. * this bio is actually up to date, we didn't
  2855. * go over the max number of errors
  2856. */
  2857. set_bit(BIO_UPTODATE, &bio->bi_flags);
  2858. err = 0;
  2859. }
  2860. kfree(bbio);
  2861. bio_endio(bio, err);
  2862. } else if (!is_orig_bio) {
  2863. bio_put(bio);
  2864. }
  2865. }
  2866. struct async_sched {
  2867. struct bio *bio;
  2868. int rw;
  2869. struct btrfs_fs_info *info;
  2870. struct btrfs_work work;
  2871. };
  2872. /*
  2873. * see run_scheduled_bios for a description of why bios are collected for
  2874. * async submit.
  2875. *
  2876. * This will add one bio to the pending list for a device and make sure
  2877. * the work struct is scheduled.
  2878. */
  2879. static noinline int schedule_bio(struct btrfs_root *root,
  2880. struct btrfs_device *device,
  2881. int rw, struct bio *bio)
  2882. {
  2883. int should_queue = 1;
  2884. struct btrfs_pending_bios *pending_bios;
  2885. /* don't bother with additional async steps for reads, right now */
  2886. if (!(rw & REQ_WRITE)) {
  2887. bio_get(bio);
  2888. submit_bio(rw, bio);
  2889. bio_put(bio);
  2890. return 0;
  2891. }
  2892. /*
  2893. * nr_async_bios allows us to reliably return congestion to the
  2894. * higher layers. Otherwise, the async bio makes it appear we have
  2895. * made progress against dirty pages when we've really just put it
  2896. * on a queue for later
  2897. */
  2898. atomic_inc(&root->fs_info->nr_async_bios);
  2899. WARN_ON(bio->bi_next);
  2900. bio->bi_next = NULL;
  2901. bio->bi_rw |= rw;
  2902. spin_lock(&device->io_lock);
  2903. if (bio->bi_rw & REQ_SYNC)
  2904. pending_bios = &device->pending_sync_bios;
  2905. else
  2906. pending_bios = &device->pending_bios;
  2907. if (pending_bios->tail)
  2908. pending_bios->tail->bi_next = bio;
  2909. pending_bios->tail = bio;
  2910. if (!pending_bios->head)
  2911. pending_bios->head = bio;
  2912. if (device->running_pending)
  2913. should_queue = 0;
  2914. spin_unlock(&device->io_lock);
  2915. if (should_queue)
  2916. btrfs_queue_worker(&root->fs_info->submit_workers,
  2917. &device->work);
  2918. return 0;
  2919. }
  2920. int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio,
  2921. int mirror_num, int async_submit)
  2922. {
  2923. struct btrfs_mapping_tree *map_tree;
  2924. struct btrfs_device *dev;
  2925. struct bio *first_bio = bio;
  2926. u64 logical = (u64)bio->bi_sector << 9;
  2927. u64 length = 0;
  2928. u64 map_length;
  2929. int ret;
  2930. int dev_nr = 0;
  2931. int total_devs = 1;
  2932. struct btrfs_bio *bbio = NULL;
  2933. length = bio->bi_size;
  2934. map_tree = &root->fs_info->mapping_tree;
  2935. map_length = length;
  2936. ret = btrfs_map_block(map_tree, rw, logical, &map_length, &bbio,
  2937. mirror_num);
  2938. BUG_ON(ret);
  2939. total_devs = bbio->num_stripes;
  2940. if (map_length < length) {
  2941. printk(KERN_CRIT "mapping failed logical %llu bio len %llu "
  2942. "len %llu\n", (unsigned long long)logical,
  2943. (unsigned long long)length,
  2944. (unsigned long long)map_length);
  2945. BUG();
  2946. }
  2947. bbio->orig_bio = first_bio;
  2948. bbio->private = first_bio->bi_private;
  2949. bbio->end_io = first_bio->bi_end_io;
  2950. atomic_set(&bbio->stripes_pending, bbio->num_stripes);
  2951. while (dev_nr < total_devs) {
  2952. if (dev_nr < total_devs - 1) {
  2953. bio = bio_clone(first_bio, GFP_NOFS);
  2954. BUG_ON(!bio);
  2955. } else {
  2956. bio = first_bio;
  2957. }
  2958. bio->bi_private = bbio;
  2959. bio->bi_end_io = btrfs_end_bio;
  2960. bio->bi_sector = bbio->stripes[dev_nr].physical >> 9;
  2961. dev = bbio->stripes[dev_nr].dev;
  2962. if (dev && dev->bdev && (rw != WRITE || dev->writeable)) {
  2963. pr_debug("btrfs_map_bio: rw %d, secor=%llu, dev=%lu "
  2964. "(%s id %llu), size=%u\n", rw,
  2965. (u64)bio->bi_sector, (u_long)dev->bdev->bd_dev,
  2966. dev->name, dev->devid, bio->bi_size);
  2967. bio->bi_bdev = dev->bdev;
  2968. if (async_submit)
  2969. schedule_bio(root, dev, rw, bio);
  2970. else
  2971. submit_bio(rw, bio);
  2972. } else {
  2973. bio->bi_bdev = root->fs_info->fs_devices->latest_bdev;
  2974. bio->bi_sector = logical >> 9;
  2975. bio_endio(bio, -EIO);
  2976. }
  2977. dev_nr++;
  2978. }
  2979. return 0;
  2980. }
  2981. struct btrfs_device *btrfs_find_device(struct btrfs_root *root, u64 devid,
  2982. u8 *uuid, u8 *fsid)
  2983. {
  2984. struct btrfs_device *device;
  2985. struct btrfs_fs_devices *cur_devices;
  2986. cur_devices = root->fs_info->fs_devices;
  2987. while (cur_devices) {
  2988. if (!fsid ||
  2989. !memcmp(cur_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
  2990. device = __find_device(&cur_devices->devices,
  2991. devid, uuid);
  2992. if (device)
  2993. return device;
  2994. }
  2995. cur_devices = cur_devices->seed;
  2996. }
  2997. return NULL;
  2998. }
  2999. static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
  3000. u64 devid, u8 *dev_uuid)
  3001. {
  3002. struct btrfs_device *device;
  3003. struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
  3004. device = kzalloc(sizeof(*device), GFP_NOFS);
  3005. if (!device)
  3006. return NULL;
  3007. list_add(&device->dev_list,
  3008. &fs_devices->devices);
  3009. device->dev_root = root->fs_info->dev_root;
  3010. device->devid = devid;
  3011. device->work.func = pending_bios_fn;
  3012. device->fs_devices = fs_devices;
  3013. device->missing = 1;
  3014. fs_devices->num_devices++;
  3015. fs_devices->missing_devices++;
  3016. spin_lock_init(&device->io_lock);
  3017. INIT_LIST_HEAD(&device->dev_alloc_list);
  3018. memcpy(device->uuid, dev_uuid, BTRFS_UUID_SIZE);
  3019. return device;
  3020. }
  3021. static int read_one_chunk(struct btrfs_root *root, struct btrfs_key *key,
  3022. struct extent_buffer *leaf,
  3023. struct btrfs_chunk *chunk)
  3024. {
  3025. struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
  3026. struct map_lookup *map;
  3027. struct extent_map *em;
  3028. u64 logical;
  3029. u64 length;
  3030. u64 devid;
  3031. u8 uuid[BTRFS_UUID_SIZE];
  3032. int num_stripes;
  3033. int ret;
  3034. int i;
  3035. logical = key->offset;
  3036. length = btrfs_chunk_length(leaf, chunk);
  3037. read_lock(&map_tree->map_tree.lock);
  3038. em = lookup_extent_mapping(&map_tree->map_tree, logical, 1);
  3039. read_unlock(&map_tree->map_tree.lock);
  3040. /* already mapped? */
  3041. if (em && em->start <= logical && em->start + em->len > logical) {
  3042. free_extent_map(em);
  3043. return 0;
  3044. } else if (em) {
  3045. free_extent_map(em);
  3046. }
  3047. em = alloc_extent_map();
  3048. if (!em)
  3049. return -ENOMEM;
  3050. num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
  3051. map = kmalloc(map_lookup_size(num_stripes), GFP_NOFS);
  3052. if (!map) {
  3053. free_extent_map(em);
  3054. return -ENOMEM;
  3055. }
  3056. em->bdev = (struct block_device *)map;
  3057. em->start = logical;
  3058. em->len = length;
  3059. em->block_start = 0;
  3060. em->block_len = em->len;
  3061. map->num_stripes = num_stripes;
  3062. map->io_width = btrfs_chunk_io_width(leaf, chunk);
  3063. map->io_align = btrfs_chunk_io_align(leaf, chunk);
  3064. map->sector_size = btrfs_chunk_sector_size(leaf, chunk);
  3065. map->stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
  3066. map->type = btrfs_chunk_type(leaf, chunk);
  3067. map->sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
  3068. for (i = 0; i < num_stripes; i++) {
  3069. map->stripes[i].physical =
  3070. btrfs_stripe_offset_nr(leaf, chunk, i);
  3071. devid = btrfs_stripe_devid_nr(leaf, chunk, i);
  3072. read_extent_buffer(leaf, uuid, (unsigned long)
  3073. btrfs_stripe_dev_uuid_nr(chunk, i),
  3074. BTRFS_UUID_SIZE);
  3075. map->stripes[i].dev = btrfs_find_device(root, devid, uuid,
  3076. NULL);
  3077. if (!map->stripes[i].dev && !btrfs_test_opt(root, DEGRADED)) {
  3078. kfree(map);
  3079. free_extent_map(em);
  3080. return -EIO;
  3081. }
  3082. if (!map->stripes[i].dev) {
  3083. map->stripes[i].dev =
  3084. add_missing_dev(root, devid, uuid);
  3085. if (!map->stripes[i].dev) {
  3086. kfree(map);
  3087. free_extent_map(em);
  3088. return -EIO;
  3089. }
  3090. }
  3091. map->stripes[i].dev->in_fs_metadata = 1;
  3092. }
  3093. write_lock(&map_tree->map_tree.lock);
  3094. ret = add_extent_mapping(&map_tree->map_tree, em);
  3095. write_unlock(&map_tree->map_tree.lock);
  3096. BUG_ON(ret);
  3097. free_extent_map(em);
  3098. return 0;
  3099. }
  3100. static int fill_device_from_item(struct extent_buffer *leaf,
  3101. struct btrfs_dev_item *dev_item,
  3102. struct btrfs_device *device)
  3103. {
  3104. unsigned long ptr;
  3105. device->devid = btrfs_device_id(leaf, dev_item);
  3106. device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item);
  3107. device->total_bytes = device->disk_total_bytes;
  3108. device->bytes_used = btrfs_device_bytes_used(leaf, dev_item);
  3109. device->type = btrfs_device_type(leaf, dev_item);
  3110. device->io_align = btrfs_device_io_align(leaf, dev_item);
  3111. device->io_width = btrfs_device_io_width(leaf, dev_item);
  3112. device->sector_size = btrfs_device_sector_size(leaf, dev_item);
  3113. ptr = (unsigned long)btrfs_device_uuid(dev_item);
  3114. read_extent_buffer(leaf, device->uuid, ptr, BTRFS_UUID_SIZE);
  3115. return 0;
  3116. }
  3117. static int open_seed_devices(struct btrfs_root *root, u8 *fsid)
  3118. {
  3119. struct btrfs_fs_devices *fs_devices;
  3120. int ret;
  3121. mutex_lock(&uuid_mutex);
  3122. fs_devices = root->fs_info->fs_devices->seed;
  3123. while (fs_devices) {
  3124. if (!memcmp(fs_devices->fsid, fsid, BTRFS_UUID_SIZE)) {
  3125. ret = 0;
  3126. goto out;
  3127. }
  3128. fs_devices = fs_devices->seed;
  3129. }
  3130. fs_devices = find_fsid(fsid);
  3131. if (!fs_devices) {
  3132. ret = -ENOENT;
  3133. goto out;
  3134. }
  3135. fs_devices = clone_fs_devices(fs_devices);
  3136. if (IS_ERR(fs_devices)) {
  3137. ret = PTR_ERR(fs_devices);
  3138. goto out;
  3139. }
  3140. ret = __btrfs_open_devices(fs_devices, FMODE_READ,
  3141. root->fs_info->bdev_holder);
  3142. if (ret)
  3143. goto out;
  3144. if (!fs_devices->seeding) {
  3145. __btrfs_close_devices(fs_devices);
  3146. free_fs_devices(fs_devices);
  3147. ret = -EINVAL;
  3148. goto out;
  3149. }
  3150. fs_devices->seed = root->fs_info->fs_devices->seed;
  3151. root->fs_info->fs_devices->seed = fs_devices;
  3152. out:
  3153. mutex_unlock(&uuid_mutex);
  3154. return ret;
  3155. }
  3156. static int read_one_dev(struct btrfs_root *root,
  3157. struct extent_buffer *leaf,
  3158. struct btrfs_dev_item *dev_item)
  3159. {
  3160. struct btrfs_device *device;
  3161. u64 devid;
  3162. int ret;
  3163. u8 fs_uuid[BTRFS_UUID_SIZE];
  3164. u8 dev_uuid[BTRFS_UUID_SIZE];
  3165. devid = btrfs_device_id(leaf, dev_item);
  3166. read_extent_buffer(leaf, dev_uuid,
  3167. (unsigned long)btrfs_device_uuid(dev_item),
  3168. BTRFS_UUID_SIZE);
  3169. read_extent_buffer(leaf, fs_uuid,
  3170. (unsigned long)btrfs_device_fsid(dev_item),
  3171. BTRFS_UUID_SIZE);
  3172. if (memcmp(fs_uuid, root->fs_info->fsid, BTRFS_UUID_SIZE)) {
  3173. ret = open_seed_devices(root, fs_uuid);
  3174. if (ret && !btrfs_test_opt(root, DEGRADED))
  3175. return ret;
  3176. }
  3177. device = btrfs_find_device(root, devid, dev_uuid, fs_uuid);
  3178. if (!device || !device->bdev) {
  3179. if (!btrfs_test_opt(root, DEGRADED))
  3180. return -EIO;
  3181. if (!device) {
  3182. printk(KERN_WARNING "warning devid %llu missing\n",
  3183. (unsigned long long)devid);
  3184. device = add_missing_dev(root, devid, dev_uuid);
  3185. if (!device)
  3186. return -ENOMEM;
  3187. } else if (!device->missing) {
  3188. /*
  3189. * this happens when a device that was properly setup
  3190. * in the device info lists suddenly goes bad.
  3191. * device->bdev is NULL, and so we have to set
  3192. * device->missing to one here
  3193. */
  3194. root->fs_info->fs_devices->missing_devices++;
  3195. device->missing = 1;
  3196. }
  3197. }
  3198. if (device->fs_devices != root->fs_info->fs_devices) {
  3199. BUG_ON(device->writeable);
  3200. if (device->generation !=
  3201. btrfs_device_generation(leaf, dev_item))
  3202. return -EINVAL;
  3203. }
  3204. fill_device_from_item(leaf, dev_item, device);
  3205. device->dev_root = root->fs_info->dev_root;
  3206. device->in_fs_metadata = 1;
  3207. if (device->writeable) {
  3208. device->fs_devices->total_rw_bytes += device->total_bytes;
  3209. spin_lock(&root->fs_info->free_chunk_lock);
  3210. root->fs_info->free_chunk_space += device->total_bytes -
  3211. device->bytes_used;
  3212. spin_unlock(&root->fs_info->free_chunk_lock);
  3213. }
  3214. ret = 0;
  3215. return ret;
  3216. }
  3217. int btrfs_read_sys_array(struct btrfs_root *root)
  3218. {
  3219. struct btrfs_super_block *super_copy = root->fs_info->super_copy;
  3220. struct extent_buffer *sb;
  3221. struct btrfs_disk_key *disk_key;
  3222. struct btrfs_chunk *chunk;
  3223. u8 *ptr;
  3224. unsigned long sb_ptr;
  3225. int ret = 0;
  3226. u32 num_stripes;
  3227. u32 array_size;
  3228. u32 len = 0;
  3229. u32 cur;
  3230. struct btrfs_key key;
  3231. sb = btrfs_find_create_tree_block(root, BTRFS_SUPER_INFO_OFFSET,
  3232. BTRFS_SUPER_INFO_SIZE);
  3233. if (!sb)
  3234. return -ENOMEM;
  3235. btrfs_set_buffer_uptodate(sb);
  3236. btrfs_set_buffer_lockdep_class(root->root_key.objectid, sb, 0);
  3237. write_extent_buffer(sb, super_copy, 0, BTRFS_SUPER_INFO_SIZE);
  3238. array_size = btrfs_super_sys_array_size(super_copy);
  3239. ptr = super_copy->sys_chunk_array;
  3240. sb_ptr = offsetof(struct btrfs_super_block, sys_chunk_array);
  3241. cur = 0;
  3242. while (cur < array_size) {
  3243. disk_key = (struct btrfs_disk_key *)ptr;
  3244. btrfs_disk_key_to_cpu(&key, disk_key);
  3245. len = sizeof(*disk_key); ptr += len;
  3246. sb_ptr += len;
  3247. cur += len;
  3248. if (key.type == BTRFS_CHUNK_ITEM_KEY) {
  3249. chunk = (struct btrfs_chunk *)sb_ptr;
  3250. ret = read_one_chunk(root, &key, sb, chunk);
  3251. if (ret)
  3252. break;
  3253. num_stripes = btrfs_chunk_num_stripes(sb, chunk);
  3254. len = btrfs_chunk_item_size(num_stripes);
  3255. } else {
  3256. ret = -EIO;
  3257. break;
  3258. }
  3259. ptr += len;
  3260. sb_ptr += len;
  3261. cur += len;
  3262. }
  3263. free_extent_buffer(sb);
  3264. return ret;
  3265. }
  3266. int btrfs_read_chunk_tree(struct btrfs_root *root)
  3267. {
  3268. struct btrfs_path *path;
  3269. struct extent_buffer *leaf;
  3270. struct btrfs_key key;
  3271. struct btrfs_key found_key;
  3272. int ret;
  3273. int slot;
  3274. root = root->fs_info->chunk_root;
  3275. path = btrfs_alloc_path();
  3276. if (!path)
  3277. return -ENOMEM;
  3278. /* first we search for all of the device items, and then we
  3279. * read in all of the chunk items. This way we can create chunk
  3280. * mappings that reference all of the devices that are afound
  3281. */
  3282. key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
  3283. key.offset = 0;
  3284. key.type = 0;
  3285. again:
  3286. ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
  3287. if (ret < 0)
  3288. goto error;
  3289. while (1) {
  3290. leaf = path->nodes[0];
  3291. slot = path->slots[0];
  3292. if (slot >= btrfs_header_nritems(leaf)) {
  3293. ret = btrfs_next_leaf(root, path);
  3294. if (ret == 0)
  3295. continue;
  3296. if (ret < 0)
  3297. goto error;
  3298. break;
  3299. }
  3300. btrfs_item_key_to_cpu(leaf, &found_key, slot);
  3301. if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
  3302. if (found_key.objectid != BTRFS_DEV_ITEMS_OBJECTID)
  3303. break;
  3304. if (found_key.type == BTRFS_DEV_ITEM_KEY) {
  3305. struct btrfs_dev_item *dev_item;
  3306. dev_item = btrfs_item_ptr(leaf, slot,
  3307. struct btrfs_dev_item);
  3308. ret = read_one_dev(root, leaf, dev_item);
  3309. if (ret)
  3310. goto error;
  3311. }
  3312. } else if (found_key.type == BTRFS_CHUNK_ITEM_KEY) {
  3313. struct btrfs_chunk *chunk;
  3314. chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
  3315. ret = read_one_chunk(root, &found_key, leaf, chunk);
  3316. if (ret)
  3317. goto error;
  3318. }
  3319. path->slots[0]++;
  3320. }
  3321. if (key.objectid == BTRFS_DEV_ITEMS_OBJECTID) {
  3322. key.objectid = 0;
  3323. btrfs_release_path(path);
  3324. goto again;
  3325. }
  3326. ret = 0;
  3327. error:
  3328. btrfs_free_path(path);
  3329. return ret;
  3330. }