build.c 38.7 KB
Newer Older
A
Artem B. Bityutskiy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright (c) International Business Machines Corp., 2006
 * Copyright (c) Nokia Corporation, 2007
 *
 * 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 (Битюцкий Артём),
 *         Frank Haverkamp
 */

/*
A
Artem Bityutskiy 已提交
24 25 26 27 28 29 30 31 32 33
 * This file includes UBI initialization and building of UBI devices.
 *
 * When UBI is initialized, it attaches all the MTD devices specified as the
 * module load parameters or the kernel boot parameters. If MTD devices were
 * specified, UBI does not attach any MTD device, but it is possible to do
 * later using the "UBI control device".
 *
 * At the moment we only attach UBI devices by scanning, which will become a
 * bottleneck when flashes reach certain large size. Then one may improve UBI
 * and add other methods, although it does not seem to be easy to do.
A
Artem B. Bityutskiy 已提交
34 35 36 37 38 39 40
 */

#include <linux/err.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/stringify.h>
#include <linux/stat.h>
A
Artem Bityutskiy 已提交
41
#include <linux/miscdevice.h>
V
Vignesh Babu 已提交
42
#include <linux/log2.h>
43
#include <linux/kthread.h>
K
Kevin Cernekee 已提交
44
#include <linux/reboot.h>
A
Artem B. Bityutskiy 已提交
45 46 47 48 49 50 51 52 53 54
#include "ubi.h"

/* Maximum length of the 'mtd=' parameter */
#define MTD_PARAM_LEN_MAX 64

/**
 * struct mtd_dev_param - MTD device parameter description data structure.
 * @name: MTD device name or number string
 * @vid_hdr_offs: VID header offset
 */
55
struct mtd_dev_param {
A
Artem B. Bityutskiy 已提交
56 57 58 59 60
	char name[MTD_PARAM_LEN_MAX];
	int vid_hdr_offs;
};

/* Numbers of elements set in the @mtd_dev_param array */
61
static int mtd_devs;
A
Artem B. Bityutskiy 已提交
62 63 64 65 66 67 68

/* MTD devices specification parameters */
static struct mtd_dev_param mtd_dev_param[UBI_MAX_DEVICES];

/* Root UBI "class" object (corresponds to '/<sysfs>/class/ubi/') */
struct class *ubi_class;

69 70 71
/* Slab cache for wear-leveling entries */
struct kmem_cache *ubi_wl_entry_slab;

A
Artem Bityutskiy 已提交
72 73 74 75 76 77
/* UBI control character device */
static struct miscdevice ubi_ctrl_cdev = {
	.minor = MISC_DYNAMIC_MINOR,
	.name = "ubi_ctrl",
	.fops = &ubi_ctrl_cdev_operations,
};
78

79 80 81
/* All UBI devices in system */
static struct ubi_device *ubi_devices[UBI_MAX_DEVICES];

82 83 84
/* Serializes UBI devices creations and removals */
DEFINE_MUTEX(ubi_devices_mutex);

85 86 87
/* Protects @ubi_devices and @ubi->ref_count */
static DEFINE_SPINLOCK(ubi_devices_lock);

A
Artem B. Bityutskiy 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
/* "Show" method for files in '/<sysfs>/class/ubi/' */
static ssize_t ubi_version_show(struct class *class, char *buf)
{
	return sprintf(buf, "%d\n", UBI_VERSION);
}

/* UBI version attribute ('/<sysfs>/class/ubi/version') */
static struct class_attribute ubi_version =
	__ATTR(version, S_IRUGO, ubi_version_show, NULL);

static ssize_t dev_attribute_show(struct device *dev,
				  struct device_attribute *attr, char *buf);

/* UBI device attributes (correspond to files in '/<sysfs>/class/ubi/ubiX') */
static struct device_attribute dev_eraseblock_size =
	__ATTR(eraseblock_size, S_IRUGO, dev_attribute_show, NULL);
static struct device_attribute dev_avail_eraseblocks =
	__ATTR(avail_eraseblocks, S_IRUGO, dev_attribute_show, NULL);
static struct device_attribute dev_total_eraseblocks =
	__ATTR(total_eraseblocks, S_IRUGO, dev_attribute_show, NULL);
static struct device_attribute dev_volumes_count =
	__ATTR(volumes_count, S_IRUGO, dev_attribute_show, NULL);
static struct device_attribute dev_max_ec =
	__ATTR(max_ec, S_IRUGO, dev_attribute_show, NULL);
static struct device_attribute dev_reserved_for_bad =
	__ATTR(reserved_for_bad, S_IRUGO, dev_attribute_show, NULL);
static struct device_attribute dev_bad_peb_count =
	__ATTR(bad_peb_count, S_IRUGO, dev_attribute_show, NULL);
static struct device_attribute dev_max_vol_count =
	__ATTR(max_vol_count, S_IRUGO, dev_attribute_show, NULL);
static struct device_attribute dev_min_io_size =
	__ATTR(min_io_size, S_IRUGO, dev_attribute_show, NULL);
static struct device_attribute dev_bgt_enabled =
	__ATTR(bgt_enabled, S_IRUGO, dev_attribute_show, NULL);
122 123
static struct device_attribute dev_mtd_num =
	__ATTR(mtd_num, S_IRUGO, dev_attribute_show, NULL);
A
Artem B. Bityutskiy 已提交
124

D
Dmitry Pervushin 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
/**
 * ubi_volume_notify - send a volume change notification.
 * @ubi: UBI device description object
 * @vol: volume description object of the changed volume
 * @ntype: notification type to send (%UBI_VOLUME_ADDED, etc)
 *
 * This is a helper function which notifies all subscribers about a volume
 * change event (creation, removal, re-sizing, re-naming, updating). Returns
 * zero in case of success and a negative error code in case of failure.
 */
int ubi_volume_notify(struct ubi_device *ubi, struct ubi_volume *vol, int ntype)
{
	struct ubi_notification nt;

	ubi_do_get_device_info(ubi, &nt.di);
	ubi_do_get_volume_info(ubi, vol, &nt.vi);
	return blocking_notifier_call_chain(&ubi_notifiers, ntype, &nt);
}

/**
 * ubi_notify_all - send a notification to all volumes.
 * @ubi: UBI device description object
 * @ntype: notification type to send (%UBI_VOLUME_ADDED, etc)
 * @nb: the notifier to call
 *
 * This function walks all volumes of UBI device @ubi and sends the @ntype
 * notification for each volume. If @nb is %NULL, then all registered notifiers
 * are called, otherwise only the @nb notifier is called. Returns the number of
 * sent notifications.
 */
int ubi_notify_all(struct ubi_device *ubi, int ntype, struct notifier_block *nb)
{
	struct ubi_notification nt;
	int i, count = 0;

	ubi_do_get_device_info(ubi, &nt.di);

	mutex_lock(&ubi->device_mutex);
	for (i = 0; i < ubi->vtbl_slots; i++) {
		/*
		 * Since the @ubi->device is locked, and we are not going to
		 * change @ubi->volumes, we do not have to lock
		 * @ubi->volumes_lock.
		 */
		if (!ubi->volumes[i])
			continue;

		ubi_do_get_volume_info(ubi, ubi->volumes[i], &nt.vi);
		if (nb)
			nb->notifier_call(nb, ntype, &nt);
		else
			blocking_notifier_call_chain(&ubi_notifiers, ntype,
						     &nt);
		count += 1;
	}
	mutex_unlock(&ubi->device_mutex);

	return count;
}

/**
 * ubi_enumerate_volumes - send "add" notification for all existing volumes.
 * @nb: the notifier to call
 *
 * This function walks all UBI devices and volumes and sends the
 * %UBI_VOLUME_ADDED notification for each volume. If @nb is %NULL, then all
 * registered notifiers are called, otherwise only the @nb notifier is called.
 * Returns the number of sent notifications.
 */
