recovery.c 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521
  1. /*
  2. * This file is part of UBIFS.
  3. *
  4. * Copyright (C) 2006-2008 Nokia Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published by
  8. * the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc., 51
  17. * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. *
  19. * Authors: Adrian Hunter
  20. * Artem Bityutskiy (Битюцкий Артём)
  21. */
  22. /*
  23. * This file implements functions needed to recover from unclean un-mounts.
  24. * When UBIFS is mounted, it checks a flag on the master node to determine if
  25. * an un-mount was completed successfully. If not, the process of mounting
  26. * incorporates additional checking and fixing of on-flash data structures.
  27. * UBIFS always cleans away all remnants of an unclean un-mount, so that
  28. * errors do not accumulate. However UBIFS defers recovery if it is mounted
  29. * read-only, and the flash is not modified in that case.
  30. *
  31. * The general UBIFS approach to the recovery is that it recovers from
  32. * corruptions which could be caused by power cuts, but it refuses to recover
  33. * from corruption caused by other reasons. And UBIFS tries to distinguish
  34. * between these 2 reasons of corruptions and silently recover in the former
  35. * case and loudly complain in the latter case.
  36. *
  37. * UBIFS writes only to erased LEBs, so it writes only to the flash space
  38. * containing only 0xFFs. UBIFS also always writes strictly from the beginning
  39. * of the LEB to the end. And UBIFS assumes that the underlying flash media
  40. * writes in @c->max_write_size bytes at a time.
  41. *
  42. * Hence, if UBIFS finds a corrupted node at offset X, it expects only the min.
  43. * I/O unit corresponding to offset X to contain corrupted data, all the
  44. * following min. I/O units have to contain empty space (all 0xFFs). If this is
  45. * not true, the corruption cannot be the result of a power cut, and UBIFS
  46. * refuses to mount.
  47. */
  48. #include <linux/crc32.h>
  49. #include <linux/slab.h>
  50. #include "ubifs.h"
  51. /**
  52. * is_empty - determine whether a buffer is empty (contains all 0xff).
  53. * @buf: buffer to clean
  54. * @len: length of buffer
  55. *
  56. * This function returns %1 if the buffer is empty (contains all 0xff) otherwise
  57. * %0 is returned.
  58. */
  59. static int is_empty(void *buf, int len)
  60. {
  61. uint8_t *p = buf;
  62. int i;
  63. for (i = 0; i < len; i++)
  64. if (*p++ != 0xff)
  65. return 0;
  66. return 1;
  67. }
  68. /**
  69. * first_non_ff - find offset of the first non-0xff byte.
  70. * @buf: buffer to search in
  71. * @len: length of buffer
  72. *
  73. * This function returns offset of the first non-0xff byte in @buf or %-1 if
  74. * the buffer contains only 0xff bytes.
  75. */
  76. static int first_non_ff(void *buf, int len)
  77. {
  78. uint8_t *p = buf;
  79. int i;
  80. for (i = 0; i < len; i++)
  81. if (*p++ != 0xff)
  82. return i;
  83. return -1;
  84. }
  85. /**
  86. * get_master_node - get the last valid master node allowing for corruption.
  87. * @c: UBIFS file-system description object
  88. * @lnum: LEB number
  89. * @pbuf: buffer containing the LEB read, is returned here
  90. * @mst: master node, if found, is returned here
  91. * @cor: corruption, if found, is returned here
  92. *
  93. * This function allocates a buffer, reads the LEB into it, and finds and
  94. * returns the last valid master node allowing for one area of corruption.
  95. * The corrupt area, if there is one, must be consistent with the assumption
  96. * that it is the result of an unclean unmount while the master node was being
  97. * written. Under those circumstances, it is valid to use the previously written
  98. * master node.
  99. *
  100. * This function returns %0 on success and a negative error code on failure.
  101. */
  102. static int get_master_node(const struct ubifs_info *c, int lnum, void **pbuf,
  103. struct ubifs_mst_node **mst, void **cor)
  104. {
  105. const int sz = c->mst_node_alsz;
  106. int err, offs, len;
  107. void *sbuf, *buf;
  108. sbuf = vmalloc(c->leb_size);
  109. if (!sbuf)
  110. return -ENOMEM;
  111. err = ubi_read(c->ubi, lnum, sbuf, 0, c->leb_size);
  112. if (err && err != -EBADMSG)
  113. goto out_free;
  114. /* Find the first position that is definitely not a node */
  115. offs = 0;
  116. buf = sbuf;
  117. len = c->leb_size;
  118. while (offs + UBIFS_MST_NODE_SZ <= c->leb_size) {
  119. struct ubifs_ch *ch = buf;
  120. if (le32_to_cpu(ch->magic) != UBIFS_NODE_MAGIC)
  121. break;
  122. offs += sz;
  123. buf += sz;
  124. len -= sz;
  125. }
  126. /* See if there was a valid master node before that */
  127. if (offs) {
  128. int ret;
  129. offs -= sz;
  130. buf -= sz;
  131. len += sz;
  132. ret = ubifs_scan_a_node(c, buf, len, lnum, offs, 1);
  133. if (ret != SCANNED_A_NODE && offs) {
  134. /* Could have been corruption so check one place back */
  135. offs -= sz;
  136. buf -= sz;
  137. len += sz;
  138. ret = ubifs_scan_a_node(c, buf, len, lnum, offs, 1);
  139. if (ret != SCANNED_A_NODE)
  140. /*
  141. * We accept only one area of corruption because
  142. * we are assuming that it was caused while
  143. * trying to write a master node.
  144. */
  145. goto out_err;
  146. }
  147. if (ret == SCANNED_A_NODE) {
  148. struct ubifs_ch *ch = buf;
  149. if (ch->node_type != UBIFS_MST_NODE)
  150. goto out_err;
  151. dbg_rcvry("found a master node at %d:%d", lnum, offs);
  152. *mst = buf;
  153. offs += sz;
  154. buf += sz;
  155. len -= sz;
  156. }
  157. }
  158. /* Check for corruption */
  159. if (offs < c->leb_size) {
  160. if (!is_empty(buf, min_t(int, len, sz))) {
  161. *cor = buf;
  162. dbg_rcvry("found corruption at %d:%d", lnum, offs);
  163. }
  164. offs += sz;
  165. buf += sz;
  166. len -= sz;
  167. }
  168. /* Check remaining empty space */
  169. if (offs < c->leb_size)
  170. if (!is_empty(buf, len))
  171. goto out_err;
  172. *pbuf = sbuf;
  173. return 0;
  174. out_err:
  175. err = -EINVAL;
  176. out_free:
  177. vfree(sbuf);
  178. *mst = NULL;
  179. *cor = NULL;
  180. return err;
  181. }
  182. /**
  183. * write_rcvrd_mst_node - write recovered master node.
  184. * @c: UBIFS file-system description object
  185. * @mst: master node
  186. *
  187. * This function returns %0 on success and a negative error code on failure.
  188. */
  189. static int write_rcvrd_mst_node(struct ubifs_info *c,
  190. struct ubifs_mst_node *mst)
  191. {
  192. int err = 0, lnum = UBIFS_MST_LNUM, sz = c->mst_node_alsz;
  193. __le32 save_flags;
  194. dbg_rcvry("recovery");
  195. save_flags = mst->flags;
  196. mst->flags |= cpu_to_le32(UBIFS_MST_RCVRY);
  197. ubifs_prepare_node(c, mst, UBIFS_MST_NODE_SZ, 1);
  198. err = ubi_leb_change(c->ubi, lnum, mst, sz, UBI_SHORTTERM);
  199. if (err)
  200. goto out;
  201. err = ubi_leb_change(c->ubi, lnum + 1, mst, sz, UBI_SHORTTERM);
  202. if (err)
  203. goto out;
  204. out:
  205. mst->flags = save_flags;
  206. return err;
  207. }
  208. /**
  209. * ubifs_recover_master_node - recover the master node.
  210. * @c: UBIFS file-system description object
  211. *
  212. * This function recovers the master node from corruption that may occur due to
  213. * an unclean unmount.
  214. *
  215. * This function returns %0 on success and a negative error code on failure.
  216. */
  217. int ubifs_recover_master_node(struct ubifs_info *c)
  218. {
  219. void *buf1 = NULL, *buf2 = NULL, *cor1 = NULL, *cor2 = NULL;
  220. struct ubifs_mst_node *mst1 = NULL, *mst2 = NULL, *mst;
  221. const int sz = c->mst_node_alsz;
  222. int err, offs1, offs2;
  223. dbg_rcvry("recovery");
  224. err = get_master_node(c, UBIFS_MST_LNUM, &buf1, &mst1, &cor1);
  225. if (err)
  226. goto out_free;
  227. err = get_master_node(c, UBIFS_MST_LNUM + 1, &buf2, &mst2, &cor2);
  228. if (err)
  229. goto out_free;
  230. if (mst1) {
  231. offs1 = (void *)mst1 - buf1;
  232. if ((le32_to_cpu(mst1->flags) & UBIFS_MST_RCVRY) &&
  233. (offs1 == 0 && !cor1)) {
  234. /*
  235. * mst1 was written by recovery at offset 0 with no
  236. * corruption.
  237. */
  238. dbg_rcvry("recovery recovery");
  239. mst = mst1;
  240. } else if (mst2) {
  241. offs2 = (void *)mst2 - buf2;
  242. if (offs1 == offs2) {
  243. /* Same offset, so must be the same */
  244. if (memcmp((void *)mst1 + UBIFS_CH_SZ,
  245. (void *)mst2 + UBIFS_CH_SZ,
  246. UBIFS_MST_NODE_SZ - UBIFS_CH_SZ))
  247. goto out_err;
  248. mst = mst1;
  249. } else if (offs2 + sz == offs1) {
  250. /* 1st LEB was written, 2nd was not */
  251. if (cor1)
  252. goto out_err;
  253. mst = mst1;
  254. } else if (offs1 == 0 && offs2 + sz >= c->leb_size) {
  255. /* 1st LEB was unmapped and written, 2nd not */
  256. if (cor1)
  257. goto out_err;
  258. mst = mst1;
  259. } else
  260. goto out_err;
  261. } else {
  262. /*
  263. * 2nd LEB was unmapped and about to be written, so
  264. * there must be only one master node in the first LEB
  265. * and no corruption.
  266. */
  267. if (offs1 != 0 || cor1)
  268. goto out_err;
  269. mst = mst1;
  270. }
  271. } else {
  272. if (!mst2)
  273. goto out_err;
  274. /*
  275. * 1st LEB was unmapped and about to be written, so there must
  276. * be no room left in 2nd LEB.
  277. */
  278. offs2 = (void *)mst2 - buf2;
  279. if (offs2 + sz + sz <= c->leb_size)
  280. goto out_err;
  281. mst = mst2;
  282. }
  283. ubifs_msg("recovered master node from LEB %d",
  284. (mst == mst1 ? UBIFS_MST_LNUM : UBIFS_MST_LNUM + 1));
  285. memcpy(c->mst_node, mst, UBIFS_MST_NODE_SZ);
  286. if (c->ro_mount) {
  287. /* Read-only mode. Keep a copy for switching to rw mode */
  288. c->rcvrd_mst_node = kmalloc(sz, GFP_KERNEL);
  289. if (!c->rcvrd_mst_node) {
  290. err = -ENOMEM;
  291. goto out_free;
  292. }
  293. memcpy(c->rcvrd_mst_node, c->mst_node, UBIFS_MST_NODE_SZ);
  294. /*
  295. * We had to recover the master node, which means there was an
  296. * unclean reboot. However, it is possible that the master node
  297. * is clean at this point, i.e., %UBIFS_MST_DIRTY is not set.
  298. * E.g., consider the following chain of events:
  299. *
  300. * 1. UBIFS was cleanly unmounted, so the master node is clean
  301. * 2. UBIFS is being mounted R/W and starts changing the master
  302. * node in the first (%UBIFS_MST_LNUM). A power cut happens,
  303. * so this LEB ends up with some amount of garbage at the
  304. * end.
  305. * 3. UBIFS is being mounted R/O. We reach this place and
  306. * recover the master node from the second LEB
  307. * (%UBIFS_MST_LNUM + 1). But we cannot update the media
  308. * because we are being mounted R/O. We have to defer the
  309. * operation.
  310. * 4. However, this master node (@c->mst_node) is marked as
  311. * clean (since the step 1). And if we just return, the
  312. * mount code will be confused and won't recover the master
  313. * node when it is re-mounter R/W later.
  314. *
  315. * Thus, to force the recovery by marking the master node as
  316. * dirty.
  317. */
  318. c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY);
  319. } else {
  320. /* Write the recovered master node */
  321. c->max_sqnum = le64_to_cpu(mst->ch.sqnum) - 1;
  322. err = write_rcvrd_mst_node(c, c->mst_node);
  323. if (err)
  324. goto out_free;
  325. }
  326. vfree(buf2);
  327. vfree(buf1);
  328. return 0;
  329. out_err:
  330. err = -EINVAL;
  331. out_free:
  332. ubifs_err("failed to recover master node");
  333. if (mst1) {
  334. dbg_err("dumping first master node");
  335. dbg_dump_node(c, mst1);
  336. }
  337. if (mst2) {
  338. dbg_err("dumping second master node");
  339. dbg_dump_node(c, mst2);
  340. }
  341. vfree(buf2);
  342. vfree(buf1);
  343. return err;
  344. }
  345. /**
  346. * ubifs_write_rcvrd_mst_node - write the recovered master node.
  347. * @c: UBIFS file-system description object
  348. *
  349. * This function writes the master node that was recovered during mounting in
  350. * read-only mode and must now be written because we are remounting rw.
  351. *
  352. * This function returns %0 on success and a negative error code on failure.
  353. */
  354. int ubifs_write_rcvrd_mst_node(struct ubifs_info *c)
  355. {
  356. int err;
  357. if (!c->rcvrd_mst_node)
  358. return 0;
  359. c->rcvrd_mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY);
  360. c->mst_node->flags |= cpu_to_le32(UBIFS_MST_DIRTY);
  361. err = write_rcvrd_mst_node(c, c->rcvrd_mst_node);
  362. if (err)
  363. return err;
  364. kfree(c->rcvrd_mst_node);
  365. c->rcvrd_mst_node = NULL;
  366. return 0;
  367. }
  368. /**
  369. * is_last_write - determine if an offset was in the last write to a LEB.
  370. * @c: UBIFS file-system description object
  371. * @buf: buffer to check
  372. * @offs: offset to check
  373. *
  374. * This function returns %1 if @offs was in the last write to the LEB whose data
  375. * is in @buf, otherwise %0 is returned. The determination is made by checking
  376. * for subsequent empty space starting from the next @c->max_write_size
  377. * boundary.
  378. */
  379. static int is_last_write(const struct ubifs_info *c, void *buf, int offs)
  380. {
  381. int empty_offs, check_len;
  382. uint8_t *p;
  383. /*
  384. * Round up to the next @c->max_write_size boundary i.e. @offs is in
  385. * the last wbuf written. After that should be empty space.
  386. */
  387. empty_offs = ALIGN(offs + 1, c->max_write_size);
  388. check_len = c->leb_size - empty_offs;
  389. p = buf + empty_offs - offs;
  390. return is_empty(p, check_len);
  391. }
  392. /**
  393. * clean_buf - clean the data from an LEB sitting in a buffer.
  394. * @c: UBIFS file-system description object
  395. * @buf: buffer to clean
  396. * @lnum: LEB number to clean
  397. * @offs: offset from which to clean
  398. * @len: length of buffer
  399. *
  400. * This function pads up to the next min_io_size boundary (if there is one) and
  401. * sets empty space to all 0xff. @buf, @offs and @len are updated to the next
  402. * @c->min_io_size boundary.
  403. */
  404. static void clean_buf(const struct ubifs_info *c, void **buf, int lnum,
  405. int *offs, int *len)
  406. {
  407. int empty_offs, pad_len;
  408. lnum = lnum;
  409. dbg_rcvry("cleaning corruption at %d:%d", lnum, *offs);
  410. ubifs_assert(!(*offs & 7));
  411. empty_offs = ALIGN(*offs, c->min_io_size);
  412. pad_len = empty_offs - *offs;
  413. ubifs_pad(c, *buf, pad_len);
  414. *offs += pad_len;
  415. *buf += pad_len;
  416. *len -= pad_len;
  417. memset(*buf, 0xff, c->leb_size - empty_offs);
  418. }
  419. /**
  420. * no_more_nodes - determine if there are no more nodes in a buffer.
  421. * @c: UBIFS file-system description object
  422. * @buf: buffer to check
  423. * @len: length of buffer
  424. * @lnum: LEB number of the LEB from which @buf was read
  425. * @offs: offset from which @buf was read
  426. *
  427. * This function ensures that the corrupted node at @offs is the last thing
  428. * written to a LEB. This function returns %1 if more data is not found and
  429. * %0 if more data is found.
  430. */
  431. static int no_more_nodes(const struct ubifs_info *c, void *buf, int len,
  432. int lnum, int offs)
  433. {
  434. struct ubifs_ch *ch = buf;
  435. int skip, dlen = le32_to_cpu(ch->len);
  436. /* Check for empty space after the corrupt node's common header */
  437. skip = ALIGN(offs + UBIFS_CH_SZ, c->max_write_size) - offs;
  438. if (is_empty(buf + skip, len - skip))
  439. return 1;
  440. /*
  441. * The area after the common header size is not empty, so the common
  442. * header must be intact. Check it.
  443. */
  444. if (ubifs_check_node(c, buf, lnum, offs, 1, 0) != -EUCLEAN) {
  445. dbg_rcvry("unexpected bad common header at %d:%d", lnum, offs);
  446. return 0;
  447. }
  448. /* Now we know the corrupt node's length we can skip over it */
  449. skip = ALIGN(offs + dlen, c->max_write_size) - offs;
  450. /* After which there should be empty space */
  451. if (is_empty(buf + skip, len - skip))
  452. return 1;
  453. dbg_rcvry("unexpected data at %d:%d", lnum, offs + skip);
  454. return 0;
  455. }
  456. /**
  457. * fix_unclean_leb - fix an unclean LEB.
  458. * @c: UBIFS file-system description object
  459. * @sleb: scanned LEB information
  460. * @start: offset where scan started
  461. */
  462. static int fix_unclean_leb(struct ubifs_info *c, struct ubifs_scan_leb *sleb,
  463. int start)
  464. {
  465. int lnum = sleb->lnum, endpt = start;
  466. /* Get the end offset of the last node we are keeping */
  467. if (!list_empty(&sleb->nodes)) {
  468. struct ubifs_scan_node *snod;
  469. snod = list_entry(sleb->nodes.prev,
  470. struct ubifs_scan_node, list);
  471. endpt = snod->offs + snod->len;
  472. }
  473. if (c->ro_mount && !c->remounting_rw) {
  474. /* Add to recovery list */
  475. struct ubifs_unclean_leb *ucleb;
  476. dbg_rcvry("need to fix LEB %d start %d endpt %d",
  477. lnum, start, sleb->endpt);
  478. ucleb = kzalloc(sizeof(struct ubifs_unclean_leb), GFP_NOFS);
  479. if (!ucleb)
  480. return -ENOMEM;
  481. ucleb->lnum = lnum;
  482. ucleb->endpt = endpt;
  483. list_add_tail(&ucleb->list, &c->unclean_leb_list);
  484. } else {
  485. /* Write the fixed LEB back to flash */
  486. int err;
  487. dbg_rcvry("fixing LEB %d start %d endpt %d",
  488. lnum, start, sleb->endpt);
  489. if (endpt == 0) {
  490. err = ubifs_leb_unmap(c, lnum);
  491. if (err)
  492. return err;
  493. } else {
  494. int len = ALIGN(endpt, c->min_io_size);
  495. if (start) {
  496. err = ubi_read(c->ubi, lnum, sleb->buf, 0,
  497. start);
  498. if (err)
  499. return err;
  500. }
  501. /* Pad to min_io_size */
  502. if (len > endpt) {
  503. int pad_len = len - ALIGN(endpt, 8);
  504. if (pad_len > 0) {
  505. void *buf = sleb->buf + len - pad_len;
  506. ubifs_pad(c, buf, pad_len);
  507. }
  508. }
  509. err = ubi_leb_change(c->ubi, lnum, sleb->buf, len,
  510. UBI_UNKNOWN);
  511. if (err)
  512. return err;
  513. }
  514. }
  515. return 0;
  516. }
  517. /**
  518. * drop_incomplete_group - drop nodes from an incomplete group.
  519. * @sleb: scanned LEB information
  520. * @offs: offset of dropped nodes is returned here
  521. *
  522. * This function returns %1 if nodes are dropped and %0 otherwise.
  523. */
  524. static int drop_incomplete_group(struct ubifs_scan_leb *sleb, int *offs)
  525. {
  526. int dropped = 0;
  527. while (!list_empty(&sleb->nodes)) {
  528. struct ubifs_scan_node *snod;
  529. struct ubifs_ch *ch;
  530. snod = list_entry(sleb->nodes.prev, struct ubifs_scan_node,
  531. list);
  532. ch = snod->node;
  533. if (ch->group_type != UBIFS_IN_NODE_GROUP)
  534. return dropped;
  535. dbg_rcvry("dropping node at %d:%d", sleb->lnum, snod->offs);
  536. *offs = snod->offs;
  537. list_del(&snod->list);
  538. kfree(snod);
  539. sleb->nodes_cnt -= 1;
  540. dropped = 1;
  541. }
  542. return dropped;
  543. }
  544. /**
  545. * ubifs_recover_leb - scan and recover a LEB.
  546. * @c: UBIFS file-system description object
  547. * @lnum: LEB number
  548. * @offs: offset
  549. * @sbuf: LEB-sized buffer to use
  550. * @grouped: nodes may be grouped for recovery
  551. *
  552. * This function does a scan of a LEB, but caters for errors that might have
  553. * been caused by the unclean unmount from which we are attempting to recover.
  554. * Returns %0 in case of success, %-EUCLEAN if an unrecoverable corruption is
  555. * found, and a negative error code in case of failure.
  556. */
  557. struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum,
  558. int offs, void *sbuf, int grouped)
  559. {
  560. int err, len = c->leb_size - offs, need_clean = 0, quiet = 1;
  561. int empty_chkd = 0, start = offs;
  562. struct ubifs_scan_leb *sleb;
  563. void *buf = sbuf + offs;
  564. dbg_rcvry("%d:%d", lnum, offs);
  565. sleb = ubifs_start_scan(c, lnum, offs, sbuf);
  566. if (IS_ERR(sleb))
  567. return sleb;
  568. if (sleb->ecc)
  569. need_clean = 1;
  570. while (len >= 8) {
  571. int ret;
  572. dbg_scan("look at LEB %d:%d (%d bytes left)",
  573. lnum, offs, len);
  574. cond_resched();
  575. /*
  576. * Scan quietly until there is an error from which we cannot
  577. * recover
  578. */
  579. ret = ubifs_scan_a_node(c, buf, len, lnum, offs, quiet);
  580. if (ret == SCANNED_A_NODE) {
  581. /* A valid node, and not a padding node */
  582. struct ubifs_ch *ch = buf;
  583. int node_len;
  584. err = ubifs_add_snod(c, sleb, buf, offs);
  585. if (err)
  586. goto error;
  587. node_len = ALIGN(le32_to_cpu(ch->len), 8);
  588. offs += node_len;
  589. buf += node_len;
  590. len -= node_len;
  591. continue;
  592. }
  593. if (ret > 0) {
  594. /* Padding bytes or a valid padding node */
  595. offs += ret;
  596. buf += ret;
  597. len -= ret;
  598. continue;
  599. }
  600. if (ret == SCANNED_EMPTY_SPACE) {
  601. if (!is_empty(buf, len)) {
  602. if (!is_last_write(c, buf, offs))
  603. break;
  604. clean_buf(c, &buf, lnum, &offs, &len);
  605. need_clean = 1;
  606. }
  607. empty_chkd = 1;
  608. break;
  609. }
  610. if (ret == SCANNED_GARBAGE || ret == SCANNED_A_BAD_PAD_NODE)
  611. if (is_last_write(c, buf, offs)) {
  612. clean_buf(c, &buf, lnum, &offs, &len);
  613. need_clean = 1;
  614. empty_chkd = 1;
  615. break;
  616. }
  617. if (ret == SCANNED_A_CORRUPT_NODE)
  618. if (no_more_nodes(c, buf, len, lnum, offs)) {
  619. clean_buf(c, &buf, lnum, &offs, &len);
  620. need_clean = 1;
  621. empty_chkd = 1;
  622. break;
  623. }
  624. if (quiet) {
  625. /* Redo the last scan but noisily */
  626. quiet = 0;
  627. continue;
  628. }
  629. switch (ret) {
  630. case SCANNED_GARBAGE:
  631. dbg_err("garbage");
  632. goto corrupted;
  633. case SCANNED_A_CORRUPT_NODE:
  634. case SCANNED_A_BAD_PAD_NODE:
  635. dbg_err("bad node");
  636. goto corrupted;
  637. default:
  638. dbg_err("unknown");
  639. err = -EINVAL;
  640. goto error;
  641. }
  642. }
  643. if (!empty_chkd && !is_empty(buf, len)) {
  644. if (is_last_write(c, buf, offs)) {
  645. clean_buf(c, &buf, lnum, &offs, &len);
  646. need_clean = 1;
  647. } else {
  648. int corruption = first_non_ff(buf, len);
  649. /*
  650. * See header comment for this file for more
  651. * explanations about the reasons we have this check.
  652. */
  653. ubifs_err("corrupt empty space LEB %d:%d, corruption "
  654. "starts at %d", lnum, offs, corruption);
  655. /* Make sure we dump interesting non-0xFF data */
  656. offs += corruption;
  657. buf += corruption;
  658. goto corrupted;
  659. }
  660. }
  661. /* Drop nodes from incomplete group */
  662. if (grouped && drop_incomplete_group(sleb, &offs)) {
  663. buf = sbuf + offs;
  664. len = c->leb_size - offs;
  665. clean_buf(c, &buf, lnum, &offs, &len);
  666. need_clean = 1;
  667. }
  668. if (offs % c->min_io_size) {
  669. clean_buf(c, &buf, lnum, &offs, &len);
  670. need_clean = 1;
  671. }
  672. ubifs_end_scan(c, sleb, lnum, offs);
  673. if (need_clean) {
  674. err = fix_unclean_leb(c, sleb, start);
  675. if (err)
  676. goto error;
  677. }
  678. return sleb;
  679. corrupted:
  680. ubifs_scanned_corruption(c, lnum, offs, buf);
  681. err = -EUCLEAN;
  682. error:
  683. ubifs_err("LEB %d scanning failed", lnum);
  684. ubifs_scan_destroy(sleb);
  685. return ERR_PTR(err);
  686. }
  687. /**
  688. * get_cs_sqnum - get commit start sequence number.
  689. * @c: UBIFS file-system description object
  690. * @lnum: LEB number of commit start node
  691. * @offs: offset of commit start node
  692. * @cs_sqnum: commit start sequence number is returned here
  693. *
  694. * This function returns %0 on success and a negative error code on failure.
  695. */
  696. static int get_cs_sqnum(struct ubifs_info *c, int lnum, int offs,
  697. unsigned long long *cs_sqnum)
  698. {
  699. struct ubifs_cs_node *cs_node = NULL;
  700. int err, ret;
  701. dbg_rcvry("at %d:%d", lnum, offs);
  702. cs_node = kmalloc(UBIFS_CS_NODE_SZ, GFP_KERNEL);
  703. if (!cs_node)
  704. return -ENOMEM;
  705. if (c->leb_size - offs < UBIFS_CS_NODE_SZ)
  706. goto out_err;
  707. err = ubi_read(c->ubi, lnum, (void *)cs_node, offs, UBIFS_CS_NODE_SZ);
  708. if (err && err != -EBADMSG)
  709. goto out_free;
  710. ret = ubifs_scan_a_node(c, cs_node, UBIFS_CS_NODE_SZ, lnum, offs, 0);
  711. if (ret != SCANNED_A_NODE) {
  712. dbg_err("Not a valid node");
  713. goto out_err;
  714. }
  715. if (cs_node->ch.node_type != UBIFS_CS_NODE) {
  716. dbg_err("Node a CS node, type is %d", cs_node->ch.node_type);
  717. goto out_err;
  718. }
  719. if (le64_to_cpu(cs_node->cmt_no) != c->cmt_no) {
  720. dbg_err("CS node cmt_no %llu != current cmt_no %llu",
  721. (unsigned long long)le64_to_cpu(cs_node->cmt_no),
  722. c->cmt_no);
  723. goto out_err;
  724. }
  725. *cs_sqnum = le64_to_cpu(cs_node->ch.sqnum);
  726. dbg_rcvry("commit start sqnum %llu", *cs_sqnum);
  727. kfree(cs_node);
  728. return 0;
  729. out_err:
  730. err = -EINVAL;
  731. out_free:
  732. ubifs_err("failed to get CS sqnum");
  733. kfree(cs_node);
  734. return err;
  735. }
  736. /**
  737. * ubifs_recover_log_leb - scan and recover a log LEB.
  738. * @c: UBIFS file-system description object
  739. * @lnum: LEB number
  740. * @offs: offset
  741. * @sbuf: LEB-sized buffer to use
  742. *
  743. * This function does a scan of a LEB, but caters for errors that might have
  744. * been caused by unclean reboots from which we are attempting to recover
  745. * (assume that only the last log LEB can be corrupted by an unclean reboot).
  746. *
  747. * This function returns %0 on success and a negative error code on failure.
  748. */
  749. struct ubifs_scan_leb *ubifs_recover_log_leb(struct ubifs_info *c, int lnum,
  750. int offs, void *sbuf)
  751. {
  752. struct ubifs_scan_leb *sleb;
  753. int next_lnum;
  754. dbg_rcvry("LEB %d", lnum);
  755. next_lnum = lnum + 1;
  756. if (next_lnum >= UBIFS_LOG_LNUM + c->log_lebs)
  757. next_lnum = UBIFS_LOG_LNUM;
  758. if (next_lnum != c->ltail_lnum) {
  759. /*
  760. * We can only recover at the end of the log, so check that the
  761. * next log LEB is empty or out of date.
  762. */
  763. sleb = ubifs_scan(c, next_lnum, 0, sbuf, 0);
  764. if (IS_ERR(sleb))
  765. return sleb;
  766. if (sleb->nodes_cnt) {
  767. struct ubifs_scan_node *snod;
  768. unsigned long long cs_sqnum = c->cs_sqnum;
  769. snod = list_entry(sleb->nodes.next,
  770. struct ubifs_scan_node, list);
  771. if (cs_sqnum == 0) {
  772. int err;
  773. err = get_cs_sqnum(c, lnum, offs, &cs_sqnum);
  774. if (err) {
  775. ubifs_scan_destroy(sleb);
  776. return ERR_PTR(err);
  777. }
  778. }
  779. if (snod->sqnum > cs_sqnum) {
  780. ubifs_err("unrecoverable log corruption "
  781. "in LEB %d", lnum);
  782. ubifs_scan_destroy(sleb);
  783. return ERR_PTR(-EUCLEAN);
  784. }
  785. }
  786. ubifs_scan_destroy(sleb);
  787. }
  788. return ubifs_recover_leb(c, lnum, offs, sbuf, 0);
  789. }
  790. /**
  791. * recover_head - recover a head.
  792. * @c: UBIFS file-system description object
  793. * @lnum: LEB number of head to recover
  794. * @offs: offset of head to recover
  795. * @sbuf: LEB-sized buffer to use
  796. *
  797. * This function ensures that there is no data on the flash at a head location.
  798. *
  799. * This function returns %0 on success and a negative error code on failure.
  800. */
  801. static int recover_head(const struct ubifs_info *c, int lnum, int offs,
  802. void *sbuf)
  803. {
  804. int len = c->max_write_size, err;
  805. if (offs + len > c->leb_size)
  806. len = c->leb_size - offs;
  807. if (!len)
  808. return 0;
  809. /* Read at the head location and check it is empty flash */
  810. err = ubi_read(c->ubi, lnum, sbuf, offs, len);
  811. if (err || !is_empty(sbuf, len)) {
  812. dbg_rcvry("cleaning head at %d:%d", lnum, offs);
  813. if (offs == 0)
  814. return ubifs_leb_unmap(c, lnum);
  815. err = ubi_read(c->ubi, lnum, sbuf, 0, offs);
  816. if (err)
  817. return err;
  818. return ubi_leb_change(c->ubi, lnum, sbuf, offs, UBI_UNKNOWN);
  819. }
  820. return 0;
  821. }
  822. /**
  823. * ubifs_recover_inl_heads - recover index and LPT heads.
  824. * @c: UBIFS file-system description object
  825. * @sbuf: LEB-sized buffer to use
  826. *
  827. * This function ensures that there is no data on the flash at the index and
  828. * LPT head locations.
  829. *
  830. * This deals with the recovery of a half-completed journal commit. UBIFS is
  831. * careful never to overwrite the last version of the index or the LPT. Because
  832. * the index and LPT are wandering trees, data from a half-completed commit will
  833. * not be referenced anywhere in UBIFS. The data will be either in LEBs that are
  834. * assumed to be empty and will be unmapped anyway before use, or in the index
  835. * and LPT heads.
  836. *
  837. * This function returns %0 on success and a negative error code on failure.
  838. */
  839. int ubifs_recover_inl_heads(const struct ubifs_info *c, void *sbuf)
  840. {
  841. int err;
  842. ubifs_assert(!c->ro_mount || c->remounting_rw);
  843. dbg_rcvry("checking index head at %d:%d", c->ihead_lnum, c->ihead_offs);
  844. err = recover_head(c, c->ihead_lnum, c->ihead_offs, sbuf);
  845. if (err)
  846. return err;
  847. dbg_rcvry("checking LPT head at %d:%d", c->nhead_lnum, c->nhead_offs);
  848. err = recover_head(c, c->nhead_lnum, c->nhead_offs, sbuf);
  849. if (err)
  850. return err;
  851. return 0;
  852. }
  853. /**
  854. * clean_an_unclean_leb - read and write a LEB to remove corruption.
  855. * @c: UBIFS file-system description object
  856. * @ucleb: unclean LEB information
  857. * @sbuf: LEB-sized buffer to use
  858. *
  859. * This function reads a LEB up to a point pre-determined by the mount recovery,
  860. * checks the nodes, and writes the result back to the flash, thereby cleaning
  861. * off any following corruption, or non-fatal ECC errors.
  862. *
  863. * This function returns %0 on success and a negative error code on failure.
  864. */
  865. static int clean_an_unclean_leb(const struct ubifs_info *c,
  866. struct ubifs_unclean_leb *ucleb, void *sbuf)
  867. {
  868. int err, lnum = ucleb->lnum, offs = 0, len = ucleb->endpt, quiet = 1;
  869. void *buf = sbuf;
  870. dbg_rcvry("LEB %d len %d", lnum, len);
  871. if (len == 0) {
  872. /* Nothing to read, just unmap it */
  873. err = ubifs_leb_unmap(c, lnum);
  874. if (err)
  875. return err;
  876. return 0;
  877. }
  878. err = ubi_read(c->ubi, lnum, buf, offs, len);
  879. if (err && err != -EBADMSG)
  880. return err;
  881. while (len >= 8) {
  882. int ret;
  883. cond_resched();
  884. /* Scan quietly until there is an error */
  885. ret = ubifs_scan_a_node(c, buf, len, lnum, offs, quiet);
  886. if (ret == SCANNED_A_NODE) {
  887. /* A valid node, and not a padding node */
  888. struct ubifs_ch *ch = buf;
  889. int node_len;
  890. node_len = ALIGN(le32_to_cpu(ch->len), 8);
  891. offs += node_len;
  892. buf += node_len;
  893. len -= node_len;
  894. continue;
  895. }
  896. if (ret > 0) {
  897. /* Padding bytes or a valid padding node */
  898. offs += ret;
  899. buf += ret;
  900. len -= ret;
  901. continue;
  902. }
  903. if (ret == SCANNED_EMPTY_SPACE) {
  904. ubifs_err("unexpected empty space at %d:%d",
  905. lnum, offs);
  906. return -EUCLEAN;
  907. }
  908. if (quiet) {
  909. /* Redo the last scan but noisily */
  910. quiet = 0;
  911. continue;
  912. }
  913. ubifs_scanned_corruption(c, lnum, offs, buf);
  914. return -EUCLEAN;
  915. }
  916. /* Pad to min_io_size */
  917. len = ALIGN(ucleb->endpt, c->min_io_size);
  918. if (len > ucleb->endpt) {
  919. int pad_len = len - ALIGN(ucleb->endpt, 8);
  920. if (pad_len > 0) {
  921. buf = c->sbuf + len - pad_len;
  922. ubifs_pad(c, buf, pad_len);
  923. }
  924. }
  925. /* Write back the LEB atomically */
  926. err = ubi_leb_change(c->ubi, lnum, sbuf, len, UBI_UNKNOWN);
  927. if (err)
  928. return err;
  929. dbg_rcvry("cleaned LEB %d", lnum);
  930. return 0;
  931. }
  932. /**
  933. * ubifs_clean_lebs - clean LEBs recovered during read-only mount.
  934. * @c: UBIFS file-system description object
  935. * @sbuf: LEB-sized buffer to use
  936. *
  937. * This function cleans a LEB identified during recovery that needs to be
  938. * written but was not because UBIFS was mounted read-only. This happens when
  939. * remounting to read-write mode.
  940. *
  941. * This function returns %0 on success and a negative error code on failure.
  942. */
  943. int ubifs_clean_lebs(const struct ubifs_info *c, void *sbuf)
  944. {
  945. dbg_rcvry("recovery");
  946. while (!list_empty(&c->unclean_leb_list)) {
  947. struct ubifs_unclean_leb *ucleb;
  948. int err;
  949. ucleb = list_entry(c->unclean_leb_list.next,
  950. struct ubifs_unclean_leb, list);
  951. err = clean_an_unclean_leb(c, ucleb, sbuf);
  952. if (err)
  953. return err;
  954. list_del(&ucleb->list);
  955. kfree(ucleb);
  956. }
  957. return 0;
  958. }
  959. /**
  960. * grab_empty_leb - grab an empty LEB to use as GC LEB and run commit.
  961. * @c: UBIFS file-system description object
  962. *
  963. * This is a helper function for 'ubifs_rcvry_gc_commit()' which grabs an empty
  964. * LEB to be used as GC LEB (@c->gc_lnum), and then runs the commit. Returns
  965. * zero in case of success and a negative error code in case of failure.
  966. */
  967. static int grab_empty_leb(struct ubifs_info *c)
  968. {
  969. int lnum, err;
  970. /*
  971. * Note, it is very important to first search for an empty LEB and then
  972. * run the commit, not vice-versa. The reason is that there might be
  973. * only one empty LEB at the moment, the one which has been the
  974. * @c->gc_lnum just before the power cut happened. During the regular
  975. * UBIFS operation (not now) @c->gc_lnum is marked as "taken", so no
  976. * one but GC can grab it. But at this moment this single empty LEB is
  977. * not marked as taken, so if we run commit - what happens? Right, the
  978. * commit will grab it and write the index there. Remember that the
  979. * index always expands as long as there is free space, and it only
  980. * starts consolidating when we run out of space.
  981. *
  982. * IOW, if we run commit now, we might not be able to find a free LEB
  983. * after this.
  984. */
  985. lnum = ubifs_find_free_leb_for_idx(c);
  986. if (lnum < 0) {
  987. dbg_err("could not find an empty LEB");
  988. dbg_dump_lprops(c);
  989. dbg_dump_budg(c, &c->bi);
  990. return lnum;
  991. }
  992. /* Reset the index flag */
  993. err = ubifs_change_one_lp(c, lnum, LPROPS_NC, LPROPS_NC, 0,
  994. LPROPS_INDEX, 0);
  995. if (err)
  996. return err;
  997. c->gc_lnum = lnum;
  998. dbg_rcvry("found empty LEB %d, run commit", lnum);
  999. return ubifs_run_commit(c);
  1000. }
  1001. /**
  1002. * ubifs_rcvry_gc_commit - recover the GC LEB number and run the commit.
  1003. * @c: UBIFS file-system description object
  1004. *
  1005. * Out-of-place garbage collection requires always one empty LEB with which to
  1006. * start garbage collection. The LEB number is recorded in c->gc_lnum and is
  1007. * written to the master node on unmounting. In the case of an unclean unmount
  1008. * the value of gc_lnum recorded in the master node is out of date and cannot
  1009. * be used. Instead, recovery must allocate an empty LEB for this purpose.
  1010. * However, there may not be enough empty space, in which case it must be
  1011. * possible to GC the dirtiest LEB into the GC head LEB.
  1012. *
  1013. * This function also runs the commit which causes the TNC updates from
  1014. * size-recovery and orphans to be written to the flash. That is important to
  1015. * ensure correct replay order for subsequent mounts.
  1016. *
  1017. * This function returns %0 on success and a negative error code on failure.
  1018. */
  1019. int ubifs_rcvry_gc_commit(struct ubifs_info *c)
  1020. {
  1021. struct ubifs_wbuf *wbuf = &c->jheads[GCHD].wbuf;
  1022. struct ubifs_lprops lp;
  1023. int err;
  1024. c->gc_lnum = -1;
  1025. if (wbuf->lnum == -1 || wbuf->offs == c->leb_size) {
  1026. dbg_rcvry("no GC head: wbuf->lnum %d, wbuf->offs %d",
  1027. wbuf->lnum, wbuf->offs);
  1028. return grab_empty_leb(c);
  1029. }
  1030. err = ubifs_find_dirty_leb(c, &lp, wbuf->offs, 2);
  1031. if (err) {
  1032. if (err != -ENOSPC)
  1033. return err;
  1034. dbg_rcvry("could not find a dirty LEB");
  1035. return grab_empty_leb(c);
  1036. }
  1037. ubifs_assert(!(lp.flags & LPROPS_INDEX));
  1038. ubifs_assert(lp.free + lp.dirty >= wbuf->offs);
  1039. /*
  1040. * We run the commit before garbage collection otherwise subsequent
  1041. * mounts will see the GC and orphan deletion in a different order.
  1042. */
  1043. dbg_rcvry("committing");
  1044. err = ubifs_run_commit(c);
  1045. if (err)
  1046. return err;
  1047. dbg_rcvry("GC'ing LEB %d", lp.lnum);
  1048. mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
  1049. err = ubifs_garbage_collect_leb(c, &lp);
  1050. if (err >= 0) {
  1051. int err2 = ubifs_wbuf_sync_nolock(wbuf);
  1052. if (err2)
  1053. err = err2;
  1054. }
  1055. mutex_unlock(&wbuf->io_mutex);
  1056. if (err < 0) {
  1057. dbg_err("GC failed, error %d", err);
  1058. if (err == -EAGAIN)
  1059. err = -EINVAL;
  1060. return err;
  1061. }
  1062. ubifs_assert(err == LEB_RETAINED);
  1063. if (err != LEB_RETAINED)
  1064. return -EINVAL;
  1065. err = ubifs_leb_unmap(c, c->gc_lnum);
  1066. if (err)
  1067. return err;
  1068. dbg_rcvry("allocated LEB %d for GC", lp.lnum);
  1069. return 0;
  1070. }
  1071. /**
  1072. * struct size_entry - inode size information for recovery.
  1073. * @rb: link in the RB-tree of sizes
  1074. * @inum: inode number
  1075. * @i_size: size on inode
  1076. * @d_size: maximum size based on data nodes
  1077. * @exists: indicates whether the inode exists
  1078. * @inode: inode if pinned in memory awaiting rw mode to fix it
  1079. */
  1080. struct size_entry {
  1081. struct rb_node rb;
  1082. ino_t inum;
  1083. loff_t i_size;
  1084. loff_t d_size;
  1085. int exists;
  1086. struct inode *inode;
  1087. };
  1088. /**
  1089. * add_ino - add an entry to the size tree.
  1090. * @c: UBIFS file-system description object
  1091. * @inum: inode number
  1092. * @i_size: size on inode
  1093. * @d_size: maximum size based on data nodes
  1094. * @exists: indicates whether the inode exists
  1095. */
  1096. static int add_ino(struct ubifs_info *c, ino_t inum, loff_t i_size,
  1097. loff_t d_size, int exists)
  1098. {
  1099. struct rb_node **p = &c->size_tree.rb_node, *parent = NULL;
  1100. struct size_entry *e;
  1101. while (*p) {
  1102. parent = *p;
  1103. e = rb_entry(parent, struct size_entry, rb);
  1104. if (inum < e->inum)
  1105. p = &(*p)->rb_left;
  1106. else
  1107. p = &(*p)->rb_right;
  1108. }
  1109. e = kzalloc(sizeof(struct size_entry), GFP_KERNEL);
  1110. if (!e)
  1111. return -ENOMEM;
  1112. e->inum = inum;
  1113. e->i_size = i_size;
  1114. e->d_size = d_size;
  1115. e->exists = exists;
  1116. rb_link_node(&e->rb, parent, p);
  1117. rb_insert_color(&e->rb, &c->size_tree);
  1118. return 0;
  1119. }
  1120. /**
  1121. * find_ino - find an entry on the size tree.
  1122. * @c: UBIFS file-system description object
  1123. * @inum: inode number
  1124. */
  1125. static struct size_entry *find_ino(struct ubifs_info *c, ino_t inum)
  1126. {
  1127. struct rb_node *p = c->size_tree.rb_node;
  1128. struct size_entry *e;
  1129. while (p) {
  1130. e = rb_entry(p, struct size_entry, rb);
  1131. if (inum < e->inum)
  1132. p = p->rb_left;
  1133. else if (inum > e->inum)
  1134. p = p->rb_right;
  1135. else
  1136. return e;
  1137. }
  1138. return NULL;
  1139. }
  1140. /**
  1141. * remove_ino - remove an entry from the size tree.
  1142. * @c: UBIFS file-system description object
  1143. * @inum: inode number
  1144. */
  1145. static void remove_ino(struct ubifs_info *c, ino_t inum)
  1146. {
  1147. struct size_entry *e = find_ino(c, inum);
  1148. if (!e)
  1149. return;
  1150. rb_erase(&e->rb, &c->size_tree);
  1151. kfree(e);
  1152. }
  1153. /**
  1154. * ubifs_destroy_size_tree - free resources related to the size tree.
  1155. * @c: UBIFS file-system description object
  1156. */
  1157. void ubifs_destroy_size_tree(struct ubifs_info *c)
  1158. {
  1159. struct rb_node *this = c->size_tree.rb_node;
  1160. struct size_entry *e;
  1161. while (this) {
  1162. if (this->rb_left) {
  1163. this = this->rb_left;
  1164. continue;
  1165. } else if (this->rb_right) {
  1166. this = this->rb_right;
  1167. continue;
  1168. }
  1169. e = rb_entry(this, struct size_entry, rb);
  1170. if (e->inode)
  1171. iput(e->inode);
  1172. this = rb_parent(this);
  1173. if (this) {
  1174. if (this->rb_left == &e->rb)
  1175. this->rb_left = NULL;
  1176. else
  1177. this->rb_right = NULL;
  1178. }
  1179. kfree(e);
  1180. }
  1181. c->size_tree = RB_ROOT;
  1182. }
  1183. /**
  1184. * ubifs_recover_size_accum - accumulate inode sizes for recovery.
  1185. * @c: UBIFS file-system description object
  1186. * @key: node key
  1187. * @deletion: node is for a deletion
  1188. * @new_size: inode size
  1189. *
  1190. * This function has two purposes:
  1191. * 1) to ensure there are no data nodes that fall outside the inode size
  1192. * 2) to ensure there are no data nodes for inodes that do not exist
  1193. * To accomplish those purposes, a rb-tree is constructed containing an entry
  1194. * for each inode number in the journal that has not been deleted, and recording
  1195. * the size from the inode node, the maximum size of any data node (also altered
  1196. * by truncations) and a flag indicating a inode number for which no inode node
  1197. * was present in the journal.
  1198. *
  1199. * Note that there is still the possibility that there are data nodes that have
  1200. * been committed that are beyond the inode size, however the only way to find
  1201. * them would be to scan the entire index. Alternatively, some provision could
  1202. * be made to record the size of inodes at the start of commit, which would seem
  1203. * very cumbersome for a scenario that is quite unlikely and the only negative
  1204. * consequence of which is wasted space.
  1205. *
  1206. * This functions returns %0 on success and a negative error code on failure.
  1207. */
  1208. int ubifs_recover_size_accum(struct ubifs_info *c, union ubifs_key *key,
  1209. int deletion, loff_t new_size)
  1210. {
  1211. ino_t inum = key_inum(c, key);
  1212. struct size_entry *e;
  1213. int err;
  1214. switch (key_type(c, key)) {
  1215. case UBIFS_INO_KEY:
  1216. if (deletion)
  1217. remove_ino(c, inum);
  1218. else {
  1219. e = find_ino(c, inum);
  1220. if (e) {
  1221. e->i_size = new_size;
  1222. e->exists = 1;
  1223. } else {
  1224. err = add_ino(c, inum, new_size, 0, 1);
  1225. if (err)
  1226. return err;
  1227. }
  1228. }
  1229. break;
  1230. case UBIFS_DATA_KEY:
  1231. e = find_ino(c, inum);
  1232. if (e) {
  1233. if (new_size > e->d_size)
  1234. e->d_size = new_size;
  1235. } else {
  1236. err = add_ino(c, inum, 0, new_size, 0);
  1237. if (err)
  1238. return err;
  1239. }
  1240. break;
  1241. case UBIFS_TRUN_KEY:
  1242. e = find_ino(c, inum);
  1243. if (e)
  1244. e->d_size = new_size;
  1245. break;
  1246. }
  1247. return 0;
  1248. }
  1249. /**
  1250. * fix_size_in_place - fix inode size in place on flash.
  1251. * @c: UBIFS file-system description object
  1252. * @e: inode size information for recovery
  1253. */
  1254. static int fix_size_in_place(struct ubifs_info *c, struct size_entry *e)
  1255. {
  1256. struct ubifs_ino_node *ino = c->sbuf;
  1257. unsigned char *p;
  1258. union ubifs_key key;
  1259. int err, lnum, offs, len;
  1260. loff_t i_size;
  1261. uint32_t crc;
  1262. /* Locate the inode node LEB number and offset */
  1263. ino_key_init(c, &key, e->inum);
  1264. err = ubifs_tnc_locate(c, &key, ino, &lnum, &offs);
  1265. if (err)
  1266. goto out;
  1267. /*
  1268. * If the size recorded on the inode node is greater than the size that
  1269. * was calculated from nodes in the journal then don't change the inode.
  1270. */
  1271. i_size = le64_to_cpu(ino->size);
  1272. if (i_size >= e->d_size)
  1273. return 0;
  1274. /* Read the LEB */
  1275. err = ubi_read(c->ubi, lnum, c->sbuf, 0, c->leb_size);
  1276. if (err)
  1277. goto out;
  1278. /* Change the size field and recalculate the CRC */
  1279. ino = c->sbuf + offs;
  1280. ino->size = cpu_to_le64(e->d_size);
  1281. len = le32_to_cpu(ino->ch.len);
  1282. crc = crc32(UBIFS_CRC32_INIT, (void *)ino + 8, len - 8);
  1283. ino->ch.crc = cpu_to_le32(crc);
  1284. /* Work out where data in the LEB ends and free space begins */
  1285. p = c->sbuf;
  1286. len = c->leb_size - 1;
  1287. while (p[len] == 0xff)
  1288. len -= 1;
  1289. len = ALIGN(len + 1, c->min_io_size);
  1290. /* Atomically write the fixed LEB back again */
  1291. err = ubi_leb_change(c->ubi, lnum, c->sbuf, len, UBI_UNKNOWN);
  1292. if (err)
  1293. goto out;
  1294. dbg_rcvry("inode %lu at %d:%d size %lld -> %lld ",
  1295. (unsigned long)e->inum, lnum, offs, i_size, e->d_size);
  1296. return 0;
  1297. out:
  1298. ubifs_warn("inode %lu failed to fix size %lld -> %lld error %d",
  1299. (unsigned long)e->inum, e->i_size, e->d_size, err);
  1300. return err;
  1301. }
  1302. /**
  1303. * ubifs_recover_size - recover inode size.
  1304. * @c: UBIFS file-system description object
  1305. *
  1306. * This function attempts to fix inode size discrepancies identified by the
  1307. * 'ubifs_recover_size_accum()' function.
  1308. *
  1309. * This functions returns %0 on success and a negative error code on failure.
  1310. */
  1311. int ubifs_recover_size(struct ubifs_info *c)
  1312. {
  1313. struct rb_node *this = rb_first(&c->size_tree);
  1314. while (this) {
  1315. struct size_entry *e;
  1316. int err;
  1317. e = rb_entry(this, struct size_entry, rb);
  1318. if (!e->exists) {
  1319. union ubifs_key key;
  1320. ino_key_init(c, &key, e->inum);
  1321. err = ubifs_tnc_lookup(c, &key, c->sbuf);
  1322. if (err && err != -ENOENT)
  1323. return err;
  1324. if (err == -ENOENT) {
  1325. /* Remove data nodes that have no inode */
  1326. dbg_rcvry("removing ino %lu",
  1327. (unsigned long)e->inum);
  1328. err = ubifs_tnc_remove_ino(c, e->inum);
  1329. if (err)
  1330. return err;
  1331. } else {
  1332. struct ubifs_ino_node *ino = c->sbuf;
  1333. e->exists = 1;
  1334. e->i_size = le64_to_cpu(ino->size);
  1335. }
  1336. }
  1337. if (e->exists && e->i_size < e->d_size) {
  1338. if (!e->inode && c->ro_mount) {
  1339. /* Fix the inode size and pin it in memory */
  1340. struct inode *inode;
  1341. inode = ubifs_iget(c->vfs_sb, e->inum);
  1342. if (IS_ERR(inode))
  1343. return PTR_ERR(inode);
  1344. if (inode->i_size < e->d_size) {
  1345. dbg_rcvry("ino %lu size %lld -> %lld",
  1346. (unsigned long)e->inum,
  1347. inode->i_size, e->d_size);
  1348. inode->i_size = e->d_size;
  1349. ubifs_inode(inode)->ui_size = e->d_size;
  1350. e->inode = inode;
  1351. this = rb_next(this);
  1352. continue;
  1353. }
  1354. iput(inode);
  1355. } else {
  1356. /* Fix the size in place */
  1357. err = fix_size_in_place(c, e);
  1358. if (err)
  1359. return err;
  1360. if (e->inode)
  1361. iput(e->inode);
  1362. }
  1363. }
  1364. this = rb_next(this);
  1365. rb_erase(&e->rb, &c->size_tree);
  1366. kfree(e);
  1367. }
  1368. return 0;
  1369. }