blob: 0e9c2f1062c397f0cfb216f1d68124782b954a2e [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
Tien Fong Cheecafc4292019-01-23 14:20:06 +0800186
187#if CONFIG_IS_ENABLED(FS_EXT4)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000188 {
189 .fstype = FS_TYPE_EXT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100190 .name = "ext4",
Stephen Warren377202b2014-02-03 13:21:01 -0700191 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000192 .probe = ext4fs_probe,
193 .close = ext4fs_close,
Simon Glass436e2b72012-12-26 09:53:29 +0000194 .ls = ext4fs_ls,
Stephen Warren55af5c92014-02-03 13:21:09 -0700195 .exists = ext4fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600196 .size = ext4fs_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000197 .read = ext4_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800198#ifdef CONFIG_CMD_EXT4_WRITE
199 .write = ext4_write_file,
200#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700201 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800202#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100203 .uuid = ext4fs_uuid,
Rob Clark4bbcc962017-09-09 13:15:55 -0400204 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900205 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900206 .mkdir = fs_mkdir_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000207 },
208#endif
Simon Glass92ccc962012-12-26 09:53:35 +0000209#ifdef CONFIG_SANDBOX
210 {
211 .fstype = FS_TYPE_SANDBOX,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100212 .name = "sandbox",
Stephen Warren377202b2014-02-03 13:21:01 -0700213 .null_dev_desc_ok = true,
Simon Glass92ccc962012-12-26 09:53:35 +0000214 .probe = sandbox_fs_set_blk_dev,
215 .close = sandbox_fs_close,
216 .ls = sandbox_fs_ls,
Stephen Warren0a30aa12014-02-03 13:21:07 -0700217 .exists = sandbox_fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600218 .size = sandbox_fs_size,
Simon Glass92ccc962012-12-26 09:53:35 +0000219 .read = fs_read_sandbox,
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000220 .write = fs_write_sandbox,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100221 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400222 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900223 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900224 .mkdir = fs_mkdir_unsupported,
Simon Glass92ccc962012-12-26 09:53:35 +0000225 },
226#endif
Hans de Goede251cee02015-09-17 18:46:58 -0400227#ifdef CONFIG_CMD_UBIFS
228 {
229 .fstype = FS_TYPE_UBIFS,
230 .name = "ubifs",
231 .null_dev_desc_ok = true,
232 .probe = ubifs_set_blk_dev,
233 .close = ubifs_close,
234 .ls = ubifs_ls,
235 .exists = ubifs_exists,
236 .size = ubifs_size,
237 .read = ubifs_read,
238 .write = fs_write_unsupported,
239 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400240 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900241 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900242 .mkdir = fs_mkdir_unsupported,
Hans de Goede251cee02015-09-17 18:46:58 -0400243 },
244#endif
Marek BehĂșn0c936ee2017-09-03 17:00:29 +0200245#ifdef CONFIG_FS_BTRFS
246 {
247 .fstype = FS_TYPE_BTRFS,
248 .name = "btrfs",
249 .null_dev_desc_ok = false,
250 .probe = btrfs_probe,
251 .close = btrfs_close,
252 .ls = btrfs_ls,
253 .exists = btrfs_exists,
254 .size = btrfs_size,
255 .read = btrfs_read,
256 .write = fs_write_unsupported,
257 .uuid = btrfs_uuid,
Marek BehĂșn38fc6832017-10-06 16:56:07 +0200258 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900259 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900260 .mkdir = fs_mkdir_unsupported,
Marek BehĂșn0c936ee2017-09-03 17:00:29 +0200261 },
262#endif
Simon Glass436e2b72012-12-26 09:53:29 +0000263 {
264 .fstype = FS_TYPE_ANY,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100265 .name = "unsupported",
Stephen Warren377202b2014-02-03 13:21:01 -0700266 .null_dev_desc_ok = true,
Simon Glass436e2b72012-12-26 09:53:29 +0000267 .probe = fs_probe_unsupported,
268 .close = fs_close_unsupported,
269 .ls = fs_ls_unsupported,
Stephen Warren61529162014-02-03 13:21:00 -0700270 .exists = fs_exists_unsupported,
Stephen Warrencf659812014-06-11 12:47:26 -0600271 .size = fs_size_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000272 .read = fs_read_unsupported,
Simon Glassa8f6ab52013-04-20 08:42:50 +0000273 .write = fs_write_unsupported,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100274 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400275 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900276 .unlink = fs_unlink_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900277 .mkdir = fs_mkdir_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000278 },
279};
280
Simon Glassc6f548d2012-12-26 09:53:30 +0000281static struct fstype_info *fs_get_info(int fstype)
282{
283 struct fstype_info *info;
284 int i;
285
286 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
287 if (fstype == info->fstype)
288 return info;
289 }
290
291 /* Return the 'unsupported' sentinel */
292 return info;
293}
294
Alex Kiernan0d488e82018-05-29 15:30:50 +0000295/**
296 * fs_get_type_name() - Get type of current filesystem
297 *
298 * Return: Pointer to filesystem name
299 *
300 * Returns a string describing the current filesystem, or the sentinel
301 * "unsupported" for any unrecognised filesystem.
302 */
303const char *fs_get_type_name(void)
304{
305 return fs_get_info(fs_type)->name;
306}
307
Stephen Warren045fa1e2012-10-22 06:43:51 +0000308int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
309{
Simon Glass436e2b72012-12-26 09:53:29 +0000310 struct fstype_info *info;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000311 int part, i;
Stephen Warrena1b231c2012-10-30 07:50:47 +0000312#ifdef CONFIG_NEEDS_MANUAL_RELOC
313 static int relocated;
314
315 if (!relocated) {
Simon Glass436e2b72012-12-26 09:53:29 +0000316 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
317 i++, info++) {
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100318 info->name += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000319 info->probe += gd->reloc_off;
320 info->close += gd->reloc_off;
321 info->ls += gd->reloc_off;
322 info->read += gd->reloc_off;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000323 info->write += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000324 }
Stephen Warrena1b231c2012-10-30 07:50:47 +0000325 relocated = 1;
326 }
327#endif
Stephen Warren045fa1e2012-10-22 06:43:51 +0000328
Simon Glasse35929e2016-02-29 15:25:44 -0700329 part = blk_get_device_part_str(ifname, dev_part_str, &fs_dev_desc,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000330 &fs_partition, 1);
331 if (part < 0)
332 return -1;
333
Simon Glass436e2b72012-12-26 09:53:29 +0000334 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
335 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
336 fstype != info->fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000337 continue;
338
Stephen Warren377202b2014-02-03 13:21:01 -0700339 if (!fs_dev_desc && !info->null_dev_desc_ok)
340 continue;
341
Simon Glass2ded0d42012-12-26 09:53:31 +0000342 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass436e2b72012-12-26 09:53:29 +0000343 fs_type = info->fstype;
Rob Clark4bbcc962017-09-09 13:15:55 -0400344 fs_dev_part = part;
345 return 0;
346 }
347 }
348
349 return -1;
350}
351
352/* set current blk device w/ blk_desc + partition # */
353int fs_set_blk_dev_with_part(struct blk_desc *desc, int part)
354{
355 struct fstype_info *info;
356 int ret, i;
357
358 if (part >= 1)
359 ret = part_get_info(desc, part, &fs_partition);
360 else
361 ret = part_get_info_whole_disk(desc, &fs_partition);
362 if (ret)
363 return ret;
364 fs_dev_desc = desc;
365
366 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
367 if (!info->probe(fs_dev_desc, &fs_partition)) {
368 fs_type = info->fstype;
AKASHI Takahirob0c78d82018-10-17 16:32:02 +0900369 fs_dev_part = part;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000370 return 0;
371 }
372 }
373
Stephen Warren045fa1e2012-10-22 06:43:51 +0000374 return -1;
375}
376
377static void fs_close(void)
378{
Simon Glassc6f548d2012-12-26 09:53:30 +0000379 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000380
Simon Glassc6f548d2012-12-26 09:53:30 +0000381 info->close();
Simon Glasse6d52412012-12-26 09:53:33 +0000382
Stephen Warren045fa1e2012-10-22 06:43:51 +0000383 fs_type = FS_TYPE_ANY;
384}
385
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100386int fs_uuid(char *uuid_str)
387{
388 struct fstype_info *info = fs_get_info(fs_type);
389
390 return info->uuid(uuid_str);
391}
392
Stephen Warren045fa1e2012-10-22 06:43:51 +0000393int fs_ls(const char *dirname)
394{
395 int ret;
396
Simon Glassc6f548d2012-12-26 09:53:30 +0000397 struct fstype_info *info = fs_get_info(fs_type);
398
399 ret = info->ls(dirname);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000400
Simon Glasse6d52412012-12-26 09:53:33 +0000401 fs_type = FS_TYPE_ANY;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000402 fs_close();
403
404 return ret;
405}
406
Stephen Warren61529162014-02-03 13:21:00 -0700407int fs_exists(const char *filename)
408{
409 int ret;
410
411 struct fstype_info *info = fs_get_info(fs_type);
412
413 ret = info->exists(filename);
414
415 fs_close();
416
417 return ret;
418}
419
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800420int fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600421{
422 int ret;
423
424 struct fstype_info *info = fs_get_info(fs_type);
425
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800426 ret = info->size(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600427
428 fs_close();
429
430 return ret;
431}
432
Simon Goldschmidtaa3c6092019-01-14 22:38:19 +0100433#ifdef CONFIG_LMB
434/* Check if a file may be read to the given address */
435static int fs_read_lmb_check(const char *filename, ulong addr, loff_t offset,
436 loff_t len, struct fstype_info *info)
437{
438 struct lmb lmb;
439 int ret;
440 loff_t size;
441 loff_t read_len;
442
443 /* get the actual size of the file */
444 ret = info->size(filename, &size);
445 if (ret)
446 return ret;
447 if (offset >= size) {
448 /* offset >= EOF, no bytes will be written */
449 return 0;
450 }
451 read_len = size - offset;
452
453 /* limit to 'len' if it is smaller */
454 if (len && len < read_len)
455 read_len = len;
456
Simon Goldschmidt9cc23232019-01-26 22:13:04 +0100457 lmb_init_and_reserve(&lmb, gd->bd, (void *)gd->fdt_blob);
Simon Goldschmidtaa3c6092019-01-14 22:38:19 +0100458 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}