blob: 0910c2cece5e5ee1c478446387f6f638d4a76bb5 [file] [log] [blame]
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001/*
2 * Copyright (c) International Business Machines Corp., 2006
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Artem Bityutskiy (Битюцкий Артём)
19 */
20
21/*
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +030022 * The UBI Eraseblock Association (EBA) sub-system.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040023 *
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +030024 * This sub-system is responsible for I/O to/from logical eraseblock.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040025 *
26 * Although in this implementation the EBA table is fully kept and managed in
27 * RAM, which assumes poor scalability, it might be (partially) maintained on
28 * flash in future implementations.
29 *
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +030030 * The EBA sub-system implements per-logical eraseblock locking. Before
31 * accessing a logical eraseblock it is locked for reading or writing. The
32 * per-logical eraseblock locking is implemented by means of the lock tree. The
33 * lock tree is an RB-tree which refers all the currently locked logical
34 * eraseblocks. The lock tree elements are &struct ubi_ltree_entry objects.
35 * They are indexed by (@vol_id, @lnum) pairs.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040036 *
37 * EBA also maintains the global sequence counter which is incremented each
38 * time a logical eraseblock is mapped to a physical eraseblock and it is
39 * stored in the volume identifier header. This means that each VID header has
40 * a unique sequence number. The sequence number is only increased an we assume
41 * 64 bits is enough to never overflow.
42 */
43
44#include <linux/slab.h>
45#include <linux/crc32.h>
46#include <linux/err.h>
47#include "ubi.h"
48
Artem Bityutskiye8823bd2007-09-13 14:28:14 +030049/* Number of physical eraseblocks reserved for atomic LEB change operation */
50#define EBA_RESERVED_PEBS 1
51
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040052/**
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040053 * next_sqnum - get next sequence number.
54 * @ubi: UBI device description object
55 *
56 * This function returns next sequence number to use, which is just the current
57 * global sequence counter value. It also increases the global sequence
58 * counter.
59 */
Richard Weinbergera7306652012-09-26 17:51:43 +020060unsigned long long ubi_next_sqnum(struct ubi_device *ubi)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040061{
62 unsigned long long sqnum;
63
64 spin_lock(&ubi->ltree_lock);
65 sqnum = ubi->global_sqnum++;
66 spin_unlock(&ubi->ltree_lock);
67
68 return sqnum;
69}
70
71/**
72 * ubi_get_compat - get compatibility flags of a volume.
73 * @ubi: UBI device description object
74 * @vol_id: volume ID
75 *
76 * This function returns compatibility flags for an internal volume. User
77 * volumes have no compatibility flags, so %0 is returned.
78 */
79static int ubi_get_compat(const struct ubi_device *ubi, int vol_id)
80{
Artem Bityutskiy91f2d532008-01-24 11:23:23 +020081 if (vol_id == UBI_LAYOUT_VOLUME_ID)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040082 return UBI_LAYOUT_VOLUME_COMPAT;
83 return 0;
84}
85
86/**
87 * ltree_lookup - look up the lock tree.
88 * @ubi: UBI device description object
89 * @vol_id: volume ID
90 * @lnum: logical eraseblock number
91 *
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +020092 * This function returns a pointer to the corresponding &struct ubi_ltree_entry
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040093 * object if the logical eraseblock is locked and %NULL if it is not.
94 * @ubi->ltree_lock has to be locked.
95 */
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +020096static struct ubi_ltree_entry *ltree_lookup(struct ubi_device *ubi, int vol_id,
97 int lnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +040098{
99 struct rb_node *p;
100
101 p = ubi->ltree.rb_node;
102 while (p) {
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200103 struct ubi_ltree_entry *le;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400104
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200105 le = rb_entry(p, struct ubi_ltree_entry, rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400106
107 if (vol_id < le->vol_id)
108 p = p->rb_left;
109 else if (vol_id > le->vol_id)
110 p = p->rb_right;
111 else {
112 if (lnum < le->lnum)
113 p = p->rb_left;
114 else if (lnum > le->lnum)
115 p = p->rb_right;
116 else
117 return le;
118 }
119 }
120
121 return NULL;
122}
123
124/**
125 * ltree_add_entry - add new entry to the lock tree.
126 * @ubi: UBI device description object
127 * @vol_id: volume ID
128 * @lnum: logical eraseblock number
129 *
130 * This function adds new entry for logical eraseblock (@vol_id, @lnum) to the
131 * lock tree. If such entry is already there, its usage counter is increased.
132 * Returns pointer to the lock tree entry or %-ENOMEM if memory allocation
133 * failed.
134 */
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200135static struct ubi_ltree_entry *ltree_add_entry(struct ubi_device *ubi,
136 int vol_id, int lnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400137{
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200138 struct ubi_ltree_entry *le, *le1, *le_free;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400139
Artem Bityutskiyb9a06622008-01-16 12:11:54 +0200140 le = kmalloc(sizeof(struct ubi_ltree_entry), GFP_NOFS);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400141 if (!le)
142 return ERR_PTR(-ENOMEM);
143
Artem Bityutskiyb9a06622008-01-16 12:11:54 +0200144 le->users = 0;
145 init_rwsem(&le->mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400146 le->vol_id = vol_id;
147 le->lnum = lnum;
148
149 spin_lock(&ubi->ltree_lock);
150 le1 = ltree_lookup(ubi, vol_id, lnum);
151
152 if (le1) {
153 /*
154 * This logical eraseblock is already locked. The newly
155 * allocated lock entry is not needed.
156 */
157 le_free = le;
158 le = le1;
159 } else {
160 struct rb_node **p, *parent = NULL;
161
162 /*
163 * No lock entry, add the newly allocated one to the
164 * @ubi->ltree RB-tree.
165 */
166 le_free = NULL;
167
168 p = &ubi->ltree.rb_node;
169 while (*p) {
170 parent = *p;
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200171 le1 = rb_entry(parent, struct ubi_ltree_entry, rb);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400172
173 if (vol_id < le1->vol_id)
174 p = &(*p)->rb_left;
175 else if (vol_id > le1->vol_id)
176 p = &(*p)->rb_right;
177 else {
178 ubi_assert(lnum != le1->lnum);
179 if (lnum < le1->lnum)
180 p = &(*p)->rb_left;
181 else
182 p = &(*p)->rb_right;
183 }
184 }
185
186 rb_link_node(&le->rb, parent, p);
187 rb_insert_color(&le->rb, &ubi->ltree);
188 }
189 le->users += 1;
190 spin_unlock(&ubi->ltree_lock);
191
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300192 kfree(le_free);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400193 return le;
194}
195
196/**
197 * leb_read_lock - lock logical eraseblock for reading.
198 * @ubi: UBI device description object
199 * @vol_id: volume ID
200 * @lnum: logical eraseblock number
201 *
202 * This function locks a logical eraseblock for reading. Returns zero in case
203 * of success and a negative error code in case of failure.
204 */
205static int leb_read_lock(struct ubi_device *ubi, int vol_id, int lnum)
206{
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200207 struct ubi_ltree_entry *le;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400208
209 le = ltree_add_entry(ubi, vol_id, lnum);
210 if (IS_ERR(le))
211 return PTR_ERR(le);
212 down_read(&le->mutex);
213 return 0;
214}
215
216/**
217 * leb_read_unlock - unlock logical eraseblock.
218 * @ubi: UBI device description object
219 * @vol_id: volume ID
220 * @lnum: logical eraseblock number
221 */
222static void leb_read_unlock(struct ubi_device *ubi, int vol_id, int lnum)
223{
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200224 struct ubi_ltree_entry *le;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400225
226 spin_lock(&ubi->ltree_lock);
227 le = ltree_lookup(ubi, vol_id, lnum);
228 le->users -= 1;
229 ubi_assert(le->users >= 0);
Artem Bityutskiy23add742008-06-16 13:35:23 +0300230 up_read(&le->mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400231 if (le->users == 0) {
232 rb_erase(&le->rb, &ubi->ltree);
Artem Bityutskiy23add742008-06-16 13:35:23 +0300233 kfree(le);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400234 }
235 spin_unlock(&ubi->ltree_lock);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400236}
237
238/**
239 * leb_write_lock - lock logical eraseblock for writing.
240 * @ubi: UBI device description object
241 * @vol_id: volume ID
242 * @lnum: logical eraseblock number
243 *
244 * This function locks a logical eraseblock for writing. Returns zero in case
245 * of success and a negative error code in case of failure.
246 */
247static int leb_write_lock(struct ubi_device *ubi, int vol_id, int lnum)
248{
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200249 struct ubi_ltree_entry *le;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400250
251 le = ltree_add_entry(ubi, vol_id, lnum);
252 if (IS_ERR(le))
253 return PTR_ERR(le);
254 down_write(&le->mutex);
255 return 0;
256}
257
258/**
Artem Bityutskiy43f9b252007-12-18 15:06:55 +0200259 * leb_write_lock - lock logical eraseblock for writing.
260 * @ubi: UBI device description object
261 * @vol_id: volume ID
262 * @lnum: logical eraseblock number
263 *
264 * This function locks a logical eraseblock for writing if there is no
265 * contention and does nothing if there is contention. Returns %0 in case of
266 * success, %1 in case of contention, and and a negative error code in case of
267 * failure.
268 */
269static int leb_write_trylock(struct ubi_device *ubi, int vol_id, int lnum)
270{
Artem Bityutskiy43f9b252007-12-18 15:06:55 +0200271 struct ubi_ltree_entry *le;
272
273 le = ltree_add_entry(ubi, vol_id, lnum);
274 if (IS_ERR(le))
275 return PTR_ERR(le);
276 if (down_write_trylock(&le->mutex))
277 return 0;
278
279 /* Contention, cancel */
280 spin_lock(&ubi->ltree_lock);
281 le->users -= 1;
282 ubi_assert(le->users >= 0);
283 if (le->users == 0) {
284 rb_erase(&le->rb, &ubi->ltree);
Artem Bityutskiyb9a06622008-01-16 12:11:54 +0200285 kfree(le);
Artem Bityutskiy23add742008-06-16 13:35:23 +0300286 }
287 spin_unlock(&ubi->ltree_lock);
Artem Bityutskiy43f9b252007-12-18 15:06:55 +0200288
289 return 1;
290}
291
292/**
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400293 * leb_write_unlock - unlock logical eraseblock.
294 * @ubi: UBI device description object
295 * @vol_id: volume ID
296 * @lnum: logical eraseblock number
297 */
298static void leb_write_unlock(struct ubi_device *ubi, int vol_id, int lnum)
299{
Artem Bityutskiy3a8d4642007-12-16 12:32:51 +0200300 struct ubi_ltree_entry *le;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400301
302 spin_lock(&ubi->ltree_lock);
303 le = ltree_lookup(ubi, vol_id, lnum);
304 le->users -= 1;
305 ubi_assert(le->users >= 0);
Artem Bityutskiy23add742008-06-16 13:35:23 +0300306 up_write(&le->mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400307 if (le->users == 0) {
308 rb_erase(&le->rb, &ubi->ltree);
Artem Bityutskiyb9a06622008-01-16 12:11:54 +0200309 kfree(le);
Artem Bityutskiy23add742008-06-16 13:35:23 +0300310 }
311 spin_unlock(&ubi->ltree_lock);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400312}
313
314/**
315 * ubi_eba_unmap_leb - un-map logical eraseblock.
316 * @ubi: UBI device description object
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200317 * @vol: volume description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400318 * @lnum: logical eraseblock number
319 *
320 * This function un-maps logical eraseblock @lnum and schedules corresponding
321 * physical eraseblock for erasure. Returns zero in case of success and a
322 * negative error code in case of failure.
323 */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200324int ubi_eba_unmap_leb(struct ubi_device *ubi, struct ubi_volume *vol,
325 int lnum)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400326{
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200327 int err, pnum, vol_id = vol->vol_id;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400328
329 if (ubi->ro_mode)
330 return -EROFS;
331
332 err = leb_write_lock(ubi, vol_id, lnum);
333 if (err)
334 return err;
335
336 pnum = vol->eba_tbl[lnum];
337 if (pnum < 0)
338 /* This logical eraseblock is already unmapped */
339 goto out_unlock;
340
341 dbg_eba("erase LEB %d:%d, PEB %d", vol_id, lnum, pnum);
342
343 vol->eba_tbl[lnum] = UBI_LEB_UNMAPPED;
Joel Reardond36e59e2012-05-18 15:40:24 +0200344 err = ubi_wl_put_peb(ubi, vol_id, lnum, pnum, 0);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400345
346out_unlock:
347 leb_write_unlock(ubi, vol_id, lnum);
348 return err;
349}
350
351/**
352 * ubi_eba_read_leb - read data.
353 * @ubi: UBI device description object
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200354 * @vol: volume description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400355 * @lnum: logical eraseblock number
356 * @buf: buffer to store the read data
357 * @offset: offset from where to read
358 * @len: how many bytes to read
359 * @check: data CRC check flag
360 *
361 * If the logical eraseblock @lnum is unmapped, @buf is filled with 0xFF
362 * bytes. The @check flag only makes sense for static volumes and forces
363 * eraseblock data CRC checking.
364 *
365 * In case of success this function returns zero. In case of a static volume,
366 * if data CRC mismatches - %-EBADMSG is returned. %-EBADMSG may also be
367 * returned for any volume type if an ECC error was detected by the MTD device
368 * driver. Other negative error cored may be returned in case of other errors.
369 */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200370int ubi_eba_read_leb(struct ubi_device *ubi, struct ubi_volume *vol, int lnum,
371 void *buf, int offset, int len, int check)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400372{
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200373 int err, pnum, scrub = 0, vol_id = vol->vol_id;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400374 struct ubi_vid_hdr *vid_hdr;
Jeff Garzika6343af2007-07-17 05:39:58 -0400375 uint32_t uninitialized_var(crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400376
377 err = leb_read_lock(ubi, vol_id, lnum);
378 if (err)
379 return err;
380
381 pnum = vol->eba_tbl[lnum];
382 if (pnum < 0) {
383 /*
384 * The logical eraseblock is not mapped, fill the whole buffer
385 * with 0xFF bytes. The exception is static volumes for which
386 * it is an error to read unmapped logical eraseblocks.
387 */
388 dbg_eba("read %d bytes from offset %d of LEB %d:%d (unmapped)",
389 len, offset, vol_id, lnum);
390 leb_read_unlock(ubi, vol_id, lnum);
391 ubi_assert(vol->vol_type != UBI_STATIC_VOLUME);
392 memset(buf, 0xFF, len);
393 return 0;
394 }
395
396 dbg_eba("read %d bytes from offset %d of LEB %d:%d, PEB %d",
397 len, offset, vol_id, lnum, pnum);
398
399 if (vol->vol_type == UBI_DYNAMIC_VOLUME)
400 check = 0;
401
402retry:
403 if (check) {
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300404 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_NOFS);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400405 if (!vid_hdr) {
406 err = -ENOMEM;
407 goto out_unlock;
408 }
409
410 err = ubi_io_read_vid_hdr(ubi, pnum, vid_hdr, 1);
411 if (err && err != UBI_IO_BITFLIPS) {
412 if (err > 0) {
413 /*
414 * The header is either absent or corrupted.
415 * The former case means there is a bug -
416 * switch to read-only mode just in case.
417 * The latter case means a real corruption - we
418 * may try to recover data. FIXME: but this is
419 * not implemented.
420 */
Artem Bityutskiy756e1df2010-09-03 01:30:16 +0300421 if (err == UBI_IO_BAD_HDR_EBADMSG ||
Artem Bityutskiyeb895802010-05-03 09:04:39 +0300422 err == UBI_IO_BAD_HDR) {
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300423 ubi_warn("corrupted VID header at PEB %d, LEB %d:%d",
424 pnum, vol_id, lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400425 err = -EBADMSG;
426 } else
427 ubi_ro_mode(ubi);
428 }
429 goto out_free;
430 } else if (err == UBI_IO_BITFLIPS)
431 scrub = 1;
432
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300433 ubi_assert(lnum < be32_to_cpu(vid_hdr->used_ebs));
434 ubi_assert(len == be32_to_cpu(vid_hdr->data_size));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400435
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300436 crc = be32_to_cpu(vid_hdr->data_crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400437 ubi_free_vid_hdr(ubi, vid_hdr);
438 }
439
440 err = ubi_io_read_data(ubi, buf, pnum, offset, len);
441 if (err) {
442 if (err == UBI_IO_BITFLIPS) {
443 scrub = 1;
444 err = 0;
Brian Norrisd57f40542011-09-20 18:34:25 -0700445 } else if (mtd_is_eccerr(err)) {
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400446 if (vol->vol_type == UBI_DYNAMIC_VOLUME)
447 goto out_unlock;
448 scrub = 1;
449 if (!check) {
450 ubi_msg("force data checking");
451 check = 1;
452 goto retry;
453 }
454 } else
455 goto out_unlock;
456 }
457
458 if (check) {
Jeff Garzik2ab934b2007-07-17 01:49:56 -0400459 uint32_t crc1 = crc32(UBI_CRC32_INIT, buf, len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400460 if (crc1 != crc) {
461 ubi_warn("CRC error: calculated %#08x, must be %#08x",
462 crc1, crc);
463 err = -EBADMSG;
464 goto out_unlock;
465 }
466 }
467
468 if (scrub)
469 err = ubi_wl_scrub_peb(ubi, pnum);
470
471 leb_read_unlock(ubi, vol_id, lnum);
472 return err;
473
474out_free:
475 ubi_free_vid_hdr(ubi, vid_hdr);
476out_unlock:
477 leb_read_unlock(ubi, vol_id, lnum);
478 return err;
479}
480
481/**
482 * recover_peb - recover from write failure.
483 * @ubi: UBI device description object
484 * @pnum: the physical eraseblock to recover
485 * @vol_id: volume ID
486 * @lnum: logical eraseblock number
487 * @buf: data which was not written because of the write failure
488 * @offset: offset of the failed write
489 * @len: how many bytes should have been written
490 *
491 * This function is called in case of a write failure and moves all good data
492 * from the potentially bad physical eraseblock to a good physical eraseblock.
493 * This function also writes the data which was not written due to the failure.
494 * Returns new physical eraseblock number in case of success, and a negative
495 * error code in case of failure.
496 */
497static int recover_peb(struct ubi_device *ubi, int pnum, int vol_id, int lnum,
498 const void *buf, int offset, int len)
499{
500 int err, idx = vol_id2idx(ubi, vol_id), new_pnum, data_size, tries = 0;
501 struct ubi_volume *vol = ubi->volumes[idx];
502 struct ubi_vid_hdr *vid_hdr;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400503
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300504 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_NOFS);
Artem Bityutskiy9c9ec142008-07-18 13:19:52 +0300505 if (!vid_hdr)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400506 return -ENOMEM;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400507
508retry:
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200509 new_pnum = ubi_wl_get_peb(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400510 if (new_pnum < 0) {
511 ubi_free_vid_hdr(ubi, vid_hdr);
512 return new_pnum;
513 }
514
515 ubi_msg("recover PEB %d, move data to PEB %d", pnum, new_pnum);
516
517 err = ubi_io_read_vid_hdr(ubi, pnum, vid_hdr, 1);
518 if (err && err != UBI_IO_BITFLIPS) {
519 if (err > 0)
520 err = -EIO;
521 goto out_put;
522 }
523
Richard Weinbergera7306652012-09-26 17:51:43 +0200524 vid_hdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400525 err = ubi_io_write_vid_hdr(ubi, new_pnum, vid_hdr);
526 if (err)
527 goto write_error;
528
529 data_size = offset + len;
Artem Bityutskiy4df581f2008-12-04 20:52:44 +0200530 mutex_lock(&ubi->buf_mutex);
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200531 memset(ubi->peb_buf + offset, 0xFF, len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400532
533 /* Read everything before the area where the write failure happened */
534 if (offset > 0) {
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200535 err = ubi_io_read_data(ubi, ubi->peb_buf, pnum, 0, offset);
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300536 if (err && err != UBI_IO_BITFLIPS)
Artem Bityutskiy4df581f2008-12-04 20:52:44 +0200537 goto out_unlock;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400538 }
539
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200540 memcpy(ubi->peb_buf + offset, buf, len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400541
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +0200542 err = ubi_io_write_data(ubi, ubi->peb_buf, new_pnum, 0, data_size);
Artem Bityutskiy4df581f2008-12-04 20:52:44 +0200543 if (err) {
544 mutex_unlock(&ubi->buf_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400545 goto write_error;
Artem Bityutskiy4df581f2008-12-04 20:52:44 +0200546 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400547
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300548 mutex_unlock(&ubi->buf_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400549 ubi_free_vid_hdr(ubi, vid_hdr);
550
551 vol->eba_tbl[lnum] = new_pnum;
Joel Reardond36e59e2012-05-18 15:40:24 +0200552 ubi_wl_put_peb(ubi, vol_id, lnum, pnum, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400553
554 ubi_msg("data was successfully recovered");
555 return 0;
556
Artem Bityutskiy4df581f2008-12-04 20:52:44 +0200557out_unlock:
Artem Bityutskiye88d6e102007-08-29 14:51:52 +0300558 mutex_unlock(&ubi->buf_mutex);
Artem Bityutskiy4df581f2008-12-04 20:52:44 +0200559out_put:
Joel Reardond36e59e2012-05-18 15:40:24 +0200560 ubi_wl_put_peb(ubi, vol_id, lnum, new_pnum, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400561 ubi_free_vid_hdr(ubi, vid_hdr);
562 return err;
563
564write_error:
565 /*
566 * Bad luck? This physical eraseblock is bad too? Crud. Let's try to
567 * get another one.
568 */
569 ubi_warn("failed to write to PEB %d", new_pnum);
Joel Reardond36e59e2012-05-18 15:40:24 +0200570 ubi_wl_put_peb(ubi, vol_id, lnum, new_pnum, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400571 if (++tries > UBI_IO_RETRIES) {
572 ubi_free_vid_hdr(ubi, vid_hdr);
573 return err;
574 }
575 ubi_msg("try again");
576 goto retry;
577}
578
579/**
580 * ubi_eba_write_leb - write data to dynamic volume.
581 * @ubi: UBI device description object
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200582 * @vol: volume description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400583 * @lnum: logical eraseblock number
584 * @buf: the data to write
585 * @offset: offset within the logical eraseblock where to write
586 * @len: how many bytes to write
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400587 *
588 * This function writes data to logical eraseblock @lnum of a dynamic volume
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200589 * @vol. Returns zero in case of success and a negative error code in case
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400590 * of failure. In case of error, it is possible that something was still
591 * written to the flash media, but may be some garbage.
592 */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200593int ubi_eba_write_leb(struct ubi_device *ubi, struct ubi_volume *vol, int lnum,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200594 const void *buf, int offset, int len)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400595{
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200596 int err, pnum, tries = 0, vol_id = vol->vol_id;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400597 struct ubi_vid_hdr *vid_hdr;
598
599 if (ubi->ro_mode)
600 return -EROFS;
601
602 err = leb_write_lock(ubi, vol_id, lnum);
603 if (err)
604 return err;
605
606 pnum = vol->eba_tbl[lnum];
607 if (pnum >= 0) {
608 dbg_eba("write %d bytes at offset %d of LEB %d:%d, PEB %d",
609 len, offset, vol_id, lnum, pnum);
610
611 err = ubi_io_write_data(ubi, buf, pnum, offset, len);
612 if (err) {
613 ubi_warn("failed to write data to PEB %d", pnum);
614 if (err == -EIO && ubi->bad_allowed)
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200615 err = recover_peb(ubi, pnum, vol_id, lnum, buf,
616 offset, len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400617 if (err)
618 ubi_ro_mode(ubi);
619 }
620 leb_write_unlock(ubi, vol_id, lnum);
621 return err;
622 }
623
624 /*
625 * The logical eraseblock is not mapped. We have to get a free physical
626 * eraseblock and write the volume identifier header there first.
627 */
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300628 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_NOFS);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400629 if (!vid_hdr) {
630 leb_write_unlock(ubi, vol_id, lnum);
631 return -ENOMEM;
632 }
633
634 vid_hdr->vol_type = UBI_VID_DYNAMIC;
Richard Weinbergera7306652012-09-26 17:51:43 +0200635 vid_hdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300636 vid_hdr->vol_id = cpu_to_be32(vol_id);
637 vid_hdr->lnum = cpu_to_be32(lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400638 vid_hdr->compat = ubi_get_compat(ubi, vol_id);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300639 vid_hdr->data_pad = cpu_to_be32(vol->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400640
641retry:
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200642 pnum = ubi_wl_get_peb(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400643 if (pnum < 0) {
644 ubi_free_vid_hdr(ubi, vid_hdr);
645 leb_write_unlock(ubi, vol_id, lnum);
646 return pnum;
647 }
648
649 dbg_eba("write VID hdr and %d bytes at offset %d of LEB %d:%d, PEB %d",
650 len, offset, vol_id, lnum, pnum);
651
652 err = ubi_io_write_vid_hdr(ubi, pnum, vid_hdr);
653 if (err) {
654 ubi_warn("failed to write VID header to LEB %d:%d, PEB %d",
655 vol_id, lnum, pnum);
656 goto write_error;
657 }
658
Artem Bityutskiy393852e2007-12-06 18:47:30 +0200659 if (len) {
660 err = ubi_io_write_data(ubi, buf, pnum, offset, len);
661 if (err) {
Artem Bityutskiy049333c2012-08-27 14:43:54 +0300662 ubi_warn("failed to write %d bytes at offset %d of LEB %d:%d, PEB %d",
663 len, offset, vol_id, lnum, pnum);
Artem Bityutskiy393852e2007-12-06 18:47:30 +0200664 goto write_error;
665 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400666 }
667
668 vol->eba_tbl[lnum] = pnum;
669
670 leb_write_unlock(ubi, vol_id, lnum);
671 ubi_free_vid_hdr(ubi, vid_hdr);
672 return 0;
673
674write_error:
675 if (err != -EIO || !ubi->bad_allowed) {
676 ubi_ro_mode(ubi);
677 leb_write_unlock(ubi, vol_id, lnum);
678 ubi_free_vid_hdr(ubi, vid_hdr);
679 return err;
680 }
681
682 /*
683 * Fortunately, this is the first write operation to this physical
684 * eraseblock, so just put it and request a new one. We assume that if
685 * this physical eraseblock went bad, the erase code will handle that.
686 */
Joel Reardond36e59e2012-05-18 15:40:24 +0200687 err = ubi_wl_put_peb(ubi, vol_id, lnum, pnum, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400688 if (err || ++tries > UBI_IO_RETRIES) {
689 ubi_ro_mode(ubi);
690 leb_write_unlock(ubi, vol_id, lnum);
691 ubi_free_vid_hdr(ubi, vid_hdr);
692 return err;
693 }
694
Richard Weinbergera7306652012-09-26 17:51:43 +0200695 vid_hdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400696 ubi_msg("try another PEB");
697 goto retry;
698}
699
700/**
701 * ubi_eba_write_leb_st - write data to static volume.
702 * @ubi: UBI device description object
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200703 * @vol: volume description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400704 * @lnum: logical eraseblock number
705 * @buf: data to write
706 * @len: how many bytes to write
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400707 * @used_ebs: how many logical eraseblocks will this volume contain
708 *
709 * This function writes data to logical eraseblock @lnum of static volume
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200710 * @vol. The @used_ebs argument should contain total number of logical
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400711 * eraseblock in this static volume.
712 *
713 * When writing to the last logical eraseblock, the @len argument doesn't have
714 * to be aligned to the minimal I/O unit size. Instead, it has to be equivalent
715 * to the real data size, although the @buf buffer has to contain the
716 * alignment. In all other cases, @len has to be aligned.
717 *
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200718 * It is prohibited to write more than once to logical eraseblocks of static
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400719 * volumes. This function returns zero in case of success and a negative error
720 * code in case of failure.
721 */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200722int ubi_eba_write_leb_st(struct ubi_device *ubi, struct ubi_volume *vol,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200723 int lnum, const void *buf, int len, int used_ebs)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400724{
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200725 int err, pnum, tries = 0, data_size = len, vol_id = vol->vol_id;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400726 struct ubi_vid_hdr *vid_hdr;
727 uint32_t crc;
728
729 if (ubi->ro_mode)
730 return -EROFS;
731
732 if (lnum == used_ebs - 1)
733 /* If this is the last LEB @len may be unaligned */
734 len = ALIGN(data_size, ubi->min_io_size);
735 else
Kyungmin Parkcadb40c2008-05-22 10:32:18 +0900736 ubi_assert(!(len & (ubi->min_io_size - 1)));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400737
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300738 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_NOFS);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400739 if (!vid_hdr)
740 return -ENOMEM;
741
742 err = leb_write_lock(ubi, vol_id, lnum);
743 if (err) {
744 ubi_free_vid_hdr(ubi, vid_hdr);
745 return err;
746 }
747
Richard Weinbergera7306652012-09-26 17:51:43 +0200748 vid_hdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300749 vid_hdr->vol_id = cpu_to_be32(vol_id);
750 vid_hdr->lnum = cpu_to_be32(lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400751 vid_hdr->compat = ubi_get_compat(ubi, vol_id);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300752 vid_hdr->data_pad = cpu_to_be32(vol->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400753
754 crc = crc32(UBI_CRC32_INIT, buf, data_size);
755 vid_hdr->vol_type = UBI_VID_STATIC;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300756 vid_hdr->data_size = cpu_to_be32(data_size);
757 vid_hdr->used_ebs = cpu_to_be32(used_ebs);
758 vid_hdr->data_crc = cpu_to_be32(crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400759
760retry:
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200761 pnum = ubi_wl_get_peb(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400762 if (pnum < 0) {
763 ubi_free_vid_hdr(ubi, vid_hdr);
764 leb_write_unlock(ubi, vol_id, lnum);
765 return pnum;
766 }
767
768 dbg_eba("write VID hdr and %d bytes at LEB %d:%d, PEB %d, used_ebs %d",
769 len, vol_id, lnum, pnum, used_ebs);
770
771 err = ubi_io_write_vid_hdr(ubi, pnum, vid_hdr);
772 if (err) {
773 ubi_warn("failed to write VID header to LEB %d:%d, PEB %d",
774 vol_id, lnum, pnum);
775 goto write_error;
776 }
777
778 err = ubi_io_write_data(ubi, buf, pnum, 0, len);
779 if (err) {
780 ubi_warn("failed to write %d bytes of data to PEB %d",
781 len, pnum);
782 goto write_error;
783 }
784
785 ubi_assert(vol->eba_tbl[lnum] < 0);
786 vol->eba_tbl[lnum] = pnum;
787
788 leb_write_unlock(ubi, vol_id, lnum);
789 ubi_free_vid_hdr(ubi, vid_hdr);
790 return 0;
791
792write_error:
793 if (err != -EIO || !ubi->bad_allowed) {
794 /*
795 * This flash device does not admit of bad eraseblocks or
796 * something nasty and unexpected happened. Switch to read-only
797 * mode just in case.
798 */
799 ubi_ro_mode(ubi);
800 leb_write_unlock(ubi, vol_id, lnum);
801 ubi_free_vid_hdr(ubi, vid_hdr);
802 return err;
803 }
804
Joel Reardond36e59e2012-05-18 15:40:24 +0200805 err = ubi_wl_put_peb(ubi, vol_id, lnum, pnum, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400806 if (err || ++tries > UBI_IO_RETRIES) {
807 ubi_ro_mode(ubi);
808 leb_write_unlock(ubi, vol_id, lnum);
809 ubi_free_vid_hdr(ubi, vid_hdr);
810 return err;
811 }
812
Richard Weinbergera7306652012-09-26 17:51:43 +0200813 vid_hdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400814 ubi_msg("try another PEB");
815 goto retry;
816}
817
818/*
819 * ubi_eba_atomic_leb_change - change logical eraseblock atomically.
820 * @ubi: UBI device description object
Artem Bityutskiyc63a4912007-12-17 13:21:07 +0200821 * @vol: volume description object
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400822 * @lnum: logical eraseblock number
823 * @buf: data to write
824 * @len: how many bytes to write
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400825 *
826 * This function changes the contents of a logical eraseblock atomically. @buf
827 * has to contain new logical eraseblock data, and @len - the length of the
828 * data, which has to be aligned. This function guarantees that in case of an
829 * unclean reboot the old contents is preserved. Returns zero in case of
830 * success and a negative error code in case of failure.
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300831 *
832 * UBI reserves one LEB for the "atomic LEB change" operation, so only one
833 * LEB change may be done at a time. This is ensured by @ubi->alc_mutex.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400834 */
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200835int ubi_eba_atomic_leb_change(struct ubi_device *ubi, struct ubi_volume *vol,
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200836 int lnum, const void *buf, int len)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400837{
Artem Bityutskiy89b96b62007-12-16 20:00:38 +0200838 int err, pnum, tries = 0, vol_id = vol->vol_id;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400839 struct ubi_vid_hdr *vid_hdr;
840 uint32_t crc;
841
842 if (ubi->ro_mode)
843 return -EROFS;
844
Artem Bityutskiy60c03152008-01-24 17:56:14 +0200845 if (len == 0) {
846 /*
847 * Special case when data length is zero. In this case the LEB
848 * has to be unmapped and mapped somewhere else.
849 */
850 err = ubi_eba_unmap_leb(ubi, vol, lnum);
851 if (err)
852 return err;
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200853 return ubi_eba_write_leb(ubi, vol, lnum, NULL, 0, 0);
Artem Bityutskiy60c03152008-01-24 17:56:14 +0200854 }
855
Artem Bityutskiy33818bb2007-08-28 21:29:32 +0300856 vid_hdr = ubi_zalloc_vid_hdr(ubi, GFP_NOFS);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400857 if (!vid_hdr)
858 return -ENOMEM;
859
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300860 mutex_lock(&ubi->alc_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400861 err = leb_write_lock(ubi, vol_id, lnum);
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300862 if (err)
863 goto out_mutex;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400864
Richard Weinbergera7306652012-09-26 17:51:43 +0200865 vid_hdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300866 vid_hdr->vol_id = cpu_to_be32(vol_id);
867 vid_hdr->lnum = cpu_to_be32(lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400868 vid_hdr->compat = ubi_get_compat(ubi, vol_id);
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300869 vid_hdr->data_pad = cpu_to_be32(vol->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400870
871 crc = crc32(UBI_CRC32_INIT, buf, len);
Artem Bityutskiy84a92582007-07-04 16:16:51 +0300872 vid_hdr->vol_type = UBI_VID_DYNAMIC;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300873 vid_hdr->data_size = cpu_to_be32(len);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400874 vid_hdr->copy_flag = 1;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300875 vid_hdr->data_crc = cpu_to_be32(crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400876
877retry:
Richard Weinbergerb36a2612012-05-14 17:55:51 +0200878 pnum = ubi_wl_get_peb(ubi);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400879 if (pnum < 0) {
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300880 err = pnum;
881 goto out_leb_unlock;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400882 }
883
884 dbg_eba("change LEB %d:%d, PEB %d, write VID hdr to PEB %d",
885 vol_id, lnum, vol->eba_tbl[lnum], pnum);
886
887 err = ubi_io_write_vid_hdr(ubi, pnum, vid_hdr);
888 if (err) {
889 ubi_warn("failed to write VID header to LEB %d:%d, PEB %d",
890 vol_id, lnum, pnum);
891 goto write_error;
892 }
893
894 err = ubi_io_write_data(ubi, buf, pnum, 0, len);
895 if (err) {
896 ubi_warn("failed to write %d bytes of data to PEB %d",
897 len, pnum);
898 goto write_error;
899 }
900
Artem Bityutskiya443db42007-05-21 20:26:05 +0300901 if (vol->eba_tbl[lnum] >= 0) {
Joel Reardond36e59e2012-05-18 15:40:24 +0200902 err = ubi_wl_put_peb(ubi, vol_id, lnum, vol->eba_tbl[lnum], 0);
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300903 if (err)
904 goto out_leb_unlock;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400905 }
906
907 vol->eba_tbl[lnum] = pnum;
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300908
909out_leb_unlock:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400910 leb_write_unlock(ubi, vol_id, lnum);
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300911out_mutex:
912 mutex_unlock(&ubi->alc_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400913 ubi_free_vid_hdr(ubi, vid_hdr);
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300914 return err;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400915
916write_error:
917 if (err != -EIO || !ubi->bad_allowed) {
918 /*
919 * This flash device does not admit of bad eraseblocks or
920 * something nasty and unexpected happened. Switch to read-only
921 * mode just in case.
922 */
923 ubi_ro_mode(ubi);
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300924 goto out_leb_unlock;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400925 }
926
Joel Reardond36e59e2012-05-18 15:40:24 +0200927 err = ubi_wl_put_peb(ubi, vol_id, lnum, pnum, 1);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400928 if (err || ++tries > UBI_IO_RETRIES) {
929 ubi_ro_mode(ubi);
Artem Bityutskiye8823bd2007-09-13 14:28:14 +0300930 goto out_leb_unlock;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400931 }
932
Richard Weinbergera7306652012-09-26 17:51:43 +0200933 vid_hdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400934 ubi_msg("try another PEB");
935 goto retry;
936}
937
938/**
Artem Bityutskiy6b5c94c2009-06-10 11:32:05 +0300939 * is_error_sane - check whether a read error is sane.
940 * @err: code of the error happened during reading
941 *
942 * This is a helper function for 'ubi_eba_copy_leb()' which is called when we
943 * cannot read data from the target PEB (an error @err happened). If the error
944 * code is sane, then we treat this error as non-fatal. Otherwise the error is
945 * fatal and UBI will be switched to R/O mode later.
946 *
947 * The idea is that we try not to switch to R/O mode if the read error is
948 * something which suggests there was a real read problem. E.g., %-EIO. Or a
949 * memory allocation failed (-%ENOMEM). Otherwise, it is safer to switch to R/O
950 * mode, simply because we do not know what happened at the MTD level, and we
951 * cannot handle this. E.g., the underlying driver may have become crazy, and
952 * it is safer to switch to R/O mode to preserve the data.
953 *
954 * And bear in mind, this is about reading from the target PEB, i.e. the PEB
955 * which we have just written.
956 */
957static int is_error_sane(int err)
958{
Artem Bityutskiy786d7832010-04-30 16:50:22 +0300959 if (err == -EIO || err == -ENOMEM || err == UBI_IO_BAD_HDR ||
Artem Bityutskiy756e1df2010-09-03 01:30:16 +0300960 err == UBI_IO_BAD_HDR_EBADMSG || err == -ETIMEDOUT)
Artem Bityutskiy6b5c94c2009-06-10 11:32:05 +0300961 return 0;
962 return 1;
963}
964
965/**
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400966 * ubi_eba_copy_leb - copy logical eraseblock.
967 * @ubi: UBI device description object
968 * @from: physical eraseblock number from where to copy
969 * @to: physical eraseblock number where to copy
970 * @vid_hdr: VID header of the @from physical eraseblock
971 *
972 * This function copies logical eraseblock from physical eraseblock @from to
973 * physical eraseblock @to. The @vid_hdr buffer may be changed by this
Artem Bityutskiy43f9b252007-12-18 15:06:55 +0200974 * function. Returns:
Artem Bityutskiy6fa6f5b2008-12-05 13:37:02 +0200975 * o %0 in case of success;
Artem Bityutskiycc831462012-03-09 10:31:18 +0200976 * o %MOVE_CANCEL_RACE, %MOVE_TARGET_WR_ERR, %MOVE_TARGET_BITFLIPS, etc;
Artem Bityutskiy6fa6f5b2008-12-05 13:37:02 +0200977 * o a negative error code in case of failure.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400978 */
979int ubi_eba_copy_leb(struct ubi_device *ubi, int from, int to,
980 struct ubi_vid_hdr *vid_hdr)
981{
Artem Bityutskiy43f9b252007-12-18 15:06:55 +0200982 int err, vol_id, lnum, data_size, aldata_size, idx;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400983 struct ubi_volume *vol;
984 uint32_t crc;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400985
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300986 vol_id = be32_to_cpu(vid_hdr->vol_id);
987 lnum = be32_to_cpu(vid_hdr->lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400988
Artem Bityutskiy87960c02009-05-24 11:58:58 +0300989 dbg_wl("copy LEB %d:%d, PEB %d to PEB %d", vol_id, lnum, from, to);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400990
991 if (vid_hdr->vol_type == UBI_VID_STATIC) {
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300992 data_size = be32_to_cpu(vid_hdr->data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400993 aldata_size = ALIGN(data_size, ubi->min_io_size);
994 } else
995 data_size = aldata_size =
Christoph Hellwig3261ebd2007-05-21 17:41:46 +0300996 ubi->leb_size - be32_to_cpu(vid_hdr->data_pad);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400997
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400998 idx = vol_id2idx(ubi, vol_id);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +0400999 spin_lock(&ubi->volumes_lock);
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001000 /*
1001 * Note, we may race with volume deletion, which means that the volume
1002 * this logical eraseblock belongs to might be being deleted. Since the
Artem Bityutskiy6fa6f5b2008-12-05 13:37:02 +02001003 * volume deletion un-maps all the volume's logical eraseblocks, it will
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001004 * be locked in 'ubi_wl_put_peb()' and wait for the WL worker to finish.
1005 */
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001006 vol = ubi->volumes[idx];
Artem Bityutskiy90bf0262009-05-23 16:04:17 +03001007 spin_unlock(&ubi->volumes_lock);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001008 if (!vol) {
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001009 /* No need to do further work, cancel */
Artem Bityutskiy87960c02009-05-24 11:58:58 +03001010 dbg_wl("volume %d is being removed, cancel", vol_id);
Artem Bityutskiy90bf0262009-05-23 16:04:17 +03001011 return MOVE_CANCEL_RACE;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001012 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001013
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001014 /*
1015 * We do not want anybody to write to this logical eraseblock while we
1016 * are moving it, so lock it.
1017 *
1018 * Note, we are using non-waiting locking here, because we cannot sleep
1019 * on the LEB, since it may cause deadlocks. Indeed, imagine a task is
1020 * unmapping the LEB which is mapped to the PEB we are going to move
1021 * (@from). This task locks the LEB and goes sleep in the
1022 * 'ubi_wl_put_peb()' function on the @ubi->move_mutex. In turn, we are
1023 * holding @ubi->move_mutex and go sleep on the LEB lock. So, if the
Artem Bityutskiy90bf0262009-05-23 16:04:17 +03001024 * LEB is already locked, we just do not move it and return
Bhavesh Parekhe801e122011-11-30 17:43:42 +05301025 * %MOVE_RETRY. Note, we do not return %MOVE_CANCEL_RACE here because
1026 * we do not know the reasons of the contention - it may be just a
1027 * normal I/O on this LEB, so we want to re-try.
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001028 */
1029 err = leb_write_trylock(ubi, vol_id, lnum);
1030 if (err) {
Artem Bityutskiy87960c02009-05-24 11:58:58 +03001031 dbg_wl("contention on LEB %d:%d, cancel", vol_id, lnum);
Bhavesh Parekhe801e122011-11-30 17:43:42 +05301032 return MOVE_RETRY;
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001033 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001034
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001035 /*
1036 * The LEB might have been put meanwhile, and the task which put it is
1037 * probably waiting on @ubi->move_mutex. No need to continue the work,
1038 * cancel it.
1039 */
1040 if (vol->eba_tbl[lnum] != from) {
Artem Bityutskiy049333c2012-08-27 14:43:54 +03001041 dbg_wl("LEB %d:%d is no longer mapped to PEB %d, mapped to PEB %d, cancel",
1042 vol_id, lnum, from, vol->eba_tbl[lnum]);
Artem Bityutskiy90bf0262009-05-23 16:04:17 +03001043 err = MOVE_CANCEL_RACE;
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001044 goto out_unlock_leb;
1045 }
1046
1047 /*
Zoltan Sogorb77bcb02008-10-29 09:50:02 +01001048 * OK, now the LEB is locked and we can safely start moving it. Since
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +02001049 * this function utilizes the @ubi->peb_buf buffer which is shared
Artem Bityutskiy90bf0262009-05-23 16:04:17 +03001050 * with some other functions - we lock the buffer by taking the
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001051 * @ubi->buf_mutex.
1052 */
1053 mutex_lock(&ubi->buf_mutex);
Artem Bityutskiy87960c02009-05-24 11:58:58 +03001054 dbg_wl("read %d bytes of data", aldata_size);
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +02001055 err = ubi_io_read_data(ubi, ubi->peb_buf, from, 0, aldata_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001056 if (err && err != UBI_IO_BITFLIPS) {
1057 ubi_warn("error %d while reading data from PEB %d",
1058 err, from);
Artem Bityutskiy6b5c94c2009-06-10 11:32:05 +03001059 err = MOVE_SOURCE_RD_ERR;
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001060 goto out_unlock_buf;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001061 }
1062
1063 /*
Anand Gadiyarfd589a82009-07-16 17:13:03 +02001064 * Now we have got to calculate how much data we have to copy. In
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001065 * case of a static volume it is fairly easy - the VID header contains
1066 * the data size. In case of a dynamic volume it is more difficult - we
1067 * have to read the contents, cut 0xFF bytes from the end and copy only
1068 * the first part. We must do this to avoid writing 0xFF bytes as it
1069 * may have some side-effects. And not only this. It is important not
1070 * to include those 0xFFs to CRC because later the they may be filled
1071 * by data.
1072 */
1073 if (vid_hdr->vol_type == UBI_VID_DYNAMIC)
1074 aldata_size = data_size =
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +02001075 ubi_calc_data_len(ubi, ubi->peb_buf, data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001076
1077 cond_resched();
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +02001078 crc = crc32(UBI_CRC32_INIT, ubi->peb_buf, data_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001079 cond_resched();
1080
1081 /*
Artem Bityutskiy90bf0262009-05-23 16:04:17 +03001082 * It may turn out to be that the whole @from physical eraseblock
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001083 * contains only 0xFF bytes. Then we have to only write the VID header
1084 * and do not write any data. This also means we should not set
1085 * @vid_hdr->copy_flag, @vid_hdr->data_size, and @vid_hdr->data_crc.
1086 */
1087 if (data_size > 0) {
1088 vid_hdr->copy_flag = 1;
Christoph Hellwig3261ebd2007-05-21 17:41:46 +03001089 vid_hdr->data_size = cpu_to_be32(data_size);
1090 vid_hdr->data_crc = cpu_to_be32(crc);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001091 }
Richard Weinbergera7306652012-09-26 17:51:43 +02001092 vid_hdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001093
1094 err = ubi_io_write_vid_hdr(ubi, to, vid_hdr);
Artem Bityutskiy6fa6f5b2008-12-05 13:37:02 +02001095 if (err) {
1096 if (err == -EIO)
Artem Bityutskiy90bf0262009-05-23 16:04:17 +03001097 err = MOVE_TARGET_WR_ERR;
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001098 goto out_unlock_buf;
Artem Bityutskiy6fa6f5b2008-12-05 13:37:02 +02001099 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001100
1101 cond_resched();
1102
1103 /* Read the VID header back and check if it was written correctly */
1104 err = ubi_io_read_vid_hdr(ubi, to, vid_hdr, 1);
1105 if (err) {
Artem Bityutskiyb86a2c52009-05-24 14:13:34 +03001106 if (err != UBI_IO_BITFLIPS) {
Artem Bityutskiy049333c2012-08-27 14:43:54 +03001107 ubi_warn("error %d while reading VID header back from PEB %d",
1108 err, to);
Artem Bityutskiy6b5c94c2009-06-10 11:32:05 +03001109 if (is_error_sane(err))
Artem Bityutskiyb86a2c52009-05-24 14:13:34 +03001110 err = MOVE_TARGET_RD_ERR;
1111 } else
Artem Bityutskiycc831462012-03-09 10:31:18 +02001112 err = MOVE_TARGET_BITFLIPS;
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001113 goto out_unlock_buf;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001114 }
1115
1116 if (data_size > 0) {
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +02001117 err = ubi_io_write_data(ubi, ubi->peb_buf, to, 0, aldata_size);
Artem Bityutskiy6fa6f5b2008-12-05 13:37:02 +02001118 if (err) {
1119 if (err == -EIO)
Artem Bityutskiy90bf0262009-05-23 16:04:17 +03001120 err = MOVE_TARGET_WR_ERR;
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001121 goto out_unlock_buf;
Artem Bityutskiy6fa6f5b2008-12-05 13:37:02 +02001122 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001123
Artem Bityutskiye88d6e102007-08-29 14:51:52 +03001124 cond_resched();
1125
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001126 /*
1127 * We've written the data and are going to read it back to make
1128 * sure it was written correctly.
1129 */
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +02001130 memset(ubi->peb_buf, 0xFF, aldata_size);
1131 err = ubi_io_read_data(ubi, ubi->peb_buf, to, 0, aldata_size);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001132 if (err) {
Artem Bityutskiyb86a2c52009-05-24 14:13:34 +03001133 if (err != UBI_IO_BITFLIPS) {
Artem Bityutskiy049333c2012-08-27 14:43:54 +03001134 ubi_warn("error %d while reading data back from PEB %d",
1135 err, to);
Artem Bityutskiy6b5c94c2009-06-10 11:32:05 +03001136 if (is_error_sane(err))
Artem Bityutskiyb86a2c52009-05-24 14:13:34 +03001137 err = MOVE_TARGET_RD_ERR;
1138 } else
Artem Bityutskiycc831462012-03-09 10:31:18 +02001139 err = MOVE_TARGET_BITFLIPS;
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001140 goto out_unlock_buf;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001141 }
1142
1143 cond_resched();
1144
Artem Bityutskiy0ca39d72012-03-08 15:29:37 +02001145 if (crc != crc32(UBI_CRC32_INIT, ubi->peb_buf, data_size)) {
Artem Bityutskiy049333c2012-08-27 14:43:54 +03001146 ubi_warn("read data back from PEB %d and it is different",
1147 to);
Artem Bityutskiy6fa6f5b2008-12-05 13:37:02 +02001148 err = -EINVAL;
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001149 goto out_unlock_buf;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001150 }
1151 }
1152
1153 ubi_assert(vol->eba_tbl[lnum] == from);
1154 vol->eba_tbl[lnum] = to;
1155
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001156out_unlock_buf:
Artem Bityutskiye88d6e102007-08-29 14:51:52 +03001157 mutex_unlock(&ubi->buf_mutex);
Artem Bityutskiy43f9b252007-12-18 15:06:55 +02001158out_unlock_leb:
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001159 leb_write_unlock(ubi, vol_id, lnum);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001160 return err;
1161}
1162
1163/**
Artem Bityutskiy64d4b4c2010-07-30 14:59:50 +03001164 * print_rsvd_warning - warn about not having enough reserved PEBs.
1165 * @ubi: UBI device description object
1166 *
Artem Bityutskiy41e0cd92012-05-17 21:05:33 +03001167 * This is a helper function for 'ubi_eba_init()' which is called when UBI
Artem Bityutskiy64d4b4c2010-07-30 14:59:50 +03001168 * cannot reserve enough PEBs for bad block handling. This function makes a
1169 * decision whether we have to print a warning or not. The algorithm is as
1170 * follows:
1171 * o if this is a new UBI image, then just print the warning
1172 * o if this is an UBI image which has already been used for some time, print
1173 * a warning only if we can reserve less than 10% of the expected amount of
1174 * the reserved PEB.
1175 *
1176 * The idea is that when UBI is used, PEBs become bad, and the reserved pool
1177 * of PEBs becomes smaller, which is normal and we do not want to scare users
1178 * with a warning every time they attach the MTD device. This was an issue
1179 * reported by real users.
1180 */
1181static void print_rsvd_warning(struct ubi_device *ubi,
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001182 struct ubi_attach_info *ai)
Artem Bityutskiy64d4b4c2010-07-30 14:59:50 +03001183{
1184 /*
1185 * The 1 << 18 (256KiB) number is picked randomly, just a reasonably
1186 * large number to distinguish between newly flashed and used images.
1187 */
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001188 if (ai->max_sqnum > (1 << 18)) {
Artem Bityutskiy64d4b4c2010-07-30 14:59:50 +03001189 int min = ubi->beb_rsvd_level / 10;
1190
1191 if (!min)
1192 min = 1;
1193 if (ubi->beb_rsvd_pebs > min)
1194 return;
1195 }
1196
Artem Bityutskiy049333c2012-08-27 14:43:54 +03001197 ubi_warn("cannot reserve enough PEBs for bad PEB handling, reserved %d, need %d",
1198 ubi->beb_rsvd_pebs, ubi->beb_rsvd_level);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +03001199 if (ubi->corr_peb_count)
1200 ubi_warn("%d PEBs are corrupted and not used",
Artem Bityutskiy049333c2012-08-27 14:43:54 +03001201 ubi->corr_peb_count);
Artem Bityutskiy64d4b4c2010-07-30 14:59:50 +03001202}
1203
1204/**
Artem Bityutskiy41e0cd92012-05-17 21:05:33 +03001205 * ubi_eba_init - initialize the EBA sub-system using attaching information.
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001206 * @ubi: UBI device description object
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001207 * @ai: attaching information
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001208 *
1209 * This function returns zero in case of success and a negative error code in
1210 * case of failure.
1211 */
Artem Bityutskiy41e0cd92012-05-17 21:05:33 +03001212int ubi_eba_init(struct ubi_device *ubi, struct ubi_attach_info *ai)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001213{
1214 int i, j, err, num_volumes;
Artem Bityutskiy517af482012-05-17 14:38:34 +03001215 struct ubi_ainf_volume *av;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001216 struct ubi_volume *vol;
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001217 struct ubi_ainf_peb *aeb;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001218 struct rb_node *rb;
1219
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +03001220 dbg_eba("initialize EBA sub-system");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001221
1222 spin_lock_init(&ubi->ltree_lock);
Artem Bityutskiye8823bd2007-09-13 14:28:14 +03001223 mutex_init(&ubi->alc_mutex);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001224 ubi->ltree = RB_ROOT;
1225
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001226 ubi->global_sqnum = ai->max_sqnum + 1;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001227 num_volumes = ubi->vtbl_slots + UBI_INT_VOL_COUNT;
1228
1229 for (i = 0; i < num_volumes; i++) {
1230 vol = ubi->volumes[i];
1231 if (!vol)
1232 continue;
1233
1234 cond_resched();
1235
1236 vol->eba_tbl = kmalloc(vol->reserved_pebs * sizeof(int),
1237 GFP_KERNEL);
1238 if (!vol->eba_tbl) {
1239 err = -ENOMEM;
1240 goto out_free;
1241 }
1242
1243 for (j = 0; j < vol->reserved_pebs; j++)
1244 vol->eba_tbl[j] = UBI_LEB_UNMAPPED;
1245
Artem Bityutskiydcd85fd2012-05-17 15:33:20 +03001246 av = ubi_find_av(ai, idx2vol_id(ubi, i));
Artem Bityutskiy517af482012-05-17 14:38:34 +03001247 if (!av)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001248 continue;
1249
Artem Bityutskiy517af482012-05-17 14:38:34 +03001250 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) {
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001251 if (aeb->lnum >= vol->reserved_pebs)
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001252 /*
1253 * This may happen in case of an unclean reboot
1254 * during re-size.
1255 */
Artem Bityutskiy0bae2882012-05-17 15:53:10 +03001256 ubi_move_aeb_to_list(av, aeb, &ai->erase);
Artem Bityutskiy2c5ec5c2012-05-17 08:26:24 +03001257 vol->eba_tbl[aeb->lnum] = aeb->pnum;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001258 }
1259 }
1260
Artem Bityutskiy94780d42007-12-04 21:36:12 +02001261 if (ubi->avail_pebs < EBA_RESERVED_PEBS) {
1262 ubi_err("no enough physical eraseblocks (%d, need %d)",
1263 ubi->avail_pebs, EBA_RESERVED_PEBS);
Artem Bityutskiy5fc01ab2010-09-03 23:08:15 +03001264 if (ubi->corr_peb_count)
1265 ubi_err("%d PEBs are corrupted and not used",
1266 ubi->corr_peb_count);
Artem Bityutskiy94780d42007-12-04 21:36:12 +02001267 err = -ENOSPC;
1268 goto out_free;
1269 }
1270 ubi->avail_pebs -= EBA_RESERVED_PEBS;
1271 ubi->rsvd_pebs += EBA_RESERVED_PEBS;
1272
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001273 if (ubi->bad_allowed) {
1274 ubi_calculate_reserved(ubi);
1275
1276 if (ubi->avail_pebs < ubi->beb_rsvd_level) {
1277 /* No enough free physical eraseblocks */
1278 ubi->beb_rsvd_pebs = ubi->avail_pebs;
Artem Bityutskiya4e60422012-05-17 13:09:08 +03001279 print_rsvd_warning(ubi, ai);
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001280 } else
1281 ubi->beb_rsvd_pebs = ubi->beb_rsvd_level;
1282
1283 ubi->avail_pebs -= ubi->beb_rsvd_pebs;
1284 ubi->rsvd_pebs += ubi->beb_rsvd_pebs;
1285 }
1286
Artem Bityutskiy85c6e6e2008-07-16 10:25:56 +03001287 dbg_eba("EBA sub-system is initialized");
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001288 return 0;
1289
1290out_free:
1291 for (i = 0; i < num_volumes; i++) {
1292 if (!ubi->volumes[i])
1293 continue;
1294 kfree(ubi->volumes[i]->eba_tbl);
Adrian Hunter7194e6f2009-07-24 17:05:00 +03001295 ubi->volumes[i]->eba_tbl = NULL;
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001296 }
Artem B. Bityutskiy801c1352006-06-27 12:22:22 +04001297 return err;
1298}