kapi.c

来自「linux 内核源代码」· C语言 代码 · 共 580 行 · 第 1/2 页

C
580
字号
/* * Copyright (c) International Business Machines Corp., 2006 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See * the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Artem Bityutskiy (Битюцкий Артём) *//* This file mostly implements UBI kernel API functions */#include <linux/module.h>#include <linux/err.h>#include <asm/div64.h>#include "ubi.h"/** * ubi_get_device_info - get information about UBI device. * @ubi_num: UBI device number * @di: the information is stored here * * This function returns %0 in case of success and a %-ENODEV if there is no * such UBI device. */int ubi_get_device_info(int ubi_num, struct ubi_device_info *di){	const struct ubi_device *ubi;	if (ubi_num < 0 || ubi_num >= UBI_MAX_DEVICES ||	    !ubi_devices[ubi_num])		return -ENODEV;	ubi = ubi_devices[ubi_num];	di->ubi_num = ubi->ubi_num;	di->leb_size = ubi->leb_size;	di->min_io_size = ubi->min_io_size;	di->ro_mode = ubi->ro_mode;	di->cdev = MKDEV(ubi->major, 0);	return 0;}EXPORT_SYMBOL_GPL(ubi_get_device_info);/** * ubi_get_volume_info - get information about UBI volume. * @desc: volume descriptor * @vi: the information is stored here */void ubi_get_volume_info(struct ubi_volume_desc *desc,			 struct ubi_volume_info *vi){	const struct ubi_volume *vol = desc->vol;	const struct ubi_device *ubi = vol->ubi;	vi->vol_id = vol->vol_id;	vi->ubi_num = ubi->ubi_num;	vi->size = vol->reserved_pebs;	vi->used_bytes = vol->used_bytes;	vi->vol_type = vol->vol_type;	vi->corrupted = vol->corrupted;	vi->upd_marker = vol->upd_marker;	vi->alignment = vol->alignment;	vi->usable_leb_size = vol->usable_leb_size;	vi->name_len = vol->name_len;	vi->name = vol->name;	vi->cdev = MKDEV(ubi->major, vi->vol_id + 1);}EXPORT_SYMBOL_GPL(ubi_get_volume_info);/** * ubi_open_volume - open UBI volume. * @ubi_num: UBI device number * @vol_id: volume ID * @mode: open mode * * The @mode parameter specifies if the volume should be opened in read-only * mode, read-write mode, or exclusive mode. The exclusive mode guarantees that * nobody else will be able to open this volume. UBI allows to have many volume * readers and one writer at a time. * * If a static volume is being opened for the first time since boot, it will be * checked by this function, which means it will be fully read and the CRC * checksum of each logical eraseblock will be checked. * * This function returns volume descriptor in case of success and a negative * error code in case of failure. */struct ubi_volume_desc *ubi_open_volume(int ubi_num, int vol_id, int mode){	int err;	struct ubi_volume_desc *desc;	struct ubi_device *ubi;	struct ubi_volume *vol;	dbg_msg("open device %d volume %d, mode %d", ubi_num, vol_id, mode);	err = -ENODEV;	if (ubi_num < 0)		return ERR_PTR(err);	ubi = ubi_devices[ubi_num];	if (!try_module_get(THIS_MODULE))		return ERR_PTR(err);	if (ubi_num >= UBI_MAX_DEVICES || !ubi)		goto out_put;	err = -EINVAL;	if (vol_id < 0 || vol_id >= ubi->vtbl_slots)		goto out_put;	if (mode != UBI_READONLY && mode != UBI_READWRITE &&	    mode != UBI_EXCLUSIVE)		goto out_put;	desc = kmalloc(sizeof(struct ubi_volume_desc), GFP_KERNEL);	if (!desc) {		err = -ENOMEM;		goto out_put;	}	spin_lock(&ubi->volumes_lock);	vol = ubi->volumes[vol_id];	if (!vol) {		err = -ENODEV;		goto out_unlock;	}	err = -EBUSY;	switch (mode) {	case UBI_READONLY:		if (vol->exclusive)			goto out_unlock;		vol->readers += 1;		break;	case UBI_READWRITE:		if (vol->exclusive || vol->writers > 0)			goto out_unlock;		vol->writers += 1;		break;	case UBI_EXCLUSIVE:		if (vol->exclusive || vol->writers || vol->readers)			goto out_unlock;		vol->exclusive = 1;		break;	}	spin_unlock(&ubi->volumes_lock);	desc->vol = vol;	desc->mode = mode;	/*	 * To prevent simultaneous checks of the same volume we use @vtbl_mutex,	 * although it is not the purpose it was introduced for.	 */	mutex_lock(&ubi->vtbl_mutex);	if (!vol->checked) {		/* This is the first open - check the volume */		err = ubi_check_volume(ubi, vol_id);		if (err < 0) {			mutex_unlock(&ubi->vtbl_mutex);			ubi_close_volume(desc);			return ERR_PTR(err);		}		if (err == 1) {			ubi_warn("volume %d on UBI device %d is corrupted",				 vol_id, ubi->ubi_num);			vol->corrupted = 1;		}		vol->checked = 1;	}	mutex_unlock(&ubi->vtbl_mutex);	return desc;out_unlock:	spin_unlock(&ubi->volumes_lock);	kfree(desc);out_put:	module_put(THIS_MODULE);	return ERR_PTR(err);}EXPORT_SYMBOL_GPL(ubi_open_volume);/** * ubi_open_volume_nm - open UBI volume by name. * @ubi_num: UBI device number * @name: volume name * @mode: open mode * * This function is similar to 'ubi_open_volume()', but opens a volume by name. */struct ubi_volume_desc *ubi_open_volume_nm(int ubi_num, const char *name,					   int mode){	int i, vol_id = -1, len;	struct ubi_volume_desc *ret;	struct ubi_device *ubi;	dbg_msg("open volume %s, mode %d", name, mode);	if (!name)		return ERR_PTR(-EINVAL);	len = strnlen(name, UBI_VOL_NAME_MAX + 1);	if (len > UBI_VOL_NAME_MAX)		return ERR_PTR(-EINVAL);	ret = ERR_PTR(-ENODEV);	if (!try_module_get(THIS_MODULE))		return ret;	if (ubi_num < 0 || ubi_num >= UBI_MAX_DEVICES || !ubi_devices[ubi_num])		goto out_put;	ubi = ubi_devices[ubi_num];	spin_lock(&ubi->volumes_lock);	/* Walk all volumes of this UBI device */	for (i = 0; i < ubi->vtbl_slots; i++) {		struct ubi_volume *vol = ubi->volumes[i];		if (vol && len == vol->name_len && !strcmp(name, vol->name)) {			vol_id = i;			break;		}	}	spin_unlock(&ubi->volumes_lock);	if (vol_id < 0)		goto out_put;	ret = ubi_open_volume(ubi_num, vol_id, mode);out_put:	module_put(THIS_MODULE);	return ret;}EXPORT_SYMBOL_GPL(ubi_open_volume_nm);/** * ubi_close_volume - close UBI volume. * @desc: volume descriptor */void ubi_close_volume(struct ubi_volume_desc *desc){	struct ubi_volume *vol = desc->vol;	dbg_msg("close volume %d, mode %d", vol->vol_id, desc->mode);	spin_lock(&vol->ubi->volumes_lock);	switch (desc->mode) {	case UBI_READONLY:		vol->readers -= 1;		break;	case UBI_READWRITE:		vol->writers -= 1;		break;	case UBI_EXCLUSIVE:		vol->exclusive = 0;	}	spin_unlock(&vol->ubi->volumes_lock);	kfree(desc);	module_put(THIS_MODULE);}EXPORT_SYMBOL_GPL(ubi_close_volume);/** * ubi_leb_read - read data. * @desc: volume descriptor * @lnum: logical eraseblock number to read from * @buf: buffer where to store the read data * @offset: offset within the logical eraseblock to read from * @len: how many bytes to read * @check: whether UBI has to check the read data's CRC or not. * * This function reads data from offset @offset of logical eraseblock @lnum and * stores the data at @buf. When reading from static volumes, @check specifies

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?