blob: 123551e94fdd27f8ecc42ea10c8611c5fbee7d00 [file] [log] [blame]
Baruch Siach3324c962010-06-16 12:22:58 +02001/* Ported to busybox from mtd-utils.
2 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Licensed under GPLv2, see file LICENSE in this source tree.
Baruch Siach3324c962010-06-16 12:22:58 +02004 */
5
Baruch Siach3324c962010-06-16 12:22:58 +02006//config:config UBIATTACH
Denys Vlasenko4eed2c62017-07-18 22:01:24 +02007//config: bool "ubiattach (4.7 kb)"
Reuben Dowle3e2834f2011-02-05 03:18:08 +01008//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +01009//config: select PLATFORM_LINUX
Baruch Siach3324c962010-06-16 12:22:58 +020010//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020011//config: Attach MTD device to an UBI device.
Baruch Siach3324c962010-06-16 12:22:58 +020012//config:
13//config:config UBIDETACH
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020014//config: bool "ubidetach (4.6 kb)"
Reuben Dowle3e2834f2011-02-05 03:18:08 +010015//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010016//config: select PLATFORM_LINUX
Baruch Siach3324c962010-06-16 12:22:58 +020017//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020018//config: Detach MTD device from an UBI device.
Reuben Dowle3e2834f2011-02-05 03:18:08 +010019//config:
20//config:config UBIMKVOL
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020021//config: bool "ubimkvol (5.8 kb)"
Reuben Dowle3e2834f2011-02-05 03:18:08 +010022//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010023//config: select PLATFORM_LINUX
Reuben Dowle3e2834f2011-02-05 03:18:08 +010024//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020025//config: Create a UBI volume.
Reuben Dowle3e2834f2011-02-05 03:18:08 +010026//config:
27//config:config UBIRMVOL
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020028//config: bool "ubirmvol (5.2 kb)"
Reuben Dowle3e2834f2011-02-05 03:18:08 +010029//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010030//config: select PLATFORM_LINUX
Reuben Dowle3e2834f2011-02-05 03:18:08 +010031//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020032//config: Delete a UBI volume.
Reuben Dowle3e2834f2011-02-05 03:18:08 +010033//config:
34//config:config UBIRSVOL
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020035//config: bool "ubirsvol (4.6 kb)"
Reuben Dowle3e2834f2011-02-05 03:18:08 +010036//config: default y
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +010037//config: select PLATFORM_LINUX
Reuben Dowle3e2834f2011-02-05 03:18:08 +010038//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020039//config: Resize a UBI volume.
Reuben Dowlea6108422011-04-26 04:27:48 +020040//config:
41//config:config UBIUPDATEVOL
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020042//config: bool "ubiupdatevol (5.6 kb)"
Reuben Dowlea6108422011-04-26 04:27:48 +020043//config: default y
44//config: select PLATFORM_LINUX
45//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020046//config: Update a UBI volume.
Reuben Dowle3e2834f2011-02-05 03:18:08 +010047
Denys Vlasenko205d48e2017-01-29 14:57:33 +010048// APPLET_ODDNAME:name main location suid_type help
49//applet:IF_UBIATTACH( APPLET_ODDNAME(ubiattach, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubiattach))
50//applet:IF_UBIDETACH( APPLET_ODDNAME(ubidetach, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubidetach))
51//applet:IF_UBIMKVOL( APPLET_ODDNAME(ubimkvol, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubimkvol))
52//applet:IF_UBIRMVOL( APPLET_ODDNAME(ubirmvol, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubirmvol))
53//applet:IF_UBIRSVOL( APPLET_ODDNAME(ubirsvol, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubirsvol))
Reuben Dowlea6108422011-04-26 04:27:48 +020054//applet:IF_UBIUPDATEVOL(APPLET_ODDNAME(ubiupdatevol, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubiupdatevol))
Denys Vlasenko798b9452017-08-07 16:00:25 +020055/* not NOEXEC: if flash operation stalls, use less memory in "hung" process */
Reuben Dowle3e2834f2011-02-05 03:18:08 +010056
Denys Vlasenkod1993f12011-04-26 04:32:05 +020057//kbuild:lib-$(CONFIG_UBIATTACH) += ubi_tools.o
58//kbuild:lib-$(CONFIG_UBIDETACH) += ubi_tools.o
59//kbuild:lib-$(CONFIG_UBIMKVOL) += ubi_tools.o
60//kbuild:lib-$(CONFIG_UBIRMVOL) += ubi_tools.o
61//kbuild:lib-$(CONFIG_UBIRSVOL) += ubi_tools.o
62//kbuild:lib-$(CONFIG_UBIUPDATEVOL) += ubi_tools.o
Baruch Siach3324c962010-06-16 12:22:58 +020063
64#include "libbb.h"
Denys Vlasenko7fe1e3f2012-03-11 18:04:14 +010065/* Some versions of kernel have broken headers, need this hack */
66#ifndef __packed
67# define __packed __attribute__((packed))
68#endif
Baruch Siach3324c962010-06-16 12:22:58 +020069#include <mtd/ubi-user.h>
70
Denys Vlasenko115e0a72017-08-07 02:55:33 +020071#define UBI_APPLET_CNT (0 \
72 + ENABLE_UBIATTACH \
73 + ENABLE_UBIDETACH \
74 + ENABLE_UBIMKVOL \
75 + ENABLE_UBIRMVOL \
76 + ENABLE_UBIRSVOL \
77 + ENABLE_UBIUPDATEVOL \
78 )
79
80#define do_attach (ENABLE_UBIATTACH && (UBI_APPLET_CNT == 1 || applet_name[4] == 't'))
81#define do_detach (ENABLE_UBIDETACH && (UBI_APPLET_CNT == 1 || applet_name[4] == 'e'))
82#define do_mkvol (ENABLE_UBIMKVOL && (UBI_APPLET_CNT == 1 || applet_name[4] == 'k'))
83#define do_rmvol (ENABLE_UBIRMVOL && (UBI_APPLET_CNT == 1 || applet_name[4] == 'm'))
84#define do_rsvol (ENABLE_UBIRSVOL && (UBI_APPLET_CNT == 1 || applet_name[4] == 's'))
85#define do_update (ENABLE_UBIUPDATEVOL && (UBI_APPLET_CNT == 1 || applet_name[4] == 'p'))
Baruch Siach3324c962010-06-16 12:22:58 +020086
Denys Vlasenko798b9452017-08-07 16:00:25 +020087static unsigned get_num_from_file(const char *path, unsigned max)
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +020088{
89 char buf[sizeof(long long)*3];
90 unsigned long long num;
Denys Vlasenko0bfb9c22011-04-26 04:31:03 +020091
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +020092 if (open_read_close(path, buf, sizeof(buf)) < 0)
Denys Vlasenko798b9452017-08-07 16:00:25 +020093 bb_perror_msg_and_die("can't open '%s'", path);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +020094 /* It can be \n terminated, xatoull won't work well */
95 if (sscanf(buf, "%llu", &num) != 1 || num > max)
Denys Vlasenko798b9452017-08-07 16:00:25 +020096 bb_error_msg_and_die("number in '%s' is malformed or too large", path);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +020097 return num;
98}
99
100/* To prevent malloc(1G) accidents */
101#define MAX_SANE_ERASEBLOCK (16*1024*1024)
Baruch Siach3324c962010-06-16 12:22:58 +0200102
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100103int ubi_tools_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
104int ubi_tools_main(int argc UNUSED_PARAM, char **argv)
Baruch Siach3324c962010-06-16 12:22:58 +0200105{
Denys Vlasenkoe9b3fcc2013-06-30 02:47:45 +0200106 static const struct suffix_mult size_suffixes[] = {
107 { "KiB", 1024 },
108 { "MiB", 1024*1024 },
109 { "GiB", 1024*1024*1024 },
110 { "", 0 }
111 };
112
Baruch Siach3324c962010-06-16 12:22:58 +0200113 unsigned opts;
114 char *ubi_ctrl;
Baruch Siach3324c962010-06-16 12:22:58 +0200115 int fd;
116 int mtd_num;
117 int dev_num = UBI_DEV_NUM_AUTO;
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100118 int vol_id = UBI_VOL_NUM_AUTO;
Micke Prag07fa09a2014-11-02 11:08:24 +0100119 int vid_hdr_offset = 0;
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200120 char *vol_name;
121 unsigned long long size_bytes = size_bytes; /* for compiler */
122 char *size_bytes_str;
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100123 int alignment = 1;
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200124 char *type;
125 union {
126 struct ubi_attach_req attach_req;
127 struct ubi_mkvol_req mkvol_req;
128 struct ubi_rsvol_req rsvol_req;
129 } req_structs;
130#define attach_req req_structs.attach_req
131#define mkvol_req req_structs.mkvol_req
132#define rsvol_req req_structs.rsvol_req
133 char path[sizeof("/sys/class/ubi/ubi%d_%d/usable_eb_size")
134 + 2 * sizeof(int)*3 + /*just in case:*/ 16];
135#define path_sys_class_ubi_ubi (path + sizeof("/sys/class/ubi/ubi")-1)
136
Paul B. Henson985345d2013-08-04 21:07:20 +0200137 strcpy(path, "/sys/class/ubi/ubi");
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200138 memset(&req_structs, 0, sizeof(req_structs));
Baruch Siach3324c962010-06-16 12:22:58 +0200139
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200140#define OPTION_m (1 << 0)
141#define OPTION_d (1 << 1)
142#define OPTION_n (1 << 2)
143#define OPTION_N (1 << 3)
144#define OPTION_s (1 << 4)
145#define OPTION_a (1 << 5)
146#define OPTION_t (1 << 6)
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200147 if (do_mkvol) {
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200148 opt_complementary = "-1";
149 opts = getopt32(argv, "md:+n:+N:s:a:+t:O:+",
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200150 &dev_num, &vol_id,
Micke Prag07fa09a2014-11-02 11:08:24 +0100151 &vol_name, &size_bytes_str, &alignment, &type,
152 &vid_hdr_offset
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200153 );
154 } else
155 if (do_update) {
156 opt_complementary = "-1";
157 opts = getopt32(argv, "s:at", &size_bytes_str);
158 opts *= OPTION_s;
159 } else {
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200160 opt_complementary = "-1";
161 opts = getopt32(argv, "m:+d:+n:+N:s:a:+t:",
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200162 &mtd_num, &dev_num, &vol_id,
163 &vol_name, &size_bytes_str, &alignment, &type
164 );
165 }
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200166
167 if (opts & OPTION_s)
Denys Vlasenkoe9b3fcc2013-06-30 02:47:45 +0200168 size_bytes = xatoull_sfx(size_bytes_str, size_suffixes);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200169 argv += optind;
Denys Vlasenkof798ba92013-06-30 02:46:44 +0200170 ubi_ctrl = *argv++;
Baruch Siach3324c962010-06-16 12:22:58 +0200171
172 fd = xopen(ubi_ctrl, O_RDWR);
Denys Vlasenko8d3e2252010-08-31 12:42:06 +0200173 //xfstat(fd, &st, ubi_ctrl);
Baruch Siach3324c962010-06-16 12:22:58 +0200174 //if (!S_ISCHR(st.st_mode))
Denys Vlasenko8d3e2252010-08-31 12:42:06 +0200175 // bb_error_msg_and_die("%s: not a char device", ubi_ctrl);
Baruch Siach3324c962010-06-16 12:22:58 +0200176
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200177//usage:#define ubiattach_trivial_usage
Micke Prag07fa09a2014-11-02 11:08:24 +0100178//usage: "-m MTD_NUM [-d UBI_NUM] [-O VID_HDR_OFF] UBI_CTRL_DEV"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200179//usage:#define ubiattach_full_usage "\n\n"
180//usage: "Attach MTD device to UBI\n"
181//usage: "\n -m MTD_NUM MTD device number to attach"
182//usage: "\n -d UBI_NUM UBI device number to assign"
Micke Prag07fa09a2014-11-02 11:08:24 +0100183//usage: "\n -O VID_HDR_OFF VID header offset"
Baruch Siach3324c962010-06-16 12:22:58 +0200184 if (do_attach) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200185 if (!(opts & OPTION_m))
Baruch Siach3324c962010-06-16 12:22:58 +0200186 bb_error_msg_and_die("%s device not specified", "MTD");
187
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200188 attach_req.mtd_num = mtd_num;
189 attach_req.ubi_num = dev_num;
Micke Prag07fa09a2014-11-02 11:08:24 +0100190 attach_req.vid_hdr_offset = vid_hdr_offset;
Baruch Siach3324c962010-06-16 12:22:58 +0200191
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200192 xioctl(fd, UBI_IOCATT, &attach_req);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100193 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200194
195//usage:#define ubidetach_trivial_usage
196//usage: "-d UBI_NUM UBI_CTRL_DEV"
197//usage:#define ubidetach_full_usage "\n\n"
198//usage: "Detach MTD device from UBI\n"
199//usage: "\n -d UBI_NUM UBI device number"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100200 if (do_detach) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200201 if (!(opts & OPTION_d))
Baruch Siach3324c962010-06-16 12:22:58 +0200202 bb_error_msg_and_die("%s device not specified", "UBI");
203
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200204 /* FIXME? kernel expects int32_t* here: */
Baruch Siach3324c962010-06-16 12:22:58 +0200205 xioctl(fd, UBI_IOCDET, &dev_num);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100206 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200207
208//usage:#define ubimkvol_trivial_usage
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200209//usage: "-N NAME [-s SIZE | -m] UBI_DEVICE"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200210//usage:#define ubimkvol_full_usage "\n\n"
211//usage: "Create UBI volume\n"
212//usage: "\n -a ALIGNMENT Volume alignment (default 1)"
213//usage: "\n -m Set volume size to maximum available"
214//usage: "\n -n VOLID Volume ID. If not specified,"
215//usage: "\n assigned automatically"
216//usage: "\n -N NAME Volume name"
217//usage: "\n -s SIZE Size in bytes"
218//usage: "\n -t TYPE Volume type (static|dynamic)"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100219 if (do_mkvol) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200220 if (opts & OPTION_m) {
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700221 unsigned leb_avail;
222 unsigned leb_size;
223 unsigned num;
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700224 char *p;
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700225
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200226 num = ubi_devnum_from_devname(ubi_ctrl);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200227 p = path_sys_class_ubi_ubi + sprintf(path_sys_class_ubi_ubi, "%u/", num);
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700228
229 strcpy(p, "avail_eraseblocks");
Denys Vlasenko798b9452017-08-07 16:00:25 +0200230 leb_avail = get_num_from_file(path, UINT_MAX);
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700231
232 strcpy(p, "eraseblock_size");
Denys Vlasenko798b9452017-08-07 16:00:25 +0200233 leb_size = get_num_from_file(path, MAX_SANE_ERASEBLOCK);
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700234
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200235 size_bytes = leb_avail * (unsigned long long)leb_size;
236 //if (size_bytes <= 0)
237 // bb_error_msg_and_die("%s invalid maximum size calculated", "UBI");
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700238 } else
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100239 if (!(opts & OPTION_s))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200240 bb_error_msg_and_die("size not specified");
241
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100242 if (!(opts & OPTION_N))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200243 bb_error_msg_and_die("name not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100244
Denys Vlasenko798b9452017-08-07 16:00:25 +0200245 /* the structure is memset(0) above */
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200246 mkvol_req.vol_id = vol_id;
247 mkvol_req.vol_type = UBI_DYNAMIC_VOLUME;
248 if ((opts & OPTION_t) && type[0] == 's')
249 mkvol_req.vol_type = UBI_STATIC_VOLUME;
250 mkvol_req.alignment = alignment;
251 mkvol_req.bytes = size_bytes; /* signed int64_t */
Denys Vlasenko798b9452017-08-07 16:00:25 +0200252 /* strnlen avoids overflow of 16-bit field (paranoia) */
253 mkvol_req.name_len = strnlen(vol_name, UBI_MAX_VOLUME_NAME+1);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200254 if (mkvol_req.name_len > UBI_MAX_VOLUME_NAME)
255 bb_error_msg_and_die("volume name too long: '%s'", vol_name);
Denys Vlasenko798b9452017-08-07 16:00:25 +0200256 /* this is safe: .name[] is UBI_MAX_VOLUME_NAME+1 bytes */
257 strcpy(mkvol_req.name, vol_name);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100258
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200259 xioctl(fd, UBI_IOCMKVOL, &mkvol_req);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100260 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200261
262//usage:#define ubirmvol_trivial_usage
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200263//usage: "-n VOLID / -N VOLNAME UBI_DEVICE"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200264//usage:#define ubirmvol_full_usage "\n\n"
265//usage: "Remove UBI volume\n"
266//usage: "\n -n VOLID Volume ID"
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200267//usage: "\n -N VOLNAME Volume name"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100268 if (do_rmvol) {
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200269 if (!(opts & (OPTION_n|OPTION_N)))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200270 bb_error_msg_and_die("volume id not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100271
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200272 if (opts & OPTION_N) {
273 unsigned num = ubi_devnum_from_devname(ubi_ctrl);
Denys Vlasenko6aab9922016-04-03 22:24:51 +0200274 vol_id = ubi_get_volid_by_name(num, vol_name);
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200275 }
276
277 if (sizeof(vol_id) != 4) {
278 /* kernel expects int32_t* in this ioctl */
279 int32_t t = vol_id;
280 xioctl(fd, UBI_IOCRMVOL, &t);
281 } else {
282 xioctl(fd, UBI_IOCRMVOL, &vol_id);
283 }
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100284 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200285
286//usage:#define ubirsvol_trivial_usage
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200287//usage: "-n VOLID -s SIZE UBI_DEVICE"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200288//usage:#define ubirsvol_full_usage "\n\n"
289//usage: "Resize UBI volume\n"
290//usage: "\n -n VOLID Volume ID"
291//usage: "\n -s SIZE Size in bytes"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100292 if (do_rsvol) {
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100293 if (!(opts & OPTION_s))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200294 bb_error_msg_and_die("size not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100295 if (!(opts & OPTION_n))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200296 bb_error_msg_and_die("volume id not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100297
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200298 rsvol_req.bytes = size_bytes; /* signed int64_t */
299 rsvol_req.vol_id = vol_id;
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100300
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200301 xioctl(fd, UBI_IOCRSVOL, &rsvol_req);
Reuben Dowlea6108422011-04-26 04:27:48 +0200302 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200303
304//usage:#define ubiupdatevol_trivial_usage
Denys Vlasenkob34eb4a2017-08-07 03:24:29 +0200305//usage: "-t UBI_DEVICE | [-s SIZE] UBI_DEVICE IMG_FILE"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200306//usage:#define ubiupdatevol_full_usage "\n\n"
307//usage: "Update UBI volume\n"
308//usage: "\n -t Truncate to zero size"
309//usage: "\n -s SIZE Size in bytes to resize to"
Reuben Dowlea6108422011-04-26 04:27:48 +0200310 if (do_update) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200311 int64_t bytes64;
Reuben Dowlea6108422011-04-26 04:27:48 +0200312
313 if (opts & OPTION_t) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200314 /* truncate the volume by starting an update for size 0 */
315 bytes64 = 0;
316 /* this ioctl expects int64_t* parameter */
317 xioctl(fd, UBI_IOCVOLUP, &bytes64);
Reuben Dowlea6108422011-04-26 04:27:48 +0200318 }
319 else {
Reuben Dowlea6108422011-04-26 04:27:48 +0200320 unsigned ubinum, volnum;
321 unsigned leb_size;
Denys Vlasenko798b9452017-08-07 16:00:25 +0200322 char *buf;
Reuben Dowlea6108422011-04-26 04:27:48 +0200323
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200324 /* Assume that device is in normal format. */
325 /* Removes need for scanning sysfs tree as full libubi does. */
Reuben Dowlea6108422011-04-26 04:27:48 +0200326 if (sscanf(ubi_ctrl, "/dev/ubi%u_%u", &ubinum, &volnum) != 2)
Denys Vlasenko798b9452017-08-07 16:00:25 +0200327 bb_error_msg_and_die("UBI device name '%s' is not /dev/ubiN_M", ubi_ctrl);
Reuben Dowlea6108422011-04-26 04:27:48 +0200328
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200329 sprintf(path_sys_class_ubi_ubi, "%u_%u/usable_eb_size", ubinum, volnum);
Denys Vlasenko798b9452017-08-07 16:00:25 +0200330 leb_size = get_num_from_file(path, MAX_SANE_ERASEBLOCK);
Reuben Dowlea6108422011-04-26 04:27:48 +0200331
Denys Vlasenko798b9452017-08-07 16:00:25 +0200332 if (!*argv)
333 bb_show_usage();
334 if (NOT_LONE_DASH(*argv)) /* mtd-utils supports "-" as stdin */
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200335 xmove_fd(xopen(*argv, O_RDONLY), STDIN_FILENO);
Denys Vlasenko798b9452017-08-07 16:00:25 +0200336
337 if (!(opts & OPTION_s)) {
338 struct stat st;
339 xfstat(STDIN_FILENO, &st, *argv);
340 size_bytes = st.st_size;
Reuben Dowlea6108422011-04-26 04:27:48 +0200341 }
342
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200343 bytes64 = size_bytes;
344 /* this ioctl expects signed int64_t* parameter */
345 xioctl(fd, UBI_IOCVOLUP, &bytes64);
Reuben Dowlea6108422011-04-26 04:27:48 +0200346
Denys Vlasenko798b9452017-08-07 16:00:25 +0200347 /* can't use bb_copyfd_exact_size(): copy in blocks of exactly leb_size */
348 buf = xmalloc(leb_size);
349 while (size_bytes != 0) {
350 int len = full_read(STDIN_FILENO, buf, leb_size);
351 if (len <= 0) {
352 if (len < 0)
353 bb_perror_msg_and_die("read error from '%s'", *argv);
354 break;
355 }
356 if ((unsigned)len > size_bytes) {
357 /* for this case: "ubiupdatevol -s 1024000 $UBIDEV /dev/urandom" */
358 len = size_bytes;
359 }
360 xwrite(fd, buf, len);
361 size_bytes -= len;
Reuben Dowlea6108422011-04-26 04:27:48 +0200362 }
Denys Vlasenko798b9452017-08-07 16:00:25 +0200363 if (ENABLE_FEATURE_CLEAN_UP)
364 free(buf);
Reuben Dowlea6108422011-04-26 04:27:48 +0200365 }
Baruch Siach3324c962010-06-16 12:22:58 +0200366 }
367
368 if (ENABLE_FEATURE_CLEAN_UP)
369 close(fd);
370
371 return EXIT_SUCCESS;
372}