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