blob: 07f9a72ea08bf090392f66f6b4fc7a31d4ab7f5c [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
11//config: Attach MTD device to an UBI device.
12//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
18//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
25//config: Create a UBI volume.
26//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
32//config: Delete a UBI volume.
33//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
39//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
46//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))
Reuben Dowle3e2834f2011-02-05 03:18:08 +010055
Denys Vlasenkod1993f12011-04-26 04:32:05 +020056//kbuild:lib-$(CONFIG_UBIATTACH) += ubi_tools.o
57//kbuild:lib-$(CONFIG_UBIDETACH) += ubi_tools.o
58//kbuild:lib-$(CONFIG_UBIMKVOL) += ubi_tools.o
59//kbuild:lib-$(CONFIG_UBIRMVOL) += ubi_tools.o
60//kbuild:lib-$(CONFIG_UBIRSVOL) += ubi_tools.o
61//kbuild:lib-$(CONFIG_UBIUPDATEVOL) += ubi_tools.o
Baruch Siach3324c962010-06-16 12:22:58 +020062
63#include "libbb.h"
Denys Vlasenko7fe1e3f2012-03-11 18:04:14 +010064/* Some versions of kernel have broken headers, need this hack */
65#ifndef __packed
66# define __packed __attribute__((packed))
67#endif
Baruch Siach3324c962010-06-16 12:22:58 +020068#include <mtd/ubi-user.h>
69
Reuben Dowle3e2834f2011-02-05 03:18:08 +010070#define do_attach (ENABLE_UBIATTACH && applet_name[3] == 'a')
71#define do_detach (ENABLE_UBIDETACH && applet_name[3] == 'd')
72#define do_mkvol (ENABLE_UBIMKVOL && applet_name[3] == 'm')
73#define do_rmvol (ENABLE_UBIRMVOL && applet_name[4] == 'm')
74#define do_rsvol (ENABLE_UBIRSVOL && applet_name[4] == 's')
Reuben Dowlea6108422011-04-26 04:27:48 +020075#define do_update (ENABLE_UBIUPDATEVOL && applet_name[3] == 'u')
Baruch Siach3324c962010-06-16 12:22:58 +020076
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +020077static unsigned get_num_from_file(const char *path, unsigned max, const char *errmsg)
78{
79 char buf[sizeof(long long)*3];
80 unsigned long long num;
Denys Vlasenko0bfb9c22011-04-26 04:31:03 +020081
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +020082 if (open_read_close(path, buf, sizeof(buf)) < 0)
83 bb_perror_msg_and_die(errmsg, path);
84 /* It can be \n terminated, xatoull won't work well */
85 if (sscanf(buf, "%llu", &num) != 1 || num > max)
86 bb_error_msg_and_die(errmsg, path);
87 return num;
88}
89
90/* To prevent malloc(1G) accidents */
91#define MAX_SANE_ERASEBLOCK (16*1024*1024)
Baruch Siach3324c962010-06-16 12:22:58 +020092
Reuben Dowle3e2834f2011-02-05 03:18:08 +010093int ubi_tools_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
94int ubi_tools_main(int argc UNUSED_PARAM, char **argv)
Baruch Siach3324c962010-06-16 12:22:58 +020095{
Denys Vlasenkoe9b3fcc2013-06-30 02:47:45 +020096 static const struct suffix_mult size_suffixes[] = {
97 { "KiB", 1024 },
98 { "MiB", 1024*1024 },
99 { "GiB", 1024*1024*1024 },
100 { "", 0 }
101 };
102
Baruch Siach3324c962010-06-16 12:22:58 +0200103 unsigned opts;
104 char *ubi_ctrl;
Baruch Siach3324c962010-06-16 12:22:58 +0200105 int fd;
106 int mtd_num;
107 int dev_num = UBI_DEV_NUM_AUTO;
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100108 int vol_id = UBI_VOL_NUM_AUTO;
Micke Prag07fa09a2014-11-02 11:08:24 +0100109 int vid_hdr_offset = 0;
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200110 char *vol_name;
111 unsigned long long size_bytes = size_bytes; /* for compiler */
112 char *size_bytes_str;
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100113 int alignment = 1;
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200114 char *type;
115 union {
116 struct ubi_attach_req attach_req;
117 struct ubi_mkvol_req mkvol_req;
118 struct ubi_rsvol_req rsvol_req;
119 } req_structs;
120#define attach_req req_structs.attach_req
121#define mkvol_req req_structs.mkvol_req
122#define rsvol_req req_structs.rsvol_req
123 char path[sizeof("/sys/class/ubi/ubi%d_%d/usable_eb_size")
124 + 2 * sizeof(int)*3 + /*just in case:*/ 16];
125#define path_sys_class_ubi_ubi (path + sizeof("/sys/class/ubi/ubi")-1)
126
Paul B. Henson985345d2013-08-04 21:07:20 +0200127 strcpy(path, "/sys/class/ubi/ubi");
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200128 memset(&req_structs, 0, sizeof(req_structs));
Baruch Siach3324c962010-06-16 12:22:58 +0200129
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200130#define OPTION_m (1 << 0)
131#define OPTION_d (1 << 1)
132#define OPTION_n (1 << 2)
133#define OPTION_N (1 << 3)
134#define OPTION_s (1 << 4)
135#define OPTION_a (1 << 5)
136#define OPTION_t (1 << 6)
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200137 if (do_mkvol) {
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200138 opt_complementary = "-1";
139 opts = getopt32(argv, "md:+n:+N:s:a:+t:O:+",
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200140 &dev_num, &vol_id,
Micke Prag07fa09a2014-11-02 11:08:24 +0100141 &vol_name, &size_bytes_str, &alignment, &type,
142 &vid_hdr_offset
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200143 );
144 } else
145 if (do_update) {
146 opt_complementary = "-1";
147 opts = getopt32(argv, "s:at", &size_bytes_str);
148 opts *= OPTION_s;
149 } else {
Denys Vlasenko237bedd2016-07-06 21:58:02 +0200150 opt_complementary = "-1";
151 opts = getopt32(argv, "m:+d:+n:+N:s:a:+t:",
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200152 &mtd_num, &dev_num, &vol_id,
153 &vol_name, &size_bytes_str, &alignment, &type
154 );
155 }
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200156
157 if (opts & OPTION_s)
Denys Vlasenkoe9b3fcc2013-06-30 02:47:45 +0200158 size_bytes = xatoull_sfx(size_bytes_str, size_suffixes);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200159 argv += optind;
Denys Vlasenkof798ba92013-06-30 02:46:44 +0200160 ubi_ctrl = *argv++;
Baruch Siach3324c962010-06-16 12:22:58 +0200161
162 fd = xopen(ubi_ctrl, O_RDWR);
Denys Vlasenko8d3e2252010-08-31 12:42:06 +0200163 //xfstat(fd, &st, ubi_ctrl);
Baruch Siach3324c962010-06-16 12:22:58 +0200164 //if (!S_ISCHR(st.st_mode))
Denys Vlasenko8d3e2252010-08-31 12:42:06 +0200165 // bb_error_msg_and_die("%s: not a char device", ubi_ctrl);
Baruch Siach3324c962010-06-16 12:22:58 +0200166
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200167//usage:#define ubiattach_trivial_usage
Micke Prag07fa09a2014-11-02 11:08:24 +0100168//usage: "-m MTD_NUM [-d UBI_NUM] [-O VID_HDR_OFF] UBI_CTRL_DEV"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200169//usage:#define ubiattach_full_usage "\n\n"
170//usage: "Attach MTD device to UBI\n"
171//usage: "\n -m MTD_NUM MTD device number to attach"
172//usage: "\n -d UBI_NUM UBI device number to assign"
Micke Prag07fa09a2014-11-02 11:08:24 +0100173//usage: "\n -O VID_HDR_OFF VID header offset"
Baruch Siach3324c962010-06-16 12:22:58 +0200174 if (do_attach) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200175 if (!(opts & OPTION_m))
Baruch Siach3324c962010-06-16 12:22:58 +0200176 bb_error_msg_and_die("%s device not specified", "MTD");
177
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200178 attach_req.mtd_num = mtd_num;
179 attach_req.ubi_num = dev_num;
Micke Prag07fa09a2014-11-02 11:08:24 +0100180 attach_req.vid_hdr_offset = vid_hdr_offset;
Baruch Siach3324c962010-06-16 12:22:58 +0200181
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200182 xioctl(fd, UBI_IOCATT, &attach_req);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100183 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200184
185//usage:#define ubidetach_trivial_usage
186//usage: "-d UBI_NUM UBI_CTRL_DEV"
187//usage:#define ubidetach_full_usage "\n\n"
188//usage: "Detach MTD device from UBI\n"
189//usage: "\n -d UBI_NUM UBI device number"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100190 if (do_detach) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200191 if (!(opts & OPTION_d))
Baruch Siach3324c962010-06-16 12:22:58 +0200192 bb_error_msg_and_die("%s device not specified", "UBI");
193
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200194 /* FIXME? kernel expects int32_t* here: */
Baruch Siach3324c962010-06-16 12:22:58 +0200195 xioctl(fd, UBI_IOCDET, &dev_num);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100196 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200197
198//usage:#define ubimkvol_trivial_usage
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200199//usage: "-N NAME [-s SIZE | -m] UBI_DEVICE"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200200//usage:#define ubimkvol_full_usage "\n\n"
201//usage: "Create UBI volume\n"
202//usage: "\n -a ALIGNMENT Volume alignment (default 1)"
203//usage: "\n -m Set volume size to maximum available"
204//usage: "\n -n VOLID Volume ID. If not specified,"
205//usage: "\n assigned automatically"
206//usage: "\n -N NAME Volume name"
207//usage: "\n -s SIZE Size in bytes"
208//usage: "\n -t TYPE Volume type (static|dynamic)"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100209 if (do_mkvol) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200210 if (opts & OPTION_m) {
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700211 unsigned leb_avail;
212 unsigned leb_size;
213 unsigned num;
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700214 char *p;
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700215
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200216 num = ubi_devnum_from_devname(ubi_ctrl);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200217 p = path_sys_class_ubi_ubi + sprintf(path_sys_class_ubi_ubi, "%u/", num);
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700218
219 strcpy(p, "avail_eraseblocks");
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200220 leb_avail = get_num_from_file(path, UINT_MAX, "Can't get available eraseblocks from '%s'");
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700221
222 strcpy(p, "eraseblock_size");
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200223 leb_size = get_num_from_file(path, MAX_SANE_ERASEBLOCK, "Can't get eraseblock size from '%s'");
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700224
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200225 size_bytes = leb_avail * (unsigned long long)leb_size;
226 //if (size_bytes <= 0)
227 // bb_error_msg_and_die("%s invalid maximum size calculated", "UBI");
Paul B. Hensonf86404f2013-06-02 17:48:05 -0700228 } else
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100229 if (!(opts & OPTION_s))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200230 bb_error_msg_and_die("size not specified");
231
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100232 if (!(opts & OPTION_N))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200233 bb_error_msg_and_die("name not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100234
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200235 mkvol_req.vol_id = vol_id;
236 mkvol_req.vol_type = UBI_DYNAMIC_VOLUME;
237 if ((opts & OPTION_t) && type[0] == 's')
238 mkvol_req.vol_type = UBI_STATIC_VOLUME;
239 mkvol_req.alignment = alignment;
240 mkvol_req.bytes = size_bytes; /* signed int64_t */
241 strncpy(mkvol_req.name, vol_name, UBI_MAX_VOLUME_NAME);
242 mkvol_req.name_len = strlen(vol_name);
243 if (mkvol_req.name_len > UBI_MAX_VOLUME_NAME)
244 bb_error_msg_and_die("volume name too long: '%s'", vol_name);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100245
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200246 xioctl(fd, UBI_IOCMKVOL, &mkvol_req);
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100247 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200248
249//usage:#define ubirmvol_trivial_usage
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200250//usage: "-n VOLID / -N VOLNAME UBI_DEVICE"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200251//usage:#define ubirmvol_full_usage "\n\n"
252//usage: "Remove UBI volume\n"
253//usage: "\n -n VOLID Volume ID"
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200254//usage: "\n -N VOLNAME Volume name"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100255 if (do_rmvol) {
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200256 if (!(opts & (OPTION_n|OPTION_N)))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200257 bb_error_msg_and_die("volume id not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100258
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200259 if (opts & OPTION_N) {
260 unsigned num = ubi_devnum_from_devname(ubi_ctrl);
Denys Vlasenko6aab9922016-04-03 22:24:51 +0200261 vol_id = ubi_get_volid_by_name(num, vol_name);
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200262 }
263
264 if (sizeof(vol_id) != 4) {
265 /* kernel expects int32_t* in this ioctl */
266 int32_t t = vol_id;
267 xioctl(fd, UBI_IOCRMVOL, &t);
268 } else {
269 xioctl(fd, UBI_IOCRMVOL, &vol_id);
270 }
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100271 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200272
273//usage:#define ubirsvol_trivial_usage
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200274//usage: "-n VOLID -s SIZE UBI_DEVICE"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200275//usage:#define ubirsvol_full_usage "\n\n"
276//usage: "Resize UBI volume\n"
277//usage: "\n -n VOLID Volume ID"
278//usage: "\n -s SIZE Size in bytes"
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100279 if (do_rsvol) {
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100280 if (!(opts & OPTION_s))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200281 bb_error_msg_and_die("size not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100282 if (!(opts & OPTION_n))
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200283 bb_error_msg_and_die("volume id not specified");
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100284
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200285 rsvol_req.bytes = size_bytes; /* signed int64_t */
286 rsvol_req.vol_id = vol_id;
Reuben Dowle3e2834f2011-02-05 03:18:08 +0100287
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200288 xioctl(fd, UBI_IOCRSVOL, &rsvol_req);
Reuben Dowlea6108422011-04-26 04:27:48 +0200289 } else
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200290
291//usage:#define ubiupdatevol_trivial_usage
Sven Eisenbergb068cf22016-04-03 21:53:12 +0200292//usage: "[-t | [-s SIZE] IMG_FILE] UBI_DEVICE"
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200293//usage:#define ubiupdatevol_full_usage "\n\n"
294//usage: "Update UBI volume\n"
295//usage: "\n -t Truncate to zero size"
296//usage: "\n -s SIZE Size in bytes to resize to"
Reuben Dowlea6108422011-04-26 04:27:48 +0200297 if (do_update) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200298 int64_t bytes64;
Reuben Dowlea6108422011-04-26 04:27:48 +0200299
300 if (opts & OPTION_t) {
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200301 /* truncate the volume by starting an update for size 0 */
302 bytes64 = 0;
303 /* this ioctl expects int64_t* parameter */
304 xioctl(fd, UBI_IOCVOLUP, &bytes64);
Reuben Dowlea6108422011-04-26 04:27:48 +0200305 }
306 else {
307 struct stat st;
Reuben Dowlea6108422011-04-26 04:27:48 +0200308 unsigned ubinum, volnum;
309 unsigned leb_size;
310 ssize_t len;
311 char *input_data;
312
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200313 /* Assume that device is in normal format. */
314 /* Removes need for scanning sysfs tree as full libubi does. */
Reuben Dowlea6108422011-04-26 04:27:48 +0200315 if (sscanf(ubi_ctrl, "/dev/ubi%u_%u", &ubinum, &volnum) != 2)
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200316 bb_error_msg_and_die("wrong format of UBI device name");
Reuben Dowlea6108422011-04-26 04:27:48 +0200317
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200318 sprintf(path_sys_class_ubi_ubi, "%u_%u/usable_eb_size", ubinum, volnum);
319 leb_size = get_num_from_file(path, MAX_SANE_ERASEBLOCK, "Can't get usable eraseblock size from '%s'");
Reuben Dowlea6108422011-04-26 04:27:48 +0200320
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200321 if (!(opts & OPTION_s)) {
322 if (!*argv)
Reuben Dowlea6108422011-04-26 04:27:48 +0200323 bb_show_usage();
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200324 xmove_fd(xopen(*argv, O_RDONLY), STDIN_FILENO);
Denys Vlasenko186b98a2014-09-25 22:10:32 +0200325 xfstat(STDIN_FILENO, &st, *argv);
326 size_bytes = st.st_size;
Reuben Dowlea6108422011-04-26 04:27:48 +0200327 }
328
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200329 bytes64 = size_bytes;
330 /* this ioctl expects signed int64_t* parameter */
331 xioctl(fd, UBI_IOCVOLUP, &bytes64);
Reuben Dowlea6108422011-04-26 04:27:48 +0200332
333 input_data = xmalloc(leb_size);
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200334 while ((len = full_read(STDIN_FILENO, input_data, leb_size)) > 0) {
Reuben Dowlea6108422011-04-26 04:27:48 +0200335 xwrite(fd, input_data, len);
336 }
337 if (len < 0)
Denys Vlasenko65bdf0b2013-06-30 02:38:18 +0200338 bb_perror_msg_and_die("UBI volume update failed");
Reuben Dowlea6108422011-04-26 04:27:48 +0200339 }
Baruch Siach3324c962010-06-16 12:22:58 +0200340 }
341
342 if (ENABLE_FEATURE_CLEAN_UP)
343 close(fd);
344
345 return EXIT_SUCCESS;
346}