2 * Copyright (c) 2012 Linutronix GmbH
3 * Copyright (c) 2014 sigma star gmbh
4 * Author: Richard Weinberger <richard@nod.at>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
17 #include <linux/crc32.h>
18 #include <linux/bitmap.h>
22 * init_seen - allocate memory for used for debugging.
23 * @ubi: UBI device description object
25 static inline unsigned long *init_seen(struct ubi_device
*ubi
)
29 if (!ubi_dbg_chk_fastmap(ubi
))
32 ret
= kcalloc(BITS_TO_LONGS(ubi
->peb_count
), sizeof(unsigned long),
35 return ERR_PTR(-ENOMEM
);
41 * free_seen - free the seen logic integer array.
42 * @seen: integer array of @ubi->peb_count size
44 static inline void free_seen(unsigned long *seen
)
50 * set_seen - mark a PEB as seen.
51 * @ubi: UBI device description object
52 * @pnum: The PEB to be makred as seen
53 * @seen: integer array of @ubi->peb_count size
55 static inline void set_seen(struct ubi_device
*ubi
, int pnum
, unsigned long *seen
)
57 if (!ubi_dbg_chk_fastmap(ubi
) || !seen
)
64 * self_check_seen - check whether all PEB have been seen by fastmap.
65 * @ubi: UBI device description object
66 * @seen: integer array of @ubi->peb_count size
68 static int self_check_seen(struct ubi_device
*ubi
, unsigned long *seen
)
72 if (!ubi_dbg_chk_fastmap(ubi
) || !seen
)
75 for (pnum
= 0; pnum
< ubi
->peb_count
; pnum
++) {
76 if (test_bit(pnum
, seen
) && ubi
->lookuptbl
[pnum
]) {
77 ubi_err(ubi
, "self-check failed for PEB %d, fastmap didn't see it", pnum
);
86 * ubi_calc_fm_size - calculates the fastmap size in bytes for an UBI device.
87 * @ubi: UBI device description object
89 size_t ubi_calc_fm_size(struct ubi_device
*ubi
)
93 size
= sizeof(struct ubi_fm_sb
) +
94 sizeof(struct ubi_fm_hdr
) +
95 sizeof(struct ubi_fm_scan_pool
) +
96 sizeof(struct ubi_fm_scan_pool
) +
97 (ubi
->peb_count
* sizeof(struct ubi_fm_ec
)) +
98 (sizeof(struct ubi_fm_eba
) +
99 (ubi
->peb_count
* sizeof(__be32
))) +
100 sizeof(struct ubi_fm_volhdr
) * UBI_MAX_VOLUMES
;
101 return roundup(size
, ubi
->leb_size
);
106 * new_fm_vhdr - allocate a new volume header for fastmap usage.
107 * @ubi: UBI device description object
108 * @vol_id: the VID of the new header
110 * Returns a new struct ubi_vid_hdr on success.
111 * NULL indicates out of memory.
113 static struct ubi_vid_io_buf
*new_fm_vbuf(struct ubi_device
*ubi
, int vol_id
)
115 struct ubi_vid_io_buf
*new;
116 struct ubi_vid_hdr
*vh
;
118 new = ubi_alloc_vid_buf(ubi
, GFP_KERNEL
);
122 vh
= ubi_get_vid_hdr(new);
123 vh
->vol_type
= UBI_VID_DYNAMIC
;
124 vh
->vol_id
= cpu_to_be32(vol_id
);
126 /* UBI implementations without fastmap support have to delete the
129 vh
->compat
= UBI_COMPAT_DELETE
;
136 * add_aeb - create and add a attach erase block to a given list.
137 * @ai: UBI attach info object
138 * @list: the target list
139 * @pnum: PEB number of the new attach erase block
140 * @ec: erease counter of the new LEB
141 * @scrub: scrub this PEB after attaching
143 * Returns 0 on success, < 0 indicates an internal error.
145 static int add_aeb(struct ubi_attach_info
*ai
, struct list_head
*list
,
146 int pnum
, int ec
, int scrub
)
148 struct ubi_ainf_peb
*aeb
;
150 aeb
= ubi_alloc_aeb(ai
, pnum
, ec
);
156 aeb
->copy_flag
= aeb
->sqnum
= 0;
158 ai
->ec_sum
+= aeb
->ec
;
161 if (ai
->max_ec
< aeb
->ec
)
162 ai
->max_ec
= aeb
->ec
;
164 if (ai
->min_ec
> aeb
->ec
)
165 ai
->min_ec
= aeb
->ec
;
167 list_add_tail(&aeb
->u
.list
, list
);
173 * add_vol - create and add a new volume to ubi_attach_info.
174 * @ai: ubi_attach_info object
175 * @vol_id: VID of the new volume
176 * @used_ebs: number of used EBS
177 * @data_pad: data padding value of the new volume
178 * @vol_type: volume type
179 * @last_eb_bytes: number of bytes in the last LEB
181 * Returns the new struct ubi_ainf_volume on success.
182 * NULL indicates an error.
184 static struct ubi_ainf_volume
*add_vol(struct ubi_attach_info
*ai
, int vol_id
,
185 int used_ebs
, int data_pad
, u8 vol_type
,
188 struct ubi_ainf_volume
*av
;
190 av
= ubi_add_av(ai
, vol_id
);
194 av
->data_pad
= data_pad
;
195 av
->last_data_size
= last_eb_bytes
;
197 av
->vol_type
= vol_type
;
198 if (av
->vol_type
== UBI_STATIC_VOLUME
)
199 av
->used_ebs
= used_ebs
;
201 dbg_bld("found volume (ID %i)", vol_id
);
206 * assign_aeb_to_av - assigns a SEB to a given ainf_volume and removes it
207 * from it's original list.
208 * @ai: ubi_attach_info object
209 * @aeb: the to be assigned SEB
210 * @av: target scan volume
212 static void assign_aeb_to_av(struct ubi_attach_info
*ai
,
213 struct ubi_ainf_peb
*aeb
,
214 struct ubi_ainf_volume
*av
)
216 struct ubi_ainf_peb
*tmp_aeb
;
217 struct rb_node
**p
= &av
->root
.rb_node
, *parent
= NULL
;
222 tmp_aeb
= rb_entry(parent
, struct ubi_ainf_peb
, u
.rb
);
223 if (aeb
->lnum
!= tmp_aeb
->lnum
) {
224 if (aeb
->lnum
< tmp_aeb
->lnum
)
234 list_del(&aeb
->u
.list
);
237 rb_link_node(&aeb
->u
.rb
, parent
, p
);
238 rb_insert_color(&aeb
->u
.rb
, &av
->root
);
242 * update_vol - inserts or updates a LEB which was found a pool.
243 * @ubi: the UBI device object
244 * @ai: attach info object
245 * @av: the volume this LEB belongs to
246 * @new_vh: the volume header derived from new_aeb
247 * @new_aeb: the AEB to be examined
249 * Returns 0 on success, < 0 indicates an internal error.
251 static int update_vol(struct ubi_device
*ubi
, struct ubi_attach_info
*ai
,
252 struct ubi_ainf_volume
*av
, struct ubi_vid_hdr
*new_vh
,
253 struct ubi_ainf_peb
*new_aeb
)
255 struct rb_node
**p
= &av
->root
.rb_node
, *parent
= NULL
;
256 struct ubi_ainf_peb
*aeb
, *victim
;
261 aeb
= rb_entry(parent
, struct ubi_ainf_peb
, u
.rb
);
263 if (be32_to_cpu(new_vh
->lnum
) != aeb
->lnum
) {
264 if (be32_to_cpu(new_vh
->lnum
) < aeb
->lnum
)
272 /* This case can happen if the fastmap gets written
273 * because of a volume change (creation, deletion, ..).
274 * Then a PEB can be within the persistent EBA and the pool.
276 if (aeb
->pnum
== new_aeb
->pnum
) {
277 ubi_assert(aeb
->lnum
== new_aeb
->lnum
);
278 ubi_free_aeb(ai
, new_aeb
);
283 cmp_res
= ubi_compare_lebs(ubi
, aeb
, new_aeb
->pnum
, new_vh
);
287 /* new_aeb is newer */
289 victim
= ubi_alloc_aeb(ai
, aeb
->pnum
, aeb
->ec
);
293 list_add_tail(&victim
->u
.list
, &ai
->erase
);
295 if (av
->highest_lnum
== be32_to_cpu(new_vh
->lnum
))
297 be32_to_cpu(new_vh
->data_size
);
299 dbg_bld("vol %i: AEB %i's PEB %i is the newer",
300 av
->vol_id
, aeb
->lnum
, new_aeb
->pnum
);
302 aeb
->ec
= new_aeb
->ec
;
303 aeb
->pnum
= new_aeb
->pnum
;
304 aeb
->copy_flag
= new_vh
->copy_flag
;
305 aeb
->scrub
= new_aeb
->scrub
;
306 aeb
->sqnum
= new_aeb
->sqnum
;
307 ubi_free_aeb(ai
, new_aeb
);
309 /* new_aeb is older */
311 dbg_bld("vol %i: AEB %i's PEB %i is old, dropping it",
312 av
->vol_id
, aeb
->lnum
, new_aeb
->pnum
);
313 list_add_tail(&new_aeb
->u
.list
, &ai
->erase
);
318 /* This LEB is new, let's add it to the volume */
320 if (av
->highest_lnum
<= be32_to_cpu(new_vh
->lnum
)) {
321 av
->highest_lnum
= be32_to_cpu(new_vh
->lnum
);
322 av
->last_data_size
= be32_to_cpu(new_vh
->data_size
);
325 if (av
->vol_type
== UBI_STATIC_VOLUME
)
326 av
->used_ebs
= be32_to_cpu(new_vh
->used_ebs
);
330 rb_link_node(&new_aeb
->u
.rb
, parent
, p
);
331 rb_insert_color(&new_aeb
->u
.rb
, &av
->root
);
337 * process_pool_aeb - we found a non-empty PEB in a pool.
338 * @ubi: UBI device object
339 * @ai: attach info object
340 * @new_vh: the volume header derived from new_aeb
341 * @new_aeb: the AEB to be examined
343 * Returns 0 on success, < 0 indicates an internal error.
345 static int process_pool_aeb(struct ubi_device
*ubi
, struct ubi_attach_info
*ai
,
346 struct ubi_vid_hdr
*new_vh
,
347 struct ubi_ainf_peb
*new_aeb
)
349 int vol_id
= be32_to_cpu(new_vh
->vol_id
);
350 struct ubi_ainf_volume
*av
;
352 if (vol_id
== UBI_FM_SB_VOLUME_ID
|| vol_id
== UBI_FM_DATA_VOLUME_ID
) {
353 ubi_free_aeb(ai
, new_aeb
);
358 /* Find the volume this SEB belongs to */
359 av
= ubi_find_av(ai
, vol_id
);
361 ubi_err(ubi
, "orphaned volume in fastmap pool!");
362 ubi_free_aeb(ai
, new_aeb
);
363 return UBI_BAD_FASTMAP
;
366 ubi_assert(vol_id
== av
->vol_id
);
368 return update_vol(ubi
, ai
, av
, new_vh
, new_aeb
);
372 * unmap_peb - unmap a PEB.
373 * If fastmap detects a free PEB in the pool it has to check whether
374 * this PEB has been unmapped after writing the fastmap.
376 * @ai: UBI attach info object
377 * @pnum: The PEB to be unmapped
379 static void unmap_peb(struct ubi_attach_info
*ai
, int pnum
)
381 struct ubi_ainf_volume
*av
;
382 struct rb_node
*node
, *node2
;
383 struct ubi_ainf_peb
*aeb
;
385 ubi_rb_for_each_entry(node
, av
, &ai
->volumes
, rb
) {
386 ubi_rb_for_each_entry(node2
, aeb
, &av
->root
, u
.rb
) {
387 if (aeb
->pnum
== pnum
) {
388 rb_erase(&aeb
->u
.rb
, &av
->root
);
390 ubi_free_aeb(ai
, aeb
);
398 * scan_pool - scans a pool for changed (no longer empty PEBs).
399 * @ubi: UBI device object
400 * @ai: attach info object
401 * @pebs: an array of all PEB numbers in the to be scanned pool
402 * @pool_size: size of the pool (number of entries in @pebs)
403 * @max_sqnum: pointer to the maximal sequence number
404 * @free: list of PEBs which are most likely free (and go into @ai->free)
406 * Returns 0 on success, if the pool is unusable UBI_BAD_FASTMAP is returned.
407 * < 0 indicates an internal error.
409 static int scan_pool(struct ubi_device
*ubi
, struct ubi_attach_info
*ai
,
410 __be32
*pebs
, int pool_size
, unsigned long long *max_sqnum
,
411 struct list_head
*free
)
413 struct ubi_vid_io_buf
*vb
;
414 struct ubi_vid_hdr
*vh
;
415 struct ubi_ec_hdr
*ech
;
416 struct ubi_ainf_peb
*new_aeb
;
417 int i
, pnum
, err
, ret
= 0;
419 ech
= kzalloc(ubi
->ec_hdr_alsize
, GFP_KERNEL
);
423 vb
= ubi_alloc_vid_buf(ubi
, GFP_KERNEL
);
429 vh
= ubi_get_vid_hdr(vb
);
431 dbg_bld("scanning fastmap pool: size = %i", pool_size
);
434 * Now scan all PEBs in the pool to find changes which have been made
435 * after the creation of the fastmap
437 for (i
= 0; i
< pool_size
; i
++) {
441 pnum
= be32_to_cpu(pebs
[i
]);
443 if (ubi_io_is_bad(ubi
, pnum
)) {
444 ubi_err(ubi
, "bad PEB in fastmap pool!");
445 ret
= UBI_BAD_FASTMAP
;
449 err
= ubi_io_read_ec_hdr(ubi
, pnum
, ech
, 0);
450 if (err
&& err
!= UBI_IO_BITFLIPS
) {
451 ubi_err(ubi
, "unable to read EC header! PEB:%i err:%i",
453 ret
= err
> 0 ? UBI_BAD_FASTMAP
: err
;
455 } else if (err
== UBI_IO_BITFLIPS
)
459 * Older UBI implementations have image_seq set to zero, so
460 * we shouldn't fail if image_seq == 0.
462 image_seq
= be32_to_cpu(ech
->image_seq
);
464 if (image_seq
&& (image_seq
!= ubi
->image_seq
)) {
465 ubi_err(ubi
, "bad image seq: 0x%x, expected: 0x%x",
466 be32_to_cpu(ech
->image_seq
), ubi
->image_seq
);
467 ret
= UBI_BAD_FASTMAP
;
471 err
= ubi_io_read_vid_hdr(ubi
, pnum
, vb
, 0);
472 if (err
== UBI_IO_FF
|| err
== UBI_IO_FF_BITFLIPS
) {
473 unsigned long long ec
= be64_to_cpu(ech
->ec
);
475 dbg_bld("Adding PEB to free: %i", pnum
);
477 if (err
== UBI_IO_FF_BITFLIPS
)
480 add_aeb(ai
, free
, pnum
, ec
, scrub
);
482 } else if (err
== 0 || err
== UBI_IO_BITFLIPS
) {
483 dbg_bld("Found non empty PEB:%i in pool", pnum
);
485 if (err
== UBI_IO_BITFLIPS
)
488 new_aeb
= ubi_alloc_aeb(ai
, pnum
, be64_to_cpu(ech
->ec
));
494 new_aeb
->lnum
= be32_to_cpu(vh
->lnum
);
495 new_aeb
->sqnum
= be64_to_cpu(vh
->sqnum
);
496 new_aeb
->copy_flag
= vh
->copy_flag
;
497 new_aeb
->scrub
= scrub
;
499 if (*max_sqnum
< new_aeb
->sqnum
)
500 *max_sqnum
= new_aeb
->sqnum
;
502 err
= process_pool_aeb(ubi
, ai
, vh
, new_aeb
);
504 ret
= err
> 0 ? UBI_BAD_FASTMAP
: err
;
508 /* We are paranoid and fall back to scanning mode */
509 ubi_err(ubi
, "fastmap pool PEBs contains damaged PEBs!");
510 ret
= err
> 0 ? UBI_BAD_FASTMAP
: err
;
517 ubi_free_vid_buf(vb
);
523 * count_fastmap_pebs - Counts the PEBs found by fastmap.
524 * @ai: The UBI attach info object
526 static int count_fastmap_pebs(struct ubi_attach_info
*ai
)
528 struct ubi_ainf_peb
*aeb
;
529 struct ubi_ainf_volume
*av
;
530 struct rb_node
*rb1
, *rb2
;
533 list_for_each_entry(aeb
, &ai
->erase
, u
.list
)
536 list_for_each_entry(aeb
, &ai
->free
, u
.list
)
539 ubi_rb_for_each_entry(rb1
, av
, &ai
->volumes
, rb
)
540 ubi_rb_for_each_entry(rb2
, aeb
, &av
->root
, u
.rb
)
547 * ubi_attach_fastmap - creates ubi_attach_info from a fastmap.
548 * @ubi: UBI device object
549 * @ai: UBI attach info object
550 * @fm: the fastmap to be attached
552 * Returns 0 on success, UBI_BAD_FASTMAP if the found fastmap was unusable.
553 * < 0 indicates an internal error.
555 static int ubi_attach_fastmap(struct ubi_device
*ubi
,
556 struct ubi_attach_info
*ai
,
557 struct ubi_fastmap_layout
*fm
)
559 struct list_head used
, free
;
560 struct ubi_ainf_volume
*av
;
561 struct ubi_ainf_peb
*aeb
, *tmp_aeb
, *_tmp_aeb
;
562 struct ubi_fm_sb
*fmsb
;
563 struct ubi_fm_hdr
*fmhdr
;
564 struct ubi_fm_scan_pool
*fmpl
, *fmpl_wl
;
565 struct ubi_fm_ec
*fmec
;
566 struct ubi_fm_volhdr
*fmvhdr
;
567 struct ubi_fm_eba
*fm_eba
;
568 int ret
, i
, j
, pool_size
, wl_pool_size
;
569 size_t fm_pos
= 0, fm_size
= ubi
->fm_size
;
570 unsigned long long max_sqnum
= 0;
571 void *fm_raw
= ubi
->fm_buf
;
573 INIT_LIST_HEAD(&used
);
574 INIT_LIST_HEAD(&free
);
575 ai
->min_ec
= UBI_MAX_ERASECOUNTER
;
577 fmsb
= (struct ubi_fm_sb
*)(fm_raw
);
578 ai
->max_sqnum
= fmsb
->sqnum
;
579 fm_pos
+= sizeof(struct ubi_fm_sb
);
580 if (fm_pos
>= fm_size
)
583 fmhdr
= (struct ubi_fm_hdr
*)(fm_raw
+ fm_pos
);
584 fm_pos
+= sizeof(*fmhdr
);
585 if (fm_pos
>= fm_size
)
588 if (be32_to_cpu(fmhdr
->magic
) != UBI_FM_HDR_MAGIC
) {
589 ubi_err(ubi
, "bad fastmap header magic: 0x%x, expected: 0x%x",
590 be32_to_cpu(fmhdr
->magic
), UBI_FM_HDR_MAGIC
);
594 fmpl
= (struct ubi_fm_scan_pool
*)(fm_raw
+ fm_pos
);
595 fm_pos
+= sizeof(*fmpl
);
596 if (fm_pos
>= fm_size
)
598 if (be32_to_cpu(fmpl
->magic
) != UBI_FM_POOL_MAGIC
) {
599 ubi_err(ubi
, "bad fastmap pool magic: 0x%x, expected: 0x%x",
600 be32_to_cpu(fmpl
->magic
), UBI_FM_POOL_MAGIC
);
604 fmpl_wl
= (struct ubi_fm_scan_pool
*)(fm_raw
+ fm_pos
);
605 fm_pos
+= sizeof(*fmpl_wl
);
606 if (fm_pos
>= fm_size
)
608 if (be32_to_cpu(fmpl_wl
->magic
) != UBI_FM_POOL_MAGIC
) {
609 ubi_err(ubi
, "bad fastmap WL pool magic: 0x%x, expected: 0x%x",
610 be32_to_cpu(fmpl_wl
->magic
), UBI_FM_POOL_MAGIC
);
614 pool_size
= be16_to_cpu(fmpl
->size
);
615 wl_pool_size
= be16_to_cpu(fmpl_wl
->size
);
616 fm
->max_pool_size
= be16_to_cpu(fmpl
->max_size
);
617 fm
->max_wl_pool_size
= be16_to_cpu(fmpl_wl
->max_size
);
619 if (pool_size
> UBI_FM_MAX_POOL_SIZE
|| pool_size
< 0) {
620 ubi_err(ubi
, "bad pool size: %i", pool_size
);
624 if (wl_pool_size
> UBI_FM_MAX_POOL_SIZE
|| wl_pool_size
< 0) {
625 ubi_err(ubi
, "bad WL pool size: %i", wl_pool_size
);
630 if (fm
->max_pool_size
> UBI_FM_MAX_POOL_SIZE
||
631 fm
->max_pool_size
< 0) {
632 ubi_err(ubi
, "bad maximal pool size: %i", fm
->max_pool_size
);
636 if (fm
->max_wl_pool_size
> UBI_FM_MAX_POOL_SIZE
||
637 fm
->max_wl_pool_size
< 0) {
638 ubi_err(ubi
, "bad maximal WL pool size: %i",
639 fm
->max_wl_pool_size
);
643 /* read EC values from free list */
644 for (i
= 0; i
< be32_to_cpu(fmhdr
->free_peb_count
); i
++) {
645 fmec
= (struct ubi_fm_ec
*)(fm_raw
+ fm_pos
);
646 fm_pos
+= sizeof(*fmec
);
647 if (fm_pos
>= fm_size
)
650 add_aeb(ai
, &ai
->free
, be32_to_cpu(fmec
->pnum
),
651 be32_to_cpu(fmec
->ec
), 0);
654 /* read EC values from used list */
655 for (i
= 0; i
< be32_to_cpu(fmhdr
->used_peb_count
); i
++) {
656 fmec
= (struct ubi_fm_ec
*)(fm_raw
+ fm_pos
);
657 fm_pos
+= sizeof(*fmec
);
658 if (fm_pos
>= fm_size
)
661 add_aeb(ai
, &used
, be32_to_cpu(fmec
->pnum
),
662 be32_to_cpu(fmec
->ec
), 0);
665 /* read EC values from scrub list */
666 for (i
= 0; i
< be32_to_cpu(fmhdr
->scrub_peb_count
); i
++) {
667 fmec
= (struct ubi_fm_ec
*)(fm_raw
+ fm_pos
);
668 fm_pos
+= sizeof(*fmec
);
669 if (fm_pos
>= fm_size
)
672 add_aeb(ai
, &used
, be32_to_cpu(fmec
->pnum
),
673 be32_to_cpu(fmec
->ec
), 1);
676 /* read EC values from erase list */
677 for (i
= 0; i
< be32_to_cpu(fmhdr
->erase_peb_count
); i
++) {
678 fmec
= (struct ubi_fm_ec
*)(fm_raw
+ fm_pos
);
679 fm_pos
+= sizeof(*fmec
);
680 if (fm_pos
>= fm_size
)
683 add_aeb(ai
, &ai
->erase
, be32_to_cpu(fmec
->pnum
),
684 be32_to_cpu(fmec
->ec
), 1);
687 ai
->mean_ec
= div_u64(ai
->ec_sum
, ai
->ec_count
);
688 ai
->bad_peb_count
= be32_to_cpu(fmhdr
->bad_peb_count
);
690 /* Iterate over all volumes and read their EBA table */
691 for (i
= 0; i
< be32_to_cpu(fmhdr
->vol_count
); i
++) {
692 fmvhdr
= (struct ubi_fm_volhdr
*)(fm_raw
+ fm_pos
);
693 fm_pos
+= sizeof(*fmvhdr
);
694 if (fm_pos
>= fm_size
)
697 if (be32_to_cpu(fmvhdr
->magic
) != UBI_FM_VHDR_MAGIC
) {
698 ubi_err(ubi
, "bad fastmap vol header magic: 0x%x, expected: 0x%x",
699 be32_to_cpu(fmvhdr
->magic
), UBI_FM_VHDR_MAGIC
);
703 av
= add_vol(ai
, be32_to_cpu(fmvhdr
->vol_id
),
704 be32_to_cpu(fmvhdr
->used_ebs
),
705 be32_to_cpu(fmvhdr
->data_pad
),
707 be32_to_cpu(fmvhdr
->last_eb_bytes
));
710 if (PTR_ERR(av
) == -EEXIST
)
711 ubi_err(ubi
, "volume (ID %i) already exists",
718 if (ai
->highest_vol_id
< be32_to_cpu(fmvhdr
->vol_id
))
719 ai
->highest_vol_id
= be32_to_cpu(fmvhdr
->vol_id
);
721 fm_eba
= (struct ubi_fm_eba
*)(fm_raw
+ fm_pos
);
722 fm_pos
+= sizeof(*fm_eba
);
723 fm_pos
+= (sizeof(__be32
) * be32_to_cpu(fm_eba
->reserved_pebs
));
724 if (fm_pos
>= fm_size
)
727 if (be32_to_cpu(fm_eba
->magic
) != UBI_FM_EBA_MAGIC
) {
728 ubi_err(ubi
, "bad fastmap EBA header magic: 0x%x, expected: 0x%x",
729 be32_to_cpu(fm_eba
->magic
), UBI_FM_EBA_MAGIC
);
733 for (j
= 0; j
< be32_to_cpu(fm_eba
->reserved_pebs
); j
++) {
734 int pnum
= be32_to_cpu(fm_eba
->pnum
[j
]);
740 list_for_each_entry(tmp_aeb
, &used
, u
.list
) {
741 if (tmp_aeb
->pnum
== pnum
) {
748 ubi_err(ubi
, "PEB %i is in EBA but not in used list", pnum
);
754 if (av
->highest_lnum
<= aeb
->lnum
)
755 av
->highest_lnum
= aeb
->lnum
;
757 assign_aeb_to_av(ai
, aeb
, av
);
759 dbg_bld("inserting PEB:%i (LEB %i) to vol %i",
760 aeb
->pnum
, aeb
->lnum
, av
->vol_id
);
764 ret
= scan_pool(ubi
, ai
, fmpl
->pebs
, pool_size
, &max_sqnum
, &free
);
768 ret
= scan_pool(ubi
, ai
, fmpl_wl
->pebs
, wl_pool_size
, &max_sqnum
, &free
);
772 if (max_sqnum
> ai
->max_sqnum
)
773 ai
->max_sqnum
= max_sqnum
;
775 list_for_each_entry_safe(tmp_aeb
, _tmp_aeb
, &free
, u
.list
)
776 list_move_tail(&tmp_aeb
->u
.list
, &ai
->free
);
778 list_for_each_entry_safe(tmp_aeb
, _tmp_aeb
, &used
, u
.list
)
779 list_move_tail(&tmp_aeb
->u
.list
, &ai
->erase
);
781 ubi_assert(list_empty(&free
));
784 * If fastmap is leaking PEBs (must not happen), raise a
785 * fat warning and fall back to scanning mode.
786 * We do this here because in ubi_wl_init() it's too late
787 * and we cannot fall back to scanning.
789 if (WARN_ON(count_fastmap_pebs(ai
) != ubi
->peb_count
-
790 ai
->bad_peb_count
- fm
->used_blocks
))
796 ret
= UBI_BAD_FASTMAP
;
798 list_for_each_entry_safe(tmp_aeb
, _tmp_aeb
, &used
, u
.list
) {
799 list_del(&tmp_aeb
->u
.list
);
800 ubi_free_aeb(ai
, tmp_aeb
);
802 list_for_each_entry_safe(tmp_aeb
, _tmp_aeb
, &free
, u
.list
) {
803 list_del(&tmp_aeb
->u
.list
);
804 ubi_free_aeb(ai
, tmp_aeb
);
811 * find_fm_anchor - find the most recent Fastmap superblock (anchor)
812 * @ai: UBI attach info to be filled
814 static int find_fm_anchor(struct ubi_attach_info
*ai
)
817 struct ubi_ainf_peb
*aeb
;
818 unsigned long long max_sqnum
= 0;
820 list_for_each_entry(aeb
, &ai
->fastmap
, u
.list
) {
821 if (aeb
->vol_id
== UBI_FM_SB_VOLUME_ID
&& aeb
->sqnum
> max_sqnum
) {
822 max_sqnum
= aeb
->sqnum
;
830 static struct ubi_ainf_peb
*clone_aeb(struct ubi_attach_info
*ai
,
831 struct ubi_ainf_peb
*old
)
833 struct ubi_ainf_peb
*new;
835 new = ubi_alloc_aeb(ai
, old
->pnum
, old
->ec
);
839 new->vol_id
= old
->vol_id
;
840 new->sqnum
= old
->sqnum
;
841 new->lnum
= old
->lnum
;
842 new->scrub
= old
->scrub
;
843 new->copy_flag
= old
->copy_flag
;
849 * ubi_scan_fastmap - scan the fastmap.
850 * @ubi: UBI device object
851 * @ai: UBI attach info to be filled
852 * @scan_ai: UBI attach info from the first 64 PEBs,
853 * used to find the most recent Fastmap data structure
855 * Returns 0 on success, UBI_NO_FASTMAP if no fastmap was found,
856 * UBI_BAD_FASTMAP if one was found but is not usable.
857 * < 0 indicates an internal error.
859 int ubi_scan_fastmap(struct ubi_device
*ubi
, struct ubi_attach_info
*ai
,
860 struct ubi_attach_info
*scan_ai
)
862 struct ubi_fm_sb
*fmsb
, *fmsb2
;
863 struct ubi_vid_io_buf
*vb
;
864 struct ubi_vid_hdr
*vh
;
865 struct ubi_ec_hdr
*ech
;
866 struct ubi_fastmap_layout
*fm
;
867 struct ubi_ainf_peb
*aeb
;
868 int i
, used_blocks
, pnum
, fm_anchor
, ret
= 0;
871 unsigned long long sqnum
= 0;
873 fm_anchor
= find_fm_anchor(scan_ai
);
875 return UBI_NO_FASTMAP
;
877 /* Copy all (possible) fastmap blocks into our new attach structure. */
878 list_for_each_entry(aeb
, &scan_ai
->fastmap
, u
.list
) {
879 struct ubi_ainf_peb
*new;
881 new = clone_aeb(ai
, aeb
);
885 list_add(&new->u
.list
, &ai
->fastmap
);
888 down_write(&ubi
->fm_protect
);
889 memset(ubi
->fm_buf
, 0, ubi
->fm_size
);
891 fmsb
= kmalloc(sizeof(*fmsb
), GFP_KERNEL
);
897 fm
= kzalloc(sizeof(*fm
), GFP_KERNEL
);
904 ret
= ubi_io_read_data(ubi
, fmsb
, fm_anchor
, 0, sizeof(*fmsb
));
905 if (ret
&& ret
!= UBI_IO_BITFLIPS
)
907 else if (ret
== UBI_IO_BITFLIPS
)
908 fm
->to_be_tortured
[0] = 1;
910 if (be32_to_cpu(fmsb
->magic
) != UBI_FM_SB_MAGIC
) {
911 ubi_err(ubi
, "bad super block magic: 0x%x, expected: 0x%x",
912 be32_to_cpu(fmsb
->magic
), UBI_FM_SB_MAGIC
);
913 ret
= UBI_BAD_FASTMAP
;
917 if (fmsb
->version
!= UBI_FM_FMT_VERSION
) {
918 ubi_err(ubi
, "bad fastmap version: %i, expected: %i",
919 fmsb
->version
, UBI_FM_FMT_VERSION
);
920 ret
= UBI_BAD_FASTMAP
;
924 used_blocks
= be32_to_cpu(fmsb
->used_blocks
);
925 if (used_blocks
> UBI_FM_MAX_BLOCKS
|| used_blocks
< 1) {
926 ubi_err(ubi
, "number of fastmap blocks is invalid: %i",
928 ret
= UBI_BAD_FASTMAP
;
932 fm_size
= ubi
->leb_size
* used_blocks
;
933 if (fm_size
!= ubi
->fm_size
) {
934 ubi_err(ubi
, "bad fastmap size: %zi, expected: %zi",
935 fm_size
, ubi
->fm_size
);
936 ret
= UBI_BAD_FASTMAP
;
940 ech
= kzalloc(ubi
->ec_hdr_alsize
, GFP_KERNEL
);
946 vb
= ubi_alloc_vid_buf(ubi
, GFP_KERNEL
);
952 vh
= ubi_get_vid_hdr(vb
);
954 for (i
= 0; i
< used_blocks
; i
++) {
957 pnum
= be32_to_cpu(fmsb
->block_loc
[i
]);
959 if (ubi_io_is_bad(ubi
, pnum
)) {
960 ret
= UBI_BAD_FASTMAP
;
964 if (i
== 0 && pnum
!= fm_anchor
) {
965 ubi_err(ubi
, "Fastmap anchor PEB mismatch: PEB: %i vs. %i",
967 ret
= UBI_BAD_FASTMAP
;
971 ret
= ubi_io_read_ec_hdr(ubi
, pnum
, ech
, 0);
972 if (ret
&& ret
!= UBI_IO_BITFLIPS
) {
973 ubi_err(ubi
, "unable to read fastmap block# %i EC (PEB: %i)",
976 ret
= UBI_BAD_FASTMAP
;
978 } else if (ret
== UBI_IO_BITFLIPS
)
979 fm
->to_be_tortured
[i
] = 1;
981 image_seq
= be32_to_cpu(ech
->image_seq
);
983 ubi
->image_seq
= image_seq
;
986 * Older UBI implementations have image_seq set to zero, so
987 * we shouldn't fail if image_seq == 0.
989 if (image_seq
&& (image_seq
!= ubi
->image_seq
)) {
990 ubi_err(ubi
, "wrong image seq:%d instead of %d",
991 be32_to_cpu(ech
->image_seq
), ubi
->image_seq
);
992 ret
= UBI_BAD_FASTMAP
;
996 ret
= ubi_io_read_vid_hdr(ubi
, pnum
, vb
, 0);
997 if (ret
&& ret
!= UBI_IO_BITFLIPS
) {
998 ubi_err(ubi
, "unable to read fastmap block# %i (PEB: %i)",
1004 if (be32_to_cpu(vh
->vol_id
) != UBI_FM_SB_VOLUME_ID
) {
1005 ubi_err(ubi
, "bad fastmap anchor vol_id: 0x%x, expected: 0x%x",
1006 be32_to_cpu(vh
->vol_id
),
1007 UBI_FM_SB_VOLUME_ID
);
1008 ret
= UBI_BAD_FASTMAP
;
1012 if (be32_to_cpu(vh
->vol_id
) != UBI_FM_DATA_VOLUME_ID
) {
1013 ubi_err(ubi
, "bad fastmap data vol_id: 0x%x, expected: 0x%x",
1014 be32_to_cpu(vh
->vol_id
),
1015 UBI_FM_DATA_VOLUME_ID
);
1016 ret
= UBI_BAD_FASTMAP
;
1021 if (sqnum
< be64_to_cpu(vh
->sqnum
))
1022 sqnum
= be64_to_cpu(vh
->sqnum
);
1024 ret
= ubi_io_read_data(ubi
, ubi
->fm_buf
+ (ubi
->leb_size
* i
),
1025 pnum
, 0, ubi
->leb_size
);
1026 if (ret
&& ret
!= UBI_IO_BITFLIPS
) {
1027 ubi_err(ubi
, "unable to read fastmap block# %i (PEB: %i, "
1028 "err: %i)", i
, pnum
, ret
);
1036 fmsb2
= (struct ubi_fm_sb
*)(ubi
->fm_buf
);
1037 tmp_crc
= be32_to_cpu(fmsb2
->data_crc
);
1038 fmsb2
->data_crc
= 0;
1039 crc
= crc32(UBI_CRC32_INIT
, ubi
->fm_buf
, fm_size
);
1040 if (crc
!= tmp_crc
) {
1041 ubi_err(ubi
, "fastmap data CRC is invalid");
1042 ubi_err(ubi
, "CRC should be: 0x%x, calc: 0x%x",
1044 ret
= UBI_BAD_FASTMAP
;
1048 fmsb2
->sqnum
= sqnum
;
1050 fm
->used_blocks
= used_blocks
;
1052 ret
= ubi_attach_fastmap(ubi
, ai
, fm
);
1055 ret
= UBI_BAD_FASTMAP
;
1059 for (i
= 0; i
< used_blocks
; i
++) {
1060 struct ubi_wl_entry
*e
;
1062 e
= kmem_cache_alloc(ubi_wl_entry_slab
, GFP_KERNEL
);
1065 kmem_cache_free(ubi_wl_entry_slab
, fm
->e
[i
]);
1071 e
->pnum
= be32_to_cpu(fmsb2
->block_loc
[i
]);
1072 e
->ec
= be32_to_cpu(fmsb2
->block_ec
[i
]);
1077 ubi
->fm_pool
.max_size
= ubi
->fm
->max_pool_size
;
1078 ubi
->fm_wl_pool
.max_size
= ubi
->fm
->max_wl_pool_size
;
1079 ubi_msg(ubi
, "attached by fastmap");
1080 ubi_msg(ubi
, "fastmap pool size: %d", ubi
->fm_pool
.max_size
);
1081 ubi_msg(ubi
, "fastmap WL pool size: %d",
1082 ubi
->fm_wl_pool
.max_size
);
1083 ubi
->fm_disabled
= 0;
1084 ubi
->fast_attach
= 1;
1086 ubi_free_vid_buf(vb
);
1089 up_write(&ubi
->fm_protect
);
1090 if (ret
== UBI_BAD_FASTMAP
)
1091 ubi_err(ubi
, "Attach by fastmap failed, doing a full scan!");
1095 ubi_free_vid_buf(vb
);
1104 * ubi_write_fastmap - writes a fastmap.
1105 * @ubi: UBI device object
1106 * @new_fm: the to be written fastmap
1108 * Returns 0 on success, < 0 indicates an internal error.
1110 static int ubi_write_fastmap(struct ubi_device
*ubi
,
1111 struct ubi_fastmap_layout
*new_fm
)
1115 struct ubi_fm_sb
*fmsb
;
1116 struct ubi_fm_hdr
*fmh
;
1117 struct ubi_fm_scan_pool
*fmpl
, *fmpl_wl
;
1118 struct ubi_fm_ec
*fec
;
1119 struct ubi_fm_volhdr
*fvh
;
1120 struct ubi_fm_eba
*feba
;
1121 struct ubi_wl_entry
*wl_e
;
1122 struct ubi_volume
*vol
;
1123 struct ubi_vid_io_buf
*avbuf
, *dvbuf
;
1124 struct ubi_vid_hdr
*avhdr
, *dvhdr
;
1125 struct ubi_work
*ubi_wrk
;
1126 struct rb_node
*tmp_rb
;
1127 int ret
, i
, j
, free_peb_count
, used_peb_count
, vol_count
;
1128 int scrub_peb_count
, erase_peb_count
;
1129 unsigned long *seen_pebs
= NULL
;
1131 fm_raw
= ubi
->fm_buf
;
1132 memset(ubi
->fm_buf
, 0, ubi
->fm_size
);
1134 avbuf
= new_fm_vbuf(ubi
, UBI_FM_SB_VOLUME_ID
);
1140 dvbuf
= new_fm_vbuf(ubi
, UBI_FM_DATA_VOLUME_ID
);
1146 avhdr
= ubi_get_vid_hdr(avbuf
);
1147 dvhdr
= ubi_get_vid_hdr(dvbuf
);
1149 seen_pebs
= init_seen(ubi
);
1150 if (IS_ERR(seen_pebs
)) {
1151 ret
= PTR_ERR(seen_pebs
);
1155 spin_lock(&ubi
->volumes_lock
);
1156 spin_lock(&ubi
->wl_lock
);
1158 fmsb
= (struct ubi_fm_sb
*)fm_raw
;
1159 fm_pos
+= sizeof(*fmsb
);
1160 ubi_assert(fm_pos
<= ubi
->fm_size
);
1162 fmh
= (struct ubi_fm_hdr
*)(fm_raw
+ fm_pos
);
1163 fm_pos
+= sizeof(*fmh
);
1164 ubi_assert(fm_pos
<= ubi
->fm_size
);
1166 fmsb
->magic
= cpu_to_be32(UBI_FM_SB_MAGIC
);
1167 fmsb
->version
= UBI_FM_FMT_VERSION
;
1168 fmsb
->used_blocks
= cpu_to_be32(new_fm
->used_blocks
);
1169 /* the max sqnum will be filled in while *reading* the fastmap */
1172 fmh
->magic
= cpu_to_be32(UBI_FM_HDR_MAGIC
);
1175 scrub_peb_count
= 0;
1176 erase_peb_count
= 0;
1179 fmpl
= (struct ubi_fm_scan_pool
*)(fm_raw
+ fm_pos
);
1180 fm_pos
+= sizeof(*fmpl
);
1181 fmpl
->magic
= cpu_to_be32(UBI_FM_POOL_MAGIC
);
1182 fmpl
->size
= cpu_to_be16(ubi
->fm_pool
.size
);
1183 fmpl
->max_size
= cpu_to_be16(ubi
->fm_pool
.max_size
);
1185 for (i
= 0; i
< ubi
->fm_pool
.size
; i
++) {
1186 fmpl
->pebs
[i
] = cpu_to_be32(ubi
->fm_pool
.pebs
[i
]);
1187 set_seen(ubi
, ubi
->fm_pool
.pebs
[i
], seen_pebs
);
1190 fmpl_wl
= (struct ubi_fm_scan_pool
*)(fm_raw
+ fm_pos
);
1191 fm_pos
+= sizeof(*fmpl_wl
);
1192 fmpl_wl
->magic
= cpu_to_be32(UBI_FM_POOL_MAGIC
);
1193 fmpl_wl
->size
= cpu_to_be16(ubi
->fm_wl_pool
.size
);
1194 fmpl_wl
->max_size
= cpu_to_be16(ubi
->fm_wl_pool
.max_size
);
1196 for (i
= 0; i
< ubi
->fm_wl_pool
.size
; i
++) {
1197 fmpl_wl
->pebs
[i
] = cpu_to_be32(ubi
->fm_wl_pool
.pebs
[i
]);
1198 set_seen(ubi
, ubi
->fm_wl_pool
.pebs
[i
], seen_pebs
);
1201 ubi_for_each_free_peb(ubi
, wl_e
, tmp_rb
) {
1202 fec
= (struct ubi_fm_ec
*)(fm_raw
+ fm_pos
);
1204 fec
->pnum
= cpu_to_be32(wl_e
->pnum
);
1205 set_seen(ubi
, wl_e
->pnum
, seen_pebs
);
1206 fec
->ec
= cpu_to_be32(wl_e
->ec
);
1209 fm_pos
+= sizeof(*fec
);
1210 ubi_assert(fm_pos
<= ubi
->fm_size
);
1212 fmh
->free_peb_count
= cpu_to_be32(free_peb_count
);
1214 ubi_for_each_used_peb(ubi
, wl_e
, tmp_rb
) {
1215 fec
= (struct ubi_fm_ec
*)(fm_raw
+ fm_pos
);
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
);
1222 fm_pos
+= sizeof(*fec
);
1223 ubi_assert(fm_pos
<= ubi
->fm_size
);
1226 ubi_for_each_protected_peb(ubi
, i
, wl_e
) {
1227 fec
= (struct ubi_fm_ec
*)(fm_raw
+ fm_pos
);
1229 fec
->pnum
= cpu_to_be32(wl_e
->pnum
);
1230 set_seen(ubi
, wl_e
->pnum
, seen_pebs
);
1231 fec
->ec
= cpu_to_be32(wl_e
->ec
);
1234 fm_pos
+= sizeof(*fec
);
1235 ubi_assert(fm_pos
<= ubi
->fm_size
);
1237 fmh
->used_peb_count
= cpu_to_be32(used_peb_count
);
1239 ubi_for_each_scrub_peb(ubi
, wl_e
, tmp_rb
) {
1240 fec
= (struct ubi_fm_ec
*)(fm_raw
+ fm_pos
);
1242 fec
->pnum
= cpu_to_be32(wl_e
->pnum
);
1243 set_seen(ubi
, wl_e
->pnum
, seen_pebs
);
1244 fec
->ec
= cpu_to_be32(wl_e
->ec
);
1247 fm_pos
+= sizeof(*fec
);
1248 ubi_assert(fm_pos
<= ubi
->fm_size
);
1250 fmh
->scrub_peb_count
= cpu_to_be32(scrub_peb_count
);
1253 list_for_each_entry(ubi_wrk
, &ubi
->works
, list
) {
1254 if (ubi_is_erase_work(ubi_wrk
)) {
1258 fec
= (struct ubi_fm_ec
*)(fm_raw
+ fm_pos
);
1260 fec
->pnum
= cpu_to_be32(wl_e
->pnum
);
1261 set_seen(ubi
, wl_e
->pnum
, seen_pebs
);
1262 fec
->ec
= cpu_to_be32(wl_e
->ec
);
1265 fm_pos
+= sizeof(*fec
);
1266 ubi_assert(fm_pos
<= ubi
->fm_size
);
1269 fmh
->erase_peb_count
= cpu_to_be32(erase_peb_count
);
1271 for (i
= 0; i
< UBI_MAX_VOLUMES
+ UBI_INT_VOL_COUNT
; i
++) {
1272 vol
= ubi
->volumes
[i
];
1279 fvh
= (struct ubi_fm_volhdr
*)(fm_raw
+ fm_pos
);
1280 fm_pos
+= sizeof(*fvh
);
1281 ubi_assert(fm_pos
<= ubi
->fm_size
);
1283 fvh
->magic
= cpu_to_be32(UBI_FM_VHDR_MAGIC
);
1284 fvh
->vol_id
= cpu_to_be32(vol
->vol_id
);
1285 fvh
->vol_type
= vol
->vol_type
;
1286 fvh
->used_ebs
= cpu_to_be32(vol
->used_ebs
);
1287 fvh
->data_pad
= cpu_to_be32(vol
->data_pad
);
1288 fvh
->last_eb_bytes
= cpu_to_be32(vol
->last_eb_bytes
);
1290 ubi_assert(vol
->vol_type
== UBI_DYNAMIC_VOLUME
||
1291 vol
->vol_type
== UBI_STATIC_VOLUME
);
1293 feba
= (struct ubi_fm_eba
*)(fm_raw
+ fm_pos
);
1294 fm_pos
+= sizeof(*feba
) + (sizeof(__be32
) * vol
->reserved_pebs
);
1295 ubi_assert(fm_pos
<= ubi
->fm_size
);
1297 for (j
= 0; j
< vol
->reserved_pebs
; j
++) {
1298 struct ubi_eba_leb_desc ldesc
;
1300 ubi_eba_get_ldesc(vol
, j
, &ldesc
);
1301 feba
->pnum
[j
] = cpu_to_be32(ldesc
.pnum
);
1304 feba
->reserved_pebs
= cpu_to_be32(j
);
1305 feba
->magic
= cpu_to_be32(UBI_FM_EBA_MAGIC
);
1307 fmh
->vol_count
= cpu_to_be32(vol_count
);
1308 fmh
->bad_peb_count
= cpu_to_be32(ubi
->bad_peb_count
);
1310 avhdr
->sqnum
= cpu_to_be64(ubi_next_sqnum(ubi
));
1313 spin_unlock(&ubi
->wl_lock
);
1314 spin_unlock(&ubi
->volumes_lock
);
1316 dbg_bld("writing fastmap SB to PEB %i", new_fm
->e
[0]->pnum
);
1317 ret
= ubi_io_write_vid_hdr(ubi
, new_fm
->e
[0]->pnum
, avbuf
);
1319 ubi_err(ubi
, "unable to write vid_hdr to fastmap SB!");
1323 for (i
= 0; i
< new_fm
->used_blocks
; i
++) {
1324 fmsb
->block_loc
[i
] = cpu_to_be32(new_fm
->e
[i
]->pnum
);
1325 set_seen(ubi
, new_fm
->e
[i
]->pnum
, seen_pebs
);
1326 fmsb
->block_ec
[i
] = cpu_to_be32(new_fm
->e
[i
]->ec
);
1330 fmsb
->data_crc
= cpu_to_be32(crc32(UBI_CRC32_INIT
, fm_raw
,
1333 for (i
= 1; i
< new_fm
->used_blocks
; i
++) {
1334 dvhdr
->sqnum
= cpu_to_be64(ubi_next_sqnum(ubi
));
1335 dvhdr
->lnum
= cpu_to_be32(i
);
1336 dbg_bld("writing fastmap data to PEB %i sqnum %llu",
1337 new_fm
->e
[i
]->pnum
, be64_to_cpu(dvhdr
->sqnum
));
1338 ret
= ubi_io_write_vid_hdr(ubi
, new_fm
->e
[i
]->pnum
, dvbuf
);
1340 ubi_err(ubi
, "unable to write vid_hdr to PEB %i!",
1341 new_fm
->e
[i
]->pnum
);
1346 for (i
= 0; i
< new_fm
->used_blocks
; i
++) {
1347 ret
= ubi_io_write_data(ubi
, fm_raw
+ (i
* ubi
->leb_size
),
1348 new_fm
->e
[i
]->pnum
, 0, ubi
->leb_size
);
1350 ubi_err(ubi
, "unable to write fastmap to PEB %i!",
1351 new_fm
->e
[i
]->pnum
);
1359 ret
= self_check_seen(ubi
, seen_pebs
);
1360 dbg_bld("fastmap written!");
1363 ubi_free_vid_buf(avbuf
);
1364 ubi_free_vid_buf(dvbuf
);
1365 free_seen(seen_pebs
);
1371 * erase_block - Manually erase a PEB.
1372 * @ubi: UBI device object
1373 * @pnum: PEB to be erased
1375 * Returns the new EC value on success, < 0 indicates an internal error.
1377 static int erase_block(struct ubi_device
*ubi
, int pnum
)
1380 struct ubi_ec_hdr
*ec_hdr
;
1383 ec_hdr
= kzalloc(ubi
->ec_hdr_alsize
, GFP_KERNEL
);
1387 ret
= ubi_io_read_ec_hdr(ubi
, pnum
, ec_hdr
, 0);
1390 else if (ret
&& ret
!= UBI_IO_BITFLIPS
) {
1395 ret
= ubi_io_sync_erase(ubi
, pnum
, 0);
1399 ec
= be64_to_cpu(ec_hdr
->ec
);
1401 if (ec
> UBI_MAX_ERASECOUNTER
) {
1406 ec_hdr
->ec
= cpu_to_be64(ec
);
1407 ret
= ubi_io_write_ec_hdr(ubi
, pnum
, ec_hdr
);
1418 * invalidate_fastmap - destroys a fastmap.
1419 * @ubi: UBI device object
1421 * This function ensures that upon next UBI attach a full scan
1422 * is issued. We need this if UBI is about to write a new fastmap
1423 * but is unable to do so. In this case we have two options:
1424 * a) Make sure that the current fastmap will not be usued upon
1425 * attach time and contine or b) fall back to RO mode to have the
1426 * current fastmap in a valid state.
1427 * Returns 0 on success, < 0 indicates an internal error.
1429 static int invalidate_fastmap(struct ubi_device
*ubi
)
1432 struct ubi_fastmap_layout
*fm
;
1433 struct ubi_wl_entry
*e
;
1434 struct ubi_vid_io_buf
*vb
= NULL
;
1435 struct ubi_vid_hdr
*vh
;
1443 fm
= kzalloc(sizeof(*fm
), GFP_KERNEL
);
1447 vb
= new_fm_vbuf(ubi
, UBI_FM_SB_VOLUME_ID
);
1451 vh
= ubi_get_vid_hdr(vb
);
1454 e
= ubi_wl_get_fm_peb(ubi
, 1);
1459 * Create fake fastmap such that UBI will fall back
1462 vh
->sqnum
= cpu_to_be64(ubi_next_sqnum(ubi
));
1463 ret
= ubi_io_write_vid_hdr(ubi
, e
->pnum
, vb
);
1465 ubi_wl_put_fm_peb(ubi
, e
, 0, 0);
1469 fm
->used_blocks
= 1;
1475 ubi_free_vid_buf(vb
);
1484 * return_fm_pebs - returns all PEBs used by a fastmap back to the
1486 * @ubi: UBI device object
1487 * @fm: fastmap layout object
1489 static void return_fm_pebs(struct ubi_device
*ubi
,
1490 struct ubi_fastmap_layout
*fm
)
1497 for (i
= 0; i
< fm
->used_blocks
; i
++) {
1499 ubi_wl_put_fm_peb(ubi
, fm
->e
[i
], i
,
1500 fm
->to_be_tortured
[i
]);
1507 * ubi_update_fastmap - will be called by UBI if a volume changes or
1508 * a fastmap pool becomes full.
1509 * @ubi: UBI device object
1511 * Returns 0 on success, < 0 indicates an internal error.
1513 int ubi_update_fastmap(struct ubi_device
*ubi
)
1516 struct ubi_fastmap_layout
*new_fm
, *old_fm
;
1517 struct ubi_wl_entry
*tmp_e
;
1519 down_write(&ubi
->fm_protect
);
1520 down_write(&ubi
->work_sem
);
1521 down_write(&ubi
->fm_eba_sem
);
1523 ubi_refill_pools(ubi
);
1525 if (ubi
->ro_mode
|| ubi
->fm_disabled
) {
1526 up_write(&ubi
->fm_eba_sem
);
1527 up_write(&ubi
->work_sem
);
1528 up_write(&ubi
->fm_protect
);
1532 ret
= ubi_ensure_anchor_pebs(ubi
);
1534 up_write(&ubi
->fm_eba_sem
);
1535 up_write(&ubi
->work_sem
);
1536 up_write(&ubi
->fm_protect
);
1540 new_fm
= kzalloc(sizeof(*new_fm
), GFP_KERNEL
);
1542 up_write(&ubi
->fm_eba_sem
);
1543 up_write(&ubi
->work_sem
);
1544 up_write(&ubi
->fm_protect
);
1548 new_fm
->used_blocks
= ubi
->fm_size
/ ubi
->leb_size
;
1552 if (new_fm
->used_blocks
> UBI_FM_MAX_BLOCKS
) {
1553 ubi_err(ubi
, "fastmap too large");
1558 for (i
= 1; i
< new_fm
->used_blocks
; i
++) {
1559 spin_lock(&ubi
->wl_lock
);
1560 tmp_e
= ubi_wl_get_fm_peb(ubi
, 0);
1561 spin_unlock(&ubi
->wl_lock
);
1564 if (old_fm
&& old_fm
->e
[i
]) {
1565 ret
= erase_block(ubi
, old_fm
->e
[i
]->pnum
);
1567 ubi_err(ubi
, "could not erase old fastmap PEB");
1569 for (j
= 1; j
< i
; j
++) {
1570 ubi_wl_put_fm_peb(ubi
, new_fm
->e
[j
],
1572 new_fm
->e
[j
] = NULL
;
1576 new_fm
->e
[i
] = old_fm
->e
[i
];
1577 old_fm
->e
[i
] = NULL
;
1579 ubi_err(ubi
, "could not get any free erase block");
1581 for (j
= 1; j
< i
; j
++) {
1582 ubi_wl_put_fm_peb(ubi
, new_fm
->e
[j
], j
, 0);
1583 new_fm
->e
[j
] = NULL
;
1590 new_fm
->e
[i
] = tmp_e
;
1592 if (old_fm
&& old_fm
->e
[i
]) {
1593 ubi_wl_put_fm_peb(ubi
, old_fm
->e
[i
], i
,
1594 old_fm
->to_be_tortured
[i
]);
1595 old_fm
->e
[i
] = NULL
;
1600 /* Old fastmap is larger than the new one */
1601 if (old_fm
&& new_fm
->used_blocks
< old_fm
->used_blocks
) {
1602 for (i
= new_fm
->used_blocks
; i
< old_fm
->used_blocks
; i
++) {
1603 ubi_wl_put_fm_peb(ubi
, old_fm
->e
[i
], i
,
1604 old_fm
->to_be_tortured
[i
]);
1605 old_fm
->e
[i
] = NULL
;
1609 spin_lock(&ubi
->wl_lock
);
1610 tmp_e
= ubi_wl_get_fm_peb(ubi
, 1);
1611 spin_unlock(&ubi
->wl_lock
);
1614 /* no fresh anchor PEB was found, reuse the old one */
1616 ret
= erase_block(ubi
, old_fm
->e
[0]->pnum
);
1618 ubi_err(ubi
, "could not erase old anchor PEB");
1620 for (i
= 1; i
< new_fm
->used_blocks
; i
++) {
1621 ubi_wl_put_fm_peb(ubi
, new_fm
->e
[i
],
1623 new_fm
->e
[i
] = NULL
;
1627 new_fm
->e
[0] = old_fm
->e
[0];
1628 new_fm
->e
[0]->ec
= ret
;
1629 old_fm
->e
[0] = NULL
;
1631 /* we've got a new anchor PEB, return the old one */
1632 ubi_wl_put_fm_peb(ubi
, old_fm
->e
[0], 0,
1633 old_fm
->to_be_tortured
[0]);
1634 new_fm
->e
[0] = tmp_e
;
1635 old_fm
->e
[0] = NULL
;
1639 ubi_err(ubi
, "could not find any anchor PEB");
1641 for (i
= 1; i
< new_fm
->used_blocks
; i
++) {
1642 ubi_wl_put_fm_peb(ubi
, new_fm
->e
[i
], i
, 0);
1643 new_fm
->e
[i
] = NULL
;
1649 new_fm
->e
[0] = tmp_e
;
1652 ret
= ubi_write_fastmap(ubi
, new_fm
);
1658 up_write(&ubi
->fm_eba_sem
);
1659 up_write(&ubi
->work_sem
);
1660 up_write(&ubi
->fm_protect
);
1665 ubi_warn(ubi
, "Unable to write new fastmap, err=%i", ret
);
1667 ret
= invalidate_fastmap(ubi
);
1669 ubi_err(ubi
, "Unable to invalidate current fastmap!");
1672 return_fm_pebs(ubi
, old_fm
);
1673 return_fm_pebs(ubi
, new_fm
);