]> Git Repo - u-boot.git/blame - fs/fs.c
Merge branch 'master' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[u-boot.git] / fs / fs.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0
045fa1e1
SW
2/*
3 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
045fa1e1
SW
4 */
5
6#include <config.h>
59e890ef 7#include <errno.h>
045fa1e1 8#include <common.h>
c7694dd4 9#include <env.h>
0eb25b61 10#include <mapmem.h>
045fa1e1
SW
11#include <part.h>
12#include <ext4fs.h>
13#include <fat.h>
14#include <fs.h>
92ccc96b 15#include <sandboxfs.h>
251cee0d 16#include <ubifs_uboot.h>
0c936ee3 17#include <btrfs.h>
117e0507 18#include <asm/io.h>
9e374e7b
TR
19#include <div64.h>
20#include <linux/math64.h>
ee88eacb 21#include <efi_loader.h>
045fa1e1 22
a1b231ce
SW
23DECLARE_GLOBAL_DATA_PTR;
24
4101f687 25static struct blk_desc *fs_dev_desc;
4bbcc965 26static int fs_dev_part;
045fa1e1
SW
27static disk_partition_t fs_partition;
28static int fs_type = FS_TYPE_ANY;
29
4101f687 30static inline int fs_probe_unsupported(struct blk_desc *fs_dev_desc,
2ded0d47 31 disk_partition_t *fs_partition)
436e2b73
SG
32{
33 printf("** Unrecognized filesystem type **\n");
34 return -1;
35}
36
045fa1e1
SW
37static inline int fs_ls_unsupported(const char *dirname)
38{
045fa1e1
SW
39 return -1;
40}
41
89191d62
RC
42/* generic implementation of ls in terms of opendir/readdir/closedir */
43__maybe_unused
44static int fs_ls_generic(const char *dirname)
45{
46 struct fs_dir_stream *dirs;
47 struct fs_dirent *dent;
48 int nfiles = 0, ndirs = 0;
49
50 dirs = fs_opendir(dirname);
51 if (!dirs)
52 return -errno;
53
54 while ((dent = fs_readdir(dirs))) {
55 if (dent->type == FS_DT_DIR) {
56 printf(" %s/\n", dent->name);
57 ndirs++;
58 } else {
59 printf(" %8lld %s\n", dent->size, dent->name);
60 nfiles++;
61 }
62 }
63
64 fs_closedir(dirs);
65
66 printf("\n%d file(s), %d dir(s)\n\n", nfiles, ndirs);
67
68 return 0;
69}
70
6152916a
SW
71static inline int fs_exists_unsupported(const char *filename)
72{
73 return 0;
74}
75
d455d878 76static inline int fs_size_unsupported(const char *filename, loff_t *size)
cf659819
SW
77{
78 return -1;
79}
80
117e0507 81static inline int fs_read_unsupported(const char *filename, void *buf,
d455d878
SR
82 loff_t offset, loff_t len,
83 loff_t *actread)
045fa1e1 84{
045fa1e1
SW
85 return -1;
86}
87
a8f6ab52 88static inline int fs_write_unsupported(const char *filename, void *buf,
d455d878
SR
89 loff_t offset, loff_t len,
90 loff_t *actwrite)
a8f6ab52
SG
91{
92 return -1;
93}
94
aaa12157
JJH
95static inline int fs_ln_unsupported(const char *filename, const char *target)
96{
97 return -1;
98}
99
436e2b73
SG
100static inline void fs_close_unsupported(void)
101{
102}
103
59e890ef
CG
104static inline int fs_uuid_unsupported(char *uuid_str)
105{
106 return -1;
107}
108
4bbcc965
RC
109static inline int fs_opendir_unsupported(const char *filename,
110 struct fs_dir_stream **dirs)
111{
112 return -EACCES;
113}
114
e2519daf
AT
115static inline int fs_unlink_unsupported(const char *filename)
116{
117 return -1;
118}
119
e7074cff
AT
120static inline int fs_mkdir_unsupported(const char *dirname)
121{
122 return -1;
123}
124
436e2b73 125struct fstype_info {
045fa1e1 126 int fstype;
1a1ad8e0 127 char *name;
377202b5
SW
128 /*
129 * Is it legal to pass NULL as .probe()'s fs_dev_desc parameter? This
130 * should be false in most cases. For "virtual" filesystems which
131 * aren't based on a U-Boot block device (e.g. sandbox), this can be
ca230b09 132 * set to true. This should also be true for the dummy entry at the end
377202b5
SW
133 * of fstypes[], since that is essentially a "virtual" (non-existent)
134 * filesystem.
135 */
136 bool null_dev_desc_ok;
4101f687 137 int (*probe)(struct blk_desc *fs_dev_desc,
2ded0d47 138 disk_partition_t *fs_partition);
436e2b73 139 int (*ls)(const char *dirname);
6152916a 140 int (*exists)(const char *filename);
d455d878
SR
141 int (*size)(const char *filename, loff_t *size);
142 int (*read)(const char *filename, void *buf, loff_t offset,
143 loff_t len, loff_t *actread);
144 int (*write)(const char *filename, void *buf, loff_t offset,
145 loff_t len, loff_t *actwrite);
436e2b73 146 void (*close)(void);
59e890ef 147 int (*uuid)(char *uuid_str);
4bbcc965
RC
148 /*
149 * Open a directory stream. On success return 0 and directory
150 * stream pointer via 'dirsp'. On error, return -errno. See
151 * fs_opendir().
152 */
153 int (*opendir)(const char *filename, struct fs_dir_stream **dirsp);
154 /*
155 * Read next entry from directory stream. On success return 0
156 * and directory entry pointer via 'dentp'. On error return
157 * -errno. See fs_readdir().
158 */
159 int (*readdir)(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
160 /* see fs_closedir() */
161 void (*closedir)(struct fs_dir_stream *dirs);
e2519daf 162 int (*unlink)(const char *filename);
e7074cff 163 int (*mkdir)(const char *dirname);
aaa12157 164 int (*ln)(const char *filename, const char *target);
436e2b73
SG
165};
166
167static struct fstype_info fstypes[] = {
168#ifdef CONFIG_FS_FAT
045fa1e1
SW
169 {
170 .fstype = FS_TYPE_FAT,
1a1ad8e0 171 .name = "fat",
377202b5 172 .null_dev_desc_ok = false,
e6d52415
SG
173 .probe = fat_set_blk_dev,
174 .close = fat_close,
89191d62 175 .ls = fs_ls_generic,
b7b5f319 176 .exists = fat_exists,
cf659819 177 .size = fat_size,
e6d52415 178 .read = fat_read_file,
d8c3ea99 179#if CONFIG_IS_ENABLED(FAT_WRITE)
d455d878 180 .write = file_fat_write,
f8240ce9 181 .unlink = fat_unlink,
31a18d57 182 .mkdir = fat_mkdir,
d455d878 183#else
bd6fb31f 184 .write = fs_write_unsupported,
f8240ce9 185 .unlink = fs_unlink_unsupported,
31a18d57 186 .mkdir = fs_mkdir_unsupported,
d455d878 187#endif
59e890ef 188 .uuid = fs_uuid_unsupported,
89191d62
RC
189 .opendir = fat_opendir,
190 .readdir = fat_readdir,
191 .closedir = fat_closedir,
aaa12157 192 .ln = fs_ln_unsupported,
045fa1e1 193 },
436e2b73 194#endif
cafc429f
TFC
195
196#if CONFIG_IS_ENABLED(FS_EXT4)
045fa1e1
SW
197 {
198 .fstype = FS_TYPE_EXT,
1a1ad8e0 199 .name = "ext4",
377202b5 200 .null_dev_desc_ok = false,
e6d52415
SG
201 .probe = ext4fs_probe,
202 .close = ext4fs_close,
436e2b73 203 .ls = ext4fs_ls,
55af5c93 204 .exists = ext4fs_exists,
cf659819 205 .size = ext4fs_size,
e6d52415 206 .read = ext4_read_file,
d455d878
SR
207#ifdef CONFIG_CMD_EXT4_WRITE
208 .write = ext4_write_file,
aaa12157 209 .ln = ext4fs_create_link,
d455d878 210#else
bd6fb31f 211 .write = fs_write_unsupported,
aaa12157 212 .ln = fs_ln_unsupported,
d455d878 213#endif
59e890ef 214 .uuid = ext4fs_uuid,
4bbcc965 215 .opendir = fs_opendir_unsupported,
e2519daf 216 .unlink = fs_unlink_unsupported,
e7074cff 217 .mkdir = fs_mkdir_unsupported,
436e2b73 218 },
92ccc96b
SG
219#endif
220#ifdef CONFIG_SANDBOX
221 {
222 .fstype = FS_TYPE_SANDBOX,
1a1ad8e0 223 .name = "sandbox",
377202b5 224 .null_dev_desc_ok = true,
92ccc96b
SG
225 .probe = sandbox_fs_set_blk_dev,
226 .close = sandbox_fs_close,
227 .ls = sandbox_fs_ls,
0a30aa1e 228 .exists = sandbox_fs_exists,
cf659819 229 .size = sandbox_fs_size,
92ccc96b 230 .read = fs_read_sandbox,
7eb2c8d5 231 .write = fs_write_sandbox,
59e890ef 232 .uuid = fs_uuid_unsupported,
4bbcc965 233 .opendir = fs_opendir_unsupported,
e2519daf 234 .unlink = fs_unlink_unsupported,
e7074cff 235 .mkdir = fs_mkdir_unsupported,
aaa12157 236 .ln = fs_ln_unsupported,
92ccc96b 237 },
251cee0d
HG
238#endif
239#ifdef CONFIG_CMD_UBIFS
240 {
241 .fstype = FS_TYPE_UBIFS,
242 .name = "ubifs",
243 .null_dev_desc_ok = true,
244 .probe = ubifs_set_blk_dev,
245 .close = ubifs_close,
246 .ls = ubifs_ls,
247 .exists = ubifs_exists,
248 .size = ubifs_size,
249 .read = ubifs_read,
250 .write = fs_write_unsupported,
251 .uuid = fs_uuid_unsupported,
4bbcc965 252 .opendir = fs_opendir_unsupported,
e2519daf 253 .unlink = fs_unlink_unsupported,
e7074cff 254 .mkdir = fs_mkdir_unsupported,
aaa12157 255 .ln = fs_ln_unsupported,
251cee0d 256 },
0c936ee3
MB
257#endif
258#ifdef CONFIG_FS_BTRFS
259 {
260 .fstype = FS_TYPE_BTRFS,
261 .name = "btrfs",
262 .null_dev_desc_ok = false,
263 .probe = btrfs_probe,
264 .close = btrfs_close,
265 .ls = btrfs_ls,
266 .exists = btrfs_exists,
267 .size = btrfs_size,
268 .read = btrfs_read,
269 .write = fs_write_unsupported,
270 .uuid = btrfs_uuid,
38fc683d 271 .opendir = fs_opendir_unsupported,
e2519daf 272 .unlink = fs_unlink_unsupported,
e7074cff 273 .mkdir = fs_mkdir_unsupported,
aaa12157 274 .ln = fs_ln_unsupported,
0c936ee3 275 },
436e2b73
SG
276#endif
277 {
278 .fstype = FS_TYPE_ANY,
1a1ad8e0 279 .name = "unsupported",
377202b5 280 .null_dev_desc_ok = true,
436e2b73
SG
281 .probe = fs_probe_unsupported,
282 .close = fs_close_unsupported,
283 .ls = fs_ls_unsupported,
6152916a 284 .exists = fs_exists_unsupported,
cf659819 285 .size = fs_size_unsupported,
436e2b73 286 .read = fs_read_unsupported,
a8f6ab52 287 .write = fs_write_unsupported,
59e890ef 288 .uuid = fs_uuid_unsupported,
4bbcc965 289 .opendir = fs_opendir_unsupported,
e2519daf 290 .unlink = fs_unlink_unsupported,
e7074cff 291 .mkdir = fs_mkdir_unsupported,
aaa12157 292 .ln = fs_ln_unsupported,
045fa1e1
SW
293 },
294};
295
c6f548d2
SG
296static struct fstype_info *fs_get_info(int fstype)
297{
298 struct fstype_info *info;
299 int i;
300
301 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
302 if (fstype == info->fstype)
303 return info;
304 }
305
306 /* Return the 'unsupported' sentinel */
307 return info;
308}
309
b7cd9562
AT
310/**
311 * fs_get_type() - Get type of current filesystem
312 *
313 * Return: filesystem type
314 *
315 * Returns filesystem type representing the current filesystem, or
316 * FS_TYPE_ANY for any unrecognised filesystem.
317 */
318int fs_get_type(void)
319{
320 return fs_type;
321}
322
0d488e8f
AK
323/**
324 * fs_get_type_name() - Get type of current filesystem
325 *
326 * Return: Pointer to filesystem name
327 *
328 * Returns a string describing the current filesystem, or the sentinel
329 * "unsupported" for any unrecognised filesystem.
330 */
331const char *fs_get_type_name(void)
332{
333 return fs_get_info(fs_type)->name;
334}
335
045fa1e1
SW
336int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
337{
436e2b73 338 struct fstype_info *info;
045fa1e1 339 int part, i;
a1b231ce
SW
340#ifdef CONFIG_NEEDS_MANUAL_RELOC
341 static int relocated;
342
343 if (!relocated) {
436e2b73
SG
344 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
345 i++, info++) {
1a1ad8e0 346 info->name += gd->reloc_off;
436e2b73
SG
347 info->probe += gd->reloc_off;
348 info->close += gd->reloc_off;
349 info->ls += gd->reloc_off;
350 info->read += gd->reloc_off;
a8f6ab52 351 info->write += gd->reloc_off;
436e2b73 352 }
a1b231ce
SW
353 relocated = 1;
354 }
355#endif
045fa1e1 356
e35929e4 357 part = blk_get_device_part_str(ifname, dev_part_str, &fs_dev_desc,
045fa1e1
SW
358 &fs_partition, 1);
359 if (part < 0)
360 return -1;
361
436e2b73
SG
362 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
363 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
364 fstype != info->fstype)
045fa1e1
SW
365 continue;
366
377202b5
SW
367 if (!fs_dev_desc && !info->null_dev_desc_ok)
368 continue;
369
4bbcc965
RC
370 if (!info->probe(fs_dev_desc, &fs_partition)) {
371 fs_type = info->fstype;
372 fs_dev_part = part;
373 return 0;
374 }
375 }
376
377 return -1;
378}
379
380/* set current blk device w/ blk_desc + partition # */
381int fs_set_blk_dev_with_part(struct blk_desc *desc, int part)
382{
383 struct fstype_info *info;
384 int ret, i;
385
386 if (part >= 1)
387 ret = part_get_info(desc, part, &fs_partition);
388 else
389 ret = part_get_info_whole_disk(desc, &fs_partition);
390 if (ret)
391 return ret;
392 fs_dev_desc = desc;
393
394 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
2ded0d47 395 if (!info->probe(fs_dev_desc, &fs_partition)) {
436e2b73 396 fs_type = info->fstype;
b0c78d8f 397 fs_dev_part = part;
045fa1e1
SW
398 return 0;
399 }
400 }
401
045fa1e1
SW
402 return -1;
403}
404
64f49eb7 405void fs_close(void)
045fa1e1 406{
c6f548d2 407 struct fstype_info *info = fs_get_info(fs_type);
045fa1e1 408
c6f548d2 409 info->close();
e6d52415 410
045fa1e1
SW
411 fs_type = FS_TYPE_ANY;
412}
413
59e890ef
CG
414int fs_uuid(char *uuid_str)
415{
416 struct fstype_info *info = fs_get_info(fs_type);
417
418 return info->uuid(uuid_str);
419}
420
045fa1e1
SW
421int fs_ls(const char *dirname)
422{
423 int ret;
424
c6f548d2
SG
425 struct fstype_info *info = fs_get_info(fs_type);
426
427 ret = info->ls(dirname);
045fa1e1
SW
428
429 fs_close();
430
431 return ret;
432}
433
6152916a
SW
434int fs_exists(const char *filename)
435{
436 int ret;
437
438 struct fstype_info *info = fs_get_info(fs_type);
439
440 ret = info->exists(filename);
441
442 fs_close();
443
444 return ret;
445}
446
d455d878 447int fs_size(const char *filename, loff_t *size)
cf659819
SW
448{
449 int ret;
450
451 struct fstype_info *info = fs_get_info(fs_type);
452
d455d878 453 ret = info->size(filename, size);
cf659819
SW
454
455 fs_close();
456
457 return ret;
458}
459
aa3c609e
SG
460#ifdef CONFIG_LMB
461/* Check if a file may be read to the given address */
462static int fs_read_lmb_check(const char *filename, ulong addr, loff_t offset,
463 loff_t len, struct fstype_info *info)
464{
465 struct lmb lmb;
466 int ret;
467 loff_t size;
468 loff_t read_len;
469
470 /* get the actual size of the file */
471 ret = info->size(filename, &size);
472 if (ret)
473 return ret;
474 if (offset >= size) {
475 /* offset >= EOF, no bytes will be written */
476 return 0;
477 }
478 read_len = size - offset;
479
480 /* limit to 'len' if it is smaller */
481 if (len && len < read_len)
482 read_len = len;
483
9cc2323f 484 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
aa3c609e
SG
485 lmb_dump_all(&lmb);
486
487 if (lmb_alloc_addr(&lmb, addr, read_len) == addr)
488 return 0;
489
490 printf("** Reading file would overwrite reserved memory **\n");
491 return -ENOSPC;
492}
493#endif
494
495static int _fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
496 int do_lmb_check, loff_t *actread)
045fa1e1 497{
c6f548d2 498 struct fstype_info *info = fs_get_info(fs_type);
117e0507 499 void *buf;
045fa1e1
SW
500 int ret;
501
aa3c609e
SG
502#ifdef CONFIG_LMB
503 if (do_lmb_check) {
504 ret = fs_read_lmb_check(filename, addr, offset, len, info);
505 if (ret)
506 return ret;
507 }
508#endif
509
117e0507
SG
510 /*
511 * We don't actually know how many bytes are being read, since len==0
512 * means read the whole file.
513 */
514 buf = map_sysmem(addr, len);
d455d878 515 ret = info->read(filename, buf, offset, len, actread);
117e0507 516 unmap_sysmem(buf);
045fa1e1 517
c6f548d2 518 /* If we requested a specific number of bytes, check we got it */
7a3e70cf 519 if (ret == 0 && len && *actread != len)
a327bde7 520 debug("** %s shorter than offset + len **\n", filename);
045fa1e1
SW
521 fs_close();
522
523 return ret;
524}
525
aa3c609e
SG
526int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
527 loff_t *actread)
528{
529 return _fs_read(filename, addr, offset, len, 0, actread);
530}
531
d455d878
SR
532int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
533 loff_t *actwrite)
a8f6ab52
SG
534{
535 struct fstype_info *info = fs_get_info(fs_type);
536 void *buf;
537 int ret;
538
a8f6ab52 539 buf = map_sysmem(addr, len);
d455d878 540 ret = info->write(filename, buf, offset, len, actwrite);
a8f6ab52
SG
541 unmap_sysmem(buf);
542
d455d878 543 if (ret < 0 && len != *actwrite) {
a8f6ab52
SG
544 printf("** Unable to write file %s **\n", filename);
545 ret = -1;
546 }
547 fs_close();
548
549 return ret;
550}
551
4bbcc965
RC
552struct fs_dir_stream *fs_opendir(const char *filename)
553{
554 struct fstype_info *info = fs_get_info(fs_type);
555 struct fs_dir_stream *dirs = NULL;
556 int ret;
557
558 ret = info->opendir(filename, &dirs);
559 fs_close();
560 if (ret) {
561 errno = -ret;
562 return NULL;
563 }
564
565 dirs->desc = fs_dev_desc;
566 dirs->part = fs_dev_part;
567
568 return dirs;
569}
570
571struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs)
572{
573 struct fstype_info *info;
574 struct fs_dirent *dirent;
575 int ret;
576
577 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
578 info = fs_get_info(fs_type);
579
580 ret = info->readdir(dirs, &dirent);
581 fs_close();
582 if (ret) {
583 errno = -ret;
584 return NULL;
585 }
586
587 return dirent;
588}
589
590void fs_closedir(struct fs_dir_stream *dirs)
591{
592 struct fstype_info *info;
593
594 if (!dirs)
595 return;
596
597 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
598 info = fs_get_info(fs_type);
599
600 info->closedir(dirs);
601 fs_close();
602}
603
e2519daf
AT
604int fs_unlink(const char *filename)
605{
606 int ret;
607
608 struct fstype_info *info = fs_get_info(fs_type);
609
610 ret = info->unlink(filename);
611
e2519daf
AT
612 fs_close();
613
614 return ret;
615}
4bbcc965 616
e7074cff
AT
617int fs_mkdir(const char *dirname)
618{
619 int ret;
620
621 struct fstype_info *info = fs_get_info(fs_type);
622
623 ret = info->mkdir(dirname);
624
e7074cff
AT
625 fs_close();
626
627 return ret;
628}
629
aaa12157
JJH
630int fs_ln(const char *fname, const char *target)
631{
632 struct fstype_info *info = fs_get_info(fs_type);
633 int ret;
634
635 ret = info->ln(fname, target);
636
637 if (ret < 0) {
638 printf("** Unable to create link %s -> %s **\n", fname, target);
639 ret = -1;
640 }
641 fs_close();
642
643 return ret;
644}
645
cf659819
SW
646int do_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
647 int fstype)
648{
d455d878 649 loff_t size;
cf659819
SW
650
651 if (argc != 4)
652 return CMD_RET_USAGE;
653
654 if (fs_set_blk_dev(argv[1], argv[2], fstype))
655 return 1;
656
d455d878 657 if (fs_size(argv[3], &size) < 0)
cf659819
SW
658 return CMD_RET_FAILURE;
659
018f5303 660 env_set_hex("filesize", size);
cf659819
SW
661
662 return 0;
663}
664
f9b55e22 665int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
b770e88a 666 int fstype)
045fa1e1
SW
667{
668 unsigned long addr;
669 const char *addr_str;
670 const char *filename;
d455d878
SR
671 loff_t bytes;
672 loff_t pos;
673 loff_t len_read;
674 int ret;
da1fd96c 675 unsigned long time;
949bbd7c 676 char *ep;
045fa1e1 677
e9b0f99e
SW
678 if (argc < 2)
679 return CMD_RET_USAGE;
680 if (argc > 7)
045fa1e1
SW
681 return CMD_RET_USAGE;
682
e9b0f99e 683 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
045fa1e1
SW
684 return 1;
685
686 if (argc >= 4) {
949bbd7c
PM
687 addr = simple_strtoul(argv[3], &ep, 16);
688 if (ep == argv[3] || *ep != '\0')
689 return CMD_RET_USAGE;
045fa1e1 690 } else {
00caae6d 691 addr_str = env_get("loadaddr");
045fa1e1
SW
692 if (addr_str != NULL)
693 addr = simple_strtoul(addr_str, NULL, 16);
694 else
695 addr = CONFIG_SYS_LOAD_ADDR;
696 }
697 if (argc >= 5) {
698 filename = argv[4];
699 } else {
00caae6d 700 filename = env_get("bootfile");
045fa1e1
SW
701 if (!filename) {
702 puts("** No boot file defined **\n");
703 return 1;
704 }
705 }
706 if (argc >= 6)
b770e88a 707 bytes = simple_strtoul(argv[5], NULL, 16);
045fa1e1
SW
708 else
709 bytes = 0;
710 if (argc >= 7)
b770e88a 711 pos = simple_strtoul(argv[6], NULL, 16);
045fa1e1
SW
712 else
713 pos = 0;
714
ee88eacb
MYK
715#ifdef CONFIG_CMD_BOOTEFI
716 efi_set_bootdev(argv[1], (argc > 2) ? argv[2] : "",
717 (argc > 4) ? argv[4] : "");
718#endif
da1fd96c 719 time = get_timer(0);
aa3c609e 720 ret = _fs_read(filename, addr, pos, bytes, 1, &len_read);
da1fd96c 721 time = get_timer(time);
d455d878 722 if (ret < 0)
045fa1e1
SW
723 return 1;
724
d455d878 725 printf("%llu bytes read in %lu ms", len_read, time);
da1fd96c
AB
726 if (time > 0) {
727 puts(" (");
9e374e7b 728 print_size(div_u64(len_read, time) * 1000, "/s");
da1fd96c
AB
729 puts(")");
730 }
731 puts("\n");
045fa1e1 732
018f5303
SG
733 env_set_hex("fileaddr", addr);
734 env_set_hex("filesize", len_read);
045fa1e1
SW
735
736 return 0;
737}
738
739int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
740 int fstype)
741{
742 if (argc < 2)
743 return CMD_RET_USAGE;
e9b0f99e
SW
744 if (argc > 4)
745 return CMD_RET_USAGE;
045fa1e1
SW
746
747 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
748 return 1;
749
e9b0f99e 750 if (fs_ls(argc >= 4 ? argv[3] : "/"))
045fa1e1
SW
751 return 1;
752
753 return 0;
754}
a8f6ab52 755
6152916a
SW
756int file_exists(const char *dev_type, const char *dev_part, const char *file,
757 int fstype)
758{
759 if (fs_set_blk_dev(dev_type, dev_part, fstype))
760 return 0;
761
762 return fs_exists(file);
763}
764
a8f6ab52 765int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
b770e88a 766 int fstype)
a8f6ab52
SG
767{
768 unsigned long addr;
769 const char *filename;
d455d878
SR
770 loff_t bytes;
771 loff_t pos;
772 loff_t len;
773 int ret;
a8f6ab52
SG
774 unsigned long time;
775
776 if (argc < 6 || argc > 7)
777 return CMD_RET_USAGE;
778
779 if (fs_set_blk_dev(argv[1], argv[2], fstype))
780 return 1;
781
d455d878
SR
782 addr = simple_strtoul(argv[3], NULL, 16);
783 filename = argv[4];
b770e88a 784 bytes = simple_strtoul(argv[5], NULL, 16);
a8f6ab52 785 if (argc >= 7)
b770e88a 786 pos = simple_strtoul(argv[6], NULL, 16);
a8f6ab52
SG
787 else
788 pos = 0;
789
790 time = get_timer(0);
d455d878 791 ret = fs_write(filename, addr, pos, bytes, &len);
a8f6ab52 792 time = get_timer(time);
d455d878 793 if (ret < 0)
a8f6ab52
SG
794 return 1;
795
d455d878 796 printf("%llu bytes written in %lu ms", len, time);
a8f6ab52
SG
797 if (time > 0) {
798 puts(" (");
9e374e7b 799 print_size(div_u64(len, time) * 1000, "/s");
a8f6ab52
SG
800 puts(")");
801 }
802 puts("\n");
803
804 return 0;
805}
59e890ef
CG
806
807int do_fs_uuid(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
808 int fstype)
809{
810 int ret;
811 char uuid[37];
812 memset(uuid, 0, sizeof(uuid));
813
814 if (argc < 3 || argc > 4)
815 return CMD_RET_USAGE;
816
817 if (fs_set_blk_dev(argv[1], argv[2], fstype))
818 return 1;
819
820 ret = fs_uuid(uuid);
821 if (ret)
822 return CMD_RET_FAILURE;
823
824 if (argc == 4)
382bee57 825 env_set(argv[3], uuid);
59e890ef
CG
826 else
827 printf("%s\n", uuid);
828
829 return CMD_RET_SUCCESS;
830}
1a1ad8e0
SS
831
832int do_fs_type(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
833{
834 struct fstype_info *info;
835
836 if (argc < 3 || argc > 4)
837 return CMD_RET_USAGE;
838
839 if (fs_set_blk_dev(argv[1], argv[2], FS_TYPE_ANY))
840 return 1;
841
842 info = fs_get_info(fs_type);
843
844 if (argc == 4)
382bee57 845 env_set(argv[3], info->name);
1a1ad8e0
SS
846 else
847 printf("%s\n", info->name);
848
e531c673
MV
849 fs_close();
850
1a1ad8e0
SS
851 return CMD_RET_SUCCESS;
852}
853
e2519daf
AT
854int do_rm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
855 int fstype)
856{
857 if (argc != 4)
858 return CMD_RET_USAGE;
859
860 if (fs_set_blk_dev(argv[1], argv[2], fstype))
861 return 1;
862
863 if (fs_unlink(argv[3]))
864 return 1;
865
866 return 0;
867}
868
e7074cff
AT
869int do_mkdir(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
870 int fstype)
871{
872 int ret;
873
874 if (argc != 4)
875 return CMD_RET_USAGE;
876
877 if (fs_set_blk_dev(argv[1], argv[2], fstype))
878 return 1;
879
880 ret = fs_mkdir(argv[3]);
881 if (ret) {
882 printf("** Unable to create a directory \"%s\" **\n", argv[3]);
883 return 1;
884 }
885
886 return 0;
887}
aaa12157
JJH
888
889int do_ln(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
890 int fstype)
891{
892 if (argc != 5)
893 return CMD_RET_USAGE;
894
895 if (fs_set_blk_dev(argv[1], argv[2], fstype))
896 return 1;
897
898 if (fs_ln(argv[3], argv[4]))
899 return 1;
900
901 return 0;
902}
This page took 0.332481 seconds and 4 git commands to generate.