resize.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007
  1. /*
  2. * linux/fs/ext4/resize.c
  3. *
  4. * Support for resizing an ext4 filesystem while it is mounted.
  5. *
  6. * Copyright (C) 2001, 2002 Andreas Dilger <adilger@clusterfs.com>
  7. *
  8. * This could probably be made into a module, because it is not often in use.
  9. */
  10. #define EXT4FS_DEBUG
  11. #include <linux/errno.h>
  12. #include <linux/slab.h>
  13. #include "ext4_jbd2.h"
  14. int ext4_resize_begin(struct super_block *sb)
  15. {
  16. int ret = 0;
  17. if (!capable(CAP_SYS_RESOURCE))
  18. return -EPERM;
  19. /*
  20. * We are not allowed to do online-resizing on a filesystem mounted
  21. * with error, because it can destroy the filesystem easily.
  22. */
  23. if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
  24. ext4_warning(sb, "There are errors in the filesystem, "
  25. "so online resizing is not allowed\n");
  26. return -EPERM;
  27. }
  28. if (test_and_set_bit_lock(EXT4_RESIZING, &EXT4_SB(sb)->s_resize_flags))
  29. ret = -EBUSY;
  30. return ret;
  31. }
  32. void ext4_resize_end(struct super_block *sb)
  33. {
  34. clear_bit_unlock(EXT4_RESIZING, &EXT4_SB(sb)->s_resize_flags);
  35. smp_mb__after_clear_bit();
  36. }
  37. static ext4_group_t ext4_meta_bg_first_group(struct super_block *sb,
  38. ext4_group_t group) {
  39. return (group >> EXT4_DESC_PER_BLOCK_BITS(sb)) <<
  40. EXT4_DESC_PER_BLOCK_BITS(sb);
  41. }
  42. static ext4_fsblk_t ext4_meta_bg_first_block_no(struct super_block *sb,
  43. ext4_group_t group) {
  44. group = ext4_meta_bg_first_group(sb, group);
  45. return ext4_group_first_block_no(sb, group);
  46. }
  47. static ext4_grpblk_t ext4_group_overhead_blocks(struct super_block *sb,
  48. ext4_group_t group) {
  49. ext4_grpblk_t overhead;
  50. overhead = ext4_bg_num_gdb(sb, group);
  51. if (ext4_bg_has_super(sb, group))
  52. overhead += 1 +
  53. le16_to_cpu(EXT4_SB(sb)->s_es->s_reserved_gdt_blocks);
  54. return overhead;
  55. }
  56. #define outside(b, first, last) ((b) < (first) || (b) >= (last))
  57. #define inside(b, first, last) ((b) >= (first) && (b) < (last))
  58. static int verify_group_input(struct super_block *sb,
  59. struct ext4_new_group_data *input)
  60. {
  61. struct ext4_sb_info *sbi = EXT4_SB(sb);
  62. struct ext4_super_block *es = sbi->s_es;
  63. ext4_fsblk_t start = ext4_blocks_count(es);
  64. ext4_fsblk_t end = start + input->blocks_count;
  65. ext4_group_t group = input->group;
  66. ext4_fsblk_t itend = input->inode_table + sbi->s_itb_per_group;
  67. unsigned overhead;
  68. ext4_fsblk_t metaend;
  69. struct buffer_head *bh = NULL;
  70. ext4_grpblk_t free_blocks_count, offset;
  71. int err = -EINVAL;
  72. if (group != sbi->s_groups_count) {
  73. ext4_warning(sb, "Cannot add at group %u (only %u groups)",
  74. input->group, sbi->s_groups_count);
  75. return -EINVAL;
  76. }
  77. overhead = ext4_group_overhead_blocks(sb, group);
  78. metaend = start + overhead;
  79. input->free_blocks_count = free_blocks_count =
  80. input->blocks_count - 2 - overhead - sbi->s_itb_per_group;
  81. if (test_opt(sb, DEBUG))
  82. printk(KERN_DEBUG "EXT4-fs: adding %s group %u: %u blocks "
  83. "(%d free, %u reserved)\n",
  84. ext4_bg_has_super(sb, input->group) ? "normal" :
  85. "no-super", input->group, input->blocks_count,
  86. free_blocks_count, input->reserved_blocks);
  87. ext4_get_group_no_and_offset(sb, start, NULL, &offset);
  88. if (offset != 0)
  89. ext4_warning(sb, "Last group not full");
  90. else if (input->reserved_blocks > input->blocks_count / 5)
  91. ext4_warning(sb, "Reserved blocks too high (%u)",
  92. input->reserved_blocks);
  93. else if (free_blocks_count < 0)
  94. ext4_warning(sb, "Bad blocks count %u",
  95. input->blocks_count);
  96. else if (!(bh = sb_bread(sb, end - 1)))
  97. ext4_warning(sb, "Cannot read last block (%llu)",
  98. end - 1);
  99. else if (outside(input->block_bitmap, start, end))
  100. ext4_warning(sb, "Block bitmap not in group (block %llu)",
  101. (unsigned long long)input->block_bitmap);
  102. else if (outside(input->inode_bitmap, start, end))
  103. ext4_warning(sb, "Inode bitmap not in group (block %llu)",
  104. (unsigned long long)input->inode_bitmap);
  105. else if (outside(input->inode_table, start, end) ||
  106. outside(itend - 1, start, end))
  107. ext4_warning(sb, "Inode table not in group (blocks %llu-%llu)",
  108. (unsigned long long)input->inode_table, itend - 1);
  109. else if (input->inode_bitmap == input->block_bitmap)
  110. ext4_warning(sb, "Block bitmap same as inode bitmap (%llu)",
  111. (unsigned long long)input->block_bitmap);
  112. else if (inside(input->block_bitmap, input->inode_table, itend))
  113. ext4_warning(sb, "Block bitmap (%llu) in inode table "
  114. "(%llu-%llu)",
  115. (unsigned long long)input->block_bitmap,
  116. (unsigned long long)input->inode_table, itend - 1);
  117. else if (inside(input->inode_bitmap, input->inode_table, itend))
  118. ext4_warning(sb, "Inode bitmap (%llu) in inode table "
  119. "(%llu-%llu)",
  120. (unsigned long long)input->inode_bitmap,
  121. (unsigned long long)input->inode_table, itend - 1);
  122. else if (inside(input->block_bitmap, start, metaend))
  123. ext4_warning(sb, "Block bitmap (%llu) in GDT table (%llu-%llu)",
  124. (unsigned long long)input->block_bitmap,
  125. start, metaend - 1);
  126. else if (inside(input->inode_bitmap, start, metaend))
  127. ext4_warning(sb, "Inode bitmap (%llu) in GDT table (%llu-%llu)",
  128. (unsigned long long)input->inode_bitmap,
  129. start, metaend - 1);
  130. else if (inside(input->inode_table, start, metaend) ||
  131. inside(itend - 1, start, metaend))
  132. ext4_warning(sb, "Inode table (%llu-%llu) overlaps GDT table "
  133. "(%llu-%llu)",
  134. (unsigned long long)input->inode_table,
  135. itend - 1, start, metaend - 1);
  136. else
  137. err = 0;
  138. brelse(bh);
  139. return err;
  140. }
  141. /*
  142. * ext4_new_flex_group_data is used by 64bit-resize interface to add a flex
  143. * group each time.
  144. */
  145. struct ext4_new_flex_group_data {
  146. struct ext4_new_group_data *groups; /* new_group_data for groups
  147. in the flex group */
  148. __u16 *bg_flags; /* block group flags of groups
  149. in @groups */
  150. ext4_group_t count; /* number of groups in @groups
  151. */
  152. };
  153. /*
  154. * alloc_flex_gd() allocates a ext4_new_flex_group_data with size of
  155. * @flexbg_size.
  156. *
  157. * Returns NULL on failure otherwise address of the allocated structure.
  158. */
  159. static struct ext4_new_flex_group_data *alloc_flex_gd(unsigned long flexbg_size)
  160. {
  161. struct ext4_new_flex_group_data *flex_gd;
  162. flex_gd = kmalloc(sizeof(*flex_gd), GFP_NOFS);
  163. if (flex_gd == NULL)
  164. goto out3;
  165. if (flexbg_size >= UINT_MAX / sizeof(struct ext4_new_flex_group_data))
  166. goto out2;
  167. flex_gd->count = flexbg_size;
  168. flex_gd->groups = kmalloc(sizeof(struct ext4_new_group_data) *
  169. flexbg_size, GFP_NOFS);
  170. if (flex_gd->groups == NULL)
  171. goto out2;
  172. flex_gd->bg_flags = kmalloc(flexbg_size * sizeof(__u16), GFP_NOFS);
  173. if (flex_gd->bg_flags == NULL)
  174. goto out1;
  175. return flex_gd;
  176. out1:
  177. kfree(flex_gd->groups);
  178. out2:
  179. kfree(flex_gd);
  180. out3:
  181. return NULL;
  182. }
  183. static void free_flex_gd(struct ext4_new_flex_group_data *flex_gd)
  184. {
  185. kfree(flex_gd->bg_flags);
  186. kfree(flex_gd->groups);
  187. kfree(flex_gd);
  188. }
  189. /*
  190. * ext4_alloc_group_tables() allocates block bitmaps, inode bitmaps
  191. * and inode tables for a flex group.
  192. *
  193. * This function is used by 64bit-resize. Note that this function allocates
  194. * group tables from the 1st group of groups contained by @flexgd, which may
  195. * be a partial of a flex group.
  196. *
  197. * @sb: super block of fs to which the groups belongs
  198. *
  199. * Returns 0 on a successful allocation of the metadata blocks in the
  200. * block group.
  201. */
  202. static int ext4_alloc_group_tables(struct super_block *sb,
  203. struct ext4_new_flex_group_data *flex_gd,
  204. int flexbg_size)
  205. {
  206. struct ext4_new_group_data *group_data = flex_gd->groups;
  207. ext4_fsblk_t start_blk;
  208. ext4_fsblk_t last_blk;
  209. ext4_group_t src_group;
  210. ext4_group_t bb_index = 0;
  211. ext4_group_t ib_index = 0;
  212. ext4_group_t it_index = 0;
  213. ext4_group_t group;
  214. ext4_group_t last_group;
  215. unsigned overhead;
  216. __u16 uninit_mask = (flexbg_size > 1) ? ~EXT4_BG_BLOCK_UNINIT : ~0;
  217. BUG_ON(flex_gd->count == 0 || group_data == NULL);
  218. src_group = group_data[0].group;
  219. last_group = src_group + flex_gd->count - 1;
  220. BUG_ON((flexbg_size > 1) && ((src_group & ~(flexbg_size - 1)) !=
  221. (last_group & ~(flexbg_size - 1))));
  222. next_group:
  223. group = group_data[0].group;
  224. if (src_group >= group_data[0].group + flex_gd->count)
  225. return -ENOSPC;
  226. start_blk = ext4_group_first_block_no(sb, src_group);
  227. last_blk = start_blk + group_data[src_group - group].blocks_count;
  228. overhead = ext4_group_overhead_blocks(sb, src_group);
  229. start_blk += overhead;
  230. /* We collect contiguous blocks as much as possible. */
  231. src_group++;
  232. for (; src_group <= last_group; src_group++) {
  233. overhead = ext4_group_overhead_blocks(sb, src_group);
  234. if (overhead == 0)
  235. last_blk += group_data[src_group - group].blocks_count;
  236. else
  237. break;
  238. }
  239. /* Allocate block bitmaps */
  240. for (; bb_index < flex_gd->count; bb_index++) {
  241. if (start_blk >= last_blk)
  242. goto next_group;
  243. group_data[bb_index].block_bitmap = start_blk++;
  244. group = ext4_get_group_number(sb, start_blk - 1);
  245. group -= group_data[0].group;
  246. group_data[group].free_blocks_count--;
  247. flex_gd->bg_flags[group] &= uninit_mask;
  248. }
  249. /* Allocate inode bitmaps */
  250. for (; ib_index < flex_gd->count; ib_index++) {
  251. if (start_blk >= last_blk)
  252. goto next_group;
  253. group_data[ib_index].inode_bitmap = start_blk++;
  254. group = ext4_get_group_number(sb, start_blk - 1);
  255. group -= group_data[0].group;
  256. group_data[group].free_blocks_count--;
  257. flex_gd->bg_flags[group] &= uninit_mask;
  258. }
  259. /* Allocate inode tables */
  260. for (; it_index < flex_gd->count; it_index++) {
  261. unsigned int itb = EXT4_SB(sb)->s_itb_per_group;
  262. ext4_fsblk_t next_group_start;
  263. if (start_blk + itb > last_blk)
  264. goto next_group;
  265. group_data[it_index].inode_table = start_blk;
  266. group = ext4_get_group_number(sb, start_blk);
  267. next_group_start = ext4_group_first_block_no(sb, group + 1);
  268. group -= group_data[0].group;
  269. if (start_blk + itb > next_group_start) {
  270. flex_gd->bg_flags[group + 1] &= uninit_mask;
  271. overhead = start_blk + itb - next_group_start;
  272. group_data[group + 1].free_blocks_count -= overhead;
  273. itb -= overhead;
  274. }
  275. group_data[group].free_blocks_count -= itb;
  276. flex_gd->bg_flags[group] &= uninit_mask;
  277. start_blk += EXT4_SB(sb)->s_itb_per_group;
  278. }
  279. if (test_opt(sb, DEBUG)) {
  280. int i;
  281. group = group_data[0].group;
  282. printk(KERN_DEBUG "EXT4-fs: adding a flex group with "
  283. "%d groups, flexbg size is %d:\n", flex_gd->count,
  284. flexbg_size);
  285. for (i = 0; i < flex_gd->count; i++) {
  286. printk(KERN_DEBUG "adding %s group %u: %u "
  287. "blocks (%d free)\n",
  288. ext4_bg_has_super(sb, group + i) ? "normal" :
  289. "no-super", group + i,
  290. group_data[i].blocks_count,
  291. group_data[i].free_blocks_count);
  292. }
  293. }
  294. return 0;
  295. }
  296. static struct buffer_head *bclean(handle_t *handle, struct super_block *sb,
  297. ext4_fsblk_t blk)
  298. {
  299. struct buffer_head *bh;
  300. int err;
  301. bh = sb_getblk(sb, blk);
  302. if (unlikely(!bh))
  303. return ERR_PTR(-ENOMEM);
  304. if ((err = ext4_journal_get_write_access(handle, bh))) {
  305. brelse(bh);
  306. bh = ERR_PTR(err);
  307. } else {
  308. memset(bh->b_data, 0, sb->s_blocksize);
  309. set_buffer_uptodate(bh);
  310. }
  311. return bh;
  312. }
  313. /*
  314. * If we have fewer than thresh credits, extend by EXT4_MAX_TRANS_DATA.
  315. * If that fails, restart the transaction & regain write access for the
  316. * buffer head which is used for block_bitmap modifications.
  317. */
  318. static int extend_or_restart_transaction(handle_t *handle, int thresh)
  319. {
  320. int err;
  321. if (ext4_handle_has_enough_credits(handle, thresh))
  322. return 0;
  323. err = ext4_journal_extend(handle, EXT4_MAX_TRANS_DATA);
  324. if (err < 0)
  325. return err;
  326. if (err) {
  327. err = ext4_journal_restart(handle, EXT4_MAX_TRANS_DATA);
  328. if (err)
  329. return err;
  330. }
  331. return 0;
  332. }
  333. /*
  334. * set_flexbg_block_bitmap() mark @count blocks starting from @block used.
  335. *
  336. * Helper function for ext4_setup_new_group_blocks() which set .
  337. *
  338. * @sb: super block
  339. * @handle: journal handle
  340. * @flex_gd: flex group data
  341. */
  342. static int set_flexbg_block_bitmap(struct super_block *sb, handle_t *handle,
  343. struct ext4_new_flex_group_data *flex_gd,
  344. ext4_fsblk_t block, ext4_group_t count)
  345. {
  346. ext4_group_t count2;
  347. ext4_debug("mark blocks [%llu/%u] used\n", block, count);
  348. for (count2 = count; count > 0; count -= count2, block += count2) {
  349. ext4_fsblk_t start;
  350. struct buffer_head *bh;
  351. ext4_group_t group;
  352. int err;
  353. group = ext4_get_group_number(sb, block);
  354. start = ext4_group_first_block_no(sb, group);
  355. group -= flex_gd->groups[0].group;
  356. count2 = EXT4_BLOCKS_PER_GROUP(sb) - (block - start);
  357. if (count2 > count)
  358. count2 = count;
  359. if (flex_gd->bg_flags[group] & EXT4_BG_BLOCK_UNINIT) {
  360. BUG_ON(flex_gd->count > 1);
  361. continue;
  362. }
  363. err = extend_or_restart_transaction(handle, 1);
  364. if (err)
  365. return err;
  366. bh = sb_getblk(sb, flex_gd->groups[group].block_bitmap);
  367. if (unlikely(!bh))
  368. return -ENOMEM;
  369. err = ext4_journal_get_write_access(handle, bh);
  370. if (err)
  371. return err;
  372. ext4_debug("mark block bitmap %#04llx (+%llu/%u)\n", block,
  373. block - start, count2);
  374. ext4_set_bits(bh->b_data, block - start, count2);
  375. err = ext4_handle_dirty_metadata(handle, NULL, bh);
  376. if (unlikely(err))
  377. return err;
  378. brelse(bh);
  379. }
  380. return 0;
  381. }
  382. /*
  383. * Set up the block and inode bitmaps, and the inode table for the new groups.
  384. * This doesn't need to be part of the main transaction, since we are only
  385. * changing blocks outside the actual filesystem. We still do journaling to
  386. * ensure the recovery is correct in case of a failure just after resize.
  387. * If any part of this fails, we simply abort the resize.
  388. *
  389. * setup_new_flex_group_blocks handles a flex group as follow:
  390. * 1. copy super block and GDT, and initialize group tables if necessary.
  391. * In this step, we only set bits in blocks bitmaps for blocks taken by
  392. * super block and GDT.
  393. * 2. allocate group tables in block bitmaps, that is, set bits in block
  394. * bitmap for blocks taken by group tables.
  395. */
  396. static int setup_new_flex_group_blocks(struct super_block *sb,
  397. struct ext4_new_flex_group_data *flex_gd)
  398. {
  399. int group_table_count[] = {1, 1, EXT4_SB(sb)->s_itb_per_group};
  400. ext4_fsblk_t start;
  401. ext4_fsblk_t block;
  402. struct ext4_sb_info *sbi = EXT4_SB(sb);
  403. struct ext4_super_block *es = sbi->s_es;
  404. struct ext4_new_group_data *group_data = flex_gd->groups;
  405. __u16 *bg_flags = flex_gd->bg_flags;
  406. handle_t *handle;
  407. ext4_group_t group, count;
  408. struct buffer_head *bh = NULL;
  409. int reserved_gdb, i, j, err = 0, err2;
  410. int meta_bg;
  411. BUG_ON(!flex_gd->count || !group_data ||
  412. group_data[0].group != sbi->s_groups_count);
  413. reserved_gdb = le16_to_cpu(es->s_reserved_gdt_blocks);
  414. meta_bg = EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG);
  415. /* This transaction may be extended/restarted along the way */
  416. handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, EXT4_MAX_TRANS_DATA);
  417. if (IS_ERR(handle))
  418. return PTR_ERR(handle);
  419. group = group_data[0].group;
  420. for (i = 0; i < flex_gd->count; i++, group++) {
  421. unsigned long gdblocks;
  422. ext4_grpblk_t overhead;
  423. gdblocks = ext4_bg_num_gdb(sb, group);
  424. start = ext4_group_first_block_no(sb, group);
  425. if (meta_bg == 0 && !ext4_bg_has_super(sb, group))
  426. goto handle_itb;
  427. if (meta_bg == 1) {
  428. ext4_group_t first_group;
  429. first_group = ext4_meta_bg_first_group(sb, group);
  430. if (first_group != group + 1 &&
  431. first_group != group + EXT4_DESC_PER_BLOCK(sb) - 1)
  432. goto handle_itb;
  433. }
  434. block = start + ext4_bg_has_super(sb, group);
  435. /* Copy all of the GDT blocks into the backup in this group */
  436. for (j = 0; j < gdblocks; j++, block++) {
  437. struct buffer_head *gdb;
  438. ext4_debug("update backup group %#04llx\n", block);
  439. err = extend_or_restart_transaction(handle, 1);
  440. if (err)
  441. goto out;
  442. gdb = sb_getblk(sb, block);
  443. if (unlikely(!gdb)) {
  444. err = -ENOMEM;
  445. goto out;
  446. }
  447. err = ext4_journal_get_write_access(handle, gdb);
  448. if (err) {
  449. brelse(gdb);
  450. goto out;
  451. }
  452. memcpy(gdb->b_data, sbi->s_group_desc[j]->b_data,
  453. gdb->b_size);
  454. set_buffer_uptodate(gdb);
  455. err = ext4_handle_dirty_metadata(handle, NULL, gdb);
  456. if (unlikely(err)) {
  457. brelse(gdb);
  458. goto out;
  459. }
  460. brelse(gdb);
  461. }
  462. /* Zero out all of the reserved backup group descriptor
  463. * table blocks
  464. */
  465. if (ext4_bg_has_super(sb, group)) {
  466. err = sb_issue_zeroout(sb, gdblocks + start + 1,
  467. reserved_gdb, GFP_NOFS);
  468. if (err)
  469. goto out;
  470. }
  471. handle_itb:
  472. /* Initialize group tables of the grop @group */
  473. if (!(bg_flags[i] & EXT4_BG_INODE_ZEROED))
  474. goto handle_bb;
  475. /* Zero out all of the inode table blocks */
  476. block = group_data[i].inode_table;
  477. ext4_debug("clear inode table blocks %#04llx -> %#04lx\n",
  478. block, sbi->s_itb_per_group);
  479. err = sb_issue_zeroout(sb, block, sbi->s_itb_per_group,
  480. GFP_NOFS);
  481. if (err)
  482. goto out;
  483. handle_bb:
  484. if (bg_flags[i] & EXT4_BG_BLOCK_UNINIT)
  485. goto handle_ib;
  486. /* Initialize block bitmap of the @group */
  487. block = group_data[i].block_bitmap;
  488. err = extend_or_restart_transaction(handle, 1);
  489. if (err)
  490. goto out;
  491. bh = bclean(handle, sb, block);
  492. if (IS_ERR(bh)) {
  493. err = PTR_ERR(bh);
  494. goto out;
  495. }
  496. overhead = ext4_group_overhead_blocks(sb, group);
  497. if (overhead != 0) {
  498. ext4_debug("mark backup superblock %#04llx (+0)\n",
  499. start);
  500. ext4_set_bits(bh->b_data, 0, overhead);
  501. }
  502. ext4_mark_bitmap_end(group_data[i].blocks_count,
  503. sb->s_blocksize * 8, bh->b_data);
  504. err = ext4_handle_dirty_metadata(handle, NULL, bh);
  505. if (err)
  506. goto out;
  507. brelse(bh);
  508. handle_ib:
  509. if (bg_flags[i] & EXT4_BG_INODE_UNINIT)
  510. continue;
  511. /* Initialize inode bitmap of the @group */
  512. block = group_data[i].inode_bitmap;
  513. err = extend_or_restart_transaction(handle, 1);
  514. if (err)
  515. goto out;
  516. /* Mark unused entries in inode bitmap used */
  517. bh = bclean(handle, sb, block);
  518. if (IS_ERR(bh)) {
  519. err = PTR_ERR(bh);
  520. goto out;
  521. }
  522. ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb),
  523. sb->s_blocksize * 8, bh->b_data);
  524. err = ext4_handle_dirty_metadata(handle, NULL, bh);
  525. if (err)
  526. goto out;
  527. brelse(bh);
  528. }
  529. bh = NULL;
  530. /* Mark group tables in block bitmap */
  531. for (j = 0; j < GROUP_TABLE_COUNT; j++) {
  532. count = group_table_count[j];
  533. start = (&group_data[0].block_bitmap)[j];
  534. block = start;
  535. for (i = 1; i < flex_gd->count; i++) {
  536. block += group_table_count[j];
  537. if (block == (&group_data[i].block_bitmap)[j]) {
  538. count += group_table_count[j];
  539. continue;
  540. }
  541. err = set_flexbg_block_bitmap(sb, handle,
  542. flex_gd, start, count);
  543. if (err)
  544. goto out;
  545. count = group_table_count[j];
  546. start = (&group_data[i].block_bitmap)[j];
  547. block = start;
  548. }
  549. if (count) {
  550. err = set_flexbg_block_bitmap(sb, handle,
  551. flex_gd, start, count);
  552. if (err)
  553. goto out;
  554. }
  555. }
  556. out:
  557. brelse(bh);
  558. err2 = ext4_journal_stop(handle);
  559. if (err2 && !err)
  560. err = err2;
  561. return err;
  562. }
  563. /*
  564. * Iterate through the groups which hold BACKUP superblock/GDT copies in an
  565. * ext4 filesystem. The counters should be initialized to 1, 5, and 7 before
  566. * calling this for the first time. In a sparse filesystem it will be the
  567. * sequence of powers of 3, 5, and 7: 1, 3, 5, 7, 9, 25, 27, 49, 81, ...
  568. * For a non-sparse filesystem it will be every group: 1, 2, 3, 4, ...
  569. */
  570. static unsigned ext4_list_backups(struct super_block *sb, unsigned *three,
  571. unsigned *five, unsigned *seven)
  572. {
  573. unsigned *min = three;
  574. int mult = 3;
  575. unsigned ret;
  576. if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
  577. EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
  578. ret = *min;
  579. *min += 1;
  580. return ret;
  581. }
  582. if (*five < *min) {
  583. min = five;
  584. mult = 5;
  585. }
  586. if (*seven < *min) {
  587. min = seven;
  588. mult = 7;
  589. }
  590. ret = *min;
  591. *min *= mult;
  592. return ret;
  593. }
  594. /*
  595. * Check that all of the backup GDT blocks are held in the primary GDT block.
  596. * It is assumed that they are stored in group order. Returns the number of
  597. * groups in current filesystem that have BACKUPS, or -ve error code.
  598. */
  599. static int verify_reserved_gdb(struct super_block *sb,
  600. ext4_group_t end,
  601. struct buffer_head *primary)
  602. {
  603. const ext4_fsblk_t blk = primary->b_blocknr;
  604. unsigned three = 1;
  605. unsigned five = 5;
  606. unsigned seven = 7;
  607. unsigned grp;
  608. __le32 *p = (__le32 *)primary->b_data;
  609. int gdbackups = 0;
  610. while ((grp = ext4_list_backups(sb, &three, &five, &seven)) < end) {
  611. if (le32_to_cpu(*p++) !=
  612. grp * EXT4_BLOCKS_PER_GROUP(sb) + blk){
  613. ext4_warning(sb, "reserved GDT %llu"
  614. " missing grp %d (%llu)",
  615. blk, grp,
  616. grp *
  617. (ext4_fsblk_t)EXT4_BLOCKS_PER_GROUP(sb) +
  618. blk);
  619. return -EINVAL;
  620. }
  621. if (++gdbackups > EXT4_ADDR_PER_BLOCK(sb))
  622. return -EFBIG;
  623. }
  624. return gdbackups;
  625. }
  626. /*
  627. * Called when we need to bring a reserved group descriptor table block into
  628. * use from the resize inode. The primary copy of the new GDT block currently
  629. * is an indirect block (under the double indirect block in the resize inode).
  630. * The new backup GDT blocks will be stored as leaf blocks in this indirect
  631. * block, in group order. Even though we know all the block numbers we need,
  632. * we check to ensure that the resize inode has actually reserved these blocks.
  633. *
  634. * Don't need to update the block bitmaps because the blocks are still in use.
  635. *
  636. * We get all of the error cases out of the way, so that we are sure to not
  637. * fail once we start modifying the data on disk, because JBD has no rollback.
  638. */
  639. static int add_new_gdb(handle_t *handle, struct inode *inode,
  640. ext4_group_t group)
  641. {
  642. struct super_block *sb = inode->i_sb;
  643. struct ext4_super_block *es = EXT4_SB(sb)->s_es;
  644. unsigned long gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
  645. ext4_fsblk_t gdblock = EXT4_SB(sb)->s_sbh->b_blocknr + 1 + gdb_num;
  646. struct buffer_head **o_group_desc, **n_group_desc;
  647. struct buffer_head *dind;
  648. struct buffer_head *gdb_bh;
  649. int gdbackups;
  650. struct ext4_iloc iloc;
  651. __le32 *data;
  652. int err;
  653. if (test_opt(sb, DEBUG))
  654. printk(KERN_DEBUG
  655. "EXT4-fs: ext4_add_new_gdb: adding group block %lu\n",
  656. gdb_num);
  657. /*
  658. * If we are not using the primary superblock/GDT copy don't resize,
  659. * because the user tools have no way of handling this. Probably a
  660. * bad time to do it anyways.
  661. */
  662. if (EXT4_SB(sb)->s_sbh->b_blocknr !=
  663. le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block)) {
  664. ext4_warning(sb, "won't resize using backup superblock at %llu",
  665. (unsigned long long)EXT4_SB(sb)->s_sbh->b_blocknr);
  666. return -EPERM;
  667. }
  668. gdb_bh = sb_bread(sb, gdblock);
  669. if (!gdb_bh)
  670. return -EIO;
  671. gdbackups = verify_reserved_gdb(sb, group, gdb_bh);
  672. if (gdbackups < 0) {
  673. err = gdbackups;
  674. goto exit_bh;
  675. }
  676. data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
  677. dind = sb_bread(sb, le32_to_cpu(*data));
  678. if (!dind) {
  679. err = -EIO;
  680. goto exit_bh;
  681. }
  682. data = (__le32 *)dind->b_data;
  683. if (le32_to_cpu(data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)]) != gdblock) {
  684. ext4_warning(sb, "new group %u GDT block %llu not reserved",
  685. group, gdblock);
  686. err = -EINVAL;
  687. goto exit_dind;
  688. }
  689. err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
  690. if (unlikely(err))
  691. goto exit_dind;
  692. err = ext4_journal_get_write_access(handle, gdb_bh);
  693. if (unlikely(err))
  694. goto exit_dind;
  695. err = ext4_journal_get_write_access(handle, dind);
  696. if (unlikely(err))
  697. ext4_std_error(sb, err);
  698. /* ext4_reserve_inode_write() gets a reference on the iloc */
  699. err = ext4_reserve_inode_write(handle, inode, &iloc);
  700. if (unlikely(err))
  701. goto exit_dind;
  702. n_group_desc = ext4_kvmalloc((gdb_num + 1) *
  703. sizeof(struct buffer_head *),
  704. GFP_NOFS);
  705. if (!n_group_desc) {
  706. err = -ENOMEM;
  707. ext4_warning(sb, "not enough memory for %lu groups",
  708. gdb_num + 1);
  709. goto exit_inode;
  710. }
  711. /*
  712. * Finally, we have all of the possible failures behind us...
  713. *
  714. * Remove new GDT block from inode double-indirect block and clear out
  715. * the new GDT block for use (which also "frees" the backup GDT blocks
  716. * from the reserved inode). We don't need to change the bitmaps for
  717. * these blocks, because they are marked as in-use from being in the
  718. * reserved inode, and will become GDT blocks (primary and backup).
  719. */
  720. data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)] = 0;
  721. err = ext4_handle_dirty_metadata(handle, NULL, dind);
  722. if (unlikely(err)) {
  723. ext4_std_error(sb, err);
  724. goto exit_inode;
  725. }
  726. inode->i_blocks -= (gdbackups + 1) * sb->s_blocksize >> 9;
  727. ext4_mark_iloc_dirty(handle, inode, &iloc);
  728. memset(gdb_bh->b_data, 0, sb->s_blocksize);
  729. err = ext4_handle_dirty_metadata(handle, NULL, gdb_bh);
  730. if (unlikely(err)) {
  731. ext4_std_error(sb, err);
  732. goto exit_inode;
  733. }
  734. brelse(dind);
  735. o_group_desc = EXT4_SB(sb)->s_group_desc;
  736. memcpy(n_group_desc, o_group_desc,
  737. EXT4_SB(sb)->s_gdb_count * sizeof(struct buffer_head *));
  738. n_group_desc[gdb_num] = gdb_bh;
  739. EXT4_SB(sb)->s_group_desc = n_group_desc;
  740. EXT4_SB(sb)->s_gdb_count++;
  741. ext4_kvfree(o_group_desc);
  742. le16_add_cpu(&es->s_reserved_gdt_blocks, -1);
  743. err = ext4_handle_dirty_super(handle, sb);
  744. if (err)
  745. ext4_std_error(sb, err);
  746. return err;
  747. exit_inode:
  748. ext4_kvfree(n_group_desc);
  749. brelse(iloc.bh);
  750. exit_dind:
  751. brelse(dind);
  752. exit_bh:
  753. brelse(gdb_bh);
  754. ext4_debug("leaving with error %d\n", err);
  755. return err;
  756. }
  757. /*
  758. * add_new_gdb_meta_bg is the sister of add_new_gdb.
  759. */
  760. static int add_new_gdb_meta_bg(struct super_block *sb,
  761. handle_t *handle, ext4_group_t group) {
  762. ext4_fsblk_t gdblock;
  763. struct buffer_head *gdb_bh;
  764. struct buffer_head **o_group_desc, **n_group_desc;
  765. unsigned long gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
  766. int err;
  767. gdblock = ext4_meta_bg_first_block_no(sb, group) +
  768. ext4_bg_has_super(sb, group);
  769. gdb_bh = sb_bread(sb, gdblock);
  770. if (!gdb_bh)
  771. return -EIO;
  772. n_group_desc = ext4_kvmalloc((gdb_num + 1) *
  773. sizeof(struct buffer_head *),
  774. GFP_NOFS);
  775. if (!n_group_desc) {
  776. err = -ENOMEM;
  777. ext4_warning(sb, "not enough memory for %lu groups",
  778. gdb_num + 1);
  779. return err;
  780. }
  781. o_group_desc = EXT4_SB(sb)->s_group_desc;
  782. memcpy(n_group_desc, o_group_desc,
  783. EXT4_SB(sb)->s_gdb_count * sizeof(struct buffer_head *));
  784. n_group_desc[gdb_num] = gdb_bh;
  785. EXT4_SB(sb)->s_group_desc = n_group_desc;
  786. EXT4_SB(sb)->s_gdb_count++;
  787. ext4_kvfree(o_group_desc);
  788. err = ext4_journal_get_write_access(handle, gdb_bh);
  789. if (unlikely(err))
  790. brelse(gdb_bh);
  791. return err;
  792. }
  793. /*
  794. * Called when we are adding a new group which has a backup copy of each of
  795. * the GDT blocks (i.e. sparse group) and there are reserved GDT blocks.
  796. * We need to add these reserved backup GDT blocks to the resize inode, so
  797. * that they are kept for future resizing and not allocated to files.
  798. *
  799. * Each reserved backup GDT block will go into a different indirect block.
  800. * The indirect blocks are actually the primary reserved GDT blocks,
  801. * so we know in advance what their block numbers are. We only get the
  802. * double-indirect block to verify it is pointing to the primary reserved
  803. * GDT blocks so we don't overwrite a data block by accident. The reserved
  804. * backup GDT blocks are stored in their reserved primary GDT block.
  805. */
  806. static int reserve_backup_gdb(handle_t *handle, struct inode *inode,
  807. ext4_group_t group)
  808. {
  809. struct super_block *sb = inode->i_sb;
  810. int reserved_gdb =le16_to_cpu(EXT4_SB(sb)->s_es->s_reserved_gdt_blocks);
  811. struct buffer_head **primary;
  812. struct buffer_head *dind;
  813. struct ext4_iloc iloc;
  814. ext4_fsblk_t blk;
  815. __le32 *data, *end;
  816. int gdbackups = 0;
  817. int res, i;
  818. int err;
  819. primary = kmalloc(reserved_gdb * sizeof(*primary), GFP_NOFS);
  820. if (!primary)
  821. return -ENOMEM;
  822. data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
  823. dind = sb_bread(sb, le32_to_cpu(*data));
  824. if (!dind) {
  825. err = -EIO;
  826. goto exit_free;
  827. }
  828. blk = EXT4_SB(sb)->s_sbh->b_blocknr + 1 + EXT4_SB(sb)->s_gdb_count;
  829. data = (__le32 *)dind->b_data + (EXT4_SB(sb)->s_gdb_count %
  830. EXT4_ADDR_PER_BLOCK(sb));
  831. end = (__le32 *)dind->b_data + EXT4_ADDR_PER_BLOCK(sb);
  832. /* Get each reserved primary GDT block and verify it holds backups */
  833. for (res = 0; res < reserved_gdb; res++, blk++) {
  834. if (le32_to_cpu(*data) != blk) {
  835. ext4_warning(sb, "reserved block %llu"
  836. " not at offset %ld",
  837. blk,
  838. (long)(data - (__le32 *)dind->b_data));
  839. err = -EINVAL;
  840. goto exit_bh;
  841. }
  842. primary[res] = sb_bread(sb, blk);
  843. if (!primary[res]) {
  844. err = -EIO;
  845. goto exit_bh;
  846. }
  847. gdbackups = verify_reserved_gdb(sb, group, primary[res]);
  848. if (gdbackups < 0) {
  849. brelse(primary[res]);
  850. err = gdbackups;
  851. goto exit_bh;
  852. }
  853. if (++data >= end)
  854. data = (__le32 *)dind->b_data;
  855. }
  856. for (i = 0; i < reserved_gdb; i++) {
  857. if ((err = ext4_journal_get_write_access(handle, primary[i])))
  858. goto exit_bh;
  859. }
  860. if ((err = ext4_reserve_inode_write(handle, inode, &iloc)))
  861. goto exit_bh;
  862. /*
  863. * Finally we can add each of the reserved backup GDT blocks from
  864. * the new group to its reserved primary GDT block.
  865. */
  866. blk = group * EXT4_BLOCKS_PER_GROUP(sb);
  867. for (i = 0; i < reserved_gdb; i++) {
  868. int err2;
  869. data = (__le32 *)primary[i]->b_data;
  870. /* printk("reserving backup %lu[%u] = %lu\n",
  871. primary[i]->b_blocknr, gdbackups,
  872. blk + primary[i]->b_blocknr); */
  873. data[gdbackups] = cpu_to_le32(blk + primary[i]->b_blocknr);
  874. err2 = ext4_handle_dirty_metadata(handle, NULL, primary[i]);
  875. if (!err)
  876. err = err2;
  877. }
  878. inode->i_blocks += reserved_gdb * sb->s_blocksize >> 9;
  879. ext4_mark_iloc_dirty(handle, inode, &iloc);
  880. exit_bh:
  881. while (--res >= 0)
  882. brelse(primary[res]);
  883. brelse(dind);
  884. exit_free:
  885. kfree(primary);
  886. return err;
  887. }
  888. /*
  889. * Update the backup copies of the ext4 metadata. These don't need to be part
  890. * of the main resize transaction, because e2fsck will re-write them if there
  891. * is a problem (basically only OOM will cause a problem). However, we
  892. * _should_ update the backups if possible, in case the primary gets trashed
  893. * for some reason and we need to run e2fsck from a backup superblock. The
  894. * important part is that the new block and inode counts are in the backup
  895. * superblocks, and the location of the new group metadata in the GDT backups.
  896. *
  897. * We do not need take the s_resize_lock for this, because these
  898. * blocks are not otherwise touched by the filesystem code when it is
  899. * mounted. We don't need to worry about last changing from
  900. * sbi->s_groups_count, because the worst that can happen is that we
  901. * do not copy the full number of backups at this time. The resize
  902. * which changed s_groups_count will backup again.
  903. */
  904. static void update_backups(struct super_block *sb, int blk_off, char *data,
  905. int size, int meta_bg)
  906. {
  907. struct ext4_sb_info *sbi = EXT4_SB(sb);
  908. ext4_group_t last;
  909. const int bpg = EXT4_BLOCKS_PER_GROUP(sb);
  910. unsigned three = 1;
  911. unsigned five = 5;
  912. unsigned seven = 7;
  913. ext4_group_t group = 0;
  914. int rest = sb->s_blocksize - size;
  915. handle_t *handle;
  916. int err = 0, err2;
  917. handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, EXT4_MAX_TRANS_DATA);
  918. if (IS_ERR(handle)) {
  919. group = 1;
  920. err = PTR_ERR(handle);
  921. goto exit_err;
  922. }
  923. if (meta_bg == 0) {
  924. group = ext4_list_backups(sb, &three, &five, &seven);
  925. last = sbi->s_groups_count;
  926. } else {
  927. group = ext4_meta_bg_first_group(sb, group) + 1;
  928. last = (ext4_group_t)(group + EXT4_DESC_PER_BLOCK(sb) - 2);
  929. }
  930. while (group < sbi->s_groups_count) {
  931. struct buffer_head *bh;
  932. ext4_fsblk_t backup_block;
  933. /* Out of journal space, and can't get more - abort - so sad */
  934. if (ext4_handle_valid(handle) &&
  935. handle->h_buffer_credits == 0 &&
  936. ext4_journal_extend(handle, EXT4_MAX_TRANS_DATA) &&
  937. (err = ext4_journal_restart(handle, EXT4_MAX_TRANS_DATA)))
  938. break;
  939. if (meta_bg == 0)
  940. backup_block = group * bpg + blk_off;
  941. else
  942. backup_block = (ext4_group_first_block_no(sb, group) +
  943. ext4_bg_has_super(sb, group));
  944. bh = sb_getblk(sb, backup_block);
  945. if (unlikely(!bh)) {
  946. err = -ENOMEM;
  947. break;
  948. }
  949. ext4_debug("update metadata backup %llu(+%llu)\n",
  950. backup_block, backup_block -
  951. ext4_group_first_block_no(sb, group));
  952. if ((err = ext4_journal_get_write_access(handle, bh)))
  953. break;
  954. lock_buffer(bh);
  955. memcpy(bh->b_data, data, size);
  956. if (rest)
  957. memset(bh->b_data + size, 0, rest);
  958. set_buffer_uptodate(bh);
  959. unlock_buffer(bh);
  960. err = ext4_handle_dirty_metadata(handle, NULL, bh);
  961. if (unlikely(err))
  962. ext4_std_error(sb, err);
  963. brelse(bh);
  964. if (meta_bg == 0)
  965. group = ext4_list_backups(sb, &three, &five, &seven);
  966. else if (group == last)
  967. break;
  968. else
  969. group = last;
  970. }
  971. if ((err2 = ext4_journal_stop(handle)) && !err)
  972. err = err2;
  973. /*
  974. * Ugh! Need to have e2fsck write the backup copies. It is too
  975. * late to revert the resize, we shouldn't fail just because of
  976. * the backup copies (they are only needed in case of corruption).
  977. *
  978. * However, if we got here we have a journal problem too, so we
  979. * can't really start a transaction to mark the superblock.
  980. * Chicken out and just set the flag on the hope it will be written
  981. * to disk, and if not - we will simply wait until next fsck.
  982. */
  983. exit_err:
  984. if (err) {
  985. ext4_warning(sb, "can't update backup for group %u (err %d), "
  986. "forcing fsck on next reboot", group, err);
  987. sbi->s_mount_state &= ~EXT4_VALID_FS;
  988. sbi->s_es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
  989. mark_buffer_dirty(sbi->s_sbh);
  990. }
  991. }
  992. /*
  993. * ext4_add_new_descs() adds @count group descriptor of groups
  994. * starting at @group
  995. *
  996. * @handle: journal handle
  997. * @sb: super block
  998. * @group: the group no. of the first group desc to be added
  999. * @resize_inode: the resize inode
  1000. * @count: number of group descriptors to be added
  1001. */
  1002. static int ext4_add_new_descs(handle_t *handle, struct super_block *sb,
  1003. ext4_group_t group, struct inode *resize_inode,
  1004. ext4_group_t count)
  1005. {
  1006. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1007. struct ext4_super_block *es = sbi->s_es;
  1008. struct buffer_head *gdb_bh;
  1009. int i, gdb_off, gdb_num, err = 0;
  1010. int meta_bg;
  1011. meta_bg = EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG);
  1012. for (i = 0; i < count; i++, group++) {
  1013. int reserved_gdb = ext4_bg_has_super(sb, group) ?
  1014. le16_to_cpu(es->s_reserved_gdt_blocks) : 0;
  1015. gdb_off = group % EXT4_DESC_PER_BLOCK(sb);
  1016. gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
  1017. /*
  1018. * We will only either add reserved group blocks to a backup group
  1019. * or remove reserved blocks for the first group in a new group block.
  1020. * Doing both would be mean more complex code, and sane people don't
  1021. * use non-sparse filesystems anymore. This is already checked above.
  1022. */
  1023. if (gdb_off) {
  1024. gdb_bh = sbi->s_group_desc[gdb_num];
  1025. err = ext4_journal_get_write_access(handle, gdb_bh);
  1026. if (!err && reserved_gdb && ext4_bg_num_gdb(sb, group))
  1027. err = reserve_backup_gdb(handle, resize_inode, group);
  1028. } else if (meta_bg != 0) {
  1029. err = add_new_gdb_meta_bg(sb, handle, group);
  1030. } else {
  1031. err = add_new_gdb(handle, resize_inode, group);
  1032. }
  1033. if (err)
  1034. break;
  1035. }
  1036. return err;
  1037. }
  1038. static struct buffer_head *ext4_get_bitmap(struct super_block *sb, __u64 block)
  1039. {
  1040. struct buffer_head *bh = sb_getblk(sb, block);
  1041. if (unlikely(!bh))
  1042. return NULL;
  1043. if (!bh_uptodate_or_lock(bh)) {
  1044. if (bh_submit_read(bh) < 0) {
  1045. brelse(bh);
  1046. return NULL;
  1047. }
  1048. }
  1049. return bh;
  1050. }
  1051. static int ext4_set_bitmap_checksums(struct super_block *sb,
  1052. ext4_group_t group,
  1053. struct ext4_group_desc *gdp,
  1054. struct ext4_new_group_data *group_data)
  1055. {
  1056. struct buffer_head *bh;
  1057. if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
  1058. EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
  1059. return 0;
  1060. bh = ext4_get_bitmap(sb, group_data->inode_bitmap);
  1061. if (!bh)
  1062. return -EIO;
  1063. ext4_inode_bitmap_csum_set(sb, group, gdp, bh,
  1064. EXT4_INODES_PER_GROUP(sb) / 8);
  1065. brelse(bh);
  1066. bh = ext4_get_bitmap(sb, group_data->block_bitmap);
  1067. if (!bh)
  1068. return -EIO;
  1069. ext4_block_bitmap_csum_set(sb, group, gdp, bh);
  1070. brelse(bh);
  1071. return 0;
  1072. }
  1073. /*
  1074. * ext4_setup_new_descs() will set up the group descriptor descriptors of a flex bg
  1075. */
  1076. static int ext4_setup_new_descs(handle_t *handle, struct super_block *sb,
  1077. struct ext4_new_flex_group_data *flex_gd)
  1078. {
  1079. struct ext4_new_group_data *group_data = flex_gd->groups;
  1080. struct ext4_group_desc *gdp;
  1081. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1082. struct buffer_head *gdb_bh;
  1083. ext4_group_t group;
  1084. __u16 *bg_flags = flex_gd->bg_flags;
  1085. int i, gdb_off, gdb_num, err = 0;
  1086. for (i = 0; i < flex_gd->count; i++, group_data++, bg_flags++) {
  1087. group = group_data->group;
  1088. gdb_off = group % EXT4_DESC_PER_BLOCK(sb);
  1089. gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
  1090. /*
  1091. * get_write_access() has been called on gdb_bh by ext4_add_new_desc().
  1092. */
  1093. gdb_bh = sbi->s_group_desc[gdb_num];
  1094. /* Update group descriptor block for new group */
  1095. gdp = (struct ext4_group_desc *)(gdb_bh->b_data +
  1096. gdb_off * EXT4_DESC_SIZE(sb));
  1097. memset(gdp, 0, EXT4_DESC_SIZE(sb));
  1098. ext4_block_bitmap_set(sb, gdp, group_data->block_bitmap);
  1099. ext4_inode_bitmap_set(sb, gdp, group_data->inode_bitmap);
  1100. err = ext4_set_bitmap_checksums(sb, group, gdp, group_data);
  1101. if (err) {
  1102. ext4_std_error(sb, err);
  1103. break;
  1104. }
  1105. ext4_inode_table_set(sb, gdp, group_data->inode_table);
  1106. ext4_free_group_clusters_set(sb, gdp,
  1107. EXT4_NUM_B2C(sbi, group_data->free_blocks_count));
  1108. ext4_free_inodes_set(sb, gdp, EXT4_INODES_PER_GROUP(sb));
  1109. if (ext4_has_group_desc_csum(sb))
  1110. ext4_itable_unused_set(sb, gdp,
  1111. EXT4_INODES_PER_GROUP(sb));
  1112. gdp->bg_flags = cpu_to_le16(*bg_flags);
  1113. ext4_group_desc_csum_set(sb, group, gdp);
  1114. err = ext4_handle_dirty_metadata(handle, NULL, gdb_bh);
  1115. if (unlikely(err)) {
  1116. ext4_std_error(sb, err);
  1117. break;
  1118. }
  1119. /*
  1120. * We can allocate memory for mb_alloc based on the new group
  1121. * descriptor
  1122. */
  1123. err = ext4_mb_add_groupinfo(sb, group, gdp);
  1124. if (err)
  1125. break;
  1126. }
  1127. return err;
  1128. }
  1129. /*
  1130. * ext4_update_super() updates the super block so that the newly added
  1131. * groups can be seen by the filesystem.
  1132. *
  1133. * @sb: super block
  1134. * @flex_gd: new added groups
  1135. */
  1136. static void ext4_update_super(struct super_block *sb,
  1137. struct ext4_new_flex_group_data *flex_gd)
  1138. {
  1139. ext4_fsblk_t blocks_count = 0;
  1140. ext4_fsblk_t free_blocks = 0;
  1141. ext4_fsblk_t reserved_blocks = 0;
  1142. struct ext4_new_group_data *group_data = flex_gd->groups;
  1143. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1144. struct ext4_super_block *es = sbi->s_es;
  1145. int i;
  1146. BUG_ON(flex_gd->count == 0 || group_data == NULL);
  1147. /*
  1148. * Make the new blocks and inodes valid next. We do this before
  1149. * increasing the group count so that once the group is enabled,
  1150. * all of its blocks and inodes are already valid.
  1151. *
  1152. * We always allocate group-by-group, then block-by-block or
  1153. * inode-by-inode within a group, so enabling these
  1154. * blocks/inodes before the group is live won't actually let us
  1155. * allocate the new space yet.
  1156. */
  1157. for (i = 0; i < flex_gd->count; i++) {
  1158. blocks_count += group_data[i].blocks_count;
  1159. free_blocks += group_data[i].free_blocks_count;
  1160. }
  1161. reserved_blocks = ext4_r_blocks_count(es) * 100;
  1162. reserved_blocks = div64_u64(reserved_blocks, ext4_blocks_count(es));
  1163. reserved_blocks *= blocks_count;
  1164. do_div(reserved_blocks, 100);
  1165. ext4_blocks_count_set(es, ext4_blocks_count(es) + blocks_count);
  1166. ext4_free_blocks_count_set(es, ext4_free_blocks_count(es) + free_blocks);
  1167. le32_add_cpu(&es->s_inodes_count, EXT4_INODES_PER_GROUP(sb) *
  1168. flex_gd->count);
  1169. le32_add_cpu(&es->s_free_inodes_count, EXT4_INODES_PER_GROUP(sb) *
  1170. flex_gd->count);
  1171. ext4_debug("free blocks count %llu", ext4_free_blocks_count(es));
  1172. /*
  1173. * We need to protect s_groups_count against other CPUs seeing
  1174. * inconsistent state in the superblock.
  1175. *
  1176. * The precise rules we use are:
  1177. *
  1178. * * Writers must perform a smp_wmb() after updating all
  1179. * dependent data and before modifying the groups count
  1180. *
  1181. * * Readers must perform an smp_rmb() after reading the groups
  1182. * count and before reading any dependent data.
  1183. *
  1184. * NB. These rules can be relaxed when checking the group count
  1185. * while freeing data, as we can only allocate from a block
  1186. * group after serialising against the group count, and we can
  1187. * only then free after serialising in turn against that
  1188. * allocation.
  1189. */
  1190. smp_wmb();
  1191. /* Update the global fs size fields */
  1192. sbi->s_groups_count += flex_gd->count;
  1193. sbi->s_blockfile_groups = min_t(ext4_group_t, sbi->s_groups_count,
  1194. (EXT4_MAX_BLOCK_FILE_PHYS / EXT4_BLOCKS_PER_GROUP(sb)));
  1195. /* Update the reserved block counts only once the new group is
  1196. * active. */
  1197. ext4_r_blocks_count_set(es, ext4_r_blocks_count(es) +
  1198. reserved_blocks);
  1199. /* Update the free space counts */
  1200. percpu_counter_add(&sbi->s_freeclusters_counter,
  1201. EXT4_NUM_B2C(sbi, free_blocks));
  1202. percpu_counter_add(&sbi->s_freeinodes_counter,
  1203. EXT4_INODES_PER_GROUP(sb) * flex_gd->count);
  1204. ext4_debug("free blocks count %llu",
  1205. percpu_counter_read(&sbi->s_freeclusters_counter));
  1206. if (EXT4_HAS_INCOMPAT_FEATURE(sb,
  1207. EXT4_FEATURE_INCOMPAT_FLEX_BG) &&
  1208. sbi->s_log_groups_per_flex) {
  1209. ext4_group_t flex_group;
  1210. flex_group = ext4_flex_group(sbi, group_data[0].group);
  1211. atomic64_add(EXT4_NUM_B2C(sbi, free_blocks),
  1212. &sbi->s_flex_groups[flex_group].free_clusters);
  1213. atomic_add(EXT4_INODES_PER_GROUP(sb) * flex_gd->count,
  1214. &sbi->s_flex_groups[flex_group].free_inodes);
  1215. }
  1216. /*
  1217. * Update the fs overhead information
  1218. */
  1219. ext4_calculate_overhead(sb);
  1220. if (test_opt(sb, DEBUG))
  1221. printk(KERN_DEBUG "EXT4-fs: added group %u:"
  1222. "%llu blocks(%llu free %llu reserved)\n", flex_gd->count,
  1223. blocks_count, free_blocks, reserved_blocks);
  1224. }
  1225. /* Add a flex group to an fs. Ensure we handle all possible error conditions
  1226. * _before_ we start modifying the filesystem, because we cannot abort the
  1227. * transaction and not have it write the data to disk.
  1228. */
  1229. static int ext4_flex_group_add(struct super_block *sb,
  1230. struct inode *resize_inode,
  1231. struct ext4_new_flex_group_data *flex_gd)
  1232. {
  1233. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1234. struct ext4_super_block *es = sbi->s_es;
  1235. ext4_fsblk_t o_blocks_count;
  1236. ext4_grpblk_t last;
  1237. ext4_group_t group;
  1238. handle_t *handle;
  1239. unsigned reserved_gdb;
  1240. int err = 0, err2 = 0, credit;
  1241. BUG_ON(!flex_gd->count || !flex_gd->groups || !flex_gd->bg_flags);
  1242. reserved_gdb = le16_to_cpu(es->s_reserved_gdt_blocks);
  1243. o_blocks_count = ext4_blocks_count(es);
  1244. ext4_get_group_no_and_offset(sb, o_blocks_count, &group, &last);
  1245. BUG_ON(last);
  1246. err = setup_new_flex_group_blocks(sb, flex_gd);
  1247. if (err)
  1248. goto exit;
  1249. /*
  1250. * We will always be modifying at least the superblock and GDT
  1251. * block. If we are adding a group past the last current GDT block,
  1252. * we will also modify the inode and the dindirect block. If we
  1253. * are adding a group with superblock/GDT backups we will also
  1254. * modify each of the reserved GDT dindirect blocks.
  1255. */
  1256. credit = flex_gd->count * 4 + reserved_gdb;
  1257. handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, credit);
  1258. if (IS_ERR(handle)) {
  1259. err = PTR_ERR(handle);
  1260. goto exit;
  1261. }
  1262. err = ext4_journal_get_write_access(handle, sbi->s_sbh);
  1263. if (err)
  1264. goto exit_journal;
  1265. group = flex_gd->groups[0].group;
  1266. BUG_ON(group != EXT4_SB(sb)->s_groups_count);
  1267. err = ext4_add_new_descs(handle, sb, group,
  1268. resize_inode, flex_gd->count);
  1269. if (err)
  1270. goto exit_journal;
  1271. err = ext4_setup_new_descs(handle, sb, flex_gd);
  1272. if (err)
  1273. goto exit_journal;
  1274. ext4_update_super(sb, flex_gd);
  1275. err = ext4_handle_dirty_super(handle, sb);
  1276. exit_journal:
  1277. err2 = ext4_journal_stop(handle);
  1278. if (!err)
  1279. err = err2;
  1280. if (!err) {
  1281. int gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
  1282. int gdb_num_end = ((group + flex_gd->count - 1) /
  1283. EXT4_DESC_PER_BLOCK(sb));
  1284. int meta_bg = EXT4_HAS_INCOMPAT_FEATURE(sb,
  1285. EXT4_FEATURE_INCOMPAT_META_BG);
  1286. sector_t old_gdb = 0;
  1287. update_backups(sb, sbi->s_sbh->b_blocknr, (char *)es,
  1288. sizeof(struct ext4_super_block), 0);
  1289. for (; gdb_num <= gdb_num_end; gdb_num++) {
  1290. struct buffer_head *gdb_bh;
  1291. gdb_bh = sbi->s_group_desc[gdb_num];
  1292. if (old_gdb == gdb_bh->b_blocknr)
  1293. continue;
  1294. update_backups(sb, gdb_bh->b_blocknr, gdb_bh->b_data,
  1295. gdb_bh->b_size, meta_bg);
  1296. old_gdb = gdb_bh->b_blocknr;
  1297. }
  1298. }
  1299. exit:
  1300. return err;
  1301. }
  1302. static int ext4_setup_next_flex_gd(struct super_block *sb,
  1303. struct ext4_new_flex_group_data *flex_gd,
  1304. ext4_fsblk_t n_blocks_count,
  1305. unsigned long flexbg_size)
  1306. {
  1307. struct ext4_super_block *es = EXT4_SB(sb)->s_es;
  1308. struct ext4_new_group_data *group_data = flex_gd->groups;
  1309. ext4_fsblk_t o_blocks_count;
  1310. ext4_group_t n_group;
  1311. ext4_group_t group;
  1312. ext4_group_t last_group;
  1313. ext4_grpblk_t last;
  1314. ext4_grpblk_t blocks_per_group;
  1315. unsigned long i;
  1316. blocks_per_group = EXT4_BLOCKS_PER_GROUP(sb);
  1317. o_blocks_count = ext4_blocks_count(es);
  1318. if (o_blocks_count == n_blocks_count)
  1319. return 0;
  1320. ext4_get_group_no_and_offset(sb, o_blocks_count, &group, &last);
  1321. BUG_ON(last);
  1322. ext4_get_group_no_and_offset(sb, n_blocks_count - 1, &n_group, &last);
  1323. last_group = group | (flexbg_size - 1);
  1324. if (last_group > n_group)
  1325. last_group = n_group;
  1326. flex_gd->count = last_group - group + 1;
  1327. for (i = 0; i < flex_gd->count; i++) {
  1328. int overhead;
  1329. group_data[i].group = group + i;
  1330. group_data[i].blocks_count = blocks_per_group;
  1331. overhead = ext4_group_overhead_blocks(sb, group + i);
  1332. group_data[i].free_blocks_count = blocks_per_group - overhead;
  1333. if (ext4_has_group_desc_csum(sb)) {
  1334. flex_gd->bg_flags[i] = EXT4_BG_BLOCK_UNINIT |
  1335. EXT4_BG_INODE_UNINIT;
  1336. if (!test_opt(sb, INIT_INODE_TABLE))
  1337. flex_gd->bg_flags[i] |= EXT4_BG_INODE_ZEROED;
  1338. } else
  1339. flex_gd->bg_flags[i] = EXT4_BG_INODE_ZEROED;
  1340. }
  1341. if (last_group == n_group && ext4_has_group_desc_csum(sb))
  1342. /* We need to initialize block bitmap of last group. */
  1343. flex_gd->bg_flags[i - 1] &= ~EXT4_BG_BLOCK_UNINIT;
  1344. if ((last_group == n_group) && (last != blocks_per_group - 1)) {
  1345. group_data[i - 1].blocks_count = last + 1;
  1346. group_data[i - 1].free_blocks_count -= blocks_per_group-
  1347. last - 1;
  1348. }
  1349. return 1;
  1350. }
  1351. /* Add group descriptor data to an existing or new group descriptor block.
  1352. * Ensure we handle all possible error conditions _before_ we start modifying
  1353. * the filesystem, because we cannot abort the transaction and not have it
  1354. * write the data to disk.
  1355. *
  1356. * If we are on a GDT block boundary, we need to get the reserved GDT block.
  1357. * Otherwise, we may need to add backup GDT blocks for a sparse group.
  1358. *
  1359. * We only need to hold the superblock lock while we are actually adding
  1360. * in the new group's counts to the superblock. Prior to that we have
  1361. * not really "added" the group at all. We re-check that we are still
  1362. * adding in the last group in case things have changed since verifying.
  1363. */
  1364. int ext4_group_add(struct super_block *sb, struct ext4_new_group_data *input)
  1365. {
  1366. struct ext4_new_flex_group_data flex_gd;
  1367. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1368. struct ext4_super_block *es = sbi->s_es;
  1369. int reserved_gdb = ext4_bg_has_super(sb, input->group) ?
  1370. le16_to_cpu(es->s_reserved_gdt_blocks) : 0;
  1371. struct inode *inode = NULL;
  1372. int gdb_off;
  1373. int err;
  1374. __u16 bg_flags = 0;
  1375. gdb_off = input->group % EXT4_DESC_PER_BLOCK(sb);
  1376. if (gdb_off == 0 && !EXT4_HAS_RO_COMPAT_FEATURE(sb,
  1377. EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER)) {
  1378. ext4_warning(sb, "Can't resize non-sparse filesystem further");
  1379. return -EPERM;
  1380. }
  1381. if (ext4_blocks_count(es) + input->blocks_count <
  1382. ext4_blocks_count(es)) {
  1383. ext4_warning(sb, "blocks_count overflow");
  1384. return -EINVAL;
  1385. }
  1386. if (le32_to_cpu(es->s_inodes_count) + EXT4_INODES_PER_GROUP(sb) <
  1387. le32_to_cpu(es->s_inodes_count)) {
  1388. ext4_warning(sb, "inodes_count overflow");
  1389. return -EINVAL;
  1390. }
  1391. if (reserved_gdb || gdb_off == 0) {
  1392. if (!EXT4_HAS_COMPAT_FEATURE(sb,
  1393. EXT4_FEATURE_COMPAT_RESIZE_INODE)
  1394. || !le16_to_cpu(es->s_reserved_gdt_blocks)) {
  1395. ext4_warning(sb,
  1396. "No reserved GDT blocks, can't resize");
  1397. return -EPERM;
  1398. }
  1399. inode = ext4_iget(sb, EXT4_RESIZE_INO);
  1400. if (IS_ERR(inode)) {
  1401. ext4_warning(sb, "Error opening resize inode");
  1402. return PTR_ERR(inode);
  1403. }
  1404. }
  1405. err = verify_group_input(sb, input);
  1406. if (err)
  1407. goto out;
  1408. err = ext4_alloc_flex_bg_array(sb, input->group + 1);
  1409. if (err)
  1410. goto out;
  1411. err = ext4_mb_alloc_groupinfo(sb, input->group + 1);
  1412. if (err)
  1413. goto out;
  1414. flex_gd.count = 1;
  1415. flex_gd.groups = input;
  1416. flex_gd.bg_flags = &bg_flags;
  1417. err = ext4_flex_group_add(sb, inode, &flex_gd);
  1418. out:
  1419. iput(inode);
  1420. return err;
  1421. } /* ext4_group_add */
  1422. /*
  1423. * extend a group without checking assuming that checking has been done.
  1424. */
  1425. static int ext4_group_extend_no_check(struct super_block *sb,
  1426. ext4_fsblk_t o_blocks_count, ext4_grpblk_t add)
  1427. {
  1428. struct ext4_super_block *es = EXT4_SB(sb)->s_es;
  1429. handle_t *handle;
  1430. int err = 0, err2;
  1431. /* We will update the superblock, one block bitmap, and
  1432. * one group descriptor via ext4_group_add_blocks().
  1433. */
  1434. handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, 3);
  1435. if (IS_ERR(handle)) {
  1436. err = PTR_ERR(handle);
  1437. ext4_warning(sb, "error %d on journal start", err);
  1438. return err;
  1439. }
  1440. err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
  1441. if (err) {
  1442. ext4_warning(sb, "error %d on journal write access", err);
  1443. goto errout;
  1444. }
  1445. ext4_blocks_count_set(es, o_blocks_count + add);
  1446. ext4_free_blocks_count_set(es, ext4_free_blocks_count(es) + add);
  1447. ext4_debug("freeing blocks %llu through %llu\n", o_blocks_count,
  1448. o_blocks_count + add);
  1449. /* We add the blocks to the bitmap and set the group need init bit */
  1450. err = ext4_group_add_blocks(handle, sb, o_blocks_count, add);
  1451. if (err)
  1452. goto errout;
  1453. ext4_handle_dirty_super(handle, sb);
  1454. ext4_debug("freed blocks %llu through %llu\n", o_blocks_count,
  1455. o_blocks_count + add);
  1456. errout:
  1457. err2 = ext4_journal_stop(handle);
  1458. if (err2 && !err)
  1459. err = err2;
  1460. if (!err) {
  1461. if (test_opt(sb, DEBUG))
  1462. printk(KERN_DEBUG "EXT4-fs: extended group to %llu "
  1463. "blocks\n", ext4_blocks_count(es));
  1464. update_backups(sb, EXT4_SB(sb)->s_sbh->b_blocknr,
  1465. (char *)es, sizeof(struct ext4_super_block), 0);
  1466. }
  1467. return err;
  1468. }
  1469. /*
  1470. * Extend the filesystem to the new number of blocks specified. This entry
  1471. * point is only used to extend the current filesystem to the end of the last
  1472. * existing group. It can be accessed via ioctl, or by "remount,resize=<size>"
  1473. * for emergencies (because it has no dependencies on reserved blocks).
  1474. *
  1475. * If we _really_ wanted, we could use default values to call ext4_group_add()
  1476. * allow the "remount" trick to work for arbitrary resizing, assuming enough
  1477. * GDT blocks are reserved to grow to the desired size.
  1478. */
  1479. int ext4_group_extend(struct super_block *sb, struct ext4_super_block *es,
  1480. ext4_fsblk_t n_blocks_count)
  1481. {
  1482. ext4_fsblk_t o_blocks_count;
  1483. ext4_grpblk_t last;
  1484. ext4_grpblk_t add;
  1485. struct buffer_head *bh;
  1486. int err;
  1487. ext4_group_t group;
  1488. o_blocks_count = ext4_blocks_count(es);
  1489. if (test_opt(sb, DEBUG))
  1490. ext4_msg(sb, KERN_DEBUG,
  1491. "extending last group from %llu to %llu blocks",
  1492. o_blocks_count, n_blocks_count);
  1493. if (n_blocks_count == 0 || n_blocks_count == o_blocks_count)
  1494. return 0;
  1495. if (n_blocks_count > (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
  1496. ext4_msg(sb, KERN_ERR,
  1497. "filesystem too large to resize to %llu blocks safely",
  1498. n_blocks_count);
  1499. if (sizeof(sector_t) < 8)
  1500. ext4_warning(sb, "CONFIG_LBDAF not enabled");
  1501. return -EINVAL;
  1502. }
  1503. if (n_blocks_count < o_blocks_count) {
  1504. ext4_warning(sb, "can't shrink FS - resize aborted");
  1505. return -EINVAL;
  1506. }
  1507. /* Handle the remaining blocks in the last group only. */
  1508. ext4_get_group_no_and_offset(sb, o_blocks_count, &group, &last);
  1509. if (last == 0) {
  1510. ext4_warning(sb, "need to use ext2online to resize further");
  1511. return -EPERM;
  1512. }
  1513. add = EXT4_BLOCKS_PER_GROUP(sb) - last;
  1514. if (o_blocks_count + add < o_blocks_count) {
  1515. ext4_warning(sb, "blocks_count overflow");
  1516. return -EINVAL;
  1517. }
  1518. if (o_blocks_count + add > n_blocks_count)
  1519. add = n_blocks_count - o_blocks_count;
  1520. if (o_blocks_count + add < n_blocks_count)
  1521. ext4_warning(sb, "will only finish group (%llu blocks, %u new)",
  1522. o_blocks_count + add, add);
  1523. /* See if the device is actually as big as what was requested */
  1524. bh = sb_bread(sb, o_blocks_count + add - 1);
  1525. if (!bh) {
  1526. ext4_warning(sb, "can't read last block, resize aborted");
  1527. return -ENOSPC;
  1528. }
  1529. brelse(bh);
  1530. err = ext4_group_extend_no_check(sb, o_blocks_count, add);
  1531. return err;
  1532. } /* ext4_group_extend */
  1533. static int num_desc_blocks(struct super_block *sb, ext4_group_t groups)
  1534. {
  1535. return (groups + EXT4_DESC_PER_BLOCK(sb) - 1) / EXT4_DESC_PER_BLOCK(sb);
  1536. }
  1537. /*
  1538. * Release the resize inode and drop the resize_inode feature if there
  1539. * are no more reserved gdt blocks, and then convert the file system
  1540. * to enable meta_bg
  1541. */
  1542. static int ext4_convert_meta_bg(struct super_block *sb, struct inode *inode)
  1543. {
  1544. handle_t *handle;
  1545. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1546. struct ext4_super_block *es = sbi->s_es;
  1547. struct ext4_inode_info *ei = EXT4_I(inode);
  1548. ext4_fsblk_t nr;
  1549. int i, ret, err = 0;
  1550. int credits = 1;
  1551. ext4_msg(sb, KERN_INFO, "Converting file system to meta_bg");
  1552. if (inode) {
  1553. if (es->s_reserved_gdt_blocks) {
  1554. ext4_error(sb, "Unexpected non-zero "
  1555. "s_reserved_gdt_blocks");
  1556. return -EPERM;
  1557. }
  1558. /* Do a quick sanity check of the resize inode */
  1559. if (inode->i_blocks != 1 << (inode->i_blkbits - 9))
  1560. goto invalid_resize_inode;
  1561. for (i = 0; i < EXT4_N_BLOCKS; i++) {
  1562. if (i == EXT4_DIND_BLOCK) {
  1563. if (ei->i_data[i])
  1564. continue;
  1565. else
  1566. goto invalid_resize_inode;
  1567. }
  1568. if (ei->i_data[i])
  1569. goto invalid_resize_inode;
  1570. }
  1571. credits += 3; /* block bitmap, bg descriptor, resize inode */
  1572. }
  1573. handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, credits);
  1574. if (IS_ERR(handle))
  1575. return PTR_ERR(handle);
  1576. err = ext4_journal_get_write_access(handle, sbi->s_sbh);
  1577. if (err)
  1578. goto errout;
  1579. EXT4_CLEAR_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_RESIZE_INODE);
  1580. EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG);
  1581. sbi->s_es->s_first_meta_bg =
  1582. cpu_to_le32(num_desc_blocks(sb, sbi->s_groups_count));
  1583. err = ext4_handle_dirty_super(handle, sb);
  1584. if (err) {
  1585. ext4_std_error(sb, err);
  1586. goto errout;
  1587. }
  1588. if (inode) {
  1589. nr = le32_to_cpu(ei->i_data[EXT4_DIND_BLOCK]);
  1590. ext4_free_blocks(handle, inode, NULL, nr, 1,
  1591. EXT4_FREE_BLOCKS_METADATA |
  1592. EXT4_FREE_BLOCKS_FORGET);
  1593. ei->i_data[EXT4_DIND_BLOCK] = 0;
  1594. inode->i_blocks = 0;
  1595. err = ext4_mark_inode_dirty(handle, inode);
  1596. if (err)
  1597. ext4_std_error(sb, err);
  1598. }
  1599. errout:
  1600. ret = ext4_journal_stop(handle);
  1601. if (!err)
  1602. err = ret;
  1603. return ret;
  1604. invalid_resize_inode:
  1605. ext4_error(sb, "corrupted/inconsistent resize inode");
  1606. return -EINVAL;
  1607. }
  1608. /*
  1609. * ext4_resize_fs() resizes a fs to new size specified by @n_blocks_count
  1610. *
  1611. * @sb: super block of the fs to be resized
  1612. * @n_blocks_count: the number of blocks resides in the resized fs
  1613. */
  1614. int ext4_resize_fs(struct super_block *sb, ext4_fsblk_t n_blocks_count)
  1615. {
  1616. struct ext4_new_flex_group_data *flex_gd = NULL;
  1617. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1618. struct ext4_super_block *es = sbi->s_es;
  1619. struct buffer_head *bh;
  1620. struct inode *resize_inode = NULL;
  1621. ext4_grpblk_t add, offset;
  1622. unsigned long n_desc_blocks;
  1623. unsigned long o_desc_blocks;
  1624. ext4_group_t o_group;
  1625. ext4_group_t n_group;
  1626. ext4_fsblk_t o_blocks_count;
  1627. ext4_fsblk_t n_blocks_count_retry = 0;
  1628. unsigned long last_update_time = 0;
  1629. int err = 0, flexbg_size = 1 << sbi->s_log_groups_per_flex;
  1630. int meta_bg;
  1631. /* See if the device is actually as big as what was requested */
  1632. bh = sb_bread(sb, n_blocks_count - 1);
  1633. if (!bh) {
  1634. ext4_warning(sb, "can't read last block, resize aborted");
  1635. return -ENOSPC;
  1636. }
  1637. brelse(bh);
  1638. retry:
  1639. o_blocks_count = ext4_blocks_count(es);
  1640. ext4_msg(sb, KERN_INFO, "resizing filesystem from %llu "
  1641. "to %llu blocks", o_blocks_count, n_blocks_count);
  1642. if (n_blocks_count < o_blocks_count) {
  1643. /* On-line shrinking not supported */
  1644. ext4_warning(sb, "can't shrink FS - resize aborted");
  1645. return -EINVAL;
  1646. }
  1647. if (n_blocks_count == o_blocks_count)
  1648. /* Nothing need to do */
  1649. return 0;
  1650. n_group = ext4_get_group_number(sb, n_blocks_count - 1);
  1651. if (n_group > (0xFFFFFFFFUL / EXT4_INODES_PER_GROUP(sb))) {
  1652. ext4_warning(sb, "resize would cause inodes_count overflow");
  1653. return -EINVAL;
  1654. }
  1655. ext4_get_group_no_and_offset(sb, o_blocks_count - 1, &o_group, &offset);
  1656. n_desc_blocks = num_desc_blocks(sb, n_group + 1);
  1657. o_desc_blocks = num_desc_blocks(sb, sbi->s_groups_count);
  1658. meta_bg = EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG);
  1659. if (EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_RESIZE_INODE)) {
  1660. if (meta_bg) {
  1661. ext4_error(sb, "resize_inode and meta_bg enabled "
  1662. "simultaneously");
  1663. return -EINVAL;
  1664. }
  1665. if (n_desc_blocks > o_desc_blocks +
  1666. le16_to_cpu(es->s_reserved_gdt_blocks)) {
  1667. n_blocks_count_retry = n_blocks_count;
  1668. n_desc_blocks = o_desc_blocks +
  1669. le16_to_cpu(es->s_reserved_gdt_blocks);
  1670. n_group = n_desc_blocks * EXT4_DESC_PER_BLOCK(sb);
  1671. n_blocks_count = n_group * EXT4_BLOCKS_PER_GROUP(sb);
  1672. n_group--; /* set to last group number */
  1673. }
  1674. if (!resize_inode)
  1675. resize_inode = ext4_iget(sb, EXT4_RESIZE_INO);
  1676. if (IS_ERR(resize_inode)) {
  1677. ext4_warning(sb, "Error opening resize inode");
  1678. return PTR_ERR(resize_inode);
  1679. }
  1680. }
  1681. if ((!resize_inode && !meta_bg) || n_blocks_count == o_blocks_count) {
  1682. err = ext4_convert_meta_bg(sb, resize_inode);
  1683. if (err)
  1684. goto out;
  1685. if (resize_inode) {
  1686. iput(resize_inode);
  1687. resize_inode = NULL;
  1688. }
  1689. if (n_blocks_count_retry) {
  1690. n_blocks_count = n_blocks_count_retry;
  1691. n_blocks_count_retry = 0;
  1692. goto retry;
  1693. }
  1694. }
  1695. /* extend the last group */
  1696. if (n_group == o_group)
  1697. add = n_blocks_count - o_blocks_count;
  1698. else
  1699. add = EXT4_BLOCKS_PER_GROUP(sb) - (offset + 1);
  1700. if (add > 0) {
  1701. err = ext4_group_extend_no_check(sb, o_blocks_count, add);
  1702. if (err)
  1703. goto out;
  1704. }
  1705. if (ext4_blocks_count(es) == n_blocks_count)
  1706. goto out;
  1707. err = ext4_alloc_flex_bg_array(sb, n_group + 1);
  1708. if (err)
  1709. return err;
  1710. err = ext4_mb_alloc_groupinfo(sb, n_group + 1);
  1711. if (err)
  1712. goto out;
  1713. flex_gd = alloc_flex_gd(flexbg_size);
  1714. if (flex_gd == NULL) {
  1715. err = -ENOMEM;
  1716. goto out;
  1717. }
  1718. /* Add flex groups. Note that a regular group is a
  1719. * flex group with 1 group.
  1720. */
  1721. while (ext4_setup_next_flex_gd(sb, flex_gd, n_blocks_count,
  1722. flexbg_size)) {
  1723. if (jiffies - last_update_time > HZ * 10) {
  1724. if (last_update_time)
  1725. ext4_msg(sb, KERN_INFO,
  1726. "resized to %llu blocks",
  1727. ext4_blocks_count(es));
  1728. last_update_time = jiffies;
  1729. }
  1730. if (ext4_alloc_group_tables(sb, flex_gd, flexbg_size) != 0)
  1731. break;
  1732. err = ext4_flex_group_add(sb, resize_inode, flex_gd);
  1733. if (unlikely(err))
  1734. break;
  1735. }
  1736. if (!err && n_blocks_count_retry) {
  1737. n_blocks_count = n_blocks_count_retry;
  1738. n_blocks_count_retry = 0;
  1739. free_flex_gd(flex_gd);
  1740. flex_gd = NULL;
  1741. goto retry;
  1742. }
  1743. out:
  1744. if (flex_gd)
  1745. free_flex_gd(flex_gd);
  1746. if (resize_inode != NULL)
  1747. iput(resize_inode);
  1748. ext4_msg(sb, KERN_INFO, "resized filesystem to %llu", n_blocks_count);
  1749. return err;
  1750. }