Denys Vlasenko | 2ab9403 | 2017-10-05 15:33:28 +0200 | [diff] [blame^] | 1 | /* |
| 2 | * Ported to busybox from mtd-utils. |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 3 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 4 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 5 | */ |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 6 | //config:config UBIATTACH |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 7 | //config: bool "ubiattach (4.7 kb)" |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 8 | //config: default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 9 | //config: select PLATFORM_LINUX |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 10 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 11 | //config: Attach MTD device to an UBI device. |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 12 | //config: |
| 13 | //config:config UBIDETACH |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 14 | //config: bool "ubidetach (4.6 kb)" |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 15 | //config: default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 16 | //config: select PLATFORM_LINUX |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 17 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 18 | //config: Detach MTD device from an UBI device. |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 19 | //config: |
| 20 | //config:config UBIMKVOL |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 21 | //config: bool "ubimkvol (5.8 kb)" |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 22 | //config: default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 23 | //config: select PLATFORM_LINUX |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 24 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 25 | //config: Create a UBI volume. |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 26 | //config: |
| 27 | //config:config UBIRMVOL |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 28 | //config: bool "ubirmvol (5.2 kb)" |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 29 | //config: default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 30 | //config: select PLATFORM_LINUX |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 31 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 32 | //config: Delete a UBI volume. |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 33 | //config: |
| 34 | //config:config UBIRSVOL |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 35 | //config: bool "ubirsvol (4.6 kb)" |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 36 | //config: default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 37 | //config: select PLATFORM_LINUX |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 38 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 39 | //config: Resize a UBI volume. |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 40 | //config: |
| 41 | //config:config UBIUPDATEVOL |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 42 | //config: bool "ubiupdatevol (5.6 kb)" |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 43 | //config: default y |
| 44 | //config: select PLATFORM_LINUX |
| 45 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 46 | //config: Update a UBI volume. |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 47 | |
Denys Vlasenko | 205d48e | 2017-01-29 14:57:33 +0100 | [diff] [blame] | 48 | // 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 Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 54 | //applet:IF_UBIUPDATEVOL(APPLET_ODDNAME(ubiupdatevol, ubi_tools, BB_DIR_USR_SBIN, BB_SUID_DROP, ubiupdatevol)) |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 55 | /* not NOEXEC: if flash operation stalls, use less memory in "hung" process */ |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 56 | |
Denys Vlasenko | d1993f1 | 2011-04-26 04:32:05 +0200 | [diff] [blame] | 57 | //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 Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 63 | |
| 64 | #include "libbb.h" |
Denys Vlasenko | 7fe1e3f | 2012-03-11 18:04:14 +0100 | [diff] [blame] | 65 | /* Some versions of kernel have broken headers, need this hack */ |
| 66 | #ifndef __packed |
| 67 | # define __packed __attribute__((packed)) |
| 68 | #endif |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 69 | #include <mtd/ubi-user.h> |
| 70 | |
Denys Vlasenko | 115e0a7 | 2017-08-07 02:55:33 +0200 | [diff] [blame] | 71 | #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 Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 86 | |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 87 | static unsigned get_num_from_file(const char *path, unsigned max) |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 88 | { |
| 89 | char buf[sizeof(long long)*3]; |
| 90 | unsigned long long num; |
Denys Vlasenko | 0bfb9c2 | 2011-04-26 04:31:03 +0200 | [diff] [blame] | 91 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 92 | if (open_read_close(path, buf, sizeof(buf)) < 0) |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 93 | bb_perror_msg_and_die("can't open '%s'", path); |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 94 | /* It can be \n terminated, xatoull won't work well */ |
| 95 | if (sscanf(buf, "%llu", &num) != 1 || num > max) |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 96 | bb_error_msg_and_die("number in '%s' is malformed or too large", path); |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 97 | return num; |
| 98 | } |
| 99 | |
| 100 | /* To prevent malloc(1G) accidents */ |
| 101 | #define MAX_SANE_ERASEBLOCK (16*1024*1024) |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 102 | |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 103 | int ubi_tools_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 104 | int ubi_tools_main(int argc UNUSED_PARAM, char **argv) |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 105 | { |
Denys Vlasenko | e9b3fcc | 2013-06-30 02:47:45 +0200 | [diff] [blame] | 106 | static const struct suffix_mult size_suffixes[] = { |
| 107 | { "KiB", 1024 }, |
| 108 | { "MiB", 1024*1024 }, |
| 109 | { "GiB", 1024*1024*1024 }, |
| 110 | { "", 0 } |
| 111 | }; |
| 112 | |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 113 | unsigned opts; |
| 114 | char *ubi_ctrl; |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 115 | int fd; |
| 116 | int mtd_num; |
| 117 | int dev_num = UBI_DEV_NUM_AUTO; |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 118 | int vol_id = UBI_VOL_NUM_AUTO; |
Micke Prag | 07fa09a | 2014-11-02 11:08:24 +0100 | [diff] [blame] | 119 | int vid_hdr_offset = 0; |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 120 | char *vol_name; |
| 121 | unsigned long long size_bytes = size_bytes; /* for compiler */ |
| 122 | char *size_bytes_str; |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 123 | int alignment = 1; |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 124 | 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. Henson | 985345d | 2013-08-04 21:07:20 +0200 | [diff] [blame] | 137 | strcpy(path, "/sys/class/ubi/ubi"); |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 138 | memset(&req_structs, 0, sizeof(req_structs)); |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 139 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 140 | #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 Vlasenko | 186b98a | 2014-09-25 22:10:32 +0200 | [diff] [blame] | 147 | if (do_mkvol) { |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 148 | opts = getopt32(argv, "^" "md:+n:+N:s:a:+t:O:+" "\0" "-1", |
Denys Vlasenko | 186b98a | 2014-09-25 22:10:32 +0200 | [diff] [blame] | 149 | &dev_num, &vol_id, |
Micke Prag | 07fa09a | 2014-11-02 11:08:24 +0100 | [diff] [blame] | 150 | &vol_name, &size_bytes_str, &alignment, &type, |
| 151 | &vid_hdr_offset |
Denys Vlasenko | 186b98a | 2014-09-25 22:10:32 +0200 | [diff] [blame] | 152 | ); |
| 153 | } else |
| 154 | if (do_update) { |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 155 | opts = getopt32(argv, "^" "s:at" "\0" "-1", &size_bytes_str); |
Denys Vlasenko | 186b98a | 2014-09-25 22:10:32 +0200 | [diff] [blame] | 156 | opts *= OPTION_s; |
| 157 | } else { |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 158 | opts = getopt32(argv, "^" "m:+d:+n:+N:s:a:+t:" "\0" "-1", |
Denys Vlasenko | 186b98a | 2014-09-25 22:10:32 +0200 | [diff] [blame] | 159 | &mtd_num, &dev_num, &vol_id, |
| 160 | &vol_name, &size_bytes_str, &alignment, &type |
| 161 | ); |
| 162 | } |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 163 | |
| 164 | if (opts & OPTION_s) |
Denys Vlasenko | e9b3fcc | 2013-06-30 02:47:45 +0200 | [diff] [blame] | 165 | size_bytes = xatoull_sfx(size_bytes_str, size_suffixes); |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 166 | argv += optind; |
Denys Vlasenko | f798ba9 | 2013-06-30 02:46:44 +0200 | [diff] [blame] | 167 | ubi_ctrl = *argv++; |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 168 | |
| 169 | fd = xopen(ubi_ctrl, O_RDWR); |
Denys Vlasenko | 8d3e225 | 2010-08-31 12:42:06 +0200 | [diff] [blame] | 170 | //xfstat(fd, &st, ubi_ctrl); |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 171 | //if (!S_ISCHR(st.st_mode)) |
Denys Vlasenko | 8d3e225 | 2010-08-31 12:42:06 +0200 | [diff] [blame] | 172 | // bb_error_msg_and_die("%s: not a char device", ubi_ctrl); |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 173 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 174 | //usage:#define ubiattach_trivial_usage |
Micke Prag | 07fa09a | 2014-11-02 11:08:24 +0100 | [diff] [blame] | 175 | //usage: "-m MTD_NUM [-d UBI_NUM] [-O VID_HDR_OFF] UBI_CTRL_DEV" |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 176 | //usage:#define ubiattach_full_usage "\n\n" |
| 177 | //usage: "Attach MTD device to UBI\n" |
| 178 | //usage: "\n -m MTD_NUM MTD device number to attach" |
| 179 | //usage: "\n -d UBI_NUM UBI device number to assign" |
Micke Prag | 07fa09a | 2014-11-02 11:08:24 +0100 | [diff] [blame] | 180 | //usage: "\n -O VID_HDR_OFF VID header offset" |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 181 | if (do_attach) { |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 182 | if (!(opts & OPTION_m)) |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 183 | bb_error_msg_and_die("%s device not specified", "MTD"); |
| 184 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 185 | attach_req.mtd_num = mtd_num; |
| 186 | attach_req.ubi_num = dev_num; |
Micke Prag | 07fa09a | 2014-11-02 11:08:24 +0100 | [diff] [blame] | 187 | attach_req.vid_hdr_offset = vid_hdr_offset; |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 188 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 189 | xioctl(fd, UBI_IOCATT, &attach_req); |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 190 | } else |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 191 | |
| 192 | //usage:#define ubidetach_trivial_usage |
| 193 | //usage: "-d UBI_NUM UBI_CTRL_DEV" |
| 194 | //usage:#define ubidetach_full_usage "\n\n" |
| 195 | //usage: "Detach MTD device from UBI\n" |
| 196 | //usage: "\n -d UBI_NUM UBI device number" |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 197 | if (do_detach) { |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 198 | if (!(opts & OPTION_d)) |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 199 | bb_error_msg_and_die("%s device not specified", "UBI"); |
| 200 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 201 | /* FIXME? kernel expects int32_t* here: */ |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 202 | xioctl(fd, UBI_IOCDET, &dev_num); |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 203 | } else |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 204 | |
| 205 | //usage:#define ubimkvol_trivial_usage |
Sven Eisenberg | b068cf2 | 2016-04-03 21:53:12 +0200 | [diff] [blame] | 206 | //usage: "-N NAME [-s SIZE | -m] UBI_DEVICE" |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 207 | //usage:#define ubimkvol_full_usage "\n\n" |
| 208 | //usage: "Create UBI volume\n" |
| 209 | //usage: "\n -a ALIGNMENT Volume alignment (default 1)" |
| 210 | //usage: "\n -m Set volume size to maximum available" |
| 211 | //usage: "\n -n VOLID Volume ID. If not specified," |
| 212 | //usage: "\n assigned automatically" |
| 213 | //usage: "\n -N NAME Volume name" |
| 214 | //usage: "\n -s SIZE Size in bytes" |
| 215 | //usage: "\n -t TYPE Volume type (static|dynamic)" |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 216 | if (do_mkvol) { |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 217 | if (opts & OPTION_m) { |
Paul B. Henson | f86404f | 2013-06-02 17:48:05 -0700 | [diff] [blame] | 218 | unsigned leb_avail; |
| 219 | unsigned leb_size; |
| 220 | unsigned num; |
Paul B. Henson | f86404f | 2013-06-02 17:48:05 -0700 | [diff] [blame] | 221 | char *p; |
Paul B. Henson | f86404f | 2013-06-02 17:48:05 -0700 | [diff] [blame] | 222 | |
Sven Eisenberg | b068cf2 | 2016-04-03 21:53:12 +0200 | [diff] [blame] | 223 | num = ubi_devnum_from_devname(ubi_ctrl); |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 224 | p = path_sys_class_ubi_ubi + sprintf(path_sys_class_ubi_ubi, "%u/", num); |
Paul B. Henson | f86404f | 2013-06-02 17:48:05 -0700 | [diff] [blame] | 225 | |
| 226 | strcpy(p, "avail_eraseblocks"); |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 227 | leb_avail = get_num_from_file(path, UINT_MAX); |
Paul B. Henson | f86404f | 2013-06-02 17:48:05 -0700 | [diff] [blame] | 228 | |
| 229 | strcpy(p, "eraseblock_size"); |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 230 | leb_size = get_num_from_file(path, MAX_SANE_ERASEBLOCK); |
Paul B. Henson | f86404f | 2013-06-02 17:48:05 -0700 | [diff] [blame] | 231 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 232 | size_bytes = leb_avail * (unsigned long long)leb_size; |
| 233 | //if (size_bytes <= 0) |
| 234 | // bb_error_msg_and_die("%s invalid maximum size calculated", "UBI"); |
Paul B. Henson | f86404f | 2013-06-02 17:48:05 -0700 | [diff] [blame] | 235 | } else |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 236 | if (!(opts & OPTION_s)) |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 237 | bb_error_msg_and_die("size not specified"); |
| 238 | |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 239 | if (!(opts & OPTION_N)) |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 240 | bb_error_msg_and_die("name not specified"); |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 241 | |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 242 | /* the structure is memset(0) above */ |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 243 | mkvol_req.vol_id = vol_id; |
| 244 | mkvol_req.vol_type = UBI_DYNAMIC_VOLUME; |
| 245 | if ((opts & OPTION_t) && type[0] == 's') |
| 246 | mkvol_req.vol_type = UBI_STATIC_VOLUME; |
| 247 | mkvol_req.alignment = alignment; |
| 248 | mkvol_req.bytes = size_bytes; /* signed int64_t */ |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 249 | /* strnlen avoids overflow of 16-bit field (paranoia) */ |
| 250 | mkvol_req.name_len = strnlen(vol_name, UBI_MAX_VOLUME_NAME+1); |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 251 | if (mkvol_req.name_len > UBI_MAX_VOLUME_NAME) |
| 252 | bb_error_msg_and_die("volume name too long: '%s'", vol_name); |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 253 | /* this is safe: .name[] is UBI_MAX_VOLUME_NAME+1 bytes */ |
| 254 | strcpy(mkvol_req.name, vol_name); |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 255 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 256 | xioctl(fd, UBI_IOCMKVOL, &mkvol_req); |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 257 | } else |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 258 | |
| 259 | //usage:#define ubirmvol_trivial_usage |
Sven Eisenberg | b068cf2 | 2016-04-03 21:53:12 +0200 | [diff] [blame] | 260 | //usage: "-n VOLID / -N VOLNAME UBI_DEVICE" |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 261 | //usage:#define ubirmvol_full_usage "\n\n" |
| 262 | //usage: "Remove UBI volume\n" |
| 263 | //usage: "\n -n VOLID Volume ID" |
Sven Eisenberg | b068cf2 | 2016-04-03 21:53:12 +0200 | [diff] [blame] | 264 | //usage: "\n -N VOLNAME Volume name" |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 265 | if (do_rmvol) { |
Sven Eisenberg | b068cf2 | 2016-04-03 21:53:12 +0200 | [diff] [blame] | 266 | if (!(opts & (OPTION_n|OPTION_N))) |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 267 | bb_error_msg_and_die("volume id not specified"); |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 268 | |
Sven Eisenberg | b068cf2 | 2016-04-03 21:53:12 +0200 | [diff] [blame] | 269 | if (opts & OPTION_N) { |
| 270 | unsigned num = ubi_devnum_from_devname(ubi_ctrl); |
Denys Vlasenko | 6aab992 | 2016-04-03 22:24:51 +0200 | [diff] [blame] | 271 | vol_id = ubi_get_volid_by_name(num, vol_name); |
Sven Eisenberg | b068cf2 | 2016-04-03 21:53:12 +0200 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | if (sizeof(vol_id) != 4) { |
| 275 | /* kernel expects int32_t* in this ioctl */ |
| 276 | int32_t t = vol_id; |
| 277 | xioctl(fd, UBI_IOCRMVOL, &t); |
| 278 | } else { |
| 279 | xioctl(fd, UBI_IOCRMVOL, &vol_id); |
| 280 | } |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 281 | } else |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 282 | |
| 283 | //usage:#define ubirsvol_trivial_usage |
Sven Eisenberg | b068cf2 | 2016-04-03 21:53:12 +0200 | [diff] [blame] | 284 | //usage: "-n VOLID -s SIZE UBI_DEVICE" |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 285 | //usage:#define ubirsvol_full_usage "\n\n" |
| 286 | //usage: "Resize UBI volume\n" |
| 287 | //usage: "\n -n VOLID Volume ID" |
| 288 | //usage: "\n -s SIZE Size in bytes" |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 289 | if (do_rsvol) { |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 290 | if (!(opts & OPTION_s)) |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 291 | bb_error_msg_and_die("size not specified"); |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 292 | if (!(opts & OPTION_n)) |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 293 | bb_error_msg_and_die("volume id not specified"); |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 294 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 295 | rsvol_req.bytes = size_bytes; /* signed int64_t */ |
| 296 | rsvol_req.vol_id = vol_id; |
Reuben Dowle | 3e2834f | 2011-02-05 03:18:08 +0100 | [diff] [blame] | 297 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 298 | xioctl(fd, UBI_IOCRSVOL, &rsvol_req); |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 299 | } else |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 300 | |
| 301 | //usage:#define ubiupdatevol_trivial_usage |
Denys Vlasenko | b34eb4a | 2017-08-07 03:24:29 +0200 | [diff] [blame] | 302 | //usage: "-t UBI_DEVICE | [-s SIZE] UBI_DEVICE IMG_FILE" |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 303 | //usage:#define ubiupdatevol_full_usage "\n\n" |
| 304 | //usage: "Update UBI volume\n" |
| 305 | //usage: "\n -t Truncate to zero size" |
| 306 | //usage: "\n -s SIZE Size in bytes to resize to" |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 307 | if (do_update) { |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 308 | int64_t bytes64; |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 309 | |
| 310 | if (opts & OPTION_t) { |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 311 | /* truncate the volume by starting an update for size 0 */ |
| 312 | bytes64 = 0; |
| 313 | /* this ioctl expects int64_t* parameter */ |
| 314 | xioctl(fd, UBI_IOCVOLUP, &bytes64); |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 315 | } |
| 316 | else { |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 317 | unsigned ubinum, volnum; |
| 318 | unsigned leb_size; |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 319 | char *buf; |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 320 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 321 | /* Assume that device is in normal format. */ |
| 322 | /* Removes need for scanning sysfs tree as full libubi does. */ |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 323 | if (sscanf(ubi_ctrl, "/dev/ubi%u_%u", &ubinum, &volnum) != 2) |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 324 | bb_error_msg_and_die("UBI device name '%s' is not /dev/ubiN_M", ubi_ctrl); |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 325 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 326 | sprintf(path_sys_class_ubi_ubi, "%u_%u/usable_eb_size", ubinum, volnum); |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 327 | leb_size = get_num_from_file(path, MAX_SANE_ERASEBLOCK); |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 328 | |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 329 | if (!*argv) |
| 330 | bb_show_usage(); |
| 331 | if (NOT_LONE_DASH(*argv)) /* mtd-utils supports "-" as stdin */ |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 332 | xmove_fd(xopen(*argv, O_RDONLY), STDIN_FILENO); |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 333 | |
| 334 | if (!(opts & OPTION_s)) { |
| 335 | struct stat st; |
| 336 | xfstat(STDIN_FILENO, &st, *argv); |
| 337 | size_bytes = st.st_size; |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 338 | } |
| 339 | |
Denys Vlasenko | 65bdf0b | 2013-06-30 02:38:18 +0200 | [diff] [blame] | 340 | bytes64 = size_bytes; |
| 341 | /* this ioctl expects signed int64_t* parameter */ |
| 342 | xioctl(fd, UBI_IOCVOLUP, &bytes64); |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 343 | |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 344 | /* can't use bb_copyfd_exact_size(): copy in blocks of exactly leb_size */ |
| 345 | buf = xmalloc(leb_size); |
| 346 | while (size_bytes != 0) { |
| 347 | int len = full_read(STDIN_FILENO, buf, leb_size); |
| 348 | if (len <= 0) { |
| 349 | if (len < 0) |
| 350 | bb_perror_msg_and_die("read error from '%s'", *argv); |
| 351 | break; |
| 352 | } |
| 353 | if ((unsigned)len > size_bytes) { |
| 354 | /* for this case: "ubiupdatevol -s 1024000 $UBIDEV /dev/urandom" */ |
| 355 | len = size_bytes; |
| 356 | } |
| 357 | xwrite(fd, buf, len); |
| 358 | size_bytes -= len; |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 359 | } |
Denys Vlasenko | 798b945 | 2017-08-07 16:00:25 +0200 | [diff] [blame] | 360 | if (ENABLE_FEATURE_CLEAN_UP) |
| 361 | free(buf); |
Reuben Dowle | a610842 | 2011-04-26 04:27:48 +0200 | [diff] [blame] | 362 | } |
Baruch Siach | 3324c96 | 2010-06-16 12:22:58 +0200 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | if (ENABLE_FEATURE_CLEAN_UP) |
| 366 | close(fd); |
| 367 | |
| 368 | return EXIT_SUCCESS; |
| 369 | } |