volumes.c 84 KB

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