int ubi_enumerate_volumes(struct notifier_block *nb)
{
	int i, count = 0;

	/*
	 * Since the @ubi_devices_mutex is locked, and we are not going to
	 * change @ubi_devices, we do not have to lock @ubi_devices_lock.
	 */
	for (i = 0; i < UBI_MAX_DEVICES; i++) {
		struct ubi_device *ubi = ubi_devices[i];

		if (!ubi)
			continue;
		count += ubi_notify_all(ubi, UBI_VOLUME_ADDED, nb);
	}

	return count;
}

213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
/**
 * ubi_get_device - get UBI device.
 * @ubi_num: UBI device number
 *
 * This function returns UBI device description object for UBI device number
 * @ubi_num, or %NULL if the device does not exist. This function increases the
 * device reference count to prevent removal of the device. In other words, the
 * device cannot be removed if its reference count is not zero.
 */
struct ubi_device *ubi_get_device(int ubi_num)
{
	struct ubi_device *ubi;

	spin_lock(&ubi_devices_lock);
	ubi = ubi_devices[ubi_num];
	if (ubi) {
		ubi_assert(ubi->ref_count >= 0);
		ubi->ref_count += 1;
		get_device(&ubi->dev);
	}
	spin_unlock(&ubi_devices_lock);

	return ubi;
}

/**
 * ubi_put_device - drop an UBI device reference.
 * @ubi: UBI device description object
 */
void ubi_put_device(struct ubi_device *ubi)
{
	spin_lock(&ubi_devices_lock);
	ubi->ref_count -= 1;
	put_device(&ubi->dev);
	spin_unlock(&ubi_devices_lock);
}

/**
251
 * ubi_get_by_major - get UBI device by character device major number.
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
 * @major: major number
 *
 * This function is similar to 'ubi_get_device()', but it searches the device
 * by its major number.
 */
struct ubi_device *ubi_get_by_major(int major)
{
	int i;
	struct ubi_device *ubi;

	spin_lock(&ubi_devices_lock);
	for (i = 0; i < UBI_MAX_DEVICES; i++) {
		ubi = ubi_devices[i];
		if (ubi && MAJOR(ubi->cdev.dev) == major) {
			ubi_assert(ubi->ref_count >= 0);
			ubi->ref_count += 1;
			get_device(&ubi->dev);
			spin_unlock(&ubi_devices_lock);
			return ubi;
		}
	}
	spin_unlock(&ubi_devices_lock);

	return NULL;
}

/**
 * ubi_major2num - get UBI device number by character device major number.
 * @major: major number
 *
 * This function searches UBI device number object by its major number. If UBI
283
 * device was not found, this function returns -ENODEV, otherwise the UBI device
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
 * number is returned.
 */
int ubi_major2num(int major)
{
	int i, ubi_num = -ENODEV;

	spin_lock(&ubi_devices_lock);
	for (i = 0; i < UBI_MAX_DEVICES; i++) {
		struct ubi_device *ubi = ubi_devices[i];

		if (ubi && MAJOR(ubi->cdev.dev) == major) {
			ubi_num = ubi->ubi_num;
			break;
		}
	}
	spin_unlock(&ubi_devices_lock);

	return ubi_num;
}

A
Artem B. Bityutskiy 已提交
304 305 306 307
/* "Show" method for files in '/<sysfs>/class/ubi/ubiX/' */
static ssize_t dev_attribute_show(struct device *dev,
				  struct device_attribute *attr, char *buf)
{
308 309
	ssize_t ret;
	struct ubi_device *ubi;
A
Artem B. Bityutskiy 已提交
310

311 312 313 314 315 316 317 318 319 320
	/*
	 * The below code looks weird, but it actually makes sense. We get the
	 * UBI device reference from the contained 'struct ubi_device'. But it
	 * is unclear if the device was removed or not yet. Indeed, if the
	 * device was removed before we increased its reference count,
	 * 'ubi_get_device()' will return -ENODEV and we fail.
	 *
	 * Remember, 'struct ubi_device' is freed in the release function, so
	 * we still can use 'ubi->ubi_num'.
	 */
A
Artem B. Bityutskiy 已提交
321
	ubi = container_of(dev, struct ubi_device, dev);
322 323 324 325
	ubi = ubi_get_device(ubi->ubi_num);
	if (!ubi)
		return -ENODEV;

A
Artem B. Bityutskiy 已提交
326
	if (attr == &dev_eraseblock_size)
327
		ret = sprintf(buf, "%d\n", ubi->leb_size);
A
Artem B. Bityutskiy 已提交
328
	else if (attr == &dev_avail_eraseblocks)
329
		ret = sprintf(buf, "%d\n", ubi->avail_pebs);
A
Artem B. Bityutskiy 已提交
330
	else if (attr == &dev_total_eraseblocks)
331
		ret = sprintf(buf, "%d\n", ubi->good_peb_count);
A
Artem B. Bityutskiy 已提交
332
	else if (attr == &dev_volumes_count)
333
		ret = sprintf(buf, "%d\n", ubi->vol_count - UBI_INT_VOL_COUNT);
A
Artem B. Bityutskiy 已提交
334
	else if (attr == &dev_max_ec)
335
		ret = sprintf(buf, "%d\n", ubi->max_ec);
A
Artem B. Bityutskiy 已提交
336
	else if (attr == &dev_reserved_for_bad)
337
		ret = sprintf(buf, "%d\n", ubi->beb_rsvd_pebs);
A
Artem B. Bityutskiy 已提交
338
	else if (attr == &dev_bad_peb_count)
339
		ret = sprintf(buf, "%d\n", ubi->bad_peb_count);
A
Artem B. Bityutskiy 已提交
340
	else if (attr == &dev_max_vol_count)
341
		ret = sprintf(buf, "%d\n", ubi->vtbl_slots);
A
Artem B. Bityutskiy 已提交
342
	else if (attr == &dev_min_io_size)
343
		ret = sprintf(buf, "%d\n", ubi->min_io_size);
A
Artem B. Bityutskiy 已提交
344
	else if (attr == &dev_bgt_enabled)
345
		ret = sprintf(buf, "%d\n", ubi->thread_enabled);
346 347
	else if (attr == &dev_mtd_num)
		ret = sprintf(buf, "%d\n", ubi->mtd->index);
A
Artem B. Bityutskiy 已提交
348
	else
349
		ret = -EINVAL;
A
Artem B. Bityutskiy 已提交
350

351 352
	ubi_put_device(ubi);
	return ret;
A
Artem B. Bityutskiy 已提交
353 354
}

355 356 357 358 359 360
static void dev_release(struct device *dev)
{
	struct ubi_device *ubi = container_of(dev, struct ubi_device, dev);

	kfree(ubi);
}
A
Artem B. Bityutskiy 已提交
361 362 363 364 365 366 367 368 369 370 371 372 373

/**
 * ubi_sysfs_init - initialize sysfs for an UBI device.
 * @ubi: UBI device description object
 *
 * This function returns zero in case of success and a negative error code in
 * case of failure.
 */
