blob: ecc8fe137f9a41c17a8e5f97065b91318546c117 [file] [log] [blame]
Sven Eisenbergcb926402016-04-03 20:12:03 +02001/* ubirename - port of the ubirename from the mtd-utils package
2 *
3 * A utility to rename one UBI volume.
4 *
5 * 2016-03-01 Sven Eisenberg <sven.eisenberg@novero.com>
6 *
7 * Licensed under GPLv2, see file LICENSE in this source tree.
8 */
9//config:config UBIRENAME
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020010//config: bool "ubirename (2.2 kb)"
Sven Eisenbergcb926402016-04-03 20:12:03 +020011//config: default y
12//config: select PLATFORM_LINUX
13//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020014//config: Utility to rename UBI volumes
Sven Eisenbergcb926402016-04-03 20:12:03 +020015
16//applet:IF_UBIRENAME(APPLET(ubirename, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenko798b9452017-08-07 16:00:25 +020017/* not NOEXEC: if flash operation stalls, use less memory in "hung" process */
Sven Eisenbergcb926402016-04-03 20:12:03 +020018
19//kbuild:lib-$(CONFIG_UBIRENAME) += ubirename.o
20
21//usage:#define ubirename_trivial_usage
22//usage: "UBI_DEVICE OLD_VOLNAME NEW_VOLNAME [OLD2 NEW2]..."
23//usage:#define ubirename_full_usage "\n\n"
24//usage: "Rename UBI volumes on UBI_DEVICE"
25
26#include "libbb.h"
27#include <mtd/mtd-user.h>
28
29#ifndef __packed
30# define __packed __attribute__((packed))
31#endif
32
33// from ubi-media.h
Sven Eisenbergb068cf22016-04-03 21:53:12 +020034#define UBI_MAX_VOLUME_NAME 127
Denys Vlasenko6aab9922016-04-03 22:24:51 +020035#define UBI_MAX_VOLUMES 128
Sven Eisenbergcb926402016-04-03 20:12:03 +020036// end ubi-media.h
37
Sven Eisenbergcb926402016-04-03 20:12:03 +020038// from ubi-user.h
39/* ioctl commands of UBI character devices */
40#define UBI_IOC_MAGIC 'o'
41
42/* Re-name volumes */
43#define UBI_IOCRNVOL _IOW(UBI_IOC_MAGIC, 3, struct ubi_rnvol_req)
44
45/* Maximum amount of UBI volumes that can be re-named at one go */
46#define UBI_MAX_RNVOL 32
47
48struct ubi_rnvol_req {
49 int32_t count;
50 int8_t padding1[12];
51 struct {
52 int32_t vol_id;
53 int16_t name_len;
54 int8_t padding2[2];
55 char name[UBI_MAX_VOLUME_NAME + 1];
56 } ents[UBI_MAX_RNVOL];
57} __packed;
58// end ubi-user.h
59
60int ubirename_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
61int ubirename_main(int argc, char **argv)
62{
63 struct ubi_rnvol_req *rnvol;
64 const char *ubi_devname;
65 unsigned ubi_devnum;
Sven Eisenbergb068cf22016-04-03 21:53:12 +020066 unsigned n;
Sven Eisenbergcb926402016-04-03 20:12:03 +020067
68 /* argc can be 4, 6, 8, ... */
69 if ((argc & 1) || (argc >>= 1) < 2)
70 bb_show_usage();
71
72 rnvol = xzalloc(sizeof(*rnvol));
73 rnvol->count = --argc;
74 if (argc > ARRAY_SIZE(rnvol->ents))
75 bb_error_msg_and_die("too many renames requested");
76
77 ubi_devname = argv[1];
Sven Eisenbergb068cf22016-04-03 21:53:12 +020078 ubi_devnum = ubi_devnum_from_devname(ubi_devname);
Sven Eisenbergcb926402016-04-03 20:12:03 +020079
80 n = 0;
81 argv += 2;
82 while (argv[0]) {
Denys Vlasenko6aab9922016-04-03 22:24:51 +020083 rnvol->ents[n].vol_id = ubi_get_volid_by_name(ubi_devnum, argv[0]);
Denys Vlasenko798b9452017-08-07 16:00:25 +020084
85 /* strnlen avoids overflow of 16-bit field (paranoia) */
86 rnvol->ents[n].name_len = strnlen(argv[1], sizeof(rnvol->ents[n].name));
Sven Eisenbergcb926402016-04-03 20:12:03 +020087 if (rnvol->ents[n].name_len >= sizeof(rnvol->ents[n].name))
88 bb_error_msg_and_die("new name '%s' is too long", argv[1]);
Denys Vlasenko798b9452017-08-07 16:00:25 +020089
Sven Eisenbergcb926402016-04-03 20:12:03 +020090 strcpy(rnvol->ents[n].name, argv[1]);
91 n++;
92 argv += 2;
93 }
94
95 xioctl(xopen(ubi_devname, O_RDONLY), UBI_IOCRNVOL, rnvol);
96
97 return 0;
98}