blob: 9c6b15b8cb5d11bdaa268331ef61e49a77d8e362 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Heiko Schocherf5895d12014-06-24 10:10:04 +02002/*
3 * Copyright (c) 2012 Linutronix GmbH
Heiko Schocher94b66de2015-10-22 06:19:21 +02004 * Copyright (c) 2014 sigma star gmbh
Heiko Schocherf5895d12014-06-24 10:10:04 +02005 * Author: Richard Weinberger <richard@nod.at>
6 *
Heiko Schocherf5895d12014-06-24 10:10:04 +02007 */
8
Heiko Schocherf5895d12014-06-24 10:10:04 +02009#ifndef __UBOOT__
Simon Glass0f2af882020-05-10 11:40:05 -060010#include <log.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070011#include <dm/devres.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020012#include <linux/crc32.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070013#include <linux/err.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070014#include <u-boot/crc.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020015#else
16#include <div64.h>
17#include <malloc.h>
18#include <ubi_uboot.h>
Simon Glassc06c1be2020-05-10 11:40:08 -060019#include <linux/bug.h>
Heiko Schocherf5895d12014-06-24 10:10:04 +020020#endif
21
22#include <linux/compat.h>
23#include <linux/math64.h>
24#include "ubi.h"
25
26/**
Heiko Schocher94b66de2015-10-22 06:19:21 +020027 * init_seen - allocate memory for used for debugging.
28 * @ubi: UBI device description object
29 */
30static inline int *init_seen(struct ubi_device *ubi)
31{
32 int *ret;
33
34 if (!ubi_dbg_chk_fastmap(ubi))
35 return NULL;
36
37 ret = kcalloc(ubi->peb_count, sizeof(int), GFP_KERNEL);
38 if (!ret)
39 return ERR_PTR(-ENOMEM);
40
41 return ret;
42}
43
44/**
45 * free_seen - free the seen logic integer array.
46 * @seen: integer array of @ubi->peb_count size
47 */
48static inline void free_seen(int *seen)
49{
50 kfree(seen);
51}
52
53/**
54 * set_seen - mark a PEB as seen.
55 * @ubi: UBI device description object
56 * @pnum: The PEB to be makred as seen
57 * @seen: integer array of @ubi->peb_count size
58 */
59static inline void set_seen(struct ubi_device *ubi, int pnum, int *seen)
60{
61 if (!ubi_dbg_chk_fastmap(ubi) || !seen)
62 return;
63
64 seen[pnum] = 1;
65}
66
67/**
68 * self_check_seen - check whether all PEB have been seen by fastmap.
69 * @ubi: UBI device description object
70 * @seen: integer array of @ubi->peb_count size
71 */
72static int self_check_seen(struct ubi_device *ubi, int *seen)
73{
74 int pnum, ret = 0;
75
76 if (!ubi_dbg_chk_fastmap(ubi) || !seen)
77 return 0;
78
79 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
80 if (!seen[pnum] && ubi->lookuptbl[pnum]) {
81 ubi_err(ubi, "self-check failed for PEB %d, fastmap didn't see it", pnum);
82 ret = -EINVAL;
83 }
84 }
85
86 return ret;
87}
88
89/**
Heiko Schocherf5895d12014-06-24 10:10:04 +020090 * ubi_calc_fm_size - calculates the fastmap size in bytes for an UBI device.
91 * @ubi: UBI device description object
92 */
93size_t ubi_calc_fm_size(struct ubi_device *ubi)
94{
95 size_t size;
96
Heiko Schocher94b66de2015-10-22 06:19:21 +020097 size = sizeof(struct ubi_fm_sb) +
98 sizeof(struct ubi_fm_hdr) +
99 sizeof(struct ubi_fm_scan_pool) +
100 sizeof(struct ubi_fm_scan_pool) +
101 (ubi->peb_count * sizeof(struct ubi_fm_ec)) +
102 (sizeof(struct ubi_fm_eba) +
103 (ubi->peb_count * sizeof(__be32))) +
Heiko Schocherf5895d12014-06-24 10:10:04 +0200104 sizeof(struct ubi_fm_volhdr) * UBI_MAX_VOLUMES;
105 return roundup(size, ubi->leb_size);
106}
107
Heiko Schocherf5895d12014-06-24 10:10:04 +0200108/**
109 * new_fm_vhdr - allocate a new volume header for fastmap usage.
110 * @ubi: UBI device description object
111 * @vol_id: the VID of the new header
112 *
113 * Returns a new struct ubi_vid_hdr on success.
114 * NULL indicates out of memory.
115 */
116static struct ubi_vid_hdr *new_fm_vhdr(struct ubi_device *ubi, int vol_id)
117{
118 struct ubi_vid_hdr *new;
119
120 new = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
121 if (!new)
122 goto out;
123
124 new->vol_type = UBI_VID_DYNAMIC;
125 new->vol_id = cpu_to_be32(vol_id);
126
127 /* UBI implementations without fastmap support have to delete the
128 * fastmap.
129 */
130 new->compat = UBI_COMPAT_DELETE;
131
132out:
133 return new;
134}
135
136/**
137 * add_aeb - create and add a attach erase block to a given list.
138 * @ai: UBI attach info object
139 * @list: the target list
140 * @pnum: PEB number of the new attach erase block
141 * @ec: erease counter of the new LEB
142 * @scrub: scrub this PEB after attaching
143 *
144 * Returns 0 on success, < 0 indicates an internal error.
145 */
146static int add_aeb(struct ubi_attach_info *ai, struct list_head *list,
147 int pnum, int ec, int scrub)
148{
149 struct ubi_ainf_peb *aeb;
150
151 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
152 if (!aeb)
153 return -ENOMEM;
154
155 aeb->pnum = pnum;
156 aeb->ec = ec;
157 aeb->lnum = -1;
158 aeb->scrub = scrub;
159 aeb->copy_flag = aeb->sqnum = 0;
160
161 ai->ec_sum += aeb->ec;
162 ai->ec_count++;
163
164 if (ai->max_ec < aeb->ec)
165 ai->max_ec = aeb->ec;
166
167 if (ai->min_ec > aeb->ec)
168 ai->min_ec = aeb->ec;
169
170 list_add_tail(&aeb->u.list, list);
171
172 return 0;
173}
174
175/**
176 * add_vol - create and add a new volume to ubi_attach_info.
177 * @ai: ubi_attach_info object
178 * @vol_id: VID of the new volume
179 * @used_ebs: number of used EBS
180 * @data_pad: data padding value of the new volume
181 * @vol_type: volume type
182 * @last_eb_bytes: number of bytes in the last LEB
183 *
184 * Returns the new struct ubi_ainf_volume on success.
185 * NULL indicates an error.
186 */
187static struct ubi_ainf_volume *add_vol(struct ubi_attach_info *ai, int vol_id,
188 int used_ebs, int data_pad, u8 vol_type,
189 int last_eb_bytes)
190{
191 struct ubi_ainf_volume *av;
192 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
193
194 while (*p) {
195 parent = *p;
196 av = rb_entry(parent, struct ubi_ainf_volume, rb);
197
198 if (vol_id > av->vol_id)
199 p = &(*p)->rb_left;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200200 else if (vol_id < av->vol_id)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200201 p = &(*p)->rb_right;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200202 else
203 return ERR_PTR(-EINVAL);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200204 }
205
206 av = kmalloc(sizeof(struct ubi_ainf_volume), GFP_KERNEL);
207 if (!av)
208 goto out;
209
Heiko Schocher94b66de2015-10-22 06:19:21 +0200210 av->highest_lnum = av->leb_count = av->used_ebs = 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200211 av->vol_id = vol_id;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200212 av->data_pad = data_pad;
213 av->last_data_size = last_eb_bytes;
214 av->compat = 0;
215 av->vol_type = vol_type;
216 av->root = RB_ROOT;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200217 if (av->vol_type == UBI_STATIC_VOLUME)
218 av->used_ebs = used_ebs;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200219
220 dbg_bld("found volume (ID %i)", vol_id);
221
222 rb_link_node(&av->rb, parent, p);
223 rb_insert_color(&av->rb, &ai->volumes);
224
225out:
226 return av;
227}
228
229/**
230 * assign_aeb_to_av - assigns a SEB to a given ainf_volume and removes it
231 * from it's original list.
232 * @ai: ubi_attach_info object
233 * @aeb: the to be assigned SEB
234 * @av: target scan volume
235 */
236static void assign_aeb_to_av(struct ubi_attach_info *ai,
237 struct ubi_ainf_peb *aeb,
238 struct ubi_ainf_volume *av)
239{
240 struct ubi_ainf_peb *tmp_aeb;
241 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
242
243 p = &av->root.rb_node;
244 while (*p) {
245 parent = *p;
246
247 tmp_aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
248 if (aeb->lnum != tmp_aeb->lnum) {
249 if (aeb->lnum < tmp_aeb->lnum)
250 p = &(*p)->rb_left;
251 else
252 p = &(*p)->rb_right;
253
254 continue;
255 } else
256 break;
257 }
258
259 list_del(&aeb->u.list);
260 av->leb_count++;
261
262 rb_link_node(&aeb->u.rb, parent, p);
263 rb_insert_color(&aeb->u.rb, &av->root);
264}
265
266/**
267 * update_vol - inserts or updates a LEB which was found a pool.
268 * @ubi: the UBI device object
269 * @ai: attach info object
270 * @av: the volume this LEB belongs to
271 * @new_vh: the volume header derived from new_aeb
272 * @new_aeb: the AEB to be examined
273 *
274 * Returns 0 on success, < 0 indicates an internal error.
275 */
276static int update_vol(struct ubi_device *ubi, struct ubi_attach_info *ai,
277 struct ubi_ainf_volume *av, struct ubi_vid_hdr *new_vh,
278 struct ubi_ainf_peb *new_aeb)
279{
280 struct rb_node **p = &av->root.rb_node, *parent = NULL;
281 struct ubi_ainf_peb *aeb, *victim;
282 int cmp_res;
283
284 while (*p) {
285 parent = *p;
286 aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
287
288 if (be32_to_cpu(new_vh->lnum) != aeb->lnum) {
289 if (be32_to_cpu(new_vh->lnum) < aeb->lnum)
290 p = &(*p)->rb_left;
291 else
292 p = &(*p)->rb_right;
293
294 continue;
295 }
296
297 /* This case can happen if the fastmap gets written
298 * because of a volume change (creation, deletion, ..).
299 * Then a PEB can be within the persistent EBA and the pool.
300 */
301 if (aeb->pnum == new_aeb->pnum) {
302 ubi_assert(aeb->lnum == new_aeb->lnum);
303 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
304
305 return 0;
306 }
307
308 cmp_res = ubi_compare_lebs(ubi, aeb, new_aeb->pnum, new_vh);
309 if (cmp_res < 0)
310 return cmp_res;
311
312 /* new_aeb is newer */
313 if (cmp_res & 1) {
314 victim = kmem_cache_alloc(ai->aeb_slab_cache,
315 GFP_KERNEL);
316 if (!victim)
317 return -ENOMEM;
318
319 victim->ec = aeb->ec;
320 victim->pnum = aeb->pnum;
321 list_add_tail(&victim->u.list, &ai->erase);
322
323 if (av->highest_lnum == be32_to_cpu(new_vh->lnum))
Heiko Schocher94b66de2015-10-22 06:19:21 +0200324 av->last_data_size =
Heiko Schocherf5895d12014-06-24 10:10:04 +0200325 be32_to_cpu(new_vh->data_size);
326
327 dbg_bld("vol %i: AEB %i's PEB %i is the newer",
328 av->vol_id, aeb->lnum, new_aeb->pnum);
329
330 aeb->ec = new_aeb->ec;
331 aeb->pnum = new_aeb->pnum;
332 aeb->copy_flag = new_vh->copy_flag;
333 aeb->scrub = new_aeb->scrub;
334 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
335
336 /* new_aeb is older */
337 } else {
338 dbg_bld("vol %i: AEB %i's PEB %i is old, dropping it",
339 av->vol_id, aeb->lnum, new_aeb->pnum);
340 list_add_tail(&new_aeb->u.list, &ai->erase);
341 }
342
343 return 0;
344 }
345 /* This LEB is new, let's add it to the volume */
346
347 if (av->highest_lnum <= be32_to_cpu(new_vh->lnum)) {
348 av->highest_lnum = be32_to_cpu(new_vh->lnum);
349 av->last_data_size = be32_to_cpu(new_vh->data_size);
350 }
351
352 if (av->vol_type == UBI_STATIC_VOLUME)
353 av->used_ebs = be32_to_cpu(new_vh->used_ebs);
354
355 av->leb_count++;
356
357 rb_link_node(&new_aeb->u.rb, parent, p);
358 rb_insert_color(&new_aeb->u.rb, &av->root);
359
360 return 0;
361}
362
363/**
364 * process_pool_aeb - we found a non-empty PEB in a pool.
365 * @ubi: UBI device object
366 * @ai: attach info object
367 * @new_vh: the volume header derived from new_aeb
368 * @new_aeb: the AEB to be examined
369 *
370 * Returns 0 on success, < 0 indicates an internal error.
371 */
372static int process_pool_aeb(struct ubi_device *ubi, struct ubi_attach_info *ai,
373 struct ubi_vid_hdr *new_vh,
374 struct ubi_ainf_peb *new_aeb)
375{
376 struct ubi_ainf_volume *av, *tmp_av = NULL;
377 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
378 int found = 0;
379
380 if (be32_to_cpu(new_vh->vol_id) == UBI_FM_SB_VOLUME_ID ||
381 be32_to_cpu(new_vh->vol_id) == UBI_FM_DATA_VOLUME_ID) {
382 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
383
384 return 0;
385 }
386
387 /* Find the volume this SEB belongs to */
388 while (*p) {
389 parent = *p;
390 tmp_av = rb_entry(parent, struct ubi_ainf_volume, rb);
391
392 if (be32_to_cpu(new_vh->vol_id) > tmp_av->vol_id)
393 p = &(*p)->rb_left;
394 else if (be32_to_cpu(new_vh->vol_id) < tmp_av->vol_id)
395 p = &(*p)->rb_right;
396 else {
397 found = 1;
398 break;
399 }
400 }
401
402 if (found)
403 av = tmp_av;
404 else {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200405 ubi_err(ubi, "orphaned volume in fastmap pool!");
406 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200407 return UBI_BAD_FASTMAP;
408 }
409
410 ubi_assert(be32_to_cpu(new_vh->vol_id) == av->vol_id);
411
412 return update_vol(ubi, ai, av, new_vh, new_aeb);
413}
414
415/**
416 * unmap_peb - unmap a PEB.
417 * If fastmap detects a free PEB in the pool it has to check whether
418 * this PEB has been unmapped after writing the fastmap.
419 *
420 * @ai: UBI attach info object
421 * @pnum: The PEB to be unmapped
422 */
423static void unmap_peb(struct ubi_attach_info *ai, int pnum)
424{
425 struct ubi_ainf_volume *av;
426 struct rb_node *node, *node2;
427 struct ubi_ainf_peb *aeb;
428
429 for (node = rb_first(&ai->volumes); node; node = rb_next(node)) {
430 av = rb_entry(node, struct ubi_ainf_volume, rb);
431
432 for (node2 = rb_first(&av->root); node2;
433 node2 = rb_next(node2)) {
434 aeb = rb_entry(node2, struct ubi_ainf_peb, u.rb);
435 if (aeb->pnum == pnum) {
436 rb_erase(&aeb->u.rb, &av->root);
Heiko Schocher94b66de2015-10-22 06:19:21 +0200437 av->leb_count--;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200438 kmem_cache_free(ai->aeb_slab_cache, aeb);
439 return;
440 }
441 }
442 }
443}
444
445/**
446 * scan_pool - scans a pool for changed (no longer empty PEBs).
447 * @ubi: UBI device object
448 * @ai: attach info object
449 * @pebs: an array of all PEB numbers in the to be scanned pool
450 * @pool_size: size of the pool (number of entries in @pebs)
451 * @max_sqnum: pointer to the maximal sequence number
Heiko Schocherf5895d12014-06-24 10:10:04 +0200452 * @free: list of PEBs which are most likely free (and go into @ai->free)
453 *
454 * Returns 0 on success, if the pool is unusable UBI_BAD_FASTMAP is returned.
455 * < 0 indicates an internal error.
456 */
457#ifndef __UBOOT__
458static int scan_pool(struct ubi_device *ubi, struct ubi_attach_info *ai,
Heiko Schocher7f2a4812015-10-22 06:19:22 +0200459 __be32 *pebs, int pool_size, unsigned long long *max_sqnum,
Heiko Schocher94b66de2015-10-22 06:19:21 +0200460 struct list_head *free)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200461#else
462static int scan_pool(struct ubi_device *ubi, struct ubi_attach_info *ai,
Heiko Schocher7f2a4812015-10-22 06:19:22 +0200463 __be32 *pebs, int pool_size, unsigned long long *max_sqnum,
Heiko Schocher94b66de2015-10-22 06:19:21 +0200464 struct list_head *free)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200465#endif
466{
467 struct ubi_vid_hdr *vh;
468 struct ubi_ec_hdr *ech;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200469 struct ubi_ainf_peb *new_aeb;
470 int i, pnum, err, ret = 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200471
472 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
473 if (!ech)
474 return -ENOMEM;
475
476 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
477 if (!vh) {
478 kfree(ech);
479 return -ENOMEM;
480 }
481
482 dbg_bld("scanning fastmap pool: size = %i", pool_size);
483
484 /*
485 * Now scan all PEBs in the pool to find changes which have been made
486 * after the creation of the fastmap
487 */
488 for (i = 0; i < pool_size; i++) {
489 int scrub = 0;
490 int image_seq;
491
492 pnum = be32_to_cpu(pebs[i]);
493
494 if (ubi_io_is_bad(ubi, pnum)) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200495 ubi_err(ubi, "bad PEB in fastmap pool!");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200496 ret = UBI_BAD_FASTMAP;
497 goto out;
498 }
499
500 err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
501 if (err && err != UBI_IO_BITFLIPS) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200502 ubi_err(ubi, "unable to read EC header! PEB:%i err:%i",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200503 pnum, err);
504 ret = err > 0 ? UBI_BAD_FASTMAP : err;
505 goto out;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200506 } else if (err == UBI_IO_BITFLIPS)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200507 scrub = 1;
508
509 /*
510 * Older UBI implementations have image_seq set to zero, so
511 * we shouldn't fail if image_seq == 0.
512 */
513 image_seq = be32_to_cpu(ech->image_seq);
514
515 if (image_seq && (image_seq != ubi->image_seq)) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200516 ubi_err(ubi, "bad image seq: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200517 be32_to_cpu(ech->image_seq), ubi->image_seq);
518 ret = UBI_BAD_FASTMAP;
519 goto out;
520 }
521
522 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
523 if (err == UBI_IO_FF || err == UBI_IO_FF_BITFLIPS) {
524 unsigned long long ec = be64_to_cpu(ech->ec);
525 unmap_peb(ai, pnum);
526 dbg_bld("Adding PEB to free: %i", pnum);
527 if (err == UBI_IO_FF_BITFLIPS)
Heiko Schocher94b66de2015-10-22 06:19:21 +0200528 add_aeb(ai, free, pnum, ec, 1);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200529 else
Heiko Schocher94b66de2015-10-22 06:19:21 +0200530 add_aeb(ai, free, pnum, ec, 0);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200531 continue;
532 } else if (err == 0 || err == UBI_IO_BITFLIPS) {
533 dbg_bld("Found non empty PEB:%i in pool", pnum);
534
535 if (err == UBI_IO_BITFLIPS)
536 scrub = 1;
537
Heiko Schocherf5895d12014-06-24 10:10:04 +0200538 new_aeb = kmem_cache_alloc(ai->aeb_slab_cache,
539 GFP_KERNEL);
540 if (!new_aeb) {
541 ret = -ENOMEM;
542 goto out;
543 }
544
545 new_aeb->ec = be64_to_cpu(ech->ec);
546 new_aeb->pnum = pnum;
547 new_aeb->lnum = be32_to_cpu(vh->lnum);
548 new_aeb->sqnum = be64_to_cpu(vh->sqnum);
549 new_aeb->copy_flag = vh->copy_flag;
550 new_aeb->scrub = scrub;
551
552 if (*max_sqnum < new_aeb->sqnum)
553 *max_sqnum = new_aeb->sqnum;
554
555 err = process_pool_aeb(ubi, ai, vh, new_aeb);
556 if (err) {
557 ret = err > 0 ? UBI_BAD_FASTMAP : err;
558 goto out;
559 }
560 } else {
561 /* We are paranoid and fall back to scanning mode */
Heiko Schocher94b66de2015-10-22 06:19:21 +0200562 ubi_err(ubi, "fastmap pool PEBs contains damaged PEBs!");
Heiko Schocherf5895d12014-06-24 10:10:04 +0200563 ret = err > 0 ? UBI_BAD_FASTMAP : err;
564 goto out;
565 }
566
567 }
568
569out:
570 ubi_free_vid_hdr(ubi, vh);
571 kfree(ech);
572 return ret;
573}
574
575/**
576 * count_fastmap_pebs - Counts the PEBs found by fastmap.
577 * @ai: The UBI attach info object
578 */
579static int count_fastmap_pebs(struct ubi_attach_info *ai)
580{
581 struct ubi_ainf_peb *aeb;
582 struct ubi_ainf_volume *av;
583 struct rb_node *rb1, *rb2;
Sughosh Ganuebb1c202024-08-28 22:24:22 +0530584 int n;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200585
Sughosh Ganuebb1c202024-08-28 22:24:22 +0530586 n = list_count_nodes(&ai->erase);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200587
Sughosh Ganuebb1c202024-08-28 22:24:22 +0530588 n += list_count_nodes(&ai->free);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200589
590 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb)
591 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
592 n++;
593
594 return n;
595}
596
597/**
598 * ubi_attach_fastmap - creates ubi_attach_info from a fastmap.
599 * @ubi: UBI device object
600 * @ai: UBI attach info object
601 * @fm: the fastmap to be attached
602 *
603 * Returns 0 on success, UBI_BAD_FASTMAP if the found fastmap was unusable.
604 * < 0 indicates an internal error.
605 */
606static int ubi_attach_fastmap(struct ubi_device *ubi,
607 struct ubi_attach_info *ai,
608 struct ubi_fastmap_layout *fm)
609{
Heiko Schocher94b66de2015-10-22 06:19:21 +0200610 struct list_head used, free;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200611 struct ubi_ainf_volume *av;
612 struct ubi_ainf_peb *aeb, *tmp_aeb, *_tmp_aeb;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200613 struct ubi_fm_sb *fmsb;
614 struct ubi_fm_hdr *fmhdr;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200615 struct ubi_fm_scan_pool *fmpl, *fmpl_wl;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200616 struct ubi_fm_ec *fmec;
617 struct ubi_fm_volhdr *fmvhdr;
618 struct ubi_fm_eba *fm_eba;
619 int ret, i, j, pool_size, wl_pool_size;
620 size_t fm_pos = 0, fm_size = ubi->fm_size;
621 unsigned long long max_sqnum = 0;
622 void *fm_raw = ubi->fm_buf;
623
624 INIT_LIST_HEAD(&used);
Heiko Schocher94b66de2015-10-22 06:19:21 +0200625 INIT_LIST_HEAD(&free);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200626 ai->min_ec = UBI_MAX_ERASECOUNTER;
627
Heiko Schocherf5895d12014-06-24 10:10:04 +0200628 fmsb = (struct ubi_fm_sb *)(fm_raw);
629 ai->max_sqnum = fmsb->sqnum;
630 fm_pos += sizeof(struct ubi_fm_sb);
631 if (fm_pos >= fm_size)
632 goto fail_bad;
633
634 fmhdr = (struct ubi_fm_hdr *)(fm_raw + fm_pos);
635 fm_pos += sizeof(*fmhdr);
636 if (fm_pos >= fm_size)
637 goto fail_bad;
638
639 if (be32_to_cpu(fmhdr->magic) != UBI_FM_HDR_MAGIC) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200640 ubi_err(ubi, "bad fastmap header magic: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200641 be32_to_cpu(fmhdr->magic), UBI_FM_HDR_MAGIC);
642 goto fail_bad;
643 }
644
Heiko Schocher94b66de2015-10-22 06:19:21 +0200645 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
646 fm_pos += sizeof(*fmpl);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200647 if (fm_pos >= fm_size)
648 goto fail_bad;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200649 if (be32_to_cpu(fmpl->magic) != UBI_FM_POOL_MAGIC) {
650 ubi_err(ubi, "bad fastmap pool magic: 0x%x, expected: 0x%x",
651 be32_to_cpu(fmpl->magic), UBI_FM_POOL_MAGIC);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200652 goto fail_bad;
653 }
654
Heiko Schocher94b66de2015-10-22 06:19:21 +0200655 fmpl_wl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
656 fm_pos += sizeof(*fmpl_wl);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200657 if (fm_pos >= fm_size)
658 goto fail_bad;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200659 if (be32_to_cpu(fmpl_wl->magic) != UBI_FM_POOL_MAGIC) {
660 ubi_err(ubi, "bad fastmap WL pool magic: 0x%x, expected: 0x%x",
661 be32_to_cpu(fmpl_wl->magic), UBI_FM_POOL_MAGIC);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200662 goto fail_bad;
663 }
664
Heiko Schocher94b66de2015-10-22 06:19:21 +0200665 pool_size = be16_to_cpu(fmpl->size);
666 wl_pool_size = be16_to_cpu(fmpl_wl->size);
667 fm->max_pool_size = be16_to_cpu(fmpl->max_size);
668 fm->max_wl_pool_size = be16_to_cpu(fmpl_wl->max_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200669
670 if (pool_size > UBI_FM_MAX_POOL_SIZE || pool_size < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200671 ubi_err(ubi, "bad pool size: %i", pool_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200672 goto fail_bad;
673 }
674
675 if (wl_pool_size > UBI_FM_MAX_POOL_SIZE || wl_pool_size < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200676 ubi_err(ubi, "bad WL pool size: %i", wl_pool_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200677 goto fail_bad;
678 }
679
Heiko Schocherf5895d12014-06-24 10:10:04 +0200680 if (fm->max_pool_size > UBI_FM_MAX_POOL_SIZE ||
681 fm->max_pool_size < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200682 ubi_err(ubi, "bad maximal pool size: %i", fm->max_pool_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200683 goto fail_bad;
684 }
685
686 if (fm->max_wl_pool_size > UBI_FM_MAX_POOL_SIZE ||
687 fm->max_wl_pool_size < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200688 ubi_err(ubi, "bad maximal WL pool size: %i",
689 fm->max_wl_pool_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200690 goto fail_bad;
691 }
692
693 /* read EC values from free list */
694 for (i = 0; i < be32_to_cpu(fmhdr->free_peb_count); i++) {
695 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
696 fm_pos += sizeof(*fmec);
697 if (fm_pos >= fm_size)
698 goto fail_bad;
699
700 add_aeb(ai, &ai->free, be32_to_cpu(fmec->pnum),
701 be32_to_cpu(fmec->ec), 0);
702 }
703
704 /* read EC values from used list */
705 for (i = 0; i < be32_to_cpu(fmhdr->used_peb_count); i++) {
706 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
707 fm_pos += sizeof(*fmec);
708 if (fm_pos >= fm_size)
709 goto fail_bad;
710
711 add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
712 be32_to_cpu(fmec->ec), 0);
713 }
714
715 /* read EC values from scrub list */
716 for (i = 0; i < be32_to_cpu(fmhdr->scrub_peb_count); i++) {
717 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
718 fm_pos += sizeof(*fmec);
719 if (fm_pos >= fm_size)
720 goto fail_bad;
721
722 add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
723 be32_to_cpu(fmec->ec), 1);
724 }
725
726 /* read EC values from erase list */
727 for (i = 0; i < be32_to_cpu(fmhdr->erase_peb_count); i++) {
728 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
729 fm_pos += sizeof(*fmec);
730 if (fm_pos >= fm_size)
731 goto fail_bad;
732
733 add_aeb(ai, &ai->erase, be32_to_cpu(fmec->pnum),
734 be32_to_cpu(fmec->ec), 1);
735 }
736
737 ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
738 ai->bad_peb_count = be32_to_cpu(fmhdr->bad_peb_count);
739
740 /* Iterate over all volumes and read their EBA table */
741 for (i = 0; i < be32_to_cpu(fmhdr->vol_count); i++) {
742 fmvhdr = (struct ubi_fm_volhdr *)(fm_raw + fm_pos);
743 fm_pos += sizeof(*fmvhdr);
744 if (fm_pos >= fm_size)
745 goto fail_bad;
746
747 if (be32_to_cpu(fmvhdr->magic) != UBI_FM_VHDR_MAGIC) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200748 ubi_err(ubi, "bad fastmap vol header magic: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200749 be32_to_cpu(fmvhdr->magic), UBI_FM_VHDR_MAGIC);
750 goto fail_bad;
751 }
752
753 av = add_vol(ai, be32_to_cpu(fmvhdr->vol_id),
754 be32_to_cpu(fmvhdr->used_ebs),
755 be32_to_cpu(fmvhdr->data_pad),
756 fmvhdr->vol_type,
757 be32_to_cpu(fmvhdr->last_eb_bytes));
758
759 if (!av)
760 goto fail_bad;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200761 if (PTR_ERR(av) == -EINVAL) {
762 ubi_err(ubi, "volume (ID %i) already exists",
763 fmvhdr->vol_id);
764 goto fail_bad;
765 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200766
767 ai->vols_found++;
768 if (ai->highest_vol_id < be32_to_cpu(fmvhdr->vol_id))
769 ai->highest_vol_id = be32_to_cpu(fmvhdr->vol_id);
770
771 fm_eba = (struct ubi_fm_eba *)(fm_raw + fm_pos);
772 fm_pos += sizeof(*fm_eba);
773 fm_pos += (sizeof(__be32) * be32_to_cpu(fm_eba->reserved_pebs));
774 if (fm_pos >= fm_size)
775 goto fail_bad;
776
777 if (be32_to_cpu(fm_eba->magic) != UBI_FM_EBA_MAGIC) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200778 ubi_err(ubi, "bad fastmap EBA header magic: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200779 be32_to_cpu(fm_eba->magic), UBI_FM_EBA_MAGIC);
780 goto fail_bad;
781 }
782
783 for (j = 0; j < be32_to_cpu(fm_eba->reserved_pebs); j++) {
784 int pnum = be32_to_cpu(fm_eba->pnum[j]);
785
786 if ((int)be32_to_cpu(fm_eba->pnum[j]) < 0)
787 continue;
788
789 aeb = NULL;
790 list_for_each_entry(tmp_aeb, &used, u.list) {
791 if (tmp_aeb->pnum == pnum) {
792 aeb = tmp_aeb;
793 break;
794 }
795 }
796
Heiko Schocherf5895d12014-06-24 10:10:04 +0200797 if (!aeb) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200798 ubi_err(ubi, "PEB %i is in EBA but not in used list", pnum);
799 goto fail_bad;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200800 }
801
802 aeb->lnum = j;
803
804 if (av->highest_lnum <= aeb->lnum)
805 av->highest_lnum = aeb->lnum;
806
807 assign_aeb_to_av(ai, aeb, av);
808
809 dbg_bld("inserting PEB:%i (LEB %i) to vol %i",
810 aeb->pnum, aeb->lnum, av->vol_id);
811 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200812 }
813
Heiko Schocher94b66de2015-10-22 06:19:21 +0200814 ret = scan_pool(ubi, ai, fmpl->pebs, pool_size, &max_sqnum, &free);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200815 if (ret)
816 goto fail;
817
Heiko Schocher94b66de2015-10-22 06:19:21 +0200818 ret = scan_pool(ubi, ai, fmpl_wl->pebs, wl_pool_size, &max_sqnum, &free);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200819 if (ret)
820 goto fail;
821
822 if (max_sqnum > ai->max_sqnum)
823 ai->max_sqnum = max_sqnum;
824
Heiko Schocher94b66de2015-10-22 06:19:21 +0200825 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200826 list_move_tail(&tmp_aeb->u.list, &ai->free);
827
Heiko Schocher94b66de2015-10-22 06:19:21 +0200828 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list)
829 list_move_tail(&tmp_aeb->u.list, &ai->erase);
830
831 ubi_assert(list_empty(&free));
Heiko Schocherf5895d12014-06-24 10:10:04 +0200832
833 /*
834 * If fastmap is leaking PEBs (must not happen), raise a
835 * fat warning and fall back to scanning mode.
836 * We do this here because in ubi_wl_init() it's too late
837 * and we cannot fall back to scanning.
838 */
839#ifndef __UBOOT__
840 if (WARN_ON(count_fastmap_pebs(ai) != ubi->peb_count -
841 ai->bad_peb_count - fm->used_blocks))
842 goto fail_bad;
843#else
844 if (count_fastmap_pebs(ai) != ubi->peb_count -
845 ai->bad_peb_count - fm->used_blocks) {
846 WARN_ON(1);
847 goto fail_bad;
848 }
849#endif
850
851 return 0;
852
853fail_bad:
854 ret = UBI_BAD_FASTMAP;
855fail:
856 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list) {
857 list_del(&tmp_aeb->u.list);
858 kmem_cache_free(ai->aeb_slab_cache, tmp_aeb);
859 }
Heiko Schocher94b66de2015-10-22 06:19:21 +0200860 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list) {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200861 list_del(&tmp_aeb->u.list);
862 kmem_cache_free(ai->aeb_slab_cache, tmp_aeb);
863 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200864
865 return ret;
866}
867
868/**
869 * ubi_scan_fastmap - scan the fastmap.
870 * @ubi: UBI device object
871 * @ai: UBI attach info to be filled
872 * @fm_anchor: The fastmap starts at this PEB
873 *
874 * Returns 0 on success, UBI_NO_FASTMAP if no fastmap was found,
875 * UBI_BAD_FASTMAP if one was found but is not usable.
876 * < 0 indicates an internal error.
877 */
878int ubi_scan_fastmap(struct ubi_device *ubi, struct ubi_attach_info *ai,
879 int fm_anchor)
880{
881 struct ubi_fm_sb *fmsb, *fmsb2;
882 struct ubi_vid_hdr *vh;
883 struct ubi_ec_hdr *ech;
884 struct ubi_fastmap_layout *fm;
885 int i, used_blocks, pnum, ret = 0;
886 size_t fm_size;
887 __be32 crc, tmp_crc;
888 unsigned long long sqnum = 0;
889
Heiko Schocher94b66de2015-10-22 06:19:21 +0200890 down_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200891 memset(ubi->fm_buf, 0, ubi->fm_size);
892
893 fmsb = kmalloc(sizeof(*fmsb), GFP_KERNEL);
894 if (!fmsb) {
895 ret = -ENOMEM;
896 goto out;
897 }
898
899 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
900 if (!fm) {
901 ret = -ENOMEM;
902 kfree(fmsb);
903 goto out;
904 }
905
906 ret = ubi_io_read(ubi, fmsb, fm_anchor, ubi->leb_start, sizeof(*fmsb));
907 if (ret && ret != UBI_IO_BITFLIPS)
908 goto free_fm_sb;
909 else if (ret == UBI_IO_BITFLIPS)
910 fm->to_be_tortured[0] = 1;
911
912 if (be32_to_cpu(fmsb->magic) != UBI_FM_SB_MAGIC) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200913 ubi_err(ubi, "bad super block magic: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200914 be32_to_cpu(fmsb->magic), UBI_FM_SB_MAGIC);
915 ret = UBI_BAD_FASTMAP;
916 goto free_fm_sb;
917 }
918
919 if (fmsb->version != UBI_FM_FMT_VERSION) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200920 ubi_err(ubi, "bad fastmap version: %i, expected: %i",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200921 fmsb->version, UBI_FM_FMT_VERSION);
922 ret = UBI_BAD_FASTMAP;
923 goto free_fm_sb;
924 }
925
926 used_blocks = be32_to_cpu(fmsb->used_blocks);
927 if (used_blocks > UBI_FM_MAX_BLOCKS || used_blocks < 1) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200928 ubi_err(ubi, "number of fastmap blocks is invalid: %i",
929 used_blocks);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200930 ret = UBI_BAD_FASTMAP;
931 goto free_fm_sb;
932 }
933
934 fm_size = ubi->leb_size * used_blocks;
935 if (fm_size != ubi->fm_size) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200936 ubi_err(ubi, "bad fastmap size: %zi, expected: %zi",
937 fm_size, ubi->fm_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200938 ret = UBI_BAD_FASTMAP;
939 goto free_fm_sb;
940 }
941
942 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
943 if (!ech) {
944 ret = -ENOMEM;
945 goto free_fm_sb;
946 }
947
948 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
949 if (!vh) {
950 ret = -ENOMEM;
951 goto free_hdr;
952 }
953
954 for (i = 0; i < used_blocks; i++) {
955 int image_seq;
956
957 pnum = be32_to_cpu(fmsb->block_loc[i]);
958
959 if (ubi_io_is_bad(ubi, pnum)) {
960 ret = UBI_BAD_FASTMAP;
961 goto free_hdr;
962 }
963
964 ret = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
965 if (ret && ret != UBI_IO_BITFLIPS) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200966 ubi_err(ubi, "unable to read fastmap block# %i EC (PEB: %i)",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200967 i, pnum);
968 if (ret > 0)
969 ret = UBI_BAD_FASTMAP;
970 goto free_hdr;
971 } else if (ret == UBI_IO_BITFLIPS)
972 fm->to_be_tortured[i] = 1;
973
974 image_seq = be32_to_cpu(ech->image_seq);
975 if (!ubi->image_seq)
976 ubi->image_seq = image_seq;
977
978 /*
979 * Older UBI implementations have image_seq set to zero, so
980 * we shouldn't fail if image_seq == 0.
981 */
982 if (image_seq && (image_seq != ubi->image_seq)) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200983 ubi_err(ubi, "wrong image seq:%d instead of %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200984 be32_to_cpu(ech->image_seq), ubi->image_seq);
985 ret = UBI_BAD_FASTMAP;
986 goto free_hdr;
987 }
988
989 ret = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
990 if (ret && ret != UBI_IO_BITFLIPS) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200991 ubi_err(ubi, "unable to read fastmap block# %i (PEB: %i)",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200992 i, pnum);
993 goto free_hdr;
994 }
995
996 if (i == 0) {
997 if (be32_to_cpu(vh->vol_id) != UBI_FM_SB_VOLUME_ID) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200998 ubi_err(ubi, "bad fastmap anchor vol_id: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200999 be32_to_cpu(vh->vol_id),
1000 UBI_FM_SB_VOLUME_ID);
1001 ret = UBI_BAD_FASTMAP;
1002 goto free_hdr;
1003 }
1004 } else {
1005 if (be32_to_cpu(vh->vol_id) != UBI_FM_DATA_VOLUME_ID) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001006 ubi_err(ubi, "bad fastmap data vol_id: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001007 be32_to_cpu(vh->vol_id),
1008 UBI_FM_DATA_VOLUME_ID);
1009 ret = UBI_BAD_FASTMAP;
1010 goto free_hdr;
1011 }
1012 }
1013
1014 if (sqnum < be64_to_cpu(vh->sqnum))
1015 sqnum = be64_to_cpu(vh->sqnum);
1016
1017 ret = ubi_io_read(ubi, ubi->fm_buf + (ubi->leb_size * i), pnum,
1018 ubi->leb_start, ubi->leb_size);
1019 if (ret && ret != UBI_IO_BITFLIPS) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001020 ubi_err(ubi, "unable to read fastmap block# %i (PEB: %i, "
Heiko Schocherf5895d12014-06-24 10:10:04 +02001021 "err: %i)", i, pnum, ret);
1022 goto free_hdr;
1023 }
1024 }
1025
1026 kfree(fmsb);
1027 fmsb = NULL;
1028
1029 fmsb2 = (struct ubi_fm_sb *)(ubi->fm_buf);
1030 tmp_crc = be32_to_cpu(fmsb2->data_crc);
1031 fmsb2->data_crc = 0;
1032 crc = crc32(UBI_CRC32_INIT, ubi->fm_buf, fm_size);
1033 if (crc != tmp_crc) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001034 ubi_err(ubi, "fastmap data CRC is invalid");
1035 ubi_err(ubi, "CRC should be: 0x%x, calc: 0x%x",
1036 tmp_crc, crc);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001037 ret = UBI_BAD_FASTMAP;
1038 goto free_hdr;
1039 }
1040
1041 fmsb2->sqnum = sqnum;
1042
1043 fm->used_blocks = used_blocks;
1044
1045 ret = ubi_attach_fastmap(ubi, ai, fm);
1046 if (ret) {
1047 if (ret > 0)
1048 ret = UBI_BAD_FASTMAP;
1049 goto free_hdr;
1050 }
1051
1052 for (i = 0; i < used_blocks; i++) {
1053 struct ubi_wl_entry *e;
1054
1055 e = kmem_cache_alloc(ubi_wl_entry_slab, GFP_KERNEL);
1056 if (!e) {
1057 while (i--)
1058 kfree(fm->e[i]);
1059
1060 ret = -ENOMEM;
1061 goto free_hdr;
1062 }
1063
1064 e->pnum = be32_to_cpu(fmsb2->block_loc[i]);
1065 e->ec = be32_to_cpu(fmsb2->block_ec[i]);
1066 fm->e[i] = e;
1067 }
1068
1069 ubi->fm = fm;
1070 ubi->fm_pool.max_size = ubi->fm->max_pool_size;
1071 ubi->fm_wl_pool.max_size = ubi->fm->max_wl_pool_size;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001072 ubi_msg(ubi, "attached by fastmap");
1073 ubi_msg(ubi, "fastmap pool size: %d", ubi->fm_pool.max_size);
1074 ubi_msg(ubi, "fastmap WL pool size: %d",
1075 ubi->fm_wl_pool.max_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001076 ubi->fm_disabled = 0;
1077
1078 ubi_free_vid_hdr(ubi, vh);
1079 kfree(ech);
1080out:
Heiko Schocher94b66de2015-10-22 06:19:21 +02001081 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001082 if (ret == UBI_BAD_FASTMAP)
Heiko Schocher94b66de2015-10-22 06:19:21 +02001083 ubi_err(ubi, "Attach by fastmap failed, doing a full scan!");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001084 return ret;
1085
1086free_hdr:
1087 ubi_free_vid_hdr(ubi, vh);
1088 kfree(ech);
1089free_fm_sb:
1090 kfree(fmsb);
1091 kfree(fm);
1092 goto out;
1093}
1094
1095/**
1096 * ubi_write_fastmap - writes a fastmap.
1097 * @ubi: UBI device object
1098 * @new_fm: the to be written fastmap
1099 *
1100 * Returns 0 on success, < 0 indicates an internal error.
1101 */
1102static int ubi_write_fastmap(struct ubi_device *ubi,
1103 struct ubi_fastmap_layout *new_fm)
1104{
1105 size_t fm_pos = 0;
1106 void *fm_raw;
1107 struct ubi_fm_sb *fmsb;
1108 struct ubi_fm_hdr *fmh;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001109 struct ubi_fm_scan_pool *fmpl, *fmpl_wl;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001110 struct ubi_fm_ec *fec;
1111 struct ubi_fm_volhdr *fvh;
1112 struct ubi_fm_eba *feba;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001113 struct ubi_wl_entry *wl_e;
1114 struct ubi_volume *vol;
1115 struct ubi_vid_hdr *avhdr, *dvhdr;
1116 struct ubi_work *ubi_wrk;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001117 struct rb_node *tmp_rb;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001118 int ret, i, j, free_peb_count, used_peb_count, vol_count;
1119 int scrub_peb_count, erase_peb_count;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001120 int *seen_pebs = NULL;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001121
1122 fm_raw = ubi->fm_buf;
1123 memset(ubi->fm_buf, 0, ubi->fm_size);
1124
1125 avhdr = new_fm_vhdr(ubi, UBI_FM_SB_VOLUME_ID);
1126 if (!avhdr) {
1127 ret = -ENOMEM;
1128 goto out;
1129 }
1130
1131 dvhdr = new_fm_vhdr(ubi, UBI_FM_DATA_VOLUME_ID);
1132 if (!dvhdr) {
1133 ret = -ENOMEM;
1134 goto out_kfree;
1135 }
1136
Heiko Schocher94b66de2015-10-22 06:19:21 +02001137 seen_pebs = init_seen(ubi);
1138 if (IS_ERR(seen_pebs)) {
1139 ret = PTR_ERR(seen_pebs);
1140 goto out_kfree;
1141 }
1142
Heiko Schocherf5895d12014-06-24 10:10:04 +02001143 spin_lock(&ubi->volumes_lock);
1144 spin_lock(&ubi->wl_lock);
1145
1146 fmsb = (struct ubi_fm_sb *)fm_raw;
1147 fm_pos += sizeof(*fmsb);
1148 ubi_assert(fm_pos <= ubi->fm_size);
1149
1150 fmh = (struct ubi_fm_hdr *)(fm_raw + fm_pos);
1151 fm_pos += sizeof(*fmh);
1152 ubi_assert(fm_pos <= ubi->fm_size);
1153
1154 fmsb->magic = cpu_to_be32(UBI_FM_SB_MAGIC);
1155 fmsb->version = UBI_FM_FMT_VERSION;
1156 fmsb->used_blocks = cpu_to_be32(new_fm->used_blocks);
1157 /* the max sqnum will be filled in while *reading* the fastmap */
1158 fmsb->sqnum = 0;
1159
1160 fmh->magic = cpu_to_be32(UBI_FM_HDR_MAGIC);
1161 free_peb_count = 0;
1162 used_peb_count = 0;
1163 scrub_peb_count = 0;
1164 erase_peb_count = 0;
1165 vol_count = 0;
1166
Heiko Schocher94b66de2015-10-22 06:19:21 +02001167 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
1168 fm_pos += sizeof(*fmpl);
1169 fmpl->magic = cpu_to_be32(UBI_FM_POOL_MAGIC);
1170 fmpl->size = cpu_to_be16(ubi->fm_pool.size);
1171 fmpl->max_size = cpu_to_be16(ubi->fm_pool.max_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001172
Heiko Schocher94b66de2015-10-22 06:19:21 +02001173 for (i = 0; i < ubi->fm_pool.size; i++) {
1174 fmpl->pebs[i] = cpu_to_be32(ubi->fm_pool.pebs[i]);
1175 set_seen(ubi, ubi->fm_pool.pebs[i], seen_pebs);
1176 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001177
Heiko Schocher94b66de2015-10-22 06:19:21 +02001178 fmpl_wl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
1179 fm_pos += sizeof(*fmpl_wl);
1180 fmpl_wl->magic = cpu_to_be32(UBI_FM_POOL_MAGIC);
1181 fmpl_wl->size = cpu_to_be16(ubi->fm_wl_pool.size);
1182 fmpl_wl->max_size = cpu_to_be16(ubi->fm_wl_pool.max_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001183
Heiko Schocher94b66de2015-10-22 06:19:21 +02001184 for (i = 0; i < ubi->fm_wl_pool.size; i++) {
1185 fmpl_wl->pebs[i] = cpu_to_be32(ubi->fm_wl_pool.pebs[i]);
1186 set_seen(ubi, ubi->fm_wl_pool.pebs[i], seen_pebs);
1187 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001188
Heiko Schocher94b66de2015-10-22 06:19:21 +02001189 ubi_for_each_free_peb(ubi, wl_e, tmp_rb) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001190 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1191
1192 fec->pnum = cpu_to_be32(wl_e->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001193 set_seen(ubi, wl_e->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001194 fec->ec = cpu_to_be32(wl_e->ec);
1195
1196 free_peb_count++;
1197 fm_pos += sizeof(*fec);
1198 ubi_assert(fm_pos <= ubi->fm_size);
1199 }
1200 fmh->free_peb_count = cpu_to_be32(free_peb_count);
1201
Heiko Schocher94b66de2015-10-22 06:19:21 +02001202 ubi_for_each_used_peb(ubi, wl_e, tmp_rb) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001203 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1204
1205 fec->pnum = cpu_to_be32(wl_e->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001206 set_seen(ubi, wl_e->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001207 fec->ec = cpu_to_be32(wl_e->ec);
1208
1209 used_peb_count++;
1210 fm_pos += sizeof(*fec);
1211 ubi_assert(fm_pos <= ubi->fm_size);
1212 }
Heiko Schocher94b66de2015-10-22 06:19:21 +02001213
1214 ubi_for_each_protected_peb(ubi, i, wl_e) {
1215 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1216
1217 fec->pnum = cpu_to_be32(wl_e->pnum);
1218 set_seen(ubi, wl_e->pnum, seen_pebs);
1219 fec->ec = cpu_to_be32(wl_e->ec);
1220
1221 used_peb_count++;
1222 fm_pos += sizeof(*fec);
1223 ubi_assert(fm_pos <= ubi->fm_size);
1224 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001225 fmh->used_peb_count = cpu_to_be32(used_peb_count);
1226
Heiko Schocher94b66de2015-10-22 06:19:21 +02001227 ubi_for_each_scrub_peb(ubi, wl_e, tmp_rb) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001228 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1229
1230 fec->pnum = cpu_to_be32(wl_e->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001231 set_seen(ubi, wl_e->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001232 fec->ec = cpu_to_be32(wl_e->ec);
1233
1234 scrub_peb_count++;
1235 fm_pos += sizeof(*fec);
1236 ubi_assert(fm_pos <= ubi->fm_size);
1237 }
1238 fmh->scrub_peb_count = cpu_to_be32(scrub_peb_count);
1239
Heiko Schocherf5895d12014-06-24 10:10:04 +02001240 list_for_each_entry(ubi_wrk, &ubi->works, list) {
1241 if (ubi_is_erase_work(ubi_wrk)) {
1242 wl_e = ubi_wrk->e;
1243 ubi_assert(wl_e);
1244
1245 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1246
1247 fec->pnum = cpu_to_be32(wl_e->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001248 set_seen(ubi, wl_e->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001249 fec->ec = cpu_to_be32(wl_e->ec);
1250
1251 erase_peb_count++;
1252 fm_pos += sizeof(*fec);
1253 ubi_assert(fm_pos <= ubi->fm_size);
1254 }
1255 }
1256 fmh->erase_peb_count = cpu_to_be32(erase_peb_count);
1257
1258 for (i = 0; i < UBI_MAX_VOLUMES + UBI_INT_VOL_COUNT; i++) {
1259 vol = ubi->volumes[i];
1260
1261 if (!vol)
1262 continue;
1263
1264 vol_count++;
1265
1266 fvh = (struct ubi_fm_volhdr *)(fm_raw + fm_pos);
1267 fm_pos += sizeof(*fvh);
1268 ubi_assert(fm_pos <= ubi->fm_size);
1269
1270 fvh->magic = cpu_to_be32(UBI_FM_VHDR_MAGIC);
1271 fvh->vol_id = cpu_to_be32(vol->vol_id);
1272 fvh->vol_type = vol->vol_type;
1273 fvh->used_ebs = cpu_to_be32(vol->used_ebs);
1274 fvh->data_pad = cpu_to_be32(vol->data_pad);
1275 fvh->last_eb_bytes = cpu_to_be32(vol->last_eb_bytes);
1276
1277 ubi_assert(vol->vol_type == UBI_DYNAMIC_VOLUME ||
1278 vol->vol_type == UBI_STATIC_VOLUME);
1279
1280 feba = (struct ubi_fm_eba *)(fm_raw + fm_pos);
1281 fm_pos += sizeof(*feba) + (sizeof(__be32) * vol->reserved_pebs);
1282 ubi_assert(fm_pos <= ubi->fm_size);
1283
1284 for (j = 0; j < vol->reserved_pebs; j++)
1285 feba->pnum[j] = cpu_to_be32(vol->eba_tbl[j]);
1286
1287 feba->reserved_pebs = cpu_to_be32(j);
1288 feba->magic = cpu_to_be32(UBI_FM_EBA_MAGIC);
1289 }
1290 fmh->vol_count = cpu_to_be32(vol_count);
1291 fmh->bad_peb_count = cpu_to_be32(ubi->bad_peb_count);
1292
1293 avhdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1294 avhdr->lnum = 0;
1295
1296 spin_unlock(&ubi->wl_lock);
1297 spin_unlock(&ubi->volumes_lock);
1298
1299 dbg_bld("writing fastmap SB to PEB %i", new_fm->e[0]->pnum);
1300 ret = ubi_io_write_vid_hdr(ubi, new_fm->e[0]->pnum, avhdr);
1301 if (ret) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001302 ubi_err(ubi, "unable to write vid_hdr to fastmap SB!");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001303 goto out_kfree;
1304 }
1305
1306 for (i = 0; i < new_fm->used_blocks; i++) {
1307 fmsb->block_loc[i] = cpu_to_be32(new_fm->e[i]->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001308 set_seen(ubi, new_fm->e[i]->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001309 fmsb->block_ec[i] = cpu_to_be32(new_fm->e[i]->ec);
1310 }
1311
1312 fmsb->data_crc = 0;
1313 fmsb->data_crc = cpu_to_be32(crc32(UBI_CRC32_INIT, fm_raw,
1314 ubi->fm_size));
1315
1316 for (i = 1; i < new_fm->used_blocks; i++) {
1317 dvhdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1318 dvhdr->lnum = cpu_to_be32(i);
1319 dbg_bld("writing fastmap data to PEB %i sqnum %llu",
1320 new_fm->e[i]->pnum, be64_to_cpu(dvhdr->sqnum));
1321 ret = ubi_io_write_vid_hdr(ubi, new_fm->e[i]->pnum, dvhdr);
1322 if (ret) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001323 ubi_err(ubi, "unable to write vid_hdr to PEB %i!",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001324 new_fm->e[i]->pnum);
1325 goto out_kfree;
1326 }
1327 }
1328
1329 for (i = 0; i < new_fm->used_blocks; i++) {
1330 ret = ubi_io_write(ubi, fm_raw + (i * ubi->leb_size),
1331 new_fm->e[i]->pnum, ubi->leb_start, ubi->leb_size);
1332 if (ret) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001333 ubi_err(ubi, "unable to write fastmap to PEB %i!",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001334 new_fm->e[i]->pnum);
1335 goto out_kfree;
1336 }
1337 }
1338
1339 ubi_assert(new_fm);
1340 ubi->fm = new_fm;
1341
Heiko Schocher94b66de2015-10-22 06:19:21 +02001342 ret = self_check_seen(ubi, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001343 dbg_bld("fastmap written!");
1344
1345out_kfree:
1346 ubi_free_vid_hdr(ubi, avhdr);
1347 ubi_free_vid_hdr(ubi, dvhdr);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001348 free_seen(seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001349out:
1350 return ret;
1351}
1352
1353/**
1354 * erase_block - Manually erase a PEB.
1355 * @ubi: UBI device object
1356 * @pnum: PEB to be erased
1357 *
1358 * Returns the new EC value on success, < 0 indicates an internal error.
1359 */
1360static int erase_block(struct ubi_device *ubi, int pnum)
1361{
1362 int ret;
1363 struct ubi_ec_hdr *ec_hdr;
1364 long long ec;
1365
1366 ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1367 if (!ec_hdr)
1368 return -ENOMEM;
1369
1370 ret = ubi_io_read_ec_hdr(ubi, pnum, ec_hdr, 0);
1371 if (ret < 0)
1372 goto out;
1373 else if (ret && ret != UBI_IO_BITFLIPS) {
1374 ret = -EINVAL;
1375 goto out;
1376 }
1377
1378 ret = ubi_io_sync_erase(ubi, pnum, 0);
1379 if (ret < 0)
1380 goto out;
1381
1382 ec = be64_to_cpu(ec_hdr->ec);
1383 ec += ret;
1384 if (ec > UBI_MAX_ERASECOUNTER) {
1385 ret = -EINVAL;
1386 goto out;
1387 }
1388
1389 ec_hdr->ec = cpu_to_be64(ec);
1390 ret = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);
1391 if (ret < 0)
1392 goto out;
1393
1394 ret = ec;
1395out:
1396 kfree(ec_hdr);
1397 return ret;
1398}
1399
1400/**
1401 * invalidate_fastmap - destroys a fastmap.
1402 * @ubi: UBI device object
Heiko Schocherf5895d12014-06-24 10:10:04 +02001403 *
Heiko Schocher94b66de2015-10-22 06:19:21 +02001404 * This function ensures that upon next UBI attach a full scan
1405 * is issued. We need this if UBI is about to write a new fastmap
1406 * but is unable to do so. In this case we have two options:
1407 * a) Make sure that the current fastmap will not be usued upon
1408 * attach time and contine or b) fall back to RO mode to have the
1409 * current fastmap in a valid state.
Heiko Schocherf5895d12014-06-24 10:10:04 +02001410 * Returns 0 on success, < 0 indicates an internal error.
1411 */
Heiko Schocher94b66de2015-10-22 06:19:21 +02001412static int invalidate_fastmap(struct ubi_device *ubi)
Heiko Schocherf5895d12014-06-24 10:10:04 +02001413{
1414 int ret;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001415 struct ubi_fastmap_layout *fm;
1416 struct ubi_wl_entry *e;
1417 struct ubi_vid_hdr *vh = NULL;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001418
Heiko Schocher94b66de2015-10-22 06:19:21 +02001419 if (!ubi->fm)
1420 return 0;
1421
1422 ubi->fm = NULL;
1423
1424 ret = -ENOMEM;
1425 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
1426 if (!fm)
1427 goto out;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001428
1429 vh = new_fm_vhdr(ubi, UBI_FM_SB_VOLUME_ID);
1430 if (!vh)
Heiko Schocher94b66de2015-10-22 06:19:21 +02001431 goto out_free_fm;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001432
Heiko Schocher94b66de2015-10-22 06:19:21 +02001433 ret = -ENOSPC;
1434 e = ubi_wl_get_fm_peb(ubi, 1);
1435 if (!e)
1436 goto out_free_fm;
1437
1438 /*
1439 * Create fake fastmap such that UBI will fall back
1440 * to scanning mode.
1441 */
Heiko Schocherf5895d12014-06-24 10:10:04 +02001442 vh->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Heiko Schocher94b66de2015-10-22 06:19:21 +02001443 ret = ubi_io_write_vid_hdr(ubi, e->pnum, vh);
1444 if (ret < 0) {
1445 ubi_wl_put_fm_peb(ubi, e, 0, 0);
1446 goto out_free_fm;
1447 }
1448
1449 fm->used_blocks = 1;
1450 fm->e[0] = e;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001451
Heiko Schocher94b66de2015-10-22 06:19:21 +02001452 ubi->fm = fm;
1453
1454out:
1455 ubi_free_vid_hdr(ubi, vh);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001456 return ret;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001457
1458out_free_fm:
1459 kfree(fm);
1460 goto out;
1461}
1462
1463/**
1464 * return_fm_pebs - returns all PEBs used by a fastmap back to the
1465 * WL sub-system.
1466 * @ubi: UBI device object
1467 * @fm: fastmap layout object
1468 */
1469static void return_fm_pebs(struct ubi_device *ubi,
1470 struct ubi_fastmap_layout *fm)
1471{
1472 int i;
1473
1474 if (!fm)
1475 return;
1476
1477 for (i = 0; i < fm->used_blocks; i++) {
1478 if (fm->e[i]) {
1479 ubi_wl_put_fm_peb(ubi, fm->e[i], i,
1480 fm->to_be_tortured[i]);
1481 fm->e[i] = NULL;
1482 }
1483 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001484}
1485
1486/**
1487 * ubi_update_fastmap - will be called by UBI if a volume changes or
1488 * a fastmap pool becomes full.
1489 * @ubi: UBI device object
1490 *
1491 * Returns 0 on success, < 0 indicates an internal error.
1492 */
1493int ubi_update_fastmap(struct ubi_device *ubi)
1494{
Heiko Schocher94b66de2015-10-22 06:19:21 +02001495 int ret, i, j;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001496 struct ubi_fastmap_layout *new_fm, *old_fm;
1497 struct ubi_wl_entry *tmp_e;
1498
Heiko Schocher94b66de2015-10-22 06:19:21 +02001499 down_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001500
1501 ubi_refill_pools(ubi);
1502
1503 if (ubi->ro_mode || ubi->fm_disabled) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001504 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001505 return 0;
1506 }
1507
1508 ret = ubi_ensure_anchor_pebs(ubi);
1509 if (ret) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001510 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001511 return ret;
1512 }
1513
1514 new_fm = kzalloc(sizeof(*new_fm), GFP_KERNEL);
1515 if (!new_fm) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001516 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001517 return -ENOMEM;
1518 }
1519
1520 new_fm->used_blocks = ubi->fm_size / ubi->leb_size;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001521 old_fm = ubi->fm;
1522 ubi->fm = NULL;
1523
1524 if (new_fm->used_blocks > UBI_FM_MAX_BLOCKS) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001525 ubi_err(ubi, "fastmap too large");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001526 ret = -ENOSPC;
1527 goto err;
1528 }
1529
1530 for (i = 1; i < new_fm->used_blocks; i++) {
1531 spin_lock(&ubi->wl_lock);
1532 tmp_e = ubi_wl_get_fm_peb(ubi, 0);
1533 spin_unlock(&ubi->wl_lock);
1534
Heiko Schocher94b66de2015-10-22 06:19:21 +02001535 if (!tmp_e) {
1536 if (old_fm && old_fm->e[i]) {
1537 ret = erase_block(ubi, old_fm->e[i]->pnum);
1538 if (ret < 0) {
1539 ubi_err(ubi, "could not erase old fastmap PEB");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001540
Heiko Schocher94b66de2015-10-22 06:19:21 +02001541 for (j = 1; j < i; j++) {
1542 ubi_wl_put_fm_peb(ubi, new_fm->e[j],
1543 j, 0);
1544 new_fm->e[j] = NULL;
1545 }
1546 goto err;
1547 }
1548 new_fm->e[i] = old_fm->e[i];
1549 old_fm->e[i] = NULL;
1550 } else {
1551 ubi_err(ubi, "could not get any free erase block");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001552
Heiko Schocher94b66de2015-10-22 06:19:21 +02001553 for (j = 1; j < i; j++) {
1554 ubi_wl_put_fm_peb(ubi, new_fm->e[j], j, 0);
1555 new_fm->e[j] = NULL;
1556 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001557
Heiko Schocher94b66de2015-10-22 06:19:21 +02001558 ret = -ENOSPC;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001559 goto err;
1560 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001561 } else {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001562 new_fm->e[i] = tmp_e;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001563
Heiko Schocher94b66de2015-10-22 06:19:21 +02001564 if (old_fm && old_fm->e[i]) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001565 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1566 old_fm->to_be_tortured[i]);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001567 old_fm->e[i] = NULL;
1568 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001569 }
1570 }
1571
Heiko Schocher94b66de2015-10-22 06:19:21 +02001572 /* Old fastmap is larger than the new one */
1573 if (old_fm && new_fm->used_blocks < old_fm->used_blocks) {
1574 for (i = new_fm->used_blocks; i < old_fm->used_blocks; i++) {
1575 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1576 old_fm->to_be_tortured[i]);
1577 old_fm->e[i] = NULL;
1578 }
1579 }
1580
Heiko Schocherf5895d12014-06-24 10:10:04 +02001581 spin_lock(&ubi->wl_lock);
1582 tmp_e = ubi_wl_get_fm_peb(ubi, 1);
1583 spin_unlock(&ubi->wl_lock);
1584
1585 if (old_fm) {
1586 /* no fresh anchor PEB was found, reuse the old one */
1587 if (!tmp_e) {
1588 ret = erase_block(ubi, old_fm->e[0]->pnum);
1589 if (ret < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001590 ubi_err(ubi, "could not erase old anchor PEB");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001591
Heiko Schocher94b66de2015-10-22 06:19:21 +02001592 for (i = 1; i < new_fm->used_blocks; i++) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001593 ubi_wl_put_fm_peb(ubi, new_fm->e[i],
1594 i, 0);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001595 new_fm->e[i] = NULL;
1596 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001597 goto err;
1598 }
Heiko Schocher94b66de2015-10-22 06:19:21 +02001599 new_fm->e[0] = old_fm->e[0];
Heiko Schocherf5895d12014-06-24 10:10:04 +02001600 new_fm->e[0]->ec = ret;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001601 old_fm->e[0] = NULL;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001602 } else {
1603 /* we've got a new anchor PEB, return the old one */
1604 ubi_wl_put_fm_peb(ubi, old_fm->e[0], 0,
1605 old_fm->to_be_tortured[0]);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001606 new_fm->e[0] = tmp_e;
1607 old_fm->e[0] = NULL;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001608 }
1609 } else {
1610 if (!tmp_e) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001611 ubi_err(ubi, "could not find any anchor PEB");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001612
Heiko Schocher94b66de2015-10-22 06:19:21 +02001613 for (i = 1; i < new_fm->used_blocks; i++) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001614 ubi_wl_put_fm_peb(ubi, new_fm->e[i], i, 0);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001615 new_fm->e[i] = NULL;
1616 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001617
1618 ret = -ENOSPC;
1619 goto err;
1620 }
Heiko Schocher94b66de2015-10-22 06:19:21 +02001621 new_fm->e[0] = tmp_e;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001622 }
1623
1624 down_write(&ubi->work_sem);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001625 down_write(&ubi->fm_eba_sem);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001626 ret = ubi_write_fastmap(ubi, new_fm);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001627 up_write(&ubi->fm_eba_sem);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001628 up_write(&ubi->work_sem);
1629
1630 if (ret)
1631 goto err;
1632
1633out_unlock:
Heiko Schocher94b66de2015-10-22 06:19:21 +02001634 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001635 kfree(old_fm);
1636 return ret;
1637
1638err:
Heiko Schocher94b66de2015-10-22 06:19:21 +02001639 ubi_warn(ubi, "Unable to write new fastmap, err=%i", ret);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001640
Heiko Schocher94b66de2015-10-22 06:19:21 +02001641 ret = invalidate_fastmap(ubi);
1642 if (ret < 0) {
1643 ubi_err(ubi, "Unable to invalidiate current fastmap!");
1644 ubi_ro_mode(ubi);
1645 } else {
1646 return_fm_pebs(ubi, old_fm);
1647 return_fm_pebs(ubi, new_fm);
1648 ret = 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001649 }
Heiko Schocher94b66de2015-10-22 06:19:21 +02001650
1651 kfree(new_fm);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001652 goto out_unlock;
1653}