static int ubi_sysfs_init(struct ubi_device *ubi)
{
	int err;

	ubi->dev.release = dev_release;
A
Artem Bityutskiy 已提交
374
	ubi->dev.devt = ubi->cdev.dev;
A
Artem B. Bityutskiy 已提交
375
	ubi->dev.class = ubi_class;
376
	dev_set_name(&ubi->dev, UBI_NAME_STR"%d", ubi->ubi_num);
A
Artem B. Bityutskiy 已提交
377 378
	err = device_register(&ubi->dev);
	if (err)
A
Artem Bityutskiy 已提交
379
		return err;
A
Artem B. Bityutskiy 已提交
380 381 382

	err = device_create_file(&ubi->dev, &dev_eraseblock_size);
	if (err)
A
Artem Bityutskiy 已提交
383
		return err;
A
Artem B. Bityutskiy 已提交
384 385
	err = device_create_file(&ubi->dev, &dev_avail_eraseblocks);
	if (err)
A
Artem Bityutskiy 已提交
386
		return err;
A
Artem B. Bityutskiy 已提交
387 388
	err = device_create_file(&ubi->dev, &dev_total_eraseblocks);
	if (err)
A
Artem Bityutskiy 已提交
389
		return err;
A
Artem B. Bityutskiy 已提交
390 391
	err = device_create_file(&ubi->dev, &dev_volumes_count);
	if (err)
A
Artem Bityutskiy 已提交
392
		return err;
A
Artem B. Bityutskiy 已提交
393 394
	err = device_create_file(&ubi->dev, &dev_max_ec);
	if (err)
A
Artem Bityutskiy 已提交
395
		return err;
A
Artem B. Bityutskiy 已提交
396 397
	err = device_create_file(&ubi->dev, &dev_reserved_for_bad);
	if (err)
A
Artem Bityutskiy 已提交
398
		return err;
A
Artem B. Bityutskiy 已提交
399 400
	err = device_create_file(&ubi->dev, &dev_bad_peb_count);
	if (err)
A
Artem Bityutskiy 已提交
401
		return err;
A
Artem B. Bityutskiy 已提交
402 403
	err = device_create_file(&ubi->dev, &dev_max_vol_count);
	if (err)
A
Artem Bityutskiy 已提交
404
		return err;
A
Artem B. Bityutskiy 已提交
405 406
	err = device_create_file(&ubi->dev, &dev_min_io_size);
	if (err)
A
Artem Bityutskiy 已提交
407
		return err;
A
Artem B. Bityutskiy 已提交
408
	err = device_create_file(&ubi->dev, &dev_bgt_enabled);
409 410 411
	if (err)
		return err;
	err = device_create_file(&ubi->dev, &dev_mtd_num);
A
Artem B. Bityutskiy 已提交
412 413 414 415 416 417 418 419 420
	return err;
}

/**
 * ubi_sysfs_close - close sysfs for an UBI device.
 * @ubi: UBI device description object
 */
static void ubi_sysfs_close(struct ubi_device *ubi)
{
421
	device_remove_file(&ubi->dev, &dev_mtd_num);
A
Artem B. Bityutskiy 已提交
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
	device_remove_file(&ubi->dev, &dev_bgt_enabled);
	device_remove_file(&ubi->dev, &dev_min_io_size);
	device_remove_file(&ubi->dev, &dev_max_vol_count);
	device_remove_file(&ubi->dev, &dev_bad_peb_count);
	device_remove_file(&ubi->dev, &dev_reserved_for_bad);
	device_remove_file(&ubi->dev, &dev_max_ec);
	device_remove_file(&ubi->dev, &dev_volumes_count);
	device_remove_file(&ubi->dev, &dev_total_eraseblocks);
	device_remove_file(&ubi->dev, &dev_avail_eraseblocks);
	device_remove_file(&ubi->dev, &dev_eraseblock_size);
	device_unregister(&ubi->dev);
}

/**
 * kill_volumes - destroy all volumes.
 * @ubi: UBI device description object
 */
static void kill_volumes(struct ubi_device *ubi)
{
	int i;

	for (i = 0; i < ubi->vtbl_slots; i++)
		if (ubi->volumes[i])
445
			ubi_free_volume(ubi, ubi->volumes[i]);
A
Artem B. Bityutskiy 已提交
446 447
}

448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
/**
 * free_user_volumes - free all user volumes.
 * @ubi: UBI device description object
 *
 * Normally the volumes are freed at the release function of the volume device
 * objects. However, on error paths the volumes have to be freed before the
 * device objects have been initialized.
 */
static void free_user_volumes(struct ubi_device *ubi)
{
	int i;

	for (i = 0; i < ubi->vtbl_slots; i++)
		if (ubi->volumes[i]) {
			kfree(ubi->volumes[i]->eba_tbl);
			kfree(ubi->volumes[i]);
		}
}

A
Artem B. Bityutskiy 已提交
467 468 469 470 471
/**
 * uif_init - initialize user interfaces for an UBI device.
 * @ubi: UBI device description object
 *
 * This function returns zero in case of success and a negative error code in
A
Artem Bityutskiy 已提交
472
 * case of failure. Note, this function destroys all volumes if it fails.
A
Artem B. Bityutskiy 已提交
473 474 475
 */
static int uif_init(struct ubi_device *ubi)
{
A
Artem Bityutskiy 已提交
476
	int i, err;
A
Artem B. Bityutskiy 已提交
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
	dev_t dev;

	sprintf(ubi->ubi_name, UBI_NAME_STR "%d", ubi->ubi_num);

	/*
	 * Major numbers for the UBI character devices are allocated
	 * dynamically. Major numbers of volume character devices are
	 * equivalent to ones of the corresponding UBI character device. Minor
	 * numbers of UBI character devices are 0, while minor numbers of
	 * volume character devices start from 1. Thus, we allocate one major
	 * number and ubi->vtbl_slots + 1 minor numbers.
	 */
	err = alloc_chrdev_region(&dev, 0, ubi->vtbl_slots + 1, ubi->ubi_name);
	if (err) {
		ubi_err("cannot register UBI character devices");
		return err;
	}

A
Artem Bityutskiy 已提交
495
	ubi_assert(MINOR(dev) == 0);
A
Artem B. Bityutskiy 已提交
496
	cdev_init(&ubi->cdev, &ubi_cdev_operations);
497
	dbg_gen("%s major is %u", ubi->ubi_name, MAJOR(dev));
A
Artem B. Bityutskiy 已提交
498 499 500 501
	ubi->cdev.owner = THIS_MODULE;

	err = cdev_add(&ubi->cdev, dev, 1);
	if (err) {
A
Artem Bityutskiy 已提交
502
		ubi_err("cannot add character device");
A
Artem B. Bityutskiy 已提交
503 504 505 506 507
		goto out_unreg;
	}

	err = ubi_sysfs_init(ubi);
	if (err)
A
Artem Bityutskiy 已提交
508
		goto out_sysfs;
A
Artem B. Bityutskiy 已提交
509 510 511

	for (i = 0; i < ubi->vtbl_slots; i++)
		if (ubi->volumes[i]) {
512
			err = ubi_add_volume(ubi, ubi->volumes[i]);
A
Artem Bityutskiy 已提交
513 514
			if (err) {
				ubi_err("cannot add volume %d", i);
A
Artem B. Bityutskiy 已提交
515
				goto out_volumes;
A
Artem Bityutskiy 已提交
516
			}
A
Artem B. Bityutskiy 已提交
517 518 519 520 521 522
		}

	return 0;

out_volumes:
	kill_volumes(ubi);
A
Artem Bityutskiy 已提交
523
out_sysfs:
A
Artem B. Bityutskiy 已提交
524 525 526
	ubi_sysfs_close(ubi);
	cdev_del(&ubi->cdev);
out_unreg:
A
Artem Bityutskiy 已提交
527
	unregister_chrdev_region(ubi->cdev.dev, ubi->vtbl_slots + 1);
A
Artem Bityutskiy 已提交
528
	ubi_err("cannot initialize UBI %s, error %d", ubi->ubi_name, err);
A
Artem B. Bityutskiy 已提交
529 530 531 532 533 534
	return err;
}

/**
 * uif_close - close user interfaces for an UBI device.
 * @ubi: UBI device description object
535 536 537 538
 *
 * Note, since this function un-registers UBI volume device objects (@vol->dev),
 * the memory allocated voe the volumes is freed as well (in the release
 * function).
A
Artem B. Bityutskiy 已提交
539 540 541 542 543 544
 */
static void uif_close(struct ubi_device *ubi)
{
	kill_volumes(ubi);
	ubi_sysfs_close(ubi);
	cdev_del(&ubi->cdev);
A
Artem Bityutskiy 已提交
545
	unregister_chrdev_region(ubi->cdev.dev, ubi->vtbl_slots + 1);
A
Artem B. Bityutskiy 已提交
546 547
}

