blob: 21750e1817b311edfbfb2c513b62ab6029240323 [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;
584 int n = 0;
585
586 list_for_each_entry(aeb, &ai->erase, u.list)
587 n++;
588
589 list_for_each_entry(aeb, &ai->free, u.list)
590 n++;
591
592 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb)
593 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
594 n++;
595
596 return n;
597}
598
599/**
600 * ubi_attach_fastmap - creates ubi_attach_info from a fastmap.
601 * @ubi: UBI device object
602 * @ai: UBI attach info object
603 * @fm: the fastmap to be attached
604 *
605 * Returns 0 on success, UBI_BAD_FASTMAP if the found fastmap was unusable.
606 * < 0 indicates an internal error.
607 */
608static int ubi_attach_fastmap(struct ubi_device *ubi,
609 struct ubi_attach_info *ai,
610 struct ubi_fastmap_layout *fm)
611{
Heiko Schocher94b66de2015-10-22 06:19:21 +0200612 struct list_head used, free;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200613 struct ubi_ainf_volume *av;
614 struct ubi_ainf_peb *aeb, *tmp_aeb, *_tmp_aeb;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200615 struct ubi_fm_sb *fmsb;
616 struct ubi_fm_hdr *fmhdr;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200617 struct ubi_fm_scan_pool *fmpl, *fmpl_wl;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200618 struct ubi_fm_ec *fmec;
619 struct ubi_fm_volhdr *fmvhdr;
620 struct ubi_fm_eba *fm_eba;
621 int ret, i, j, pool_size, wl_pool_size;
622 size_t fm_pos = 0, fm_size = ubi->fm_size;
623 unsigned long long max_sqnum = 0;
624 void *fm_raw = ubi->fm_buf;
625
626 INIT_LIST_HEAD(&used);
Heiko Schocher94b66de2015-10-22 06:19:21 +0200627 INIT_LIST_HEAD(&free);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200628 ai->min_ec = UBI_MAX_ERASECOUNTER;
629
Heiko Schocherf5895d12014-06-24 10:10:04 +0200630 fmsb = (struct ubi_fm_sb *)(fm_raw);
631 ai->max_sqnum = fmsb->sqnum;
632 fm_pos += sizeof(struct ubi_fm_sb);
633 if (fm_pos >= fm_size)
634 goto fail_bad;
635
636 fmhdr = (struct ubi_fm_hdr *)(fm_raw + fm_pos);
637 fm_pos += sizeof(*fmhdr);
638 if (fm_pos >= fm_size)
639 goto fail_bad;
640
641 if (be32_to_cpu(fmhdr->magic) != UBI_FM_HDR_MAGIC) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200642 ubi_err(ubi, "bad fastmap header magic: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200643 be32_to_cpu(fmhdr->magic), UBI_FM_HDR_MAGIC);
644 goto fail_bad;
645 }
646
Heiko Schocher94b66de2015-10-22 06:19:21 +0200647 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
648 fm_pos += sizeof(*fmpl);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200649 if (fm_pos >= fm_size)
650 goto fail_bad;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200651 if (be32_to_cpu(fmpl->magic) != UBI_FM_POOL_MAGIC) {
652 ubi_err(ubi, "bad fastmap pool magic: 0x%x, expected: 0x%x",
653 be32_to_cpu(fmpl->magic), UBI_FM_POOL_MAGIC);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200654 goto fail_bad;
655 }
656
Heiko Schocher94b66de2015-10-22 06:19:21 +0200657 fmpl_wl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
658 fm_pos += sizeof(*fmpl_wl);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200659 if (fm_pos >= fm_size)
660 goto fail_bad;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200661 if (be32_to_cpu(fmpl_wl->magic) != UBI_FM_POOL_MAGIC) {
662 ubi_err(ubi, "bad fastmap WL pool magic: 0x%x, expected: 0x%x",
663 be32_to_cpu(fmpl_wl->magic), UBI_FM_POOL_MAGIC);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200664 goto fail_bad;
665 }
666
Heiko Schocher94b66de2015-10-22 06:19:21 +0200667 pool_size = be16_to_cpu(fmpl->size);
668 wl_pool_size = be16_to_cpu(fmpl_wl->size);
669 fm->max_pool_size = be16_to_cpu(fmpl->max_size);
670 fm->max_wl_pool_size = be16_to_cpu(fmpl_wl->max_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200671
672 if (pool_size > UBI_FM_MAX_POOL_SIZE || pool_size < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200673 ubi_err(ubi, "bad pool size: %i", pool_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200674 goto fail_bad;
675 }
676
677 if (wl_pool_size > UBI_FM_MAX_POOL_SIZE || wl_pool_size < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200678 ubi_err(ubi, "bad WL pool size: %i", wl_pool_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200679 goto fail_bad;
680 }
681
Heiko Schocherf5895d12014-06-24 10:10:04 +0200682 if (fm->max_pool_size > UBI_FM_MAX_POOL_SIZE ||
683 fm->max_pool_size < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200684 ubi_err(ubi, "bad maximal pool size: %i", fm->max_pool_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200685 goto fail_bad;
686 }
687
688 if (fm->max_wl_pool_size > UBI_FM_MAX_POOL_SIZE ||
689 fm->max_wl_pool_size < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200690 ubi_err(ubi, "bad maximal WL pool size: %i",
691 fm->max_wl_pool_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200692 goto fail_bad;
693 }
694
695 /* read EC values from free list */
696 for (i = 0; i < be32_to_cpu(fmhdr->free_peb_count); i++) {
697 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
698 fm_pos += sizeof(*fmec);
699 if (fm_pos >= fm_size)
700 goto fail_bad;
701
702 add_aeb(ai, &ai->free, be32_to_cpu(fmec->pnum),
703 be32_to_cpu(fmec->ec), 0);
704 }
705
706 /* read EC values from used list */
707 for (i = 0; i < be32_to_cpu(fmhdr->used_peb_count); i++) {
708 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
709 fm_pos += sizeof(*fmec);
710 if (fm_pos >= fm_size)
711 goto fail_bad;
712
713 add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
714 be32_to_cpu(fmec->ec), 0);
715 }
716
717 /* read EC values from scrub list */
718 for (i = 0; i < be32_to_cpu(fmhdr->scrub_peb_count); i++) {
719 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
720 fm_pos += sizeof(*fmec);
721 if (fm_pos >= fm_size)
722 goto fail_bad;
723
724 add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
725 be32_to_cpu(fmec->ec), 1);
726 }
727
728 /* read EC values from erase list */
729 for (i = 0; i < be32_to_cpu(fmhdr->erase_peb_count); i++) {
730 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
731 fm_pos += sizeof(*fmec);
732 if (fm_pos >= fm_size)
733 goto fail_bad;
734
735 add_aeb(ai, &ai->erase, be32_to_cpu(fmec->pnum),
736 be32_to_cpu(fmec->ec), 1);
737 }
738
739 ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
740 ai->bad_peb_count = be32_to_cpu(fmhdr->bad_peb_count);
741
742 /* Iterate over all volumes and read their EBA table */
743 for (i = 0; i < be32_to_cpu(fmhdr->vol_count); i++) {
744 fmvhdr = (struct ubi_fm_volhdr *)(fm_raw + fm_pos);
745 fm_pos += sizeof(*fmvhdr);
746 if (fm_pos >= fm_size)
747 goto fail_bad;
748
749 if (be32_to_cpu(fmvhdr->magic) != UBI_FM_VHDR_MAGIC) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200750 ubi_err(ubi, "bad fastmap vol header magic: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200751 be32_to_cpu(fmvhdr->magic), UBI_FM_VHDR_MAGIC);
752 goto fail_bad;
753 }
754
755 av = add_vol(ai, be32_to_cpu(fmvhdr->vol_id),
756 be32_to_cpu(fmvhdr->used_ebs),
757 be32_to_cpu(fmvhdr->data_pad),
758 fmvhdr->vol_type,
759 be32_to_cpu(fmvhdr->last_eb_bytes));
760
761 if (!av)
762 goto fail_bad;
Heiko Schocher94b66de2015-10-22 06:19:21 +0200763 if (PTR_ERR(av) == -EINVAL) {
764 ubi_err(ubi, "volume (ID %i) already exists",
765 fmvhdr->vol_id);
766 goto fail_bad;
767 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200768
769 ai->vols_found++;
770 if (ai->highest_vol_id < be32_to_cpu(fmvhdr->vol_id))
771 ai->highest_vol_id = be32_to_cpu(fmvhdr->vol_id);
772
773 fm_eba = (struct ubi_fm_eba *)(fm_raw + fm_pos);
774 fm_pos += sizeof(*fm_eba);
775 fm_pos += (sizeof(__be32) * be32_to_cpu(fm_eba->reserved_pebs));
776 if (fm_pos >= fm_size)
777 goto fail_bad;
778
779 if (be32_to_cpu(fm_eba->magic) != UBI_FM_EBA_MAGIC) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200780 ubi_err(ubi, "bad fastmap EBA header magic: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200781 be32_to_cpu(fm_eba->magic), UBI_FM_EBA_MAGIC);
782 goto fail_bad;
783 }
784
785 for (j = 0; j < be32_to_cpu(fm_eba->reserved_pebs); j++) {
786 int pnum = be32_to_cpu(fm_eba->pnum[j]);
787
788 if ((int)be32_to_cpu(fm_eba->pnum[j]) < 0)
789 continue;
790
791 aeb = NULL;
792 list_for_each_entry(tmp_aeb, &used, u.list) {
793 if (tmp_aeb->pnum == pnum) {
794 aeb = tmp_aeb;
795 break;
796 }
797 }
798
Heiko Schocherf5895d12014-06-24 10:10:04 +0200799 if (!aeb) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200800 ubi_err(ubi, "PEB %i is in EBA but not in used list", pnum);
801 goto fail_bad;
Heiko Schocherf5895d12014-06-24 10:10:04 +0200802 }
803
804 aeb->lnum = j;
805
806 if (av->highest_lnum <= aeb->lnum)
807 av->highest_lnum = aeb->lnum;
808
809 assign_aeb_to_av(ai, aeb, av);
810
811 dbg_bld("inserting PEB:%i (LEB %i) to vol %i",
812 aeb->pnum, aeb->lnum, av->vol_id);
813 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200814 }
815
Heiko Schocher94b66de2015-10-22 06:19:21 +0200816 ret = scan_pool(ubi, ai, fmpl->pebs, pool_size, &max_sqnum, &free);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200817 if (ret)
818 goto fail;
819
Heiko Schocher94b66de2015-10-22 06:19:21 +0200820 ret = scan_pool(ubi, ai, fmpl_wl->pebs, wl_pool_size, &max_sqnum, &free);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200821 if (ret)
822 goto fail;
823
824 if (max_sqnum > ai->max_sqnum)
825 ai->max_sqnum = max_sqnum;
826
Heiko Schocher94b66de2015-10-22 06:19:21 +0200827 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list)
Heiko Schocherf5895d12014-06-24 10:10:04 +0200828 list_move_tail(&tmp_aeb->u.list, &ai->free);
829
Heiko Schocher94b66de2015-10-22 06:19:21 +0200830 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list)
831 list_move_tail(&tmp_aeb->u.list, &ai->erase);
832
833 ubi_assert(list_empty(&free));
Heiko Schocherf5895d12014-06-24 10:10:04 +0200834
835 /*
836 * If fastmap is leaking PEBs (must not happen), raise a
837 * fat warning and fall back to scanning mode.
838 * We do this here because in ubi_wl_init() it's too late
839 * and we cannot fall back to scanning.
840 */
841#ifndef __UBOOT__
842 if (WARN_ON(count_fastmap_pebs(ai) != ubi->peb_count -
843 ai->bad_peb_count - fm->used_blocks))
844 goto fail_bad;
845#else
846 if (count_fastmap_pebs(ai) != ubi->peb_count -
847 ai->bad_peb_count - fm->used_blocks) {
848 WARN_ON(1);
849 goto fail_bad;
850 }
851#endif
852
853 return 0;
854
855fail_bad:
856 ret = UBI_BAD_FASTMAP;
857fail:
858 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list) {
859 list_del(&tmp_aeb->u.list);
860 kmem_cache_free(ai->aeb_slab_cache, tmp_aeb);
861 }
Heiko Schocher94b66de2015-10-22 06:19:21 +0200862 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list) {
Heiko Schocherf5895d12014-06-24 10:10:04 +0200863 list_del(&tmp_aeb->u.list);
864 kmem_cache_free(ai->aeb_slab_cache, tmp_aeb);
865 }
Heiko Schocherf5895d12014-06-24 10:10:04 +0200866
867 return ret;
868}
869
870/**
871 * ubi_scan_fastmap - scan the fastmap.
872 * @ubi: UBI device object
873 * @ai: UBI attach info to be filled
874 * @fm_anchor: The fastmap starts at this PEB
875 *
876 * Returns 0 on success, UBI_NO_FASTMAP if no fastmap was found,
877 * UBI_BAD_FASTMAP if one was found but is not usable.
878 * < 0 indicates an internal error.
879 */
880int ubi_scan_fastmap(struct ubi_device *ubi, struct ubi_attach_info *ai,
881 int fm_anchor)
882{
883 struct ubi_fm_sb *fmsb, *fmsb2;
884 struct ubi_vid_hdr *vh;
885 struct ubi_ec_hdr *ech;
886 struct ubi_fastmap_layout *fm;
887 int i, used_blocks, pnum, ret = 0;
888 size_t fm_size;
889 __be32 crc, tmp_crc;
890 unsigned long long sqnum = 0;
891
Heiko Schocher94b66de2015-10-22 06:19:21 +0200892 down_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200893 memset(ubi->fm_buf, 0, ubi->fm_size);
894
895 fmsb = kmalloc(sizeof(*fmsb), GFP_KERNEL);
896 if (!fmsb) {
897 ret = -ENOMEM;
898 goto out;
899 }
900
901 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
902 if (!fm) {
903 ret = -ENOMEM;
904 kfree(fmsb);
905 goto out;
906 }
907
908 ret = ubi_io_read(ubi, fmsb, fm_anchor, ubi->leb_start, sizeof(*fmsb));
909 if (ret && ret != UBI_IO_BITFLIPS)
910 goto free_fm_sb;
911 else if (ret == UBI_IO_BITFLIPS)
912 fm->to_be_tortured[0] = 1;
913
914 if (be32_to_cpu(fmsb->magic) != UBI_FM_SB_MAGIC) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200915 ubi_err(ubi, "bad super block magic: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200916 be32_to_cpu(fmsb->magic), UBI_FM_SB_MAGIC);
917 ret = UBI_BAD_FASTMAP;
918 goto free_fm_sb;
919 }
920
921 if (fmsb->version != UBI_FM_FMT_VERSION) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200922 ubi_err(ubi, "bad fastmap version: %i, expected: %i",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200923 fmsb->version, UBI_FM_FMT_VERSION);
924 ret = UBI_BAD_FASTMAP;
925 goto free_fm_sb;
926 }
927
928 used_blocks = be32_to_cpu(fmsb->used_blocks);
929 if (used_blocks > UBI_FM_MAX_BLOCKS || used_blocks < 1) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200930 ubi_err(ubi, "number of fastmap blocks is invalid: %i",
931 used_blocks);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200932 ret = UBI_BAD_FASTMAP;
933 goto free_fm_sb;
934 }
935
936 fm_size = ubi->leb_size * used_blocks;
937 if (fm_size != ubi->fm_size) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200938 ubi_err(ubi, "bad fastmap size: %zi, expected: %zi",
939 fm_size, ubi->fm_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +0200940 ret = UBI_BAD_FASTMAP;
941 goto free_fm_sb;
942 }
943
944 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
945 if (!ech) {
946 ret = -ENOMEM;
947 goto free_fm_sb;
948 }
949
950 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
951 if (!vh) {
952 ret = -ENOMEM;
953 goto free_hdr;
954 }
955
956 for (i = 0; i < used_blocks; i++) {
957 int image_seq;
958
959 pnum = be32_to_cpu(fmsb->block_loc[i]);
960
961 if (ubi_io_is_bad(ubi, pnum)) {
962 ret = UBI_BAD_FASTMAP;
963 goto free_hdr;
964 }
965
966 ret = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
967 if (ret && ret != UBI_IO_BITFLIPS) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200968 ubi_err(ubi, "unable to read fastmap block# %i EC (PEB: %i)",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200969 i, pnum);
970 if (ret > 0)
971 ret = UBI_BAD_FASTMAP;
972 goto free_hdr;
973 } else if (ret == UBI_IO_BITFLIPS)
974 fm->to_be_tortured[i] = 1;
975
976 image_seq = be32_to_cpu(ech->image_seq);
977 if (!ubi->image_seq)
978 ubi->image_seq = image_seq;
979
980 /*
981 * Older UBI implementations have image_seq set to zero, so
982 * we shouldn't fail if image_seq == 0.
983 */
984 if (image_seq && (image_seq != ubi->image_seq)) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200985 ubi_err(ubi, "wrong image seq:%d instead of %d",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200986 be32_to_cpu(ech->image_seq), ubi->image_seq);
987 ret = UBI_BAD_FASTMAP;
988 goto free_hdr;
989 }
990
991 ret = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
992 if (ret && ret != UBI_IO_BITFLIPS) {
Heiko Schocher94b66de2015-10-22 06:19:21 +0200993 ubi_err(ubi, "unable to read fastmap block# %i (PEB: %i)",
Heiko Schocherf5895d12014-06-24 10:10:04 +0200994 i, pnum);
995 goto free_hdr;
996 }
997
998 if (i == 0) {
999 if (be32_to_cpu(vh->vol_id) != UBI_FM_SB_VOLUME_ID) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001000 ubi_err(ubi, "bad fastmap anchor vol_id: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001001 be32_to_cpu(vh->vol_id),
1002 UBI_FM_SB_VOLUME_ID);
1003 ret = UBI_BAD_FASTMAP;
1004 goto free_hdr;
1005 }
1006 } else {
1007 if (be32_to_cpu(vh->vol_id) != UBI_FM_DATA_VOLUME_ID) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001008 ubi_err(ubi, "bad fastmap data vol_id: 0x%x, expected: 0x%x",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001009 be32_to_cpu(vh->vol_id),
1010 UBI_FM_DATA_VOLUME_ID);
1011 ret = UBI_BAD_FASTMAP;
1012 goto free_hdr;
1013 }
1014 }
1015
1016 if (sqnum < be64_to_cpu(vh->sqnum))
1017 sqnum = be64_to_cpu(vh->sqnum);
1018
1019 ret = ubi_io_read(ubi, ubi->fm_buf + (ubi->leb_size * i), pnum,
1020 ubi->leb_start, ubi->leb_size);
1021 if (ret && ret != UBI_IO_BITFLIPS) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001022 ubi_err(ubi, "unable to read fastmap block# %i (PEB: %i, "
Heiko Schocherf5895d12014-06-24 10:10:04 +02001023 "err: %i)", i, pnum, ret);
1024 goto free_hdr;
1025 }
1026 }
1027
1028 kfree(fmsb);
1029 fmsb = NULL;
1030
1031 fmsb2 = (struct ubi_fm_sb *)(ubi->fm_buf);
1032 tmp_crc = be32_to_cpu(fmsb2->data_crc);
1033 fmsb2->data_crc = 0;
1034 crc = crc32(UBI_CRC32_INIT, ubi->fm_buf, fm_size);
1035 if (crc != tmp_crc) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001036 ubi_err(ubi, "fastmap data CRC is invalid");
1037 ubi_err(ubi, "CRC should be: 0x%x, calc: 0x%x",
1038 tmp_crc, crc);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001039 ret = UBI_BAD_FASTMAP;
1040 goto free_hdr;
1041 }
1042
1043 fmsb2->sqnum = sqnum;
1044
1045 fm->used_blocks = used_blocks;
1046
1047 ret = ubi_attach_fastmap(ubi, ai, fm);
1048 if (ret) {
1049 if (ret > 0)
1050 ret = UBI_BAD_FASTMAP;
1051 goto free_hdr;
1052 }
1053
1054 for (i = 0; i < used_blocks; i++) {
1055 struct ubi_wl_entry *e;
1056
1057 e = kmem_cache_alloc(ubi_wl_entry_slab, GFP_KERNEL);
1058 if (!e) {
1059 while (i--)
1060 kfree(fm->e[i]);
1061
1062 ret = -ENOMEM;
1063 goto free_hdr;
1064 }
1065
1066 e->pnum = be32_to_cpu(fmsb2->block_loc[i]);
1067 e->ec = be32_to_cpu(fmsb2->block_ec[i]);
1068 fm->e[i] = e;
1069 }
1070
1071 ubi->fm = fm;
1072 ubi->fm_pool.max_size = ubi->fm->max_pool_size;
1073 ubi->fm_wl_pool.max_size = ubi->fm->max_wl_pool_size;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001074 ubi_msg(ubi, "attached by fastmap");
1075 ubi_msg(ubi, "fastmap pool size: %d", ubi->fm_pool.max_size);
1076 ubi_msg(ubi, "fastmap WL pool size: %d",
1077 ubi->fm_wl_pool.max_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001078 ubi->fm_disabled = 0;
1079
1080 ubi_free_vid_hdr(ubi, vh);
1081 kfree(ech);
1082out:
Heiko Schocher94b66de2015-10-22 06:19:21 +02001083 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001084 if (ret == UBI_BAD_FASTMAP)
Heiko Schocher94b66de2015-10-22 06:19:21 +02001085 ubi_err(ubi, "Attach by fastmap failed, doing a full scan!");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001086 return ret;
1087
1088free_hdr:
1089 ubi_free_vid_hdr(ubi, vh);
1090 kfree(ech);
1091free_fm_sb:
1092 kfree(fmsb);
1093 kfree(fm);
1094 goto out;
1095}
1096
1097/**
1098 * ubi_write_fastmap - writes a fastmap.
1099 * @ubi: UBI device object
1100 * @new_fm: the to be written fastmap
1101 *
1102 * Returns 0 on success, < 0 indicates an internal error.
1103 */
1104static int ubi_write_fastmap(struct ubi_device *ubi,
1105 struct ubi_fastmap_layout *new_fm)
1106{
1107 size_t fm_pos = 0;
1108 void *fm_raw;
1109 struct ubi_fm_sb *fmsb;
1110 struct ubi_fm_hdr *fmh;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001111 struct ubi_fm_scan_pool *fmpl, *fmpl_wl;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001112 struct ubi_fm_ec *fec;
1113 struct ubi_fm_volhdr *fvh;
1114 struct ubi_fm_eba *feba;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001115 struct ubi_wl_entry *wl_e;
1116 struct ubi_volume *vol;
1117 struct ubi_vid_hdr *avhdr, *dvhdr;
1118 struct ubi_work *ubi_wrk;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001119 struct rb_node *tmp_rb;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001120 int ret, i, j, free_peb_count, used_peb_count, vol_count;
1121 int scrub_peb_count, erase_peb_count;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001122 int *seen_pebs = NULL;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001123
1124 fm_raw = ubi->fm_buf;
1125 memset(ubi->fm_buf, 0, ubi->fm_size);
1126
1127 avhdr = new_fm_vhdr(ubi, UBI_FM_SB_VOLUME_ID);
1128 if (!avhdr) {
1129 ret = -ENOMEM;
1130 goto out;
1131 }
1132
1133 dvhdr = new_fm_vhdr(ubi, UBI_FM_DATA_VOLUME_ID);
1134 if (!dvhdr) {
1135 ret = -ENOMEM;
1136 goto out_kfree;
1137 }
1138
Heiko Schocher94b66de2015-10-22 06:19:21 +02001139 seen_pebs = init_seen(ubi);
1140 if (IS_ERR(seen_pebs)) {
1141 ret = PTR_ERR(seen_pebs);
1142 goto out_kfree;
1143 }
1144
Heiko Schocherf5895d12014-06-24 10:10:04 +02001145 spin_lock(&ubi->volumes_lock);
1146 spin_lock(&ubi->wl_lock);
1147
1148 fmsb = (struct ubi_fm_sb *)fm_raw;
1149 fm_pos += sizeof(*fmsb);
1150 ubi_assert(fm_pos <= ubi->fm_size);
1151
1152 fmh = (struct ubi_fm_hdr *)(fm_raw + fm_pos);
1153 fm_pos += sizeof(*fmh);
1154 ubi_assert(fm_pos <= ubi->fm_size);
1155
1156 fmsb->magic = cpu_to_be32(UBI_FM_SB_MAGIC);
1157 fmsb->version = UBI_FM_FMT_VERSION;
1158 fmsb->used_blocks = cpu_to_be32(new_fm->used_blocks);
1159 /* the max sqnum will be filled in while *reading* the fastmap */
1160 fmsb->sqnum = 0;
1161
1162 fmh->magic = cpu_to_be32(UBI_FM_HDR_MAGIC);
1163 free_peb_count = 0;
1164 used_peb_count = 0;
1165 scrub_peb_count = 0;
1166 erase_peb_count = 0;
1167 vol_count = 0;
1168
Heiko Schocher94b66de2015-10-22 06:19:21 +02001169 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
1170 fm_pos += sizeof(*fmpl);
1171 fmpl->magic = cpu_to_be32(UBI_FM_POOL_MAGIC);
1172 fmpl->size = cpu_to_be16(ubi->fm_pool.size);
1173 fmpl->max_size = cpu_to_be16(ubi->fm_pool.max_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001174
Heiko Schocher94b66de2015-10-22 06:19:21 +02001175 for (i = 0; i < ubi->fm_pool.size; i++) {
1176 fmpl->pebs[i] = cpu_to_be32(ubi->fm_pool.pebs[i]);
1177 set_seen(ubi, ubi->fm_pool.pebs[i], seen_pebs);
1178 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001179
Heiko Schocher94b66de2015-10-22 06:19:21 +02001180 fmpl_wl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
1181 fm_pos += sizeof(*fmpl_wl);
1182 fmpl_wl->magic = cpu_to_be32(UBI_FM_POOL_MAGIC);
1183 fmpl_wl->size = cpu_to_be16(ubi->fm_wl_pool.size);
1184 fmpl_wl->max_size = cpu_to_be16(ubi->fm_wl_pool.max_size);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001185
Heiko Schocher94b66de2015-10-22 06:19:21 +02001186 for (i = 0; i < ubi->fm_wl_pool.size; i++) {
1187 fmpl_wl->pebs[i] = cpu_to_be32(ubi->fm_wl_pool.pebs[i]);
1188 set_seen(ubi, ubi->fm_wl_pool.pebs[i], seen_pebs);
1189 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001190
Heiko Schocher94b66de2015-10-22 06:19:21 +02001191 ubi_for_each_free_peb(ubi, wl_e, tmp_rb) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001192 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1193
1194 fec->pnum = cpu_to_be32(wl_e->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001195 set_seen(ubi, wl_e->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001196 fec->ec = cpu_to_be32(wl_e->ec);
1197
1198 free_peb_count++;
1199 fm_pos += sizeof(*fec);
1200 ubi_assert(fm_pos <= ubi->fm_size);
1201 }
1202 fmh->free_peb_count = cpu_to_be32(free_peb_count);
1203
Heiko Schocher94b66de2015-10-22 06:19:21 +02001204 ubi_for_each_used_peb(ubi, wl_e, tmp_rb) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001205 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1206
1207 fec->pnum = cpu_to_be32(wl_e->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001208 set_seen(ubi, wl_e->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001209 fec->ec = cpu_to_be32(wl_e->ec);
1210
1211 used_peb_count++;
1212 fm_pos += sizeof(*fec);
1213 ubi_assert(fm_pos <= ubi->fm_size);
1214 }
Heiko Schocher94b66de2015-10-22 06:19:21 +02001215
1216 ubi_for_each_protected_peb(ubi, i, wl_e) {
1217 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1218
1219 fec->pnum = cpu_to_be32(wl_e->pnum);
1220 set_seen(ubi, wl_e->pnum, seen_pebs);
1221 fec->ec = cpu_to_be32(wl_e->ec);
1222
1223 used_peb_count++;
1224 fm_pos += sizeof(*fec);
1225 ubi_assert(fm_pos <= ubi->fm_size);
1226 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001227 fmh->used_peb_count = cpu_to_be32(used_peb_count);
1228
Heiko Schocher94b66de2015-10-22 06:19:21 +02001229 ubi_for_each_scrub_peb(ubi, wl_e, tmp_rb) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001230 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1231
1232 fec->pnum = cpu_to_be32(wl_e->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001233 set_seen(ubi, wl_e->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001234 fec->ec = cpu_to_be32(wl_e->ec);
1235
1236 scrub_peb_count++;
1237 fm_pos += sizeof(*fec);
1238 ubi_assert(fm_pos <= ubi->fm_size);
1239 }
1240 fmh->scrub_peb_count = cpu_to_be32(scrub_peb_count);
1241
Heiko Schocherf5895d12014-06-24 10:10:04 +02001242 list_for_each_entry(ubi_wrk, &ubi->works, list) {
1243 if (ubi_is_erase_work(ubi_wrk)) {
1244 wl_e = ubi_wrk->e;
1245 ubi_assert(wl_e);
1246
1247 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1248
1249 fec->pnum = cpu_to_be32(wl_e->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001250 set_seen(ubi, wl_e->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001251 fec->ec = cpu_to_be32(wl_e->ec);
1252
1253 erase_peb_count++;
1254 fm_pos += sizeof(*fec);
1255 ubi_assert(fm_pos <= ubi->fm_size);
1256 }
1257 }
1258 fmh->erase_peb_count = cpu_to_be32(erase_peb_count);
1259
1260 for (i = 0; i < UBI_MAX_VOLUMES + UBI_INT_VOL_COUNT; i++) {
1261 vol = ubi->volumes[i];
1262
1263 if (!vol)
1264 continue;
1265
1266 vol_count++;
1267
1268 fvh = (struct ubi_fm_volhdr *)(fm_raw + fm_pos);
1269 fm_pos += sizeof(*fvh);
1270 ubi_assert(fm_pos <= ubi->fm_size);
1271
1272 fvh->magic = cpu_to_be32(UBI_FM_VHDR_MAGIC);
1273 fvh->vol_id = cpu_to_be32(vol->vol_id);
1274 fvh->vol_type = vol->vol_type;
1275 fvh->used_ebs = cpu_to_be32(vol->used_ebs);
1276 fvh->data_pad = cpu_to_be32(vol->data_pad);
1277 fvh->last_eb_bytes = cpu_to_be32(vol->last_eb_bytes);
1278
1279 ubi_assert(vol->vol_type == UBI_DYNAMIC_VOLUME ||
1280 vol->vol_type == UBI_STATIC_VOLUME);
1281
1282 feba = (struct ubi_fm_eba *)(fm_raw + fm_pos);
1283 fm_pos += sizeof(*feba) + (sizeof(__be32) * vol->reserved_pebs);
1284 ubi_assert(fm_pos <= ubi->fm_size);
1285
1286 for (j = 0; j < vol->reserved_pebs; j++)
1287 feba->pnum[j] = cpu_to_be32(vol->eba_tbl[j]);
1288
1289 feba->reserved_pebs = cpu_to_be32(j);
1290 feba->magic = cpu_to_be32(UBI_FM_EBA_MAGIC);
1291 }
1292 fmh->vol_count = cpu_to_be32(vol_count);
1293 fmh->bad_peb_count = cpu_to_be32(ubi->bad_peb_count);
1294
1295 avhdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1296 avhdr->lnum = 0;
1297
1298 spin_unlock(&ubi->wl_lock);
1299 spin_unlock(&ubi->volumes_lock);
1300
1301 dbg_bld("writing fastmap SB to PEB %i", new_fm->e[0]->pnum);
1302 ret = ubi_io_write_vid_hdr(ubi, new_fm->e[0]->pnum, avhdr);
1303 if (ret) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001304 ubi_err(ubi, "unable to write vid_hdr to fastmap SB!");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001305 goto out_kfree;
1306 }
1307
1308 for (i = 0; i < new_fm->used_blocks; i++) {
1309 fmsb->block_loc[i] = cpu_to_be32(new_fm->e[i]->pnum);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001310 set_seen(ubi, new_fm->e[i]->pnum, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001311 fmsb->block_ec[i] = cpu_to_be32(new_fm->e[i]->ec);
1312 }
1313
1314 fmsb->data_crc = 0;
1315 fmsb->data_crc = cpu_to_be32(crc32(UBI_CRC32_INIT, fm_raw,
1316 ubi->fm_size));
1317
1318 for (i = 1; i < new_fm->used_blocks; i++) {
1319 dvhdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1320 dvhdr->lnum = cpu_to_be32(i);
1321 dbg_bld("writing fastmap data to PEB %i sqnum %llu",
1322 new_fm->e[i]->pnum, be64_to_cpu(dvhdr->sqnum));
1323 ret = ubi_io_write_vid_hdr(ubi, new_fm->e[i]->pnum, dvhdr);
1324 if (ret) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001325 ubi_err(ubi, "unable to write vid_hdr to PEB %i!",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001326 new_fm->e[i]->pnum);
1327 goto out_kfree;
1328 }
1329 }
1330
1331 for (i = 0; i < new_fm->used_blocks; i++) {
1332 ret = ubi_io_write(ubi, fm_raw + (i * ubi->leb_size),
1333 new_fm->e[i]->pnum, ubi->leb_start, ubi->leb_size);
1334 if (ret) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001335 ubi_err(ubi, "unable to write fastmap to PEB %i!",
Heiko Schocherf5895d12014-06-24 10:10:04 +02001336 new_fm->e[i]->pnum);
1337 goto out_kfree;
1338 }
1339 }
1340
1341 ubi_assert(new_fm);
1342 ubi->fm = new_fm;
1343
Heiko Schocher94b66de2015-10-22 06:19:21 +02001344 ret = self_check_seen(ubi, seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001345 dbg_bld("fastmap written!");
1346
1347out_kfree:
1348 ubi_free_vid_hdr(ubi, avhdr);
1349 ubi_free_vid_hdr(ubi, dvhdr);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001350 free_seen(seen_pebs);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001351out:
1352 return ret;
1353}
1354
1355/**
1356 * erase_block - Manually erase a PEB.
1357 * @ubi: UBI device object
1358 * @pnum: PEB to be erased
1359 *
1360 * Returns the new EC value on success, < 0 indicates an internal error.
1361 */
1362static int erase_block(struct ubi_device *ubi, int pnum)
1363{
1364 int ret;
1365 struct ubi_ec_hdr *ec_hdr;
1366 long long ec;
1367
1368 ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1369 if (!ec_hdr)
1370 return -ENOMEM;
1371
1372 ret = ubi_io_read_ec_hdr(ubi, pnum, ec_hdr, 0);
1373 if (ret < 0)
1374 goto out;
1375 else if (ret && ret != UBI_IO_BITFLIPS) {
1376 ret = -EINVAL;
1377 goto out;
1378 }
1379
1380 ret = ubi_io_sync_erase(ubi, pnum, 0);
1381 if (ret < 0)
1382 goto out;
1383
1384 ec = be64_to_cpu(ec_hdr->ec);
1385 ec += ret;
1386 if (ec > UBI_MAX_ERASECOUNTER) {
1387 ret = -EINVAL;
1388 goto out;
1389 }
1390
1391 ec_hdr->ec = cpu_to_be64(ec);
1392 ret = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);
1393 if (ret < 0)
1394 goto out;
1395
1396 ret = ec;
1397out:
1398 kfree(ec_hdr);
1399 return ret;
1400}
1401
1402/**
1403 * invalidate_fastmap - destroys a fastmap.
1404 * @ubi: UBI device object
Heiko Schocherf5895d12014-06-24 10:10:04 +02001405 *
Heiko Schocher94b66de2015-10-22 06:19:21 +02001406 * This function ensures that upon next UBI attach a full scan
1407 * is issued. We need this if UBI is about to write a new fastmap
1408 * but is unable to do so. In this case we have two options:
1409 * a) Make sure that the current fastmap will not be usued upon
1410 * attach time and contine or b) fall back to RO mode to have the
1411 * current fastmap in a valid state.
Heiko Schocherf5895d12014-06-24 10:10:04 +02001412 * Returns 0 on success, < 0 indicates an internal error.
1413 */
Heiko Schocher94b66de2015-10-22 06:19:21 +02001414static int invalidate_fastmap(struct ubi_device *ubi)
Heiko Schocherf5895d12014-06-24 10:10:04 +02001415{
1416 int ret;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001417 struct ubi_fastmap_layout *fm;
1418 struct ubi_wl_entry *e;
1419 struct ubi_vid_hdr *vh = NULL;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001420
Heiko Schocher94b66de2015-10-22 06:19:21 +02001421 if (!ubi->fm)
1422 return 0;
1423
1424 ubi->fm = NULL;
1425
1426 ret = -ENOMEM;
1427 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
1428 if (!fm)
1429 goto out;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001430
1431 vh = new_fm_vhdr(ubi, UBI_FM_SB_VOLUME_ID);
1432 if (!vh)
Heiko Schocher94b66de2015-10-22 06:19:21 +02001433 goto out_free_fm;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001434
Heiko Schocher94b66de2015-10-22 06:19:21 +02001435 ret = -ENOSPC;
1436 e = ubi_wl_get_fm_peb(ubi, 1);
1437 if (!e)
1438 goto out_free_fm;
1439
1440 /*
1441 * Create fake fastmap such that UBI will fall back
1442 * to scanning mode.
1443 */
Heiko Schocherf5895d12014-06-24 10:10:04 +02001444 vh->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Heiko Schocher94b66de2015-10-22 06:19:21 +02001445 ret = ubi_io_write_vid_hdr(ubi, e->pnum, vh);
1446 if (ret < 0) {
1447 ubi_wl_put_fm_peb(ubi, e, 0, 0);
1448 goto out_free_fm;
1449 }
1450
1451 fm->used_blocks = 1;
1452 fm->e[0] = e;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001453
Heiko Schocher94b66de2015-10-22 06:19:21 +02001454 ubi->fm = fm;
1455
1456out:
1457 ubi_free_vid_hdr(ubi, vh);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001458 return ret;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001459
1460out_free_fm:
1461 kfree(fm);
1462 goto out;
1463}
1464
1465/**
1466 * return_fm_pebs - returns all PEBs used by a fastmap back to the
1467 * WL sub-system.
1468 * @ubi: UBI device object
1469 * @fm: fastmap layout object
1470 */
1471static void return_fm_pebs(struct ubi_device *ubi,
1472 struct ubi_fastmap_layout *fm)
1473{
1474 int i;
1475
1476 if (!fm)
1477 return;
1478
1479 for (i = 0; i < fm->used_blocks; i++) {
1480 if (fm->e[i]) {
1481 ubi_wl_put_fm_peb(ubi, fm->e[i], i,
1482 fm->to_be_tortured[i]);
1483 fm->e[i] = NULL;
1484 }
1485 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001486}
1487
1488/**
1489 * ubi_update_fastmap - will be called by UBI if a volume changes or
1490 * a fastmap pool becomes full.
1491 * @ubi: UBI device object
1492 *
1493 * Returns 0 on success, < 0 indicates an internal error.
1494 */
1495int ubi_update_fastmap(struct ubi_device *ubi)
1496{
Heiko Schocher94b66de2015-10-22 06:19:21 +02001497 int ret, i, j;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001498 struct ubi_fastmap_layout *new_fm, *old_fm;
1499 struct ubi_wl_entry *tmp_e;
1500
Heiko Schocher94b66de2015-10-22 06:19:21 +02001501 down_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001502
1503 ubi_refill_pools(ubi);
1504
1505 if (ubi->ro_mode || ubi->fm_disabled) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001506 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001507 return 0;
1508 }
1509
1510 ret = ubi_ensure_anchor_pebs(ubi);
1511 if (ret) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001512 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001513 return ret;
1514 }
1515
1516 new_fm = kzalloc(sizeof(*new_fm), GFP_KERNEL);
1517 if (!new_fm) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001518 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001519 return -ENOMEM;
1520 }
1521
1522 new_fm->used_blocks = ubi->fm_size / ubi->leb_size;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001523 old_fm = ubi->fm;
1524 ubi->fm = NULL;
1525
1526 if (new_fm->used_blocks > UBI_FM_MAX_BLOCKS) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001527 ubi_err(ubi, "fastmap too large");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001528 ret = -ENOSPC;
1529 goto err;
1530 }
1531
1532 for (i = 1; i < new_fm->used_blocks; i++) {
1533 spin_lock(&ubi->wl_lock);
1534 tmp_e = ubi_wl_get_fm_peb(ubi, 0);
1535 spin_unlock(&ubi->wl_lock);
1536
Heiko Schocher94b66de2015-10-22 06:19:21 +02001537 if (!tmp_e) {
1538 if (old_fm && old_fm->e[i]) {
1539 ret = erase_block(ubi, old_fm->e[i]->pnum);
1540 if (ret < 0) {
1541 ubi_err(ubi, "could not erase old fastmap PEB");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001542
Heiko Schocher94b66de2015-10-22 06:19:21 +02001543 for (j = 1; j < i; j++) {
1544 ubi_wl_put_fm_peb(ubi, new_fm->e[j],
1545 j, 0);
1546 new_fm->e[j] = NULL;
1547 }
1548 goto err;
1549 }
1550 new_fm->e[i] = old_fm->e[i];
1551 old_fm->e[i] = NULL;
1552 } else {
1553 ubi_err(ubi, "could not get any free erase block");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001554
Heiko Schocher94b66de2015-10-22 06:19:21 +02001555 for (j = 1; j < i; j++) {
1556 ubi_wl_put_fm_peb(ubi, new_fm->e[j], j, 0);
1557 new_fm->e[j] = NULL;
1558 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001559
Heiko Schocher94b66de2015-10-22 06:19:21 +02001560 ret = -ENOSPC;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001561 goto err;
1562 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001563 } else {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001564 new_fm->e[i] = tmp_e;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001565
Heiko Schocher94b66de2015-10-22 06:19:21 +02001566 if (old_fm && old_fm->e[i]) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001567 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1568 old_fm->to_be_tortured[i]);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001569 old_fm->e[i] = NULL;
1570 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001571 }
1572 }
1573
Heiko Schocher94b66de2015-10-22 06:19:21 +02001574 /* Old fastmap is larger than the new one */
1575 if (old_fm && new_fm->used_blocks < old_fm->used_blocks) {
1576 for (i = new_fm->used_blocks; i < old_fm->used_blocks; i++) {
1577 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1578 old_fm->to_be_tortured[i]);
1579 old_fm->e[i] = NULL;
1580 }
1581 }
1582
Heiko Schocherf5895d12014-06-24 10:10:04 +02001583 spin_lock(&ubi->wl_lock);
1584 tmp_e = ubi_wl_get_fm_peb(ubi, 1);
1585 spin_unlock(&ubi->wl_lock);
1586
1587 if (old_fm) {
1588 /* no fresh anchor PEB was found, reuse the old one */
1589 if (!tmp_e) {
1590 ret = erase_block(ubi, old_fm->e[0]->pnum);
1591 if (ret < 0) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001592 ubi_err(ubi, "could not erase old anchor PEB");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001593
Heiko Schocher94b66de2015-10-22 06:19:21 +02001594 for (i = 1; i < new_fm->used_blocks; i++) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001595 ubi_wl_put_fm_peb(ubi, new_fm->e[i],
1596 i, 0);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001597 new_fm->e[i] = NULL;
1598 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001599 goto err;
1600 }
Heiko Schocher94b66de2015-10-22 06:19:21 +02001601 new_fm->e[0] = old_fm->e[0];
Heiko Schocherf5895d12014-06-24 10:10:04 +02001602 new_fm->e[0]->ec = ret;
Heiko Schocher94b66de2015-10-22 06:19:21 +02001603 old_fm->e[0] = NULL;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001604 } else {
1605 /* we've got a new anchor PEB, return the old one */
1606 ubi_wl_put_fm_peb(ubi, old_fm->e[0], 0,
1607 old_fm->to_be_tortured[0]);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001608 new_fm->e[0] = tmp_e;
1609 old_fm->e[0] = NULL;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001610 }
1611 } else {
1612 if (!tmp_e) {
Heiko Schocher94b66de2015-10-22 06:19:21 +02001613 ubi_err(ubi, "could not find any anchor PEB");
Heiko Schocherf5895d12014-06-24 10:10:04 +02001614
Heiko Schocher94b66de2015-10-22 06:19:21 +02001615 for (i = 1; i < new_fm->used_blocks; i++) {
Heiko Schocherf5895d12014-06-24 10:10:04 +02001616 ubi_wl_put_fm_peb(ubi, new_fm->e[i], i, 0);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001617 new_fm->e[i] = NULL;
1618 }
Heiko Schocherf5895d12014-06-24 10:10:04 +02001619
1620 ret = -ENOSPC;
1621 goto err;
1622 }
Heiko Schocher94b66de2015-10-22 06:19:21 +02001623 new_fm->e[0] = tmp_e;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001624 }
1625
1626 down_write(&ubi->work_sem);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001627 down_write(&ubi->fm_eba_sem);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001628 ret = ubi_write_fastmap(ubi, new_fm);
Heiko Schocher94b66de2015-10-22 06:19:21 +02001629 up_write(&ubi->fm_eba_sem);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001630 up_write(&ubi->work_sem);
1631
1632 if (ret)
1633 goto err;
1634
1635out_unlock:
Heiko Schocher94b66de2015-10-22 06:19:21 +02001636 up_write(&ubi->fm_protect);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001637 kfree(old_fm);
1638 return ret;
1639
1640err:
Heiko Schocher94b66de2015-10-22 06:19:21 +02001641 ubi_warn(ubi, "Unable to write new fastmap, err=%i", ret);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001642
Heiko Schocher94b66de2015-10-22 06:19:21 +02001643 ret = invalidate_fastmap(ubi);
1644 if (ret < 0) {
1645 ubi_err(ubi, "Unable to invalidiate current fastmap!");
1646 ubi_ro_mode(ubi);
1647 } else {
1648 return_fm_pebs(ubi, old_fm);
1649 return_fm_pebs(ubi, new_fm);
1650 ret = 0;
Heiko Schocherf5895d12014-06-24 10:10:04 +02001651 }
Heiko Schocher94b66de2015-10-22 06:19:21 +02001652
1653 kfree(new_fm);
Heiko Schocherf5895d12014-06-24 10:10:04 +02001654 goto out_unlock;
1655}