blob: 1a6a64ea7f97b1256773a9a880afeec990cfc541 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Stephen Warren045fa1e2012-10-22 06:43:51 +00002/*
3 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
Stephen Warren045fa1e2012-10-22 06:43:51 +00004 */
5
6#include <config.h>
Christian Gmeiner59e890e2014-11-12 14:35:04 +01007#include <errno.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +00008#include <common.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -05009#include <mapmem.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000010#include <part.h>
11#include <ext4fs.h>
12#include <fat.h>
13#include <fs.h>
Simon Glass92ccc962012-12-26 09:53:35 +000014#include <sandboxfs.h>
Hans de Goede251cee02015-09-17 18:46:58 -040015#include <ubifs_uboot.h>
Marek BehĂșn0c936ee2017-09-03 17:00:29 +020016#include <btrfs.h>
Simon Glass117e0502012-12-26 09:53:32 +000017#include <asm/io.h>
Tom Rini9e374e72014-11-24 11:50:46 -050018#include <div64.h>
19#include <linux/math64.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +000020
Stephen Warrena1b231c2012-10-30 07:50:47 +000021DECLARE_GLOBAL_DATA_PTR;
22
Simon Glass4101f682016-02-29 15:25:34 -070023static struct blk_desc *fs_dev_desc;
Rob Clark4bbcc962017-09-09 13:15:55 -040024static int fs_dev_part;
Stephen Warren045fa1e2012-10-22 06:43:51 +000025static disk_partition_t fs_partition;
26static int fs_type = FS_TYPE_ANY;
27
Simon Glass4101f682016-02-29 15:25:34 -070028static inline int fs_probe_unsupported(struct blk_desc *fs_dev_desc,
Simon Glass2ded0d42012-12-26 09:53:31 +000029 disk_partition_t *fs_partition)
Simon Glass436e2b72012-12-26 09:53:29 +000030{
31 printf("** Unrecognized filesystem type **\n");
32 return -1;
33}
34
Stephen Warren045fa1e2012-10-22 06:43:51 +000035static inline int fs_ls_unsupported(const char *dirname)
36{
Stephen Warren045fa1e2012-10-22 06:43:51 +000037 return -1;
38}
39
Rob Clark89191d62017-09-09 13:15:58 -040040/* generic implementation of ls in terms of opendir/readdir/closedir */
41__maybe_unused
42static int fs_ls_generic(const char *dirname)
43{
44 struct fs_dir_stream *dirs;
45 struct fs_dirent *dent;
46 int nfiles = 0, ndirs = 0;
47
48 dirs = fs_opendir(dirname);
49 if (!dirs)
50 return -errno;
51
52 while ((dent = fs_readdir(dirs))) {
53 if (dent->type == FS_DT_DIR) {
54 printf(" %s/\n", dent->name);
55 ndirs++;
56 } else {
57 printf(" %8lld %s\n", dent->size, dent->name);
58 nfiles++;
59 }
60 }
61
62 fs_closedir(dirs);
63
64 printf("\n%d file(s), %d dir(s)\n\n", nfiles, ndirs);
65
66 return 0;
67}
68
Stephen Warren61529162014-02-03 13:21:00 -070069static inline int fs_exists_unsupported(const char *filename)
70{
71 return 0;
72}
73
Suriyan Ramasamid455d872014-11-17 14:39:38 -080074static inline int fs_size_unsupported(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -060075{
76 return -1;
77}
78
Simon Glass117e0502012-12-26 09:53:32 +000079static inline int fs_read_unsupported(const char *filename, void *buf,
Suriyan Ramasamid455d872014-11-17 14:39:38 -080080 loff_t offset, loff_t len,
81 loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +000082{
Stephen Warren045fa1e2012-10-22 06:43:51 +000083 return -1;
84}
85
Simon Glassa8f6ab52013-04-20 08:42:50 +000086static inline int fs_write_unsupported(const char *filename, void *buf,
Suriyan Ramasamid455d872014-11-17 14:39:38 -080087 loff_t offset, loff_t len,
88 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +000089{
90 return -1;
91}
92
Simon Glass436e2b72012-12-26 09:53:29 +000093static inline void fs_close_unsupported(void)
94{
95}
96
Christian Gmeiner59e890e2014-11-12 14:35:04 +010097static inline int fs_uuid_unsupported(char *uuid_str)
98{
99 return -1;
100}
101
Rob Clark4bbcc962017-09-09 13:15:55 -0400102static inline int fs_opendir_unsupported(const char *filename,
103 struct fs_dir_stream **dirs)
104{
105 return -EACCES;
106}
107
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900108static inline int fs_unlink_unsupported(const char *filename)
109{
110 return -1;
111}
112
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900113static inline int fs_mkdir_unsupported(const char *dirname)
114{
115 return -1;
116}
117
Simon Glass436e2b72012-12-26 09:53:29 +0000118struct fstype_info {
Stephen Warren045fa1e2012-10-22 06:43:51 +0000119 int fstype;
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100120 char *name;
Stephen Warren377202b2014-02-03 13:21:01 -0700121 /*
122 * Is it legal to pass NULL as .probe()'s fs_dev_desc parameter? This
123 * should be false in most cases. For "virtual" filesystems which
124 * aren't based on a U-Boot block device (e.g. sandbox), this can be
Heinrich Schuchardtca230b02018-08-11 15:52:14 +0200125 * set to true. This should also be true for the dummy entry at the end
Stephen Warren377202b2014-02-03 13:21:01 -0700126 * of fstypes[], since that is essentially a "virtual" (non-existent)
127 * filesystem.
128 */
129 bool null_dev_desc_ok;
Simon Glass4101f682016-02-29 15:25:34 -0700130 int (*probe)(struct blk_desc *fs_dev_desc,
Simon Glass2ded0d42012-12-26 09:53:31 +0000131 disk_partition_t *fs_partition);
Simon Glass436e2b72012-12-26 09:53:29 +0000132 int (*ls)(const char *dirname);
Stephen Warren61529162014-02-03 13:21:00 -0700133 int (*exists)(const char *filename);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800134 int (*size)(const char *filename, loff_t *size);
135 int (*read)(const char *filename, void *buf, loff_t offset,
136 loff_t len, loff_t *actread);
137 int (*write)(const char *filename, void *buf, loff_t offset,
138 loff_t len, loff_t *actwrite);
Simon Glass436e2b72012-12-26 09:53:29 +0000139 void (*close)(void);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100140 int (*uuid)(char *uuid_str);
Rob Clark4bbcc962017-09-09 13:15:55 -0400141 /*
142 * Open a directory stream. On success return 0 and directory
143 * stream pointer via 'dirsp'. On error, return -errno. See
144 * fs_opendir().
145 */
146 int (*opendir)(const char *filename, struct fs_dir_stream **dirsp);
147 /*
148 * Read next entry from directory stream. On success return 0
149 * and directory entry pointer via 'dentp'. On error return
150 * -errno. See fs_readdir().
151 */
152 int (*readdir)(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
153 /* see fs_closedir() */
154 void (*closedir)(struct fs_dir_stream *dirs);
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900155 int (*unlink)(const char *filename);
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900156 int (*mkdir)(const char *dirname);
Simon Glass436e2b72012-12-26 09:53:29 +0000157};
158
159static struct fstype_info fstypes[] = {
160#ifdef CONFIG_FS_FAT
Stephen Warren045fa1e2012-10-22 06:43:51 +0000161 {
162 .fstype = FS_TYPE_FAT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100163 .name = "fat",
Stephen Warren377202b2014-02-03 13:21:01 -0700164 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000165 .probe = fat_set_blk_dev,
166 .close = fat_close,
Rob Clark89191d62017-09-09 13:15:58 -0400167 .ls = fs_ls_generic,
Stephen Warrenb7b5f312014-02-03 13:21:10 -0700168 .exists = fat_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600169 .size = fat_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000170 .read = fat_read_file,
Tien Fong Cheed8c3ea92019-01-23 14:20:04 +0800171#if CONFIG_IS_ENABLED(FAT_WRITE)
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800172 .write = file_fat_write,
AKASHI Takahirof8240ce2018-09-11 15:59:14 +0900173 .unlink = fat_unlink,
AKASHI Takahiro31a18d52018-09-11 15:59:10 +0900174 .mkdir = fat_mkdir,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800175#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700176 .write = fs_write_unsupported,
AKASHI Takahirof8240ce2018-09-11 15:59:14 +0900177 .unlink = fs_unlink_unsupported,
AKASHI Takahiro31a18d52018-09-11 15:59:10 +0900178 .mkdir = fs_mkdir_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800179#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100180 .uuid = fs_uuid_unsupported,
Rob Clark89191d62017-09-09 13:15:58 -0400181 .opendir = fat_opendir,
182 .readdir = fat_readdir,
183 .closedir = fat_closedir,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000184 },
Simon Glass436e2b72012-12-26 09:53:29 +0000185#endif
186#ifdef CONFIG_FS_EXT4
Stephen Warren045fa1e2012-10-22 06:43:51 +0000187 {
188 .fstype = FS_TYPE_EXT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100189 .name = "ext4",
Stephen Warren377202b2014-02-03 13:21:01 -0700190 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000191 .probe = ext4fs_probe,
192 .close = ext4fs_close,
Simon Glass436e2b72012-12-26 09:53:29 +0000193 .ls = ext4fs_ls,
Stephen Warren55af5c92014-02-03 13:21:09 -0700194 .exists = ext4fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600195 .size = ext4fs_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000196 .read = ext4_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800197#ifdef CONFIG_CMD_EXT4_WRITE
198 .write = ext4_write_file,
199#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700200 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800201#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100202 .uuid = ext4fs_uuid,
Rob Clark4bbcc962017-09-09 13:15:55 -0400203 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900204 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900205 .mkdir = fs_mkdir_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000206 },
207#endif
Simon Glass92ccc962012-12-26 09:53:35 +0000208#ifdef CONFIG_SANDBOX
209 {
210 .fstype = FS_TYPE_SANDBOX,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100211 .name = "sandbox",
Stephen Warren377202b2014-02-03 13:21:01 -0700212 .null_dev_desc_ok = true,
Simon Glass92ccc962012-12-26 09:53:35 +0000213 .probe = sandbox_fs_set_blk_dev,
214 .close = sandbox_fs_close,
215 .ls = sandbox_fs_ls,
Stephen Warren0a30aa12014-02-03 13:21:07 -0700216 .exists = sandbox_fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600217 .size = sandbox_fs_size,
Simon Glass92ccc962012-12-26 09:53:35 +0000218 .read = fs_read_sandbox,
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000219 .write = fs_write_sandbox,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100220 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400221 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900222 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900223 .mkdir = fs_mkdir_unsupported,
Simon Glass92ccc962012-12-26 09:53:35 +0000224 },
225#endif
Hans de Goede251cee02015-09-17 18:46:58 -0400226#ifdef CONFIG_CMD_UBIFS
227 {
228 .fstype = FS_TYPE_UBIFS,
229 .name = "ubifs",
230 .null_dev_desc_ok = true,
231 .probe = ubifs_set_blk_dev,
232 .close = ubifs_close,
233 .ls = ubifs_ls,
234 .exists = ubifs_exists,
235 .size = ubifs_size,
236 .read = ubifs_read,
237 .write = fs_write_unsupported,
238 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400239 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900240 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900241 .mkdir = fs_mkdir_unsupported,
Hans de Goede251cee02015-09-17 18:46:58 -0400242 },
243#endif
Marek BehĂșn0c936ee2017-09-03 17:00:29 +0200244#ifdef CONFIG_FS_BTRFS
245 {
246 .fstype = FS_TYPE_BTRFS,
247 .name = "btrfs",
248 .null_dev_desc_ok = false,
249 .probe = btrfs_probe,
250 .close = btrfs_close,
251 .ls = btrfs_ls,
252 .exists = btrfs_exists,
253 .size = btrfs_size,
254 .read = btrfs_read,
255 .write = fs_write_unsupported,
256 .uuid = btrfs_uuid,
Marek BehĂșn38fc6832017-10-06 16:56:07 +0200257 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900258 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900259 .mkdir = fs_mkdir_unsupported,
Marek BehĂșn0c936ee2017-09-03 17:00:29 +0200260 },
261#endif
Simon Glass436e2b72012-12-26 09:53:29 +0000262 {
263 .fstype = FS_TYPE_ANY,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100264 .name = "unsupported",
Stephen Warren377202b2014-02-03 13:21:01 -0700265 .null_dev_desc_ok = true,
Simon Glass436e2b72012-12-26 09:53:29 +0000266 .probe = fs_probe_unsupported,
267 .close = fs_close_unsupported,
268 .ls = fs_ls_unsupported,
Stephen Warren61529162014-02-03 13:21:00 -0700269 .exists = fs_exists_unsupported,
Stephen Warrencf659812014-06-11 12:47:26 -0600270 .size = fs_size_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000271 .read = fs_read_unsupported,
Simon Glassa8f6ab52013-04-20 08:42:50 +0000272 .write = fs_write_unsupported,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100273 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400274 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900275 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900276 .mkdir = fs_mkdir_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000277 },
278};
279
Simon Glassc6f548d2012-12-26 09:53:30 +0000280static struct fstype_info *fs_get_info(int fstype)
281{
282 struct fstype_info *info;
283 int i;
284
285 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
286 if (fstype == info->fstype)
287 return info;
288 }
289
290 /* Return the 'unsupported' sentinel */
291 return info;
292}
293
Alex Kiernan0d488e82018-05-29 15:30:50 +0000294/**
295 * fs_get_type_name() - Get type of current filesystem
296 *
297 * Return: Pointer to filesystem name
298 *
299 * Returns a string describing the current filesystem, or the sentinel
300 * "unsupported" for any unrecognised filesystem.
301 */
302const char *fs_get_type_name(void)
303{
304 return fs_get_info(fs_type)->name;
305}
306
Stephen Warren045fa1e2012-10-22 06:43:51 +0000307int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
308{
Simon Glass436e2b72012-12-26 09:53:29 +0000309 struct fstype_info *info;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000310 int part, i;
Stephen Warrena1b231c2012-10-30 07:50:47 +0000311#ifdef CONFIG_NEEDS_MANUAL_RELOC
312 static int relocated;
313
314 if (!relocated) {
Simon Glass436e2b72012-12-26 09:53:29 +0000315 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
316 i++, info++) {
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100317 info->name += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000318 info->probe += gd->reloc_off;
319 info->close += gd->reloc_off;
320 info->ls += gd->reloc_off;
321 info->read += gd->reloc_off;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000322 info->write += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000323 }
Stephen Warrena1b231c2012-10-30 07:50:47 +0000324 relocated = 1;
325 }
326#endif
Stephen Warren045fa1e2012-10-22 06:43:51 +0000327
Simon Glasse35929e2016-02-29 15:25:44 -0700328 part = blk_get_device_part_str(ifname, dev_part_str, &fs_dev_desc,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000329 &fs_partition, 1);
330 if (part < 0)
331 return -1;
332
Simon Glass436e2b72012-12-26 09:53:29 +0000333 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
334 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
335 fstype != info->fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000336 continue;
337
Stephen Warren377202b2014-02-03 13:21:01 -0700338 if (!fs_dev_desc && !info->null_dev_desc_ok)
339 continue;
340
Simon Glass2ded0d42012-12-26 09:53:31 +0000341 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass436e2b72012-12-26 09:53:29 +0000342 fs_type = info->fstype;
Rob Clark4bbcc962017-09-09 13:15:55 -0400343 fs_dev_part = part;
344 return 0;
345 }
346 }
347
348 return -1;
349}
350
351/* set current blk device w/ blk_desc + partition # */
352int fs_set_blk_dev_with_part(struct blk_desc *desc, int part)
353{
354 struct fstype_info *info;
355 int ret, i;
356
357 if (part >= 1)
358 ret = part_get_info(desc, part, &fs_partition);
359 else
360 ret = part_get_info_whole_disk(desc, &fs_partition);
361 if (ret)
362 return ret;
363 fs_dev_desc = desc;
364
365 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
366 if (!info->probe(fs_dev_desc, &fs_partition)) {
367 fs_type = info->fstype;
AKASHI Takahirob0c78d82018-10-17 16:32:02 +0900368 fs_dev_part = part;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000369 return 0;
370 }
371 }
372
Stephen Warren045fa1e2012-10-22 06:43:51 +0000373 return -1;
374}
375
376static void fs_close(void)
377{
Simon Glassc6f548d2012-12-26 09:53:30 +0000378 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000379
Simon Glassc6f548d2012-12-26 09:53:30 +0000380 info->close();
Simon Glasse6d52412012-12-26 09:53:33 +0000381
Stephen Warren045fa1e2012-10-22 06:43:51 +0000382 fs_type = FS_TYPE_ANY;
383}
384
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100385int fs_uuid(char *uuid_str)
386{
387 struct fstype_info *info = fs_get_info(fs_type);
388
389 return info->uuid(uuid_str);
390}
391
Stephen Warren045fa1e2012-10-22 06:43:51 +0000392int fs_ls(const char *dirname)
393{
394 int ret;
395
Simon Glassc6f548d2012-12-26 09:53:30 +0000396 struct fstype_info *info = fs_get_info(fs_type);
397
398 ret = info->ls(dirname);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000399
Simon Glasse6d52412012-12-26 09:53:33 +0000400 fs_type = FS_TYPE_ANY;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000401 fs_close();
402
403 return ret;
404}
405
Stephen Warren61529162014-02-03 13:21:00 -0700406int fs_exists(const char *filename)
407{
408 int ret;
409
410 struct fstype_info *info = fs_get_info(fs_type);
411
412 ret = info->exists(filename);
413
414 fs_close();
415
416 return ret;
417}
418
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800419int fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600420{
421 int ret;
422
423 struct fstype_info *info = fs_get_info(fs_type);
424
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800425 ret = info->size(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600426
427 fs_close();
428
429 return ret;
430}
431
Simon Goldschmidtaa3c6092019-01-14 22:38:19 +0100432#ifdef CONFIG_LMB
433/* Check if a file may be read to the given address */
434static int fs_read_lmb_check(const char *filename, ulong addr, loff_t offset,
435 loff_t len, struct fstype_info *info)
436{
437 struct lmb lmb;
438 int ret;
439 loff_t size;
440 loff_t read_len;
441
442 /* get the actual size of the file */
443 ret = info->size(filename, &size);
444 if (ret)
445 return ret;
446 if (offset >= size) {
447 /* offset >= EOF, no bytes will be written */
448 return 0;
449 }
450 read_len = size - offset;
451
452 /* limit to 'len' if it is smaller */
453 if (len && len < read_len)
454 read_len = len;
455
456 lmb_init_and_reserve(&lmb, gd->bd->bi_dram[0].start,
457 gd->bd->bi_dram[0].size, (void *)gd->fdt_blob);
458 lmb_dump_all(&lmb);
459
460 if (lmb_alloc_addr(&lmb, addr, read_len) == addr)
461 return 0;
462
463 printf("** Reading file would overwrite reserved memory **\n");
464 return -ENOSPC;
465}
466#endif
467
468static int _fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
469 int do_lmb_check, loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000470{
Simon Glassc6f548d2012-12-26 09:53:30 +0000471 struct fstype_info *info = fs_get_info(fs_type);
Simon Glass117e0502012-12-26 09:53:32 +0000472 void *buf;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000473 int ret;
474
Simon Goldschmidtaa3c6092019-01-14 22:38:19 +0100475#ifdef CONFIG_LMB
476 if (do_lmb_check) {
477 ret = fs_read_lmb_check(filename, addr, offset, len, info);
478 if (ret)
479 return ret;
480 }
481#endif
482
Simon Glass117e0502012-12-26 09:53:32 +0000483 /*
484 * We don't actually know how many bytes are being read, since len==0
485 * means read the whole file.
486 */
487 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800488 ret = info->read(filename, buf, offset, len, actread);
Simon Glass117e0502012-12-26 09:53:32 +0000489 unmap_sysmem(buf);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000490
Simon Glassc6f548d2012-12-26 09:53:30 +0000491 /* If we requested a specific number of bytes, check we got it */
Max Krummenacher7a3e70c2015-08-05 17:16:58 +0200492 if (ret == 0 && len && *actread != len)
Heinrich Schuchardta327bde2018-01-01 21:15:37 +0100493 debug("** %s shorter than offset + len **\n", filename);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000494 fs_close();
495
496 return ret;
497}
498
Simon Goldschmidtaa3c6092019-01-14 22:38:19 +0100499int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
500 loff_t *actread)
501{
502 return _fs_read(filename, addr, offset, len, 0, actread);
503}
504
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800505int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
506 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000507{
508 struct fstype_info *info = fs_get_info(fs_type);
509 void *buf;
510 int ret;
511
Simon Glassa8f6ab52013-04-20 08:42:50 +0000512 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800513 ret = info->write(filename, buf, offset, len, actwrite);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000514 unmap_sysmem(buf);
515
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800516 if (ret < 0 && len != *actwrite) {
Simon Glassa8f6ab52013-04-20 08:42:50 +0000517 printf("** Unable to write file %s **\n", filename);
518 ret = -1;
519 }
520 fs_close();
521
522 return ret;
523}
524
Rob Clark4bbcc962017-09-09 13:15:55 -0400525struct fs_dir_stream *fs_opendir(const char *filename)
526{
527 struct fstype_info *info = fs_get_info(fs_type);
528 struct fs_dir_stream *dirs = NULL;
529 int ret;
530
531 ret = info->opendir(filename, &dirs);
532 fs_close();
533 if (ret) {
534 errno = -ret;
535 return NULL;
536 }
537
538 dirs->desc = fs_dev_desc;
539 dirs->part = fs_dev_part;
540
541 return dirs;
542}
543
544struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs)
545{
546 struct fstype_info *info;
547 struct fs_dirent *dirent;
548 int ret;
549
550 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
551 info = fs_get_info(fs_type);
552
553 ret = info->readdir(dirs, &dirent);
554 fs_close();
555 if (ret) {
556 errno = -ret;
557 return NULL;
558 }
559
560 return dirent;
561}
562
563void fs_closedir(struct fs_dir_stream *dirs)
564{
565 struct fstype_info *info;
566
567 if (!dirs)
568 return;
569
570 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
571 info = fs_get_info(fs_type);
572
573 info->closedir(dirs);
574 fs_close();
575}
576
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900577int fs_unlink(const char *filename)
578{
579 int ret;
580
581 struct fstype_info *info = fs_get_info(fs_type);
582
583 ret = info->unlink(filename);
584
585 fs_type = FS_TYPE_ANY;
586 fs_close();
587
588 return ret;
589}
Rob Clark4bbcc962017-09-09 13:15:55 -0400590
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900591int fs_mkdir(const char *dirname)
592{
593 int ret;
594
595 struct fstype_info *info = fs_get_info(fs_type);
596
597 ret = info->mkdir(dirname);
598
599 fs_type = FS_TYPE_ANY;
600 fs_close();
601
602 return ret;
603}
604
Stephen Warrencf659812014-06-11 12:47:26 -0600605int do_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
606 int fstype)
607{
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800608 loff_t size;
Stephen Warrencf659812014-06-11 12:47:26 -0600609
610 if (argc != 4)
611 return CMD_RET_USAGE;
612
613 if (fs_set_blk_dev(argv[1], argv[2], fstype))
614 return 1;
615
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800616 if (fs_size(argv[3], &size) < 0)
Stephen Warrencf659812014-06-11 12:47:26 -0600617 return CMD_RET_FAILURE;
618
Simon Glass018f5302017-08-03 12:22:10 -0600619 env_set_hex("filesize", size);
Stephen Warrencf659812014-06-11 12:47:26 -0600620
621 return 0;
622}
623
Stephen Warrenf9b55e22012-10-31 11:05:07 +0000624int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200625 int fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000626{
627 unsigned long addr;
628 const char *addr_str;
629 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800630 loff_t bytes;
631 loff_t pos;
632 loff_t len_read;
633 int ret;
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100634 unsigned long time;
Pavel Machek949bbd72014-07-09 22:42:57 +0200635 char *ep;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000636
Stephen Warrene9b0f992012-10-30 12:04:17 +0000637 if (argc < 2)
638 return CMD_RET_USAGE;
639 if (argc > 7)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000640 return CMD_RET_USAGE;
641
Stephen Warrene9b0f992012-10-30 12:04:17 +0000642 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000643 return 1;
644
645 if (argc >= 4) {
Pavel Machek949bbd72014-07-09 22:42:57 +0200646 addr = simple_strtoul(argv[3], &ep, 16);
647 if (ep == argv[3] || *ep != '\0')
648 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000649 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600650 addr_str = env_get("loadaddr");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000651 if (addr_str != NULL)
652 addr = simple_strtoul(addr_str, NULL, 16);
653 else
654 addr = CONFIG_SYS_LOAD_ADDR;
655 }
656 if (argc >= 5) {
657 filename = argv[4];
658 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600659 filename = env_get("bootfile");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000660 if (!filename) {
661 puts("** No boot file defined **\n");
662 return 1;
663 }
664 }
665 if (argc >= 6)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200666 bytes = simple_strtoul(argv[5], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000667 else
668 bytes = 0;
669 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200670 pos = simple_strtoul(argv[6], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000671 else
672 pos = 0;
673
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100674 time = get_timer(0);
Simon Goldschmidtaa3c6092019-01-14 22:38:19 +0100675 ret = _fs_read(filename, addr, pos, bytes, 1, &len_read);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100676 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800677 if (ret < 0)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000678 return 1;
679
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800680 printf("%llu bytes read in %lu ms", len_read, time);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100681 if (time > 0) {
682 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500683 print_size(div_u64(len_read, time) * 1000, "/s");
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100684 puts(")");
685 }
686 puts("\n");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000687
Simon Glass018f5302017-08-03 12:22:10 -0600688 env_set_hex("fileaddr", addr);
689 env_set_hex("filesize", len_read);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000690
691 return 0;
692}
693
694int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
695 int fstype)
696{
697 if (argc < 2)
698 return CMD_RET_USAGE;
Stephen Warrene9b0f992012-10-30 12:04:17 +0000699 if (argc > 4)
700 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000701
702 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
703 return 1;
704
Stephen Warrene9b0f992012-10-30 12:04:17 +0000705 if (fs_ls(argc >= 4 ? argv[3] : "/"))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000706 return 1;
707
708 return 0;
709}
Simon Glassa8f6ab52013-04-20 08:42:50 +0000710
Stephen Warren61529162014-02-03 13:21:00 -0700711int file_exists(const char *dev_type, const char *dev_part, const char *file,
712 int fstype)
713{
714 if (fs_set_blk_dev(dev_type, dev_part, fstype))
715 return 0;
716
717 return fs_exists(file);
718}
719
Simon Glassa8f6ab52013-04-20 08:42:50 +0000720int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200721 int fstype)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000722{
723 unsigned long addr;
724 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800725 loff_t bytes;
726 loff_t pos;
727 loff_t len;
728 int ret;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000729 unsigned long time;
730
731 if (argc < 6 || argc > 7)
732 return CMD_RET_USAGE;
733
734 if (fs_set_blk_dev(argv[1], argv[2], fstype))
735 return 1;
736
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800737 addr = simple_strtoul(argv[3], NULL, 16);
738 filename = argv[4];
Wolfgang Denkb770e882013-10-05 21:07:25 +0200739 bytes = simple_strtoul(argv[5], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000740 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200741 pos = simple_strtoul(argv[6], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000742 else
743 pos = 0;
744
745 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800746 ret = fs_write(filename, addr, pos, bytes, &len);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000747 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800748 if (ret < 0)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000749 return 1;
750
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800751 printf("%llu bytes written in %lu ms", len, time);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000752 if (time > 0) {
753 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500754 print_size(div_u64(len, time) * 1000, "/s");
Simon Glassa8f6ab52013-04-20 08:42:50 +0000755 puts(")");
756 }
757 puts("\n");
758
759 return 0;
760}
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100761
762int do_fs_uuid(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
763 int fstype)
764{
765 int ret;
766 char uuid[37];
767 memset(uuid, 0, sizeof(uuid));
768
769 if (argc < 3 || argc > 4)
770 return CMD_RET_USAGE;
771
772 if (fs_set_blk_dev(argv[1], argv[2], fstype))
773 return 1;
774
775 ret = fs_uuid(uuid);
776 if (ret)
777 return CMD_RET_FAILURE;
778
779 if (argc == 4)
Simon Glass382bee52017-08-03 12:22:09 -0600780 env_set(argv[3], uuid);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100781 else
782 printf("%s\n", uuid);
783
784 return CMD_RET_SUCCESS;
785}
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100786
787int do_fs_type(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
788{
789 struct fstype_info *info;
790
791 if (argc < 3 || argc > 4)
792 return CMD_RET_USAGE;
793
794 if (fs_set_blk_dev(argv[1], argv[2], FS_TYPE_ANY))
795 return 1;
796
797 info = fs_get_info(fs_type);
798
799 if (argc == 4)
Simon Glass382bee52017-08-03 12:22:09 -0600800 env_set(argv[3], info->name);
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100801 else
802 printf("%s\n", info->name);
803
804 return CMD_RET_SUCCESS;
805}
806
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900807int do_rm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
808 int fstype)
809{
810 if (argc != 4)
811 return CMD_RET_USAGE;
812
813 if (fs_set_blk_dev(argv[1], argv[2], fstype))
814 return 1;
815
816 if (fs_unlink(argv[3]))
817 return 1;
818
819 return 0;
820}
821
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900822int do_mkdir(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
823 int fstype)
824{
825 int ret;
826
827 if (argc != 4)
828 return CMD_RET_USAGE;
829
830 if (fs_set_blk_dev(argv[1], argv[2], fstype))
831 return 1;
832
833 ret = fs_mkdir(argv[3]);
834 if (ret) {
835 printf("** Unable to create a directory \"%s\" **\n", argv[3]);
836 return 1;
837 }
838
839 return 0;
840}