548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
/**
 * free_internal_volumes - free internal volumes.
 * @ubi: UBI device description object
 */
static void free_internal_volumes(struct ubi_device *ubi)
{
	int i;

	for (i = ubi->vtbl_slots;
	     i < ubi->vtbl_slots + UBI_INT_VOL_COUNT; i++) {
		kfree(ubi->volumes[i]->eba_tbl);
		kfree(ubi->volumes[i]);
	}
}

A
Artem B. Bityutskiy 已提交
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
/**
 * attach_by_scanning - attach an MTD device using scanning method.
 * @ubi: UBI device descriptor
 *
 * This function returns zero in case of success and a negative error code in
 * case of failure.
 *
 * Note, currently this is the only method to attach UBI devices. Hopefully in
 * the future we'll have more scalable attaching methods and avoid full media
 * scanning. But even in this case scanning will be needed as a fall-back
 * attaching method if there are some on-flash table corruptions.
 */
static int attach_by_scanning(struct ubi_device *ubi)
{
	int err;
	struct ubi_scan_info *si;

	si = ubi_scan(ubi);
	if (IS_ERR(si))
		return PTR_ERR(si);

	ubi->bad_peb_count = si->bad_peb_count;
	ubi->good_peb_count = ubi->peb_count - ubi->bad_peb_count;
	ubi->max_ec = si->max_ec;
	ubi->mean_ec = si->mean_ec;

	err = ubi_read_volume_table(ubi, si);
	if (err)
		goto out_si;

	err = ubi_wl_init_scan(ubi, si);
	if (err)
		goto out_vtbl;

	err = ubi_eba_init_scan(ubi, si);
	if (err)
		goto out_wl;

	ubi_scan_destroy_si(si);
	return 0;

out_wl:
	ubi_wl_close(ubi);
out_vtbl:
607
	free_internal_volumes(ubi);
608
	vfree(ubi->vtbl);
A
Artem B. Bityutskiy 已提交
609 610 611 612 613 614
out_si:
	ubi_scan_destroy_si(si);
	return err;
}

/**
A
Artem Bityutskiy 已提交
615
 * io_init - initialize I/O sub-system for a given UBI device.
A
Artem B. Bityutskiy 已提交
616 617 618 619 620 621
 * @ubi: UBI device description object
 *
 * If @ubi->vid_hdr_offset or @ubi->leb_start is zero, default offsets are
 * assumed:
 *   o EC header is always at offset zero - this cannot be changed;
 *   o VID header starts just after the EC header at the closest address
622
 *     aligned to @io->hdrs_min_io_size;
A
Artem B. Bityutskiy 已提交
623
 *   o data starts just after the VID header at the closest address aligned to
624
 *     @io->min_io_size
A
Artem B. Bityutskiy 已提交
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
 *
 * This function returns zero in case of success and a negative error code in
 * case of failure.
 */
static int io_init(struct ubi_device *ubi)
{
	if (ubi->mtd->numeraseregions != 0) {
		/*
		 * Some flashes have several erase regions. Different regions
		 * may have different eraseblock size and other
		 * characteristics. It looks like mostly multi-region flashes
		 * have one "main" region and one or more small regions to
		 * store boot loader code or boot parameters or whatever. I
		 * guess we should just pick the largest region. But this is
		 * not implemented.
		 */
		ubi_err("multiple regions, not implemented");
		return -EINVAL;
	}

A
Artem Bityutskiy 已提交
645
	if (ubi->vid_hdr_offset < 0)
646 647
		return -EINVAL;

A
Artem B. Bityutskiy 已提交
648 649 650 651 652 653
	/*
	 * Note, in this implementation we support MTD devices with 0x7FFFFFFF
	 * physical eraseblocks maximum.
	 */

	ubi->peb_size   = ubi->mtd->erasesize;
654
	ubi->peb_count  = mtd_div_by_eb(ubi->mtd->size, ubi->mtd);
A
Artem B. Bityutskiy 已提交
655 656 657 658 659
	ubi->flash_size = ubi->mtd->size;

	if (ubi->mtd->block_isbad && ubi->mtd->block_markbad)
		ubi->bad_allowed = 1;

A
Artem Bityutskiy 已提交
660 661 662 663 664
	if (ubi->mtd->type == MTD_NORFLASH) {
		ubi_assert(ubi->mtd->writesize == 1);
		ubi->nor_flash = 1;
	}

A
Artem B. Bityutskiy 已提交
665 666 667
	ubi->min_io_size = ubi->mtd->writesize;
	ubi->hdrs_min_io_size = ubi->mtd->writesize >> ubi->mtd->subpage_sft;

668 669 670 671 672
	/*
	 * Make sure minimal I/O unit is power of 2. Note, there is no
	 * fundamental reason for this assumption. It is just an optimization
	 * which allows us to avoid costly division operations.
	 */
V
Vignesh Babu 已提交
673
	if (!is_power_of_2(ubi->min_io_size)) {
A
Artem Bityutskiy 已提交
674 675
		ubi_err("min. I/O unit (%d) is not power of 2",
			ubi->min_io_size);
A
Artem B. Bityutskiy 已提交
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
		return -EINVAL;
	}

	ubi_assert(ubi->hdrs_min_io_size > 0);
	ubi_assert(ubi->hdrs_min_io_size <= ubi->min_io_size);
	ubi_assert(ubi->min_io_size % ubi->hdrs_min_io_size == 0);

	/* Calculate default aligned sizes of EC and VID headers */
	ubi->ec_hdr_alsize = ALIGN(UBI_EC_HDR_SIZE, ubi->hdrs_min_io_size);
	ubi->vid_hdr_alsize = ALIGN(UBI_VID_HDR_SIZE, ubi->hdrs_min_io_size);

	dbg_msg("min_io_size      %d", ubi->min_io_size);
	dbg_msg("hdrs_min_io_size %d", ubi->hdrs_min_io_size);
	dbg_msg("ec_hdr_alsize    %d", ubi->ec_hdr_alsize);
	dbg_msg("vid_hdr_alsize   %d", ubi->vid_hdr_alsize);

	if (ubi->vid_hdr_offset == 0)
		/* Default offset */
		ubi->vid_hdr_offset = ubi->vid_hdr_aloffset =
				      ubi->ec_hdr_alsize;
	else {
		ubi->vid_hdr_aloffset = ubi->vid_hdr_offset &
						~(ubi->hdrs_min_io_size - 1);
		ubi->vid_hdr_shift = ubi->vid_hdr_offset -
						ubi->vid_hdr_aloffset;
	}

	/* Similar for the data offset */
704
	ubi->leb_start = ubi->vid_hdr_offset + UBI_EC_HDR_SIZE;
A
Artem Bityutskiy 已提交
705
	ubi->leb_start = ALIGN(ubi->leb_start, ubi->min_io_size);
A
Artem B. Bityutskiy 已提交
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722

	dbg_msg("vid_hdr_offset   %d", ubi->vid_hdr_offset);
	dbg_msg("vid_hdr_aloffset %d", ubi->vid_hdr_aloffset);
	dbg_msg("vid_hdr_shift    %d", ubi->vid_hdr_shift);
	dbg_msg("leb_start        %d", ubi->leb_start);

	/* The shift must be aligned to 32-bit boundary */
	if (ubi->vid_hdr_shift % 4) {
		ubi_err("unaligned VID header shift %d",
			ubi->vid_hdr_shift);
		return -EINVAL;
	}

	/* Check sanity */
	if (ubi->vid_hdr_offset < UBI_EC_HDR_SIZE ||
	    ubi->leb_start < ubi->vid_hdr_offset + UBI_VID_HDR_SIZE ||
	    ubi->leb_start > ubi->peb_size - UBI_VID_HDR_SIZE ||
723
	    ubi->leb_start & (ubi->min_io_size - 1)) {
A
Artem B. Bityutskiy 已提交
724 725 726 727 728
		ubi_err("bad VID header (%d) or data offsets (%d)",
			ubi->vid_hdr_offset, ubi->leb_start);
		return -EINVAL;
	}

729 730 731 732 733 734 735 736 737
	/*
	 * Set maximum amount of physical erroneous eraseblocks to be 10%.
	 * Erroneous PEB are those which have read errors.
	 */
	ubi->max_erroneous = ubi->peb_count / 10;
	if (ubi->max_erroneous < 16)
		ubi->max_erroneous = 16;
	dbg_msg("max_erroneous    %d", ubi->max_erroneous);

A
Artem B. Bityutskiy 已提交
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
	/*
	 * It may happen that EC and VID headers are situated in one minimal
	 * I/O unit. In this case we can only accept this UBI image in
	 * read-only mode.
	 */
	if (ubi->vid_hdr_offset + UBI_VID_HDR_SIZE <= ubi->hdrs_min_io_size) {
		ubi_warn("EC and VID headers are in the same minimal I/O unit, "
			 "switch to read-only mode");
		ubi->ro_mode = 1;
	}

	ubi->leb_size = ubi->peb_size - ubi->leb_start;

	if (!(ubi->mtd->flags & MTD_WRITEABLE)) {
		ubi_msg("MTD device %d is write-protected, attach in "
			"read-only mode", ubi->mtd->index);
		ubi->ro_mode = 1;
	}

757 758 759 760 761 762 763 764 765 766
	ubi_msg("physical eraseblock size:   %d bytes (%d KiB)",
		ubi->peb_size, ubi->peb_size >> 10);
	ubi_msg("logical eraseblock size:    %d bytes", ubi->leb_size);
	ubi_msg("smallest flash I/O unit:    %d", ubi->min_io_size);
	if (ubi->hdrs_min_io_size != ubi->min_io_size)
		ubi_msg("sub-page size:              %d",
			ubi->hdrs_min_io_size);
	ubi_msg("VID header offset:          %d (aligned %d)",
		ubi->vid_hdr_offset, ubi->vid_hdr_aloffset);
	ubi_msg("data offset:                %d", ubi->leb_start);
A
Artem B. Bityutskiy 已提交
767 768 769 770 771 772 773 774 775 776 777 778

	/*
	 * Note, ideally, we have to initialize ubi->bad_peb_count here. But
	 * unfortunately, MTD does not provide this information. We should loop
	 * over all physical eraseblocks and invoke mtd->block_is_bad() for
	 * each physical eraseblock. So, we skip ubi->bad_peb_count
	 * uninitialized and initialize it after scanning.
	 */

	return 0;
}

