2 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include <sandboxfs.h>
26 DECLARE_GLOBAL_DATA_PTR;
28 static block_dev_desc_t *fs_dev_desc;
29 static disk_partition_t fs_partition;
30 static int fs_type = FS_TYPE_ANY;
32 static inline int fs_probe_unsupported(block_dev_desc_t *fs_dev_desc,
33 disk_partition_t *fs_partition)
35 printf("** Unrecognized filesystem type **\n");
39 static inline int fs_ls_unsupported(const char *dirname)
44 static inline int fs_read_unsupported(const char *filename, void *buf,
50 static inline int fs_write_unsupported(const char *filename, void *buf,
56 static inline void fs_close_unsupported(void)
62 int (*probe)(block_dev_desc_t *fs_dev_desc,
63 disk_partition_t *fs_partition);
64 int (*ls)(const char *dirname);
65 int (*read)(const char *filename, void *buf, int offset, int len);
66 int (*write)(const char *filename, void *buf, int offset, int len);
70 static struct fstype_info fstypes[] = {
73 .fstype = FS_TYPE_FAT,
74 .probe = fat_set_blk_dev,
77 .read = fat_read_file,
82 .fstype = FS_TYPE_EXT,
83 .probe = ext4fs_probe,
84 .close = ext4fs_close,
86 .read = ext4_read_file,
91 .fstype = FS_TYPE_SANDBOX,
92 .probe = sandbox_fs_set_blk_dev,
93 .close = sandbox_fs_close,
95 .read = fs_read_sandbox,
96 .write = fs_write_sandbox,
100 .fstype = FS_TYPE_ANY,
101 .probe = fs_probe_unsupported,
102 .close = fs_close_unsupported,
103 .ls = fs_ls_unsupported,
104 .read = fs_read_unsupported,
105 .write = fs_write_unsupported,
109 static struct fstype_info *fs_get_info(int fstype)
111 struct fstype_info *info;
114 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
115 if (fstype == info->fstype)
119 /* Return the 'unsupported' sentinel */
123 int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
125 struct fstype_info *info;
127 #ifdef CONFIG_NEEDS_MANUAL_RELOC
128 static int relocated;
131 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
133 info->probe += gd->reloc_off;
134 info->close += gd->reloc_off;
135 info->ls += gd->reloc_off;
136 info->read += gd->reloc_off;
137 info->write += gd->reloc_off;
143 part = get_device_and_partition(ifname, dev_part_str, &fs_dev_desc,
148 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
149 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
150 fstype != info->fstype)
153 if (!info->probe(fs_dev_desc, &fs_partition)) {
154 fs_type = info->fstype;
162 static void fs_close(void)
164 struct fstype_info *info = fs_get_info(fs_type);
168 fs_type = FS_TYPE_ANY;
171 int fs_ls(const char *dirname)
175 struct fstype_info *info = fs_get_info(fs_type);
177 ret = info->ls(dirname);
179 fs_type = FS_TYPE_ANY;
185 int fs_read(const char *filename, ulong addr, int offset, int len)
187 struct fstype_info *info = fs_get_info(fs_type);
192 * We don't actually know how many bytes are being read, since len==0
193 * means read the whole file.
195 buf = map_sysmem(addr, len);
196 ret = info->read(filename, buf, offset, len);
199 /* If we requested a specific number of bytes, check we got it */
200 if (ret >= 0 && len && ret != len) {
201 printf("** Unable to read file %s **\n", filename);
209 int fs_write(const char *filename, ulong addr, int offset, int len)
211 struct fstype_info *info = fs_get_info(fs_type);
216 * We don't actually know how many bytes are being read, since len==0
217 * means read the whole file.
219 buf = map_sysmem(addr, len);
220 ret = info->write(filename, buf, offset, len);
223 /* If we requested a specific number of bytes, check we got it */
224 if (ret >= 0 && len && ret != len) {
225 printf("** Unable to write file %s **\n", filename);
233 int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
234 int fstype, int cmdline_base)
237 const char *addr_str;
238 const char *filename;
245 return CMD_RET_USAGE;
247 return CMD_RET_USAGE;
249 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
253 addr = simple_strtoul(argv[3], NULL, cmdline_base);
255 addr_str = getenv("loadaddr");
256 if (addr_str != NULL)
257 addr = simple_strtoul(addr_str, NULL, 16);
259 addr = CONFIG_SYS_LOAD_ADDR;
264 filename = getenv("bootfile");
266 puts("** No boot file defined **\n");
271 bytes = simple_strtoul(argv[5], NULL, cmdline_base);
275 pos = simple_strtoul(argv[6], NULL, cmdline_base);
280 len_read = fs_read(filename, addr, pos, bytes);
281 time = get_timer(time);
285 printf("%d bytes read in %lu ms", len_read, time);
288 print_size(len_read / time * 1000, "/s");
293 setenv_hex("filesize", len_read);
298 int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
302 return CMD_RET_USAGE;
304 return CMD_RET_USAGE;
306 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
309 if (fs_ls(argc >= 4 ? argv[3] : "/"))
315 int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
316 int fstype, int cmdline_base)
319 const char *filename;
325 if (argc < 6 || argc > 7)
326 return CMD_RET_USAGE;
328 if (fs_set_blk_dev(argv[1], argv[2], fstype))
332 addr = simple_strtoul(argv[4], NULL, cmdline_base);
333 bytes = simple_strtoul(argv[5], NULL, cmdline_base);
335 pos = simple_strtoul(argv[6], NULL, cmdline_base);
340 len = fs_write(filename, addr, pos, bytes);
341 time = get_timer(time);
345 printf("%d bytes written in %lu ms", len, time);
348 print_size(len / time * 1000, "/s");