Add myself as UBI co-maintainer
[deliverable/linux.git] / drivers / mtd / ubi / kapi.c
CommitLineData
801c135c
AB
1/*
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/* This file mostly implements UBI kernel API functions */
22
23#include <linux/module.h>
24#include <linux/err.h>
5a0e3ad6 25#include <linux/slab.h>
b5710284
CC
26#include <linux/namei.h>
27#include <linux/fs.h>
801c135c
AB
28#include <asm/div64.h>
29#include "ubi.h"
30
0e0ee1cc
DP
31/**
32 * ubi_do_get_device_info - get information about UBI device.
33 * @ubi: UBI device description object
34 * @di: the information is stored here
35 *
36 * This function is the same as 'ubi_get_device_info()', but it assumes the UBI
37 * device is locked and cannot disappear.
38 */
39void ubi_do_get_device_info(struct ubi_device *ubi, struct ubi_device_info *di)
40{
41 di->ubi_num = ubi->ubi_num;
42 di->leb_size = ubi->leb_size;
f43ec882 43 di->leb_start = ubi->leb_start;
0e0ee1cc 44 di->min_io_size = ubi->min_io_size;
30b542ef 45 di->max_write_size = ubi->max_write_size;
0e0ee1cc
DP
46 di->ro_mode = ubi->ro_mode;
47 di->cdev = ubi->cdev.dev;
48}
49EXPORT_SYMBOL_GPL(ubi_do_get_device_info);
50
801c135c
AB
51/**
52 * ubi_get_device_info - get information about UBI device.
53 * @ubi_num: UBI device number
54 * @di: the information is stored here
55 *
e73f4459
AB
56 * This function returns %0 in case of success, %-EINVAL if the UBI device
57 * number is invalid, and %-ENODEV if there is no such UBI device.
801c135c
AB
58 */
59int ubi_get_device_info(int ubi_num, struct ubi_device_info *di)
60{
e73f4459
AB
61 struct ubi_device *ubi;
62
63 if (ubi_num < 0 || ubi_num >= UBI_MAX_DEVICES)
64 return -EINVAL;
e73f4459
AB
65 ubi = ubi_get_device(ubi_num);
66 if (!ubi)
801c135c 67 return -ENODEV;
0e0ee1cc 68 ubi_do_get_device_info(ubi, di);
e73f4459 69 ubi_put_device(ubi);
801c135c
AB
70 return 0;
71}
72EXPORT_SYMBOL_GPL(ubi_get_device_info);
73
74/**
0e0ee1cc
DP
75 * ubi_do_get_volume_info - get information about UBI volume.
76 * @ubi: UBI device description object
77 * @vol: volume description object
801c135c
AB
78 * @vi: the information is stored here
79 */
0e0ee1cc
DP
80void ubi_do_get_volume_info(struct ubi_device *ubi, struct ubi_volume *vol,
81 struct ubi_volume_info *vi)
801c135c 82{
801c135c
AB
83 vi->vol_id = vol->vol_id;
84 vi->ubi_num = ubi->ubi_num;
85 vi->size = vol->reserved_pebs;
86 vi->used_bytes = vol->used_bytes;
87 vi->vol_type = vol->vol_type;
88 vi->corrupted = vol->corrupted;
89 vi->upd_marker = vol->upd_marker;
90 vi->alignment = vol->alignment;
91 vi->usable_leb_size = vol->usable_leb_size;
92 vi->name_len = vol->name_len;
93 vi->name = vol->name;
49dfc299 94 vi->cdev = vol->cdev.dev;
801c135c 95}
0e0ee1cc
DP
96
97/**
98 * ubi_get_volume_info - get information about UBI volume.
99 * @desc: volume descriptor
100 * @vi: the information is stored here
101 */
102void ubi_get_volume_info(struct ubi_volume_desc *desc,
103 struct ubi_volume_info *vi)
104{
105 ubi_do_get_volume_info(desc->vol->ubi, desc->vol, vi);
106}
801c135c
AB
107EXPORT_SYMBOL_GPL(ubi_get_volume_info);
108
109/**
110 * ubi_open_volume - open UBI volume.
111 * @ubi_num: UBI device number
112 * @vol_id: volume ID
113 * @mode: open mode
114 *
115 * The @mode parameter specifies if the volume should be opened in read-only
116 * mode, read-write mode, or exclusive mode. The exclusive mode guarantees that
117 * nobody else will be able to open this volume. UBI allows to have many volume
118 * readers and one writer at a time.
119 *
120 * If a static volume is being opened for the first time since boot, it will be
121 * checked by this function, which means it will be fully read and the CRC
122 * checksum of each logical eraseblock will be checked.
123 *
124 * This function returns volume descriptor in case of success and a negative
125 * error code in case of failure.
126 */
127struct ubi_volume_desc *ubi_open_volume(int ubi_num, int vol_id, int mode)
128{
129 int err;
130 struct ubi_volume_desc *desc;
0169b49d 131 struct ubi_device *ubi;
801c135c
AB
132 struct ubi_volume *vol;
133
e1cf7e6d 134 dbg_gen("open device %d, volume %d, mode %d", ubi_num, vol_id, mode);
801c135c 135
35ad5fb7
AB
136 if (ubi_num < 0 || ubi_num >= UBI_MAX_DEVICES)
137 return ERR_PTR(-EINVAL);
0169b49d 138
35ad5fb7
AB
139 if (mode != UBI_READONLY && mode != UBI_READWRITE &&
140 mode != UBI_EXCLUSIVE)
141 return ERR_PTR(-EINVAL);
801c135c 142
e73f4459
AB
143 /*
144 * First of all, we have to get the UBI device to prevent its removal.
145 */
146 ubi = ubi_get_device(ubi_num);
35ad5fb7
AB
147 if (!ubi)
148 return ERR_PTR(-ENODEV);
801c135c 149
e73f4459
AB
150 if (vol_id < 0 || vol_id >= ubi->vtbl_slots) {
151 err = -EINVAL;
152 goto out_put_ubi;
153 }
801c135c
AB
154
155 desc = kmalloc(sizeof(struct ubi_volume_desc), GFP_KERNEL);
e73f4459
AB
156 if (!desc) {
157 err = -ENOMEM;
158 goto out_put_ubi;
159 }
35ad5fb7
AB
160
161 err = -ENODEV;
162 if (!try_module_get(THIS_MODULE))
163 goto out_free;
801c135c
AB
164
165 spin_lock(&ubi->volumes_lock);
166 vol = ubi->volumes[vol_id];
35ad5fb7 167 if (!vol)
801c135c 168 goto out_unlock;
801c135c
AB
169
170 err = -EBUSY;
171 switch (mode) {
172 case UBI_READONLY:
173 if (vol->exclusive)
174 goto out_unlock;
175 vol->readers += 1;
176 break;
177
178 case UBI_READWRITE:
179 if (vol->exclusive || vol->writers > 0)
180 goto out_unlock;
181 vol->writers += 1;
182 break;
183
184 case UBI_EXCLUSIVE:
185 if (vol->exclusive || vol->writers || vol->readers)
186 goto out_unlock;
187 vol->exclusive = 1;
188 break;
189 }
450f872a 190 get_device(&vol->dev);
d05c77a8 191 vol->ref_count += 1;
801c135c
AB
192 spin_unlock(&ubi->volumes_lock);
193
194 desc->vol = vol;
195 desc->mode = mode;
196
783b273a 197 mutex_lock(&ubi->ckvol_mutex);
801c135c
AB
198 if (!vol->checked) {
199 /* This is the first open - check the volume */
200 err = ubi_check_volume(ubi, vol_id);
201 if (err < 0) {
783b273a 202 mutex_unlock(&ubi->ckvol_mutex);
801c135c
AB
203 ubi_close_volume(desc);
204 return ERR_PTR(err);
205 }
206 if (err == 1) {
32608703 207 ubi_warn(ubi, "volume %d on UBI device %d is corrupted",
801c135c
AB
208 vol_id, ubi->ubi_num);
209 vol->corrupted = 1;
210 }
211 vol->checked = 1;
212 }
783b273a 213 mutex_unlock(&ubi->ckvol_mutex);
35ad5fb7 214
801c135c
AB
215 return desc;
216
217out_unlock:
218 spin_unlock(&ubi->volumes_lock);
801c135c 219 module_put(THIS_MODULE);
35ad5fb7
AB
220out_free:
221 kfree(desc);
e73f4459
AB
222out_put_ubi:
223 ubi_put_device(ubi);
32608703 224 ubi_err(ubi, "cannot open device %d, volume %d, error %d",
e1cf7e6d 225 ubi_num, vol_id, err);
801c135c
AB
226 return ERR_PTR(err);
227}
228EXPORT_SYMBOL_GPL(ubi_open_volume);
229
230/**
231 * ubi_open_volume_nm - open UBI volume by name.
232 * @ubi_num: UBI device number
233 * @name: volume name
234 * @mode: open mode
235 *
236 * This function is similar to 'ubi_open_volume()', but opens a volume by name.
237 */
238struct ubi_volume_desc *ubi_open_volume_nm(int ubi_num, const char *name,
239 int mode)
240{
241 int i, vol_id = -1, len;
801c135c 242 struct ubi_device *ubi;
e73f4459 243 struct ubi_volume_desc *ret;
801c135c 244
e1cf7e6d 245 dbg_gen("open device %d, volume %s, mode %d", ubi_num, name, mode);
801c135c
AB
246
247 if (!name)
248 return ERR_PTR(-EINVAL);
249
250 len = strnlen(name, UBI_VOL_NAME_MAX + 1);
251 if (len > UBI_VOL_NAME_MAX)
252 return ERR_PTR(-EINVAL);
253
35ad5fb7
AB
254 if (ubi_num < 0 || ubi_num >= UBI_MAX_DEVICES)
255 return ERR_PTR(-EINVAL);
801c135c 256
e73f4459 257 ubi = ubi_get_device(ubi_num);
35ad5fb7
AB
258 if (!ubi)
259 return ERR_PTR(-ENODEV);
801c135c
AB
260
261 spin_lock(&ubi->volumes_lock);
262 /* Walk all volumes of this UBI device */
263 for (i = 0; i < ubi->vtbl_slots; i++) {
264 struct ubi_volume *vol = ubi->volumes[i];
265
266 if (vol && len == vol->name_len && !strcmp(name, vol->name)) {
267 vol_id = i;
268 break;
269 }
270 }
271 spin_unlock(&ubi->volumes_lock);
272
e73f4459
AB
273 if (vol_id >= 0)
274 ret = ubi_open_volume(ubi_num, vol_id, mode);
275 else
276 ret = ERR_PTR(-ENODEV);
801c135c 277
e73f4459
AB
278 /*
279 * We should put the UBI device even in case of success, because
280 * 'ubi_open_volume()' took a reference as well.
281 */
282 ubi_put_device(ubi);
283 return ret;
801c135c
AB
284}
285EXPORT_SYMBOL_GPL(ubi_open_volume_nm);
286
b5710284
CC
287/**
288 * ubi_open_volume_path - open UBI volume by its character device node path.
289 * @pathname: volume character device node path
290 * @mode: open mode
291 *
292 * This function is similar to 'ubi_open_volume()', but opens a volume the path
293 * to its character device node.
294 */
295struct ubi_volume_desc *ubi_open_volume_path(const char *pathname, int mode)
296{
b531b55a 297 int error, ubi_num, vol_id, mod;
b5710284
CC
298 struct inode *inode;
299 struct path path;
300
301 dbg_gen("open volume %s, mode %d", pathname, mode);
302
303 if (!pathname || !*pathname)
304 return ERR_PTR(-EINVAL);
305
306 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
307 if (error)
308 return ERR_PTR(error);
309
310 inode = path.dentry->d_inode;
b531b55a 311 mod = inode->i_mode;
b5710284
CC
312 ubi_num = ubi_major2num(imajor(inode));
313 vol_id = iminor(inode) - 1;
b531b55a 314 path_put(&path);
b5710284 315
b531b55a
AB
316 if (!S_ISCHR(mod))
317 return ERR_PTR(-EINVAL);
b5710284 318 if (vol_id >= 0 && ubi_num >= 0)
b531b55a
AB
319 return ubi_open_volume(ubi_num, vol_id, mode);
320 return ERR_PTR(-ENODEV);
b5710284
CC
321}
322EXPORT_SYMBOL_GPL(ubi_open_volume_path);
323
801c135c
AB
324/**
325 * ubi_close_volume - close UBI volume.
326 * @desc: volume descriptor
327 */
328void ubi_close_volume(struct ubi_volume_desc *desc)
329{
330 struct ubi_volume *vol = desc->vol;
e73f4459 331 struct ubi_device *ubi = vol->ubi;
801c135c 332
e1cf7e6d
AB
333 dbg_gen("close device %d, volume %d, mode %d",
334 ubi->ubi_num, vol->vol_id, desc->mode);
801c135c 335
e73f4459 336 spin_lock(&ubi->volumes_lock);
801c135c
AB
337 switch (desc->mode) {
338 case UBI_READONLY:
339 vol->readers -= 1;
340 break;
341 case UBI_READWRITE:
342 vol->writers -= 1;
343 break;
344 case UBI_EXCLUSIVE:
345 vol->exclusive = 0;
346 }
d05c77a8 347 vol->ref_count -= 1;
e73f4459 348 spin_unlock(&ubi->volumes_lock);
801c135c 349
d05c77a8 350 kfree(desc);
e73f4459
AB
351 put_device(&vol->dev);
352 ubi_put_device(ubi);
801c135c
AB
353 module_put(THIS_MODULE);
354}
355EXPORT_SYMBOL_GPL(ubi_close_volume);
356
357/**
358 * ubi_leb_read - read data.
359 * @desc: volume descriptor
360 * @lnum: logical eraseblock number to read from
361 * @buf: buffer where to store the read data
362 * @offset: offset within the logical eraseblock to read from
363 * @len: how many bytes to read
364 * @check: whether UBI has to check the read data's CRC or not.
365 *
366 * This function reads data from offset @offset of logical eraseblock @lnum and
367 * stores the data at @buf. When reading from static volumes, @check specifies
368 * whether the data has to be checked or not. If yes, the whole logical
369 * eraseblock will be read and its CRC checksum will be checked (i.e., the CRC
370 * checksum is per-eraseblock). So checking may substantially slow down the
371 * read speed. The @check argument is ignored for dynamic volumes.
372 *
373 * In case of success, this function returns zero. In case of failure, this
374 * function returns a negative error code.
375 *
376 * %-EBADMSG error code is returned:
377 * o for both static and dynamic volumes if MTD driver has detected a data
378 * integrity problem (unrecoverable ECC checksum mismatch in case of NAND);
379 * o for static volumes in case of data CRC mismatch.
380 *
381 * If the volume is damaged because of an interrupted update this function just
382 * returns immediately with %-EBADF error code.
383 */
384int ubi_leb_read(struct ubi_volume_desc *desc, int lnum, char *buf, int offset,
385 int len, int check)
386{
387 struct ubi_volume *vol = desc->vol;
388 struct ubi_device *ubi = vol->ubi;
389 int err, vol_id = vol->vol_id;
390
c8566350 391 dbg_gen("read %d bytes from LEB %d:%d:%d", len, vol_id, lnum, offset);
801c135c
AB
392
393 if (vol_id < 0 || vol_id >= ubi->vtbl_slots || lnum < 0 ||
394 lnum >= vol->used_ebs || offset < 0 || len < 0 ||
395 offset + len > vol->usable_leb_size)
396 return -EINVAL;
397
4ab60a0d
AB
398 if (vol->vol_type == UBI_STATIC_VOLUME) {
399 if (vol->used_ebs == 0)
400 /* Empty static UBI volume */
401 return 0;
402 if (lnum == vol->used_ebs - 1 &&
403 offset + len > vol->last_eb_bytes)
404 return -EINVAL;
405 }
801c135c
AB
406
407 if (vol->upd_marker)
408 return -EBADF;
409 if (len == 0)
410 return 0;
411
89b96b69 412 err = ubi_eba_read_leb(ubi, vol, lnum, buf, offset, len, check);
d57f4054 413 if (err && mtd_is_eccerr(err) && vol->vol_type == UBI_STATIC_VOLUME) {
32608703 414 ubi_warn(ubi, "mark volume %d as corrupted", vol_id);
801c135c
AB
415 vol->corrupted = 1;
416 }
417
418 return err;
419}
420EXPORT_SYMBOL_GPL(ubi_leb_read);
421
422/**
423 * ubi_leb_write - write data.
424 * @desc: volume descriptor
425 * @lnum: logical eraseblock number to write to
426 * @buf: data to write
427 * @offset: offset within the logical eraseblock where to write
428 * @len: how many bytes to write
801c135c
AB
429 *
430 * This function writes @len bytes of data from @buf to offset @offset of
b36a261e 431 * logical eraseblock @lnum.
801c135c
AB
432 *
433 * This function takes care of physical eraseblock write failures. If write to
434 * the physical eraseblock write operation fails, the logical eraseblock is
435 * re-mapped to another physical eraseblock, the data is recovered, and the
436 * write finishes. UBI has a pool of reserved physical eraseblocks for this.
437 *
438 * If all the data were successfully written, zero is returned. If an error
439 * occurred and UBI has not been able to recover from it, this function returns
440 * a negative error code. Note, in case of an error, it is possible that
441 * something was still written to the flash media, but that may be some
442 * garbage.
443 *
444 * If the volume is damaged because of an interrupted update this function just
445 * returns immediately with %-EBADF code.
446 */
447int ubi_leb_write(struct ubi_volume_desc *desc, int lnum, const void *buf,
b36a261e 448 int offset, int len)
801c135c
AB
449{
450 struct ubi_volume *vol = desc->vol;
451 struct ubi_device *ubi = vol->ubi;
452 int vol_id = vol->vol_id;
453
c8566350 454 dbg_gen("write %d bytes to LEB %d:%d:%d", len, vol_id, lnum, offset);
801c135c
AB
455
456 if (vol_id < 0 || vol_id >= ubi->vtbl_slots)
457 return -EINVAL;
458
459 if (desc->mode == UBI_READONLY || vol->vol_type == UBI_STATIC_VOLUME)
460 return -EROFS;
461
462 if (lnum < 0 || lnum >= vol->reserved_pebs || offset < 0 || len < 0 ||
cadb40cc
KP
463 offset + len > vol->usable_leb_size ||
464 offset & (ubi->min_io_size - 1) || len & (ubi->min_io_size - 1))
801c135c
AB
465 return -EINVAL;
466
801c135c
AB
467 if (vol->upd_marker)
468 return -EBADF;
469
470 if (len == 0)
471 return 0;
472
b36a261e 473 return ubi_eba_write_leb(ubi, vol, lnum, buf, offset, len);
801c135c
AB
474}
475EXPORT_SYMBOL_GPL(ubi_leb_write);
476
477/*
478 * ubi_leb_change - change logical eraseblock atomically.
479 * @desc: volume descriptor
480 * @lnum: logical eraseblock number to change
481 * @buf: data to write
482 * @len: how many bytes to write
801c135c
AB
483 *
484 * This function changes the contents of a logical eraseblock atomically. @buf
485 * has to contain new logical eraseblock data, and @len - the length of the
3f502622 486 * data, which has to be aligned. The length may be shorter than the logical
801c135c
AB
487 * eraseblock size, ant the logical eraseblock may be appended to more times
488 * later on. This function guarantees that in case of an unclean reboot the old
489 * contents is preserved. Returns zero in case of success and a negative error
490 * code in case of failure.
491 */
492int ubi_leb_change(struct ubi_volume_desc *desc, int lnum, const void *buf,
b36a261e 493 int len)
801c135c
AB
494{
495 struct ubi_volume *vol = desc->vol;
496 struct ubi_device *ubi = vol->ubi;
497 int vol_id = vol->vol_id;
498
c8566350 499 dbg_gen("atomically write %d bytes to LEB %d:%d", len, vol_id, lnum);
801c135c
AB
500
501 if (vol_id < 0 || vol_id >= ubi->vtbl_slots)
502 return -EINVAL;
503
504 if (desc->mode == UBI_READONLY || vol->vol_type == UBI_STATIC_VOLUME)
505 return -EROFS;
506
507 if (lnum < 0 || lnum >= vol->reserved_pebs || len < 0 ||
cadb40cc 508 len > vol->usable_leb_size || len & (ubi->min_io_size - 1))
801c135c
AB
509 return -EINVAL;
510
801c135c
AB
511 if (vol->upd_marker)
512 return -EBADF;
513
514 if (len == 0)
515 return 0;
516
b36a261e 517 return ubi_eba_atomic_leb_change(ubi, vol, lnum, buf, len);
801c135c
AB
518}
519EXPORT_SYMBOL_GPL(ubi_leb_change);
520
521/**
522 * ubi_leb_erase - erase logical eraseblock.
523 * @desc: volume descriptor
524 * @lnum: logical eraseblock number
525 *
526 * This function un-maps logical eraseblock @lnum and synchronously erases the
527 * correspondent physical eraseblock. Returns zero in case of success and a
528 * negative error code in case of failure.
529 *
530 * If the volume is damaged because of an interrupted update this function just
531 * returns immediately with %-EBADF code.
532 */
533int ubi_leb_erase(struct ubi_volume_desc *desc, int lnum)
534{
535 struct ubi_volume *vol = desc->vol;
536 struct ubi_device *ubi = vol->ubi;
ae616e1b 537 int err;
801c135c 538
c8566350 539 dbg_gen("erase LEB %d:%d", vol->vol_id, lnum);
801c135c
AB
540
541 if (desc->mode == UBI_READONLY || vol->vol_type == UBI_STATIC_VOLUME)
542 return -EROFS;
543
544 if (lnum < 0 || lnum >= vol->reserved_pebs)
545 return -EINVAL;
546
547 if (vol->upd_marker)
548 return -EBADF;
549
89b96b69 550 err = ubi_eba_unmap_leb(ubi, vol, lnum);
801c135c
AB
551 if (err)
552 return err;
553
62f38455 554 return ubi_wl_flush(ubi, vol->vol_id, lnum);
801c135c
AB
555}
556EXPORT_SYMBOL_GPL(ubi_leb_erase);
557
558/**
559 * ubi_leb_unmap - un-map logical eraseblock.
560 * @desc: volume descriptor
561 * @lnum: logical eraseblock number
562 *
563 * This function un-maps logical eraseblock @lnum and schedules the
564 * corresponding physical eraseblock for erasure, so that it will eventually be
3f502622 565 * physically erased in background. This operation is much faster than the
801c135c
AB
566 * erase operation.
567 *
568 * Unlike erase, the un-map operation does not guarantee that the logical
569 * eraseblock will contain all 0xFF bytes when UBI is initialized again. For
570 * example, if several logical eraseblocks are un-mapped, and an unclean reboot
571 * happens after this, the logical eraseblocks will not necessarily be
572 * un-mapped again when this MTD device is attached. They may actually be
573 * mapped to the same physical eraseblocks again. So, this function has to be
574 * used with care.
575 *
576 * In other words, when un-mapping a logical eraseblock, UBI does not store
577 * any information about this on the flash media, it just marks the logical
578 * eraseblock as "un-mapped" in RAM. If UBI is detached before the physical
579 * eraseblock is physically erased, it will be mapped again to the same logical
580 * eraseblock when the MTD device is attached again.
581 *
582 * The main and obvious use-case of this function is when the contents of a
583 * logical eraseblock has to be re-written. Then it is much more efficient to
3f502622 584 * first un-map it, then write new data, rather than first erase it, then write
801c135c
AB
585 * new data. Note, once new data has been written to the logical eraseblock,
586 * UBI guarantees that the old contents has gone forever. In other words, if an
587 * unclean reboot happens after the logical eraseblock has been un-mapped and
588 * then written to, it will contain the last written data.
589 *
590 * This function returns zero in case of success and a negative error code in
591 * case of failure. If the volume is damaged because of an interrupted update
592 * this function just returns immediately with %-EBADF code.
593 */
594int ubi_leb_unmap(struct ubi_volume_desc *desc, int lnum)
595{
596 struct ubi_volume *vol = desc->vol;
597 struct ubi_device *ubi = vol->ubi;
801c135c 598
c8566350 599 dbg_gen("unmap LEB %d:%d", vol->vol_id, lnum);
801c135c
AB
600
601 if (desc->mode == UBI_READONLY || vol->vol_type == UBI_STATIC_VOLUME)
602 return -EROFS;
603
604 if (lnum < 0 || lnum >= vol->reserved_pebs)
605 return -EINVAL;
606
607 if (vol->upd_marker)
608 return -EBADF;
609
89b96b69 610 return ubi_eba_unmap_leb(ubi, vol, lnum);
801c135c
AB
611}
612EXPORT_SYMBOL_GPL(ubi_leb_unmap);
393852ec
AB
613
614/**
0e0ee1cc 615 * ubi_leb_map - map logical eraseblock to a physical eraseblock.
393852ec
AB
616 * @desc: volume descriptor
617 * @lnum: logical eraseblock number
393852ec
AB
618 *
619 * This function maps an un-mapped logical eraseblock @lnum to a physical
73ac36ea 620 * eraseblock. This means, that after a successful invocation of this
393852ec
AB
621 * function the logical eraseblock @lnum will be empty (contain only %0xFF
622 * bytes) and be mapped to a physical eraseblock, even if an unclean reboot
623 * happens.
624 *
625 * This function returns zero in case of success, %-EBADF if the volume is
626 * damaged because of an interrupted update, %-EBADMSG if the logical
627 * eraseblock is already mapped, and other negative error codes in case of
628 * other failures.
629 */
b36a261e 630int ubi_leb_map(struct ubi_volume_desc *desc, int lnum)
393852ec
AB
631{
632 struct ubi_volume *vol = desc->vol;
633 struct ubi_device *ubi = vol->ubi;
393852ec 634
c8566350 635 dbg_gen("unmap LEB %d:%d", vol->vol_id, lnum);
393852ec
AB
636
637 if (desc->mode == UBI_READONLY || vol->vol_type == UBI_STATIC_VOLUME)
638 return -EROFS;
639
640 if (lnum < 0 || lnum >= vol->reserved_pebs)
641 return -EINVAL;
642
393852ec
AB
643 if (vol->upd_marker)
644 return -EBADF;
645
646 if (vol->eba_tbl[lnum] >= 0)
647 return -EBADMSG;
648
b36a261e 649 return ubi_eba_write_leb(ubi, vol, lnum, NULL, 0, 0);
393852ec
AB
650}
651EXPORT_SYMBOL_GPL(ubi_leb_map);
801c135c
AB
652
653/**
654 * ubi_is_mapped - check if logical eraseblock is mapped.
655 * @desc: volume descriptor
656 * @lnum: logical eraseblock number
657 *
658 * This function checks if logical eraseblock @lnum is mapped to a physical
659 * eraseblock. If a logical eraseblock is un-mapped, this does not necessarily
660 * mean it will still be un-mapped after the UBI device is re-attached. The
661 * logical eraseblock may become mapped to the physical eraseblock it was last
662 * mapped to.
663 *
664 * This function returns %1 if the LEB is mapped, %0 if not, and a negative
665 * error code in case of failure. If the volume is damaged because of an
666 * interrupted update this function just returns immediately with %-EBADF error
667 * code.
668 */
669int ubi_is_mapped(struct ubi_volume_desc *desc, int lnum)
670{
671 struct ubi_volume *vol = desc->vol;
672
c8566350 673 dbg_gen("test LEB %d:%d", vol->vol_id, lnum);
801c135c
AB
674
675 if (lnum < 0 || lnum >= vol->reserved_pebs)
676 return -EINVAL;
677
678 if (vol->upd_marker)
679 return -EBADF;
680
681 return vol->eba_tbl[lnum] >= 0;
682}
683EXPORT_SYMBOL_GPL(ubi_is_mapped);
a5bf6190
AB
684
685/**
686 * ubi_sync - synchronize UBI device buffers.
687 * @ubi_num: UBI device to synchronize
688 *
689 * The underlying MTD device may cache data in hardware or in software. This
690 * function ensures the caches are flushed. Returns zero in case of success and
691 * a negative error code in case of failure.
692 */
693int ubi_sync(int ubi_num)
694{
695 struct ubi_device *ubi;
696
697 ubi = ubi_get_device(ubi_num);
698 if (!ubi)
699 return -ENODEV;
700
327cf292 701 mtd_sync(ubi->mtd);
a5bf6190
AB
702 ubi_put_device(ubi);
703 return 0;
704}
705EXPORT_SYMBOL_GPL(ubi_sync);
0e0ee1cc 706
62f38455
JR
707/**
708 * ubi_flush - flush UBI work queue.
709 * @ubi_num: UBI device to flush work queue
710 * @vol_id: volume id to flush for
711 * @lnum: logical eraseblock number to flush for
712 *
713 * This function executes all pending works for a particular volume id / logical
714 * eraseblock number pair. If either value is set to %UBI_ALL, then it acts as
715 * a wildcard for all of the corresponding volume numbers or logical
716 * eraseblock numbers. It returns zero in case of success and a negative error
717 * code in case of failure.
718 */
719int ubi_flush(int ubi_num, int vol_id, int lnum)
720{
721 struct ubi_device *ubi;
722 int err = 0;
723
724 ubi = ubi_get_device(ubi_num);
725 if (!ubi)
726 return -ENODEV;
727
728 err = ubi_wl_flush(ubi, vol_id, lnum);
729 ubi_put_device(ubi);
730 return err;
731}
732EXPORT_SYMBOL_GPL(ubi_flush);
733
0e0ee1cc
DP
734BLOCKING_NOTIFIER_HEAD(ubi_notifiers);
735
736/**
737 * ubi_register_volume_notifier - register a volume notifier.
738 * @nb: the notifier description object
739 * @ignore_existing: if non-zero, do not send "added" notification for all
740 * already existing volumes
741 *
742 * This function registers a volume notifier, which means that
743 * 'nb->notifier_call()' will be invoked when an UBI volume is created,
744 * removed, re-sized, re-named, or updated. The first argument of the function
745 * is the notification type. The second argument is pointer to a
746 * &struct ubi_notification object which describes the notification event.
747 * Using UBI API from the volume notifier is prohibited.
748 *
749 * This function returns zero in case of success and a negative error code
750 * in case of failure.
751 */
752int ubi_register_volume_notifier(struct notifier_block *nb,
753 int ignore_existing)
754{
755 int err;
756
757 err = blocking_notifier_chain_register(&ubi_notifiers, nb);
758 if (err != 0)
759 return err;
760 if (ignore_existing)
761 return 0;
762
763 /*
764 * We are going to walk all UBI devices and all volumes, and
765 * notify the user about existing volumes by the %UBI_VOLUME_ADDED
766 * event. We have to lock the @ubi_devices_mutex to make sure UBI
767 * devices do not disappear.
768 */
769 mutex_lock(&ubi_devices_mutex);
770 ubi_enumerate_volumes(nb);
771 mutex_unlock(&ubi_devices_mutex);
772
773 return err;
774}
775EXPORT_SYMBOL_GPL(ubi_register_volume_notifier);
776
777/**
778 * ubi_unregister_volume_notifier - unregister the volume notifier.
779 * @nb: the notifier description object
780 *
781 * This function unregisters volume notifier @nm and returns zero in case of
782 * success and a negative error code in case of failure.
783 */
784int ubi_unregister_volume_notifier(struct notifier_block *nb)
785{
786 return blocking_notifier_chain_unregister(&ubi_notifiers, nb);
787}
788EXPORT_SYMBOL_GPL(ubi_unregister_volume_notifier);
This page took 0.594217 seconds and 5 git commands to generate.