A
Artem Bityutskiy 已提交
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
/**
 * autoresize - re-size the volume which has the "auto-resize" flag set.
 * @ubi: UBI device description object
 * @vol_id: ID of the volume to re-size
 *
 * This function re-sizes the volume marked by the @UBI_VTBL_AUTORESIZE_FLG in
 * the volume table to the largest possible size. See comments in ubi-header.h
 * for more description of the flag. Returns zero in case of success and a
 * negative error code in case of failure.
 */
static int autoresize(struct ubi_device *ubi, int vol_id)
{
	struct ubi_volume_desc desc;
	struct ubi_volume *vol = ubi->volumes[vol_id];
	int err, old_reserved_pebs = vol->reserved_pebs;

	/*
	 * Clear the auto-resize flag in the volume in-memory copy of the
797
	 * volume table, and 'ubi_resize_volume()' will propagate this change
A
Artem Bityutskiy 已提交
798 799 800 801 802 803 804 805
	 * to the flash.
	 */
	ubi->vtbl[vol_id].flags &= ~UBI_VTBL_AUTORESIZE_FLG;

	if (ubi->avail_pebs == 0) {
		struct ubi_vtbl_record vtbl_rec;

		/*
806
		 * No available PEBs to re-size the volume, clear the flag on
A
Artem Bityutskiy 已提交
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
		 * flash and exit.
		 */
		memcpy(&vtbl_rec, &ubi->vtbl[vol_id],
		       sizeof(struct ubi_vtbl_record));
		err = ubi_change_vtbl_record(ubi, vol_id, &vtbl_rec);
		if (err)
			ubi_err("cannot clean auto-resize flag for volume %d",
				vol_id);
	} else {
		desc.vol = vol;
		err = ubi_resize_volume(&desc,
					old_reserved_pebs + ubi->avail_pebs);
		if (err)
			ubi_err("cannot auto-resize volume %d", vol_id);
	}

	if (err)
		return err;

	ubi_msg("volume %d (\"%s\") re-sized from %d to %d LEBs", vol_id,
		vol->name, old_reserved_pebs, vol->reserved_pebs);
	return 0;
}

K
Kevin Cernekee 已提交
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858
/**
 * ubi_reboot_notifier - halt UBI transactions immediately prior to a reboot.
 * @n: reboot notifier object
 * @state: SYS_RESTART, SYS_HALT, or SYS_POWER_OFF
 * @cmd: pointer to command string for RESTART2
 *
 * This function stops the UBI background thread so that the flash device
 * remains quiescent when Linux restarts the system. Any queued work will be
 * discarded, but this function will block until do_work() finishes if an
 * operation is already in progress.
 *
 * This function solves a real-life problem observed on NOR flashes when an
 * PEB erase operation starts, then the system is rebooted before the erase is
 * finishes, and the boot loader gets confused and dies. So we prefer to finish
 * the ongoing operation before rebooting.
 */
static int ubi_reboot_notifier(struct notifier_block *n, unsigned long state,
			       void *cmd)
{
	struct ubi_device *ubi;

	ubi = container_of(n, struct ubi_device, reboot_notifier);
	if (ubi->bgt_thread)
		kthread_stop(ubi->bgt_thread);
	ubi_sync(ubi->ubi_num);
	return NOTIFY_DONE;
}

A
Artem B. Bityutskiy 已提交
859
/**
860
 * ubi_attach_mtd_dev - attach an MTD device.
861
 * @mtd: MTD device description object
A
Artem Bityutskiy 已提交
862
 * @ubi_num: number to assign to the new UBI device
A
Artem B. Bityutskiy 已提交
863 864
 * @vid_hdr_offset: VID header offset
 *
A
Artem Bityutskiy 已提交
865 866
 * This function attaches MTD device @mtd_dev to UBI and assign @ubi_num number
 * to the newly created UBI device, unless @ubi_num is %UBI_DEV_NUM_AUTO, in
867
 * which case this function finds a vacant device number and assigns it
A
Artem Bityutskiy 已提交
868 869
 * automatically. Returns the new UBI device number in case of success and a
 * negative error code in case of failure.
870 871 872
 *
 * Note, the invocations of this function has to be serialized by the
 * @ubi_devices_mutex.
A
Artem B. Bityutskiy 已提交
873
 */
