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