| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /*
- * Copyright (C) 2009-2013 Felix Fietkau <[email protected]>
- * Copyright (C) 2009-2013 Gabor Juhos <[email protected]>
- * Copyright (C) 2012 Jonas Gorski <[email protected]>
- * Copyright (C) 2013 Hauke Mehrtens <[email protected]>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published
- * by the Free Software Foundation.
- *
- */
- #define pr_fmt(fmt) "mtdsplit: " fmt
- #include <linux/export.h>
- #include <linux/init.h>
- #include <linux/kernel.h>
- #include <linux/magic.h>
- #include <linux/mtd/mtd.h>
- #include <linux/mtd/partitions.h>
- #include <linux/byteorder/generic.h>
- #include "mtdsplit.h"
- struct squashfs_super_block {
- __le32 s_magic;
- __le32 pad0[9];
- __le64 bytes_used;
- };
- int mtd_get_squashfs_len(struct mtd_info *master,
- size_t offset,
- size_t *squashfs_len)
- {
- struct squashfs_super_block sb;
- size_t retlen;
- int err;
- err = mtd_read(master, offset, sizeof(sb), &retlen, (void *)&sb);
- if (err || (retlen != sizeof(sb))) {
- pr_alert("error occured while reading from \"%s\"\n",
- master->name);
- return -EIO;
- }
- if (le32_to_cpu(sb.s_magic) != SQUASHFS_MAGIC) {
- pr_alert("no squashfs found in \"%s\"\n", master->name);
- return -EINVAL;
- }
- retlen = le64_to_cpu(sb.bytes_used);
- if (retlen <= 0) {
- pr_alert("squashfs is empty in \"%s\"\n", master->name);
- return -ENODEV;
- }
- if (offset + retlen > master->size) {
- pr_alert("squashfs has invalid size in \"%s\"\n",
- master->name);
- return -EINVAL;
- }
- *squashfs_len = retlen;
- return 0;
- }
- EXPORT_SYMBOL_GPL(mtd_get_squashfs_len);
|