A
Artem Bityutskiy 已提交
874
int ubi_attach_mtd_dev(struct mtd_info *mtd, int ubi_num, int vid_hdr_offset)
A
Artem B. Bityutskiy 已提交
875 876
{
	struct ubi_device *ubi;
877
	int i, err, do_free = 1;
A
Artem B. Bityutskiy 已提交
878

879 880 881 882 883 884
	/*
	 * Check if we already have the same MTD device attached.
	 *
	 * Note, this function assumes that UBI devices creations and deletions
	 * are serialized, so it does not take the &ubi_devices_lock.
	 */
A
Artem Bityutskiy 已提交
885
	for (i = 0; i < UBI_MAX_DEVICES; i++) {
A
Artem Bityutskiy 已提交
886
		ubi = ubi_devices[i];
887
		if (ubi && mtd->index == ubi->mtd->index) {
A
Artem Bityutskiy 已提交
888
			dbg_err("mtd%d is already attached to ubi%d",
A
Artem B. Bityutskiy 已提交
889
				mtd->index, i);
A
Artem Bityutskiy 已提交
890
			return -EEXIST;
A
Artem B. Bityutskiy 已提交
891
		}
A
Artem Bityutskiy 已提交
892
	}
A
Artem B. Bityutskiy 已提交
893

A
Artem Bityutskiy 已提交
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
	/*
	 * Make sure this MTD device is not emulated on top of an UBI volume
	 * already. Well, generally this recursion works fine, but there are
	 * different problems like the UBI module takes a reference to itself
	 * by attaching (and thus, opening) the emulated MTD device. This
	 * results in inability to unload the module. And in general it makes
	 * no sense to attach emulated MTD devices, so we prohibit this.
	 */
	if (mtd->type == MTD_UBIVOLUME) {
		ubi_err("refuse attaching mtd%d - it is already emulated on "
			"top of UBI", mtd->index);
		return -EINVAL;
	}

	if (ubi_num == UBI_DEV_NUM_AUTO) {
		/* Search for an empty slot in the @ubi_devices array */
		for (ubi_num = 0; ubi_num < UBI_MAX_DEVICES; ubi_num++)
			if (!ubi_devices[ubi_num])
				break;
		if (ubi_num == UBI_MAX_DEVICES) {
914 915
			dbg_err("only %d UBI devices may be created",
				UBI_MAX_DEVICES);
A
Artem Bityutskiy 已提交
916 917 918 919 920
			return -ENFILE;
		}
	} else {
		if (ubi_num >= UBI_MAX_DEVICES)
			return -EINVAL;
A
Artem Bityutskiy 已提交
921

A
Artem Bityutskiy 已提交
922 923 924 925 926
		/* Make sure ubi_num is not busy */
		if (ubi_devices[ubi_num]) {
			dbg_err("ubi%d already exists", ubi_num);
			return -EEXIST;
		}
A
Artem Bityutskiy 已提交
927 928
	}

929 930 931
	ubi = kzalloc(sizeof(struct ubi_device), GFP_KERNEL);
	if (!ubi)
		return -ENOMEM;
A
Artem B. Bityutskiy 已提交
932

933
	ubi->mtd = mtd;
A
Artem Bityutskiy 已提交
934
	ubi->ubi_num = ubi_num;
A
Artem B. Bityutskiy 已提交
935
	ubi->vid_hdr_offset = vid_hdr_offset;
A
Artem Bityutskiy 已提交
936 937 938 939
	ubi->autoresize_vol_id = -1;

	mutex_init(&ubi->buf_mutex);
	mutex_init(&ubi->ckvol_mutex);
940
	mutex_init(&ubi->device_mutex);
A
Artem Bityutskiy 已提交
941
	spin_lock_init(&ubi->volumes_lock);
942

A
Artem Bityutskiy 已提交
943
	ubi_msg("attaching mtd%d to ubi%d", mtd->index, ubi_num);
944

A
Artem B. Bityutskiy 已提交
945 946 947 948
	err = io_init(ubi);
	if (err)
		goto out_free;

949
	err = -ENOMEM;
950 951 952 953 954 955
	ubi->peb_buf1 = vmalloc(ubi->peb_size);
	if (!ubi->peb_buf1)
		goto out_free;

	ubi->peb_buf2 = vmalloc(ubi->peb_size);
	if (!ubi->peb_buf2)
956
		goto out_free;
957

958
#ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
959 960 961
	mutex_init(&ubi->dbg_buf_mutex);
	ubi->dbg_peb_buf = vmalloc(ubi->peb_size);
	if (!ubi->dbg_peb_buf)
962
		goto out_free;
963 964
#endif

A
Artem B. Bityutskiy 已提交
965 966 967 968 969 970
	err = attach_by_scanning(ubi);
	if (err) {
		dbg_err("failed to attach by scanning, error %d", err);
		goto out_free;
	}

A
Artem Bityutskiy 已提交
971 972 973 974 975 976
	if (ubi->autoresize_vol_id != -1) {
		err = autoresize(ubi, ubi->autoresize_vol_id);
		if (err)
			goto out_detach;
	}

A
Artem B. Bityutskiy 已提交
977 978
	err = uif_init(ubi);
	if (err)
979
		goto out_nofree;
A
Artem B. Bityutskiy 已提交
980

981 982 983 984 985 986 987 988
	ubi->bgt_thread = kthread_create(ubi_thread, ubi, ubi->bgt_name);
	if (IS_ERR(ubi->bgt_thread)) {
		err = PTR_ERR(ubi->bgt_thread);
		ubi_err("cannot spawn \"%s\", error %d", ubi->bgt_name,
			err);
		goto out_uif;
	}

A
Artem Bityutskiy 已提交
989
	ubi_msg("attached mtd%d to ubi%d", mtd->index, ubi_num);
990
	ubi_msg("MTD device name:            \"%s\"", mtd->name);
A
Artem B. Bityutskiy 已提交
991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
	ubi_msg("MTD device size:            %llu MiB", ubi->flash_size >> 20);
	ubi_msg("number of good PEBs:        %d", ubi->good_peb_count);
	ubi_msg("number of bad PEBs:         %d", ubi->bad_peb_count);
	ubi_msg("max. allowed volumes:       %d", ubi->vtbl_slots);
	ubi_msg("wear-leveling threshold:    %d", CONFIG_MTD_UBI_WL_THRESHOLD);
	ubi_msg("number of internal volumes: %d", UBI_INT_VOL_COUNT);
	ubi_msg("number of user volumes:     %d",
		ubi->vol_count - UBI_INT_VOL_COUNT);
	ubi_msg("available PEBs:             %d", ubi->avail_pebs);
	ubi_msg("total number of reserved PEBs: %d", ubi->rsvd_pebs);
	ubi_msg("number of PEBs reserved for bad PEB handling: %d",
		ubi->beb_rsvd_pebs);
	ubi_msg("max/mean erase counter: %d/%d", ubi->max_ec, ubi->mean_ec);
1004
	ubi_msg("image sequence number: %d", ubi->image_seq);
A
Artem B. Bityutskiy 已提交
1005

A
Artem Bityutskiy 已提交
1006 1007 1008 1009 1010
	/*
	 * The below lock makes sure we do not race with 'ubi_thread()' which
	 * checks @ubi->thread_enabled. Otherwise we may fail to wake it up.
	 */
	spin_lock(&ubi->wl_lock);
1011
	if (!DBG_DISABLE_BGT)
A
Artem B. Bityutskiy 已提交
1012
		ubi->thread_enabled = 1;
1013
	wake_up_process(ubi->bgt_thread);
A
Artem Bityutskiy 已提交
1014
	spin_unlock(&ubi->wl_lock);
A
Artem B. Bityutskiy 已提交
1015

K
Kevin Cernekee 已提交
1016 1017 1018 1019 1020
	/* Flash device priority is 0 - UBI needs to shut down first */
	ubi->reboot_notifier.priority = 1;
	ubi->reboot_notifier.notifier_call = ubi_reboot_notifier;
	register_reboot_notifier(&ubi->reboot_notifier);

A
Artem Bityutskiy 已提交
1021
	ubi_devices[ubi_num] = ubi;
D
Dmitry Pervushin 已提交
1022
	ubi_notify_all(ubi, UBI_VOLUME_ADDED, NULL);
A
Artem Bityutskiy 已提交
1023
	return ubi_num;
A
Artem B. Bityutskiy 已提交
1024

1025 1026
out_uif:
	uif_close(ubi);
1027 1028
out_nofree:
	do_free = 0;
A
Artem B. Bityutskiy 已提交
1029 1030
out_detach:
	ubi_wl_close(ubi);
1031 1032
	if (do_free)
		free_user_volumes(ubi);
1033
	free_internal_volumes(ubi);
1034
	vfree(ubi->vtbl);
A
Artem B. Bityutskiy 已提交
1035
out_free:
1036 1037
	vfree(ubi->peb_buf1);
	vfree(ubi->peb_buf2);
1038
#ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
1039 1040
	vfree(ubi->dbg_peb_buf);
#endif
A
Artem B. Bityutskiy 已提交
1041 1042 1043 1044 1045
	kfree(ubi);
	return err;
}

/**
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
 * ubi_detach_mtd_dev - detach an MTD device.
 * @ubi_num: UBI device number to detach from
 * @anyway: detach MTD even if device reference count is not zero
 *
 * This function destroys an UBI device number @ubi_num and detaches the
 * underlying MTD device. Returns zero in case of success and %-EBUSY if the
 * UBI device is busy and cannot be destroyed, and %-EINVAL if it does not
 * exist.
 *
 * Note, the invocations of this function has to be serialized by the
 * @ubi_devices_mutex.
A
Artem B. Bityutskiy 已提交
1057
 */
1058
int ubi_detach_mtd_dev(int ubi_num, int anyway)
A
Artem B. Bityutskiy 已提交
1059
{
1060 1061 1062 1063 1064
	struct ubi_device *ubi;

	if (ubi_num < 0 || ubi_num >= UBI_MAX_DEVICES)
		return -EINVAL;

D
Dmitry Pervushin 已提交
1065 1066
	ubi = ubi_get_device(ubi_num);
	if (!ubi)
1067 1068
		return -EINVAL;

D
Dmitry Pervushin 已提交
1069 1070 1071
	spin_lock(&ubi_devices_lock);
	put_device(&ubi->dev);
	ubi->ref_count -= 1;
1072 1073
	if (ubi->ref_count) {
		if (!anyway) {
A
Artem Bityutskiy 已提交
1074
			spin_unlock(&ubi_devices_lock);
1075 1076 1077 1078 1079 1080
			return -EBUSY;
		}
		/* This may only happen if there is a bug */
		ubi_err("%s reference count %d, destroy anyway",
			ubi->ubi_name, ubi->ref_count);
	}
A
Artem Bityutskiy 已提交
1081
	ubi_devices[ubi_num] = NULL;
1082 1083
	spin_unlock(&ubi_devices_lock);

A
Artem Bityutskiy 已提交
1084
	ubi_assert(ubi_num == ubi->ubi_num);
D
Dmitry Pervushin 已提交
1085
	ubi_notify_all(ubi, UBI_VOLUME_REMOVED, NULL);
A
Artem Bityutskiy 已提交
1086
	dbg_msg("detaching mtd%d from ubi%d", ubi->mtd->index, ubi_num);
1087 1088 1089 1090 1091

	/*
	 * Before freeing anything, we have to stop the background thread to
	 * prevent it from doing anything on this device while we are freeing.
	 */
K
Kevin Cernekee 已提交
1092
	unregister_reboot_notifier(&ubi->reboot_notifier);
1093 1094
	if (ubi->bgt_thread)
		kthread_stop(ubi->bgt_thread);
A
Artem B. Bityutskiy 已提交
1095

1096 1097 1098 1099 1100 1101
	/*
	 * Get a reference to the device in order to prevent 'dev_release()'
	 * from freeing @ubi object.
	 */
	get_device(&ubi->dev);

A
Artem B. Bityutskiy 已提交
1102 1103
	uif_close(ubi);
	ubi_wl_close(ubi);
1104
	free_internal_volumes(ubi);
1105
	vfree(ubi->vtbl);
A
Artem B. Bityutskiy 已提交
1106
	put_mtd_device(ubi->mtd);
1107 1108
	vfree(ubi->peb_buf1);
	vfree(ubi->peb_buf2);
1109
#ifdef CONFIG_MTD_UBI_DEBUG_PARANOID
1110 1111
	vfree(ubi->dbg_peb_buf);
#endif
1112
	ubi_msg("mtd%d is detached from ubi%d", ubi->mtd->index, ubi->ubi_num);
1113
	put_device(&ubi->dev);
1114
	return 0;
A
Artem B. Bityutskiy 已提交
1115 1116
}

1117 1118 1119 1120
/**
 * find_mtd_device - open an MTD device by its name or number.
 * @mtd_dev: name or number of the device
 *
1121 1122 1123 1124
 * This function tries to open and MTD device described by @mtd_dev string,
 * which is first treated as an ASCII number, and if it is not true, it is
 * treated as MTD device name. Returns MTD device description object in case of
 * success and a negative error code in case of failure.
1125 1126 1127 1128
 */
static struct mtd_info * __init open_mtd_device(const char *mtd_dev)
{
	struct mtd_info *mtd;
1129 1130
	int mtd_num;
	char *endp;
1131

1132 1133
	mtd_num = simple_strtoul(mtd_dev, &endp, 0);
	if (*endp != '\0' || mtd_dev == endp) {
1134
		/*
1135 1136
		 * This does not look like an ASCII integer, probably this is
		 * MTD device name.
1137
		 */
1138 1139
		mtd = get_mtd_device_nm(mtd_dev);
	} else
1140 1141 1142 1143 1144
		mtd = get_mtd_device(NULL, mtd_num);

	return mtd;
}

A
Artem B. Bityutskiy 已提交
1145 1146 1147 1148 1149 1150 1151 1152 1153
static int __init ubi_init(void)
{
	int err, i, k;

	/* Ensure that EC and VID headers have correct size */
	BUILD_BUG_ON(sizeof(struct ubi_ec_hdr) != 64);
	BUILD_BUG_ON(sizeof(struct ubi_vid_hdr) != 64);

	if (mtd_devs > UBI_MAX_DEVICES) {
A
Artem Bityutskiy 已提交
1154
		ubi_err("too many MTD devices, maximum is %d", UBI_MAX_DEVICES);
A
Artem B. Bityutskiy 已提交
1155 1156 1157
		return -EINVAL;
	}

A
Artem Bityutskiy 已提交
1158
	/* Create base sysfs directory and sysfs files */
A
Artem B. Bityutskiy 已提交
1159
	ubi_class = class_create(THIS_MODULE, UBI_NAME_STR);
A
Artem Bityutskiy 已提交
1160 1161
	if (IS_ERR(ubi_class)) {
		err = PTR_ERR(ubi_class);
A
Artem Bityutskiy 已提交
1162
		ubi_err("cannot create UBI class");
A
Artem Bityutskiy 已提交
1163 1164
		goto out;
	}
A
Artem B. Bityutskiy 已提交
1165 1166

	err = class_create_file(ubi_class, &ubi_version);
A
Artem Bityutskiy 已提交
1167
	if (err) {
A
Artem Bityutskiy 已提交
1168
		ubi_err("cannot create sysfs file");
A
Artem B. Bityutskiy 已提交
1169
		goto out_class;
A
Artem Bityutskiy 已提交
1170 1171 1172 1173
	}

	err = misc_register(&ubi_ctrl_cdev);
	if (err) {
A
Artem Bityutskiy 已提交
1174
		ubi_err("cannot register device");
A
Artem Bityutskiy 已提交
1175 1176
		goto out_version;
	}
A
Artem B. Bityutskiy 已提交
1177

1178
	ubi_wl_entry_slab = kmem_cache_create("ubi_wl_entry_slab",
A
Artem Bityutskiy 已提交
1179 1180
					      sizeof(struct ubi_wl_entry),
					      0, 0, NULL);
1181
	if (!ubi_wl_entry_slab)
1182
		goto out_dev_unreg;
1183

A
Artem B. Bityutskiy 已提交
1184 1185 1186
	/* Attach MTD devices */
	for (i = 0; i < mtd_devs; i++) {
		struct mtd_dev_param *p = &mtd_dev_param[i];
1187
		struct mtd_info *mtd;
A
Artem B. Bityutskiy 已提交
1188 1189

		cond_resched();
1190 1191 1192 1193 1194 1195 1196 1197

		mtd = open_mtd_device(p->name);
		if (IS_ERR(mtd)) {
			err = PTR_ERR(mtd);
			goto out_detach;
		}

		mutex_lock(&ubi_devices_mutex);
A
Artem Bityutskiy 已提交
1198 1199
		err = ubi_attach_mtd_dev(mtd, UBI_DEV_NUM_AUTO,
					 p->vid_hdr_offs);
1200 1201 1202
		mutex_unlock(&ubi_devices_mutex);
		if (err < 0) {
			put_mtd_device(mtd);
A
Artem Bityutskiy 已提交
1203
			ubi_err("cannot attach mtd%d", mtd->index);
A
Artem B. Bityutskiy 已提交
1204
			goto out_detach;
A
Artem Bityutskiy 已提交
1205
		}
A
Artem B. Bityutskiy 已提交
1206 1207 1208 1209 1210 1211
	}

	return 0;

out_detach:
	for (k = 0; k < i; k++)
1212 1213 1214 1215 1216
		if (ubi_devices[k]) {
			mutex_lock(&ubi_devices_mutex);
			ubi_detach_mtd_dev(ubi_devices[k]->ubi_num, 1);
			mutex_unlock(&ubi_devices_mutex);
		}
1217
	kmem_cache_destroy(ubi_wl_entry_slab);
A
Artem Bityutskiy 已提交
1218 1219
out_dev_unreg:
	misc_deregister(&ubi_ctrl_cdev);
1220
out_version:
A
Artem B. Bityutskiy 已提交
1221 1222 1223
	class_remove_file(ubi_class, &ubi_version);
out_class:
	class_destroy(ubi_class);
A
Artem Bityutskiy 已提交
1224
out:
A
Artem Bityutskiy 已提交
1225
	ubi_err("UBI error: cannot initialize UBI, error %d", err);
A
Artem B. Bityutskiy 已提交
1226 1227 1228 1229 1230 1231
	return err;
}
module_init(ubi_init);

static void __exit ubi_exit(void)
{
A
Artem Bityutskiy 已提交
1232
	int i;
A
Artem B. Bityutskiy 已提交
1233

A
Artem Bityutskiy 已提交
1234
	for (i = 0; i < UBI_MAX_DEVICES; i++)
1235 1236 1237 1238 1239
		if (ubi_devices[i]) {
			mutex_lock(&ubi_devices_mutex);
			ubi_detach_mtd_dev(ubi_devices[i]->ubi_num, 1);
			mutex_unlock(&ubi_devices_mutex);
		}
1240
	kmem_cache_destroy(ubi_wl_entry_slab);
A
Artem Bityutskiy 已提交
1241
	misc_deregister(&ubi_ctrl_cdev);
A
Artem B. Bityutskiy 已提交
1242 1243 1244 1245 1246 1247
	class_remove_file(ubi_class, &ubi_version);
	class_destroy(ubi_class);
}
module_exit(ubi_exit);

/**
1248
 * bytes_str_to_int - convert a number of bytes string into an integer.
A
Artem B. Bityutskiy 已提交
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
 * @str: the string to convert
 *
 * This function returns positive resulting integer in case of success and a
 * negative error code in case of failure.
 */
static int __init bytes_str_to_int(const char *str)
{
	char *endp;
	unsigned long result;

	result = simple_strtoul(str, &endp, 0);
	if (str == endp || result < 0) {
A
Artem Bityutskiy 已提交
1261 1262
		printk(KERN_ERR "UBI error: incorrect bytes count: \"%s\"\n",
		       str);
A
Artem B. Bityutskiy 已提交
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
		return -EINVAL;
	}

	switch (*endp) {
	case 'G':
		result *= 1024;
	case 'M':
		result *= 1024;
	case 'K':
		result *= 1024;
A
Artem Bityutskiy 已提交
1273
		if (endp[1] == 'i' && endp[2] == 'B')
A
Artem B. Bityutskiy 已提交
1274 1275 1276 1277
			endp += 2;
	case '\0':
		break;
	default:
A
Artem Bityutskiy 已提交
1278 1279
		printk(KERN_ERR "UBI error: incorrect bytes count: \"%s\"\n",
		       str);
A
Artem B. Bityutskiy 已提交
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
		return -EINVAL;
	}

	return result;
}

/**
 * ubi_mtd_param_parse - parse the 'mtd=' UBI parameter.
 * @val: the parameter value to parse
 * @kp: not used
 *
 * This function returns zero in case of success and a negative error code in
 * case of error.
 */
static int __init ubi_mtd_param_parse(const char *val, struct kernel_param *kp)
{
	int i, len;
	struct mtd_dev_param *p;
	char buf[MTD_PARAM_LEN_MAX];
	char *pbuf = &buf[0];
A
Artem Bityutskiy 已提交
1300
	char *tokens[2] = {NULL, NULL};
A
Artem B. Bityutskiy 已提交
1301

1302 1303 1304
	if (!val)
		return -EINVAL;

A
Artem B. Bityutskiy 已提交
1305
	if (mtd_devs == UBI_MAX_DEVICES) {
A
Artem Bityutskiy 已提交
1306
		printk(KERN_ERR "UBI error: too many parameters, max. is %d\n",
A
Artem B. Bityutskiy 已提交
1307 1308 1309 1310 1311 1312
		       UBI_MAX_DEVICES);
		return -EINVAL;
	}

	len = strnlen(val, MTD_PARAM_LEN_MAX);
	if (len == MTD_PARAM_LEN_MAX) {
A
Artem Bityutskiy 已提交
1313 1314
		printk(KERN_ERR "UBI error: parameter \"%s\" is too long, "
		       "max. is %d\n", val, MTD_PARAM_LEN_MAX);
A
Artem B. Bityutskiy 已提交
1315 1316 1317 1318
		return -EINVAL;
	}

	if (len == 0) {
A
Artem Bityutskiy 已提交
1319 1320
		printk(KERN_WARNING "UBI warning: empty 'mtd=' parameter - "
		       "ignored\n");
A
Artem B. Bityutskiy 已提交
1321 1322 1323 1324 1325 1326 1327
		return 0;
	}

	strcpy(buf, val);

	/* Get rid of the final newline */
	if (buf[len - 1] == '\n')
1328
		buf[len - 1] = '\0';
A
Artem B. Bityutskiy 已提交
1329

A
Artem Bityutskiy 已提交
1330
	for (i = 0; i < 2; i++)
A
Artem B. Bityutskiy 已提交
1331 1332 1333
		tokens[i] = strsep(&pbuf, ",");

	if (pbuf) {
A
Artem Bityutskiy 已提交
1334 1335
		printk(KERN_ERR "UBI error: too many arguments at \"%s\"\n",
		       val);
A
Artem B. Bityutskiy 已提交
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
		return -EINVAL;
	}

	p = &mtd_dev_param[mtd_devs];
	strcpy(&p->name[0], tokens[0]);

	if (tokens[1])
		p->vid_hdr_offs = bytes_str_to_int(tokens[1]);

	if (p->vid_hdr_offs < 0)
		return p->vid_hdr_offs;

	mtd_devs += 1;
	return 0;
}

module_param_call(mtd, ubi_mtd_param_parse, NULL, NULL, 000);
MODULE_PARM_DESC(mtd, "MTD devices to attach. Parameter format: "
A
Artem Bityutskiy 已提交
1354
		      "mtd=<name|num>[,<vid_hdr_offs>].\n"
A
Artem B. Bityutskiy 已提交
1355
		      "Multiple \"mtd\" parameters may be specified.\n"
A
Artem Bityutskiy 已提交
1356 1357 1358 1359 1360 1361 1362
		      "MTD devices may be specified by their number or name.\n"
		      "Optional \"vid_hdr_offs\" parameter specifies UBI VID "
		      "header position and data starting position to be used "
		      "by UBI.\n"
		      "Example: mtd=content,1984 mtd=4 - attach MTD device"
		      "with name \"content\" using VID header offset 1984, and "
		      "MTD device number 4 with default VID header offset.");
A
Artem B. Bityutskiy 已提交
1363 1364 1365 1366 1367

MODULE_VERSION(__stringify(UBI_VERSION));
MODULE_DESCRIPTION("UBI - Unsorted Block Images");
MODULE_AUTHOR("Artem Bityutskiy");
MODULE_LICENSE("GPL");