blob: cb265174e2f2eb446bd6003903cb1e1408aa6f4e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Stephen Warreneefbc3f2012-10-22 06:43:51 +00002/*
3 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
Stephen Warreneefbc3f2012-10-22 06:43:51 +00004 */
5
6#include <config.h>
Christian Gmeiner9f9eec32014-11-12 14:35:04 +01007#include <errno.h>
Stephen Warreneefbc3f2012-10-22 06:43:51 +00008#include <common.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -05009#include <mapmem.h>
Stephen Warreneefbc3f2012-10-22 06:43:51 +000010#include <part.h>
11#include <ext4fs.h>
12#include <fat.h>
13#include <fs.h>
Simon Glass11842872012-12-26 09:53:35 +000014#include <sandboxfs.h>
Hans de Goede690c7962015-09-17 18:46:58 -040015#include <ubifs_uboot.h>
Marek BehĂșn98ec1d12017-09-03 17:00:29 +020016#include <btrfs.h>
Simon Glasscbe5d5d2012-12-26 09:53:32 +000017#include <asm/io.h>
Tom Rinia17b7bc2014-11-24 11:50:46 -050018#include <div64.h>
19#include <linux/math64.h>
Stephen Warreneefbc3f2012-10-22 06:43:51 +000020
Stephen Warren44161af2012-10-30 07:50:47 +000021DECLARE_GLOBAL_DATA_PTR;
22
Simon Glasse3394752016-02-29 15:25:34 -070023static struct blk_desc *fs_dev_desc;
Rob Clark2b7bfd92017-09-09 13:15:55 -040024static int fs_dev_part;
Stephen Warreneefbc3f2012-10-22 06:43:51 +000025static disk_partition_t fs_partition;
26static int fs_type = FS_TYPE_ANY;
27
Simon Glasse3394752016-02-29 15:25:34 -070028static inline int fs_probe_unsupported(struct blk_desc *fs_dev_desc,
Simon Glass6a46e2f2012-12-26 09:53:31 +000029 disk_partition_t *fs_partition)
Simon Glass1aede482012-12-26 09:53:29 +000030{
31 printf("** Unrecognized filesystem type **\n");
32 return -1;
33}
34
Stephen Warreneefbc3f2012-10-22 06:43:51 +000035static inline int fs_ls_unsupported(const char *dirname)
36{
Stephen Warreneefbc3f2012-10-22 06:43:51 +000037 return -1;
38}
39
Rob Clark60d74a92017-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 Warrend008fbb2014-02-03 13:21:00 -070069static inline int fs_exists_unsupported(const char *filename)
70{
71 return 0;
72}
73
Suriyan Ramasami96171fb2014-11-17 14:39:38 -080074static inline int fs_size_unsupported(const char *filename, loff_t *size)
Stephen Warren3eb58f52014-06-11 12:47:26 -060075{
76 return -1;
77}
78
Simon Glasscbe5d5d2012-12-26 09:53:32 +000079static inline int fs_read_unsupported(const char *filename, void *buf,
Suriyan Ramasami96171fb2014-11-17 14:39:38 -080080 loff_t offset, loff_t len,
81 loff_t *actread)
Stephen Warreneefbc3f2012-10-22 06:43:51 +000082{
Stephen Warreneefbc3f2012-10-22 06:43:51 +000083 return -1;
84}
85
Simon Glasseda14ea2013-04-20 08:42:50 +000086static inline int fs_write_unsupported(const char *filename, void *buf,
Suriyan Ramasami96171fb2014-11-17 14:39:38 -080087 loff_t offset, loff_t len,
88 loff_t *actwrite)
Simon Glasseda14ea2013-04-20 08:42:50 +000089{
90 return -1;
91}
92
Simon Glass1aede482012-12-26 09:53:29 +000093static inline void fs_close_unsupported(void)
94{
95}
96
Christian Gmeiner9f9eec32014-11-12 14:35:04 +010097static inline int fs_uuid_unsupported(char *uuid_str)
98{
99 return -1;
100}
101
Rob Clark2b7bfd92017-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 Takahiro1ba42532018-09-11 15:59:13 +0900108static inline int fs_unlink_unsupported(const char *filename)
109{
110 return -1;
111}
112
AKASHI Takahiroadc8c9f2018-09-11 15:59:08 +0900113static inline int fs_mkdir_unsupported(const char *dirname)
114{
115 return -1;
116}
117
Simon Glass1aede482012-12-26 09:53:29 +0000118struct fstype_info {
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000119 int fstype;
Sjoerd Simons7d9faf62015-01-05 18:13:36 +0100120 char *name;
Stephen Warrenec63d4a2014-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 Schuchardt99dc17d2018-08-11 15:52:14 +0200125 * set to true. This should also be true for the dummy entry at the end
Stephen Warrenec63d4a2014-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 Glasse3394752016-02-29 15:25:34 -0700130 int (*probe)(struct blk_desc *fs_dev_desc,
Simon Glass6a46e2f2012-12-26 09:53:31 +0000131 disk_partition_t *fs_partition);
Simon Glass1aede482012-12-26 09:53:29 +0000132 int (*ls)(const char *dirname);
Stephen Warrend008fbb2014-02-03 13:21:00 -0700133 int (*exists)(const char *filename);
Suriyan Ramasami96171fb2014-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 Glass1aede482012-12-26 09:53:29 +0000139 void (*close)(void);
Christian Gmeiner9f9eec32014-11-12 14:35:04 +0100140 int (*uuid)(char *uuid_str);
Rob Clark2b7bfd92017-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 Takahiro1ba42532018-09-11 15:59:13 +0900155 int (*unlink)(const char *filename);
AKASHI Takahiroadc8c9f2018-09-11 15:59:08 +0900156 int (*mkdir)(const char *dirname);
Simon Glass1aede482012-12-26 09:53:29 +0000157};
158
159static struct fstype_info fstypes[] = {
160#ifdef CONFIG_FS_FAT
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000161 {
162 .fstype = FS_TYPE_FAT,
Sjoerd Simons7d9faf62015-01-05 18:13:36 +0100163 .name = "fat",
Stephen Warrenec63d4a2014-02-03 13:21:01 -0700164 .null_dev_desc_ok = false,
Simon Glass19e38582012-12-26 09:53:33 +0000165 .probe = fat_set_blk_dev,
166 .close = fat_close,
Rob Clark60d74a92017-09-09 13:15:58 -0400167 .ls = fs_ls_generic,
Stephen Warren1d2f9a02014-02-03 13:21:10 -0700168 .exists = fat_exists,
Stephen Warren3eb58f52014-06-11 12:47:26 -0600169 .size = fat_size,
Simon Glass19e38582012-12-26 09:53:33 +0000170 .read = fat_read_file,
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800171#ifdef CONFIG_FAT_WRITE
172 .write = file_fat_write,
AKASHI Takahiro73b34972018-09-11 15:59:14 +0900173 .unlink = fat_unlink,
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +0900174 .mkdir = fat_mkdir,
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800175#else
Stephen Warren9df25802014-02-03 13:20:59 -0700176 .write = fs_write_unsupported,
AKASHI Takahiro73b34972018-09-11 15:59:14 +0900177 .unlink = fs_unlink_unsupported,
AKASHI Takahiro1c24b7b2018-09-11 15:59:10 +0900178 .mkdir = fs_mkdir_unsupported,
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800179#endif
Christian Gmeiner9f9eec32014-11-12 14:35:04 +0100180 .uuid = fs_uuid_unsupported,
Rob Clark60d74a92017-09-09 13:15:58 -0400181 .opendir = fat_opendir,
182 .readdir = fat_readdir,
183 .closedir = fat_closedir,
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000184 },
Simon Glass1aede482012-12-26 09:53:29 +0000185#endif
186#ifdef CONFIG_FS_EXT4
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000187 {
188 .fstype = FS_TYPE_EXT,
Sjoerd Simons7d9faf62015-01-05 18:13:36 +0100189 .name = "ext4",
Stephen Warrenec63d4a2014-02-03 13:21:01 -0700190 .null_dev_desc_ok = false,
Simon Glass19e38582012-12-26 09:53:33 +0000191 .probe = ext4fs_probe,
192 .close = ext4fs_close,
Simon Glass1aede482012-12-26 09:53:29 +0000193 .ls = ext4fs_ls,
Stephen Warren12d6d0c2014-02-03 13:21:09 -0700194 .exists = ext4fs_exists,
Stephen Warren3eb58f52014-06-11 12:47:26 -0600195 .size = ext4fs_size,
Simon Glass19e38582012-12-26 09:53:33 +0000196 .read = ext4_read_file,
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800197#ifdef CONFIG_CMD_EXT4_WRITE
198 .write = ext4_write_file,
199#else
Stephen Warren9df25802014-02-03 13:20:59 -0700200 .write = fs_write_unsupported,
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800201#endif
Christian Gmeiner9f9eec32014-11-12 14:35:04 +0100202 .uuid = ext4fs_uuid,
Rob Clark2b7bfd92017-09-09 13:15:55 -0400203 .opendir = fs_opendir_unsupported,
AKASHI Takahiro1ba42532018-09-11 15:59:13 +0900204 .unlink = fs_unlink_unsupported,
AKASHI Takahiroadc8c9f2018-09-11 15:59:08 +0900205 .mkdir = fs_mkdir_unsupported,
Simon Glass1aede482012-12-26 09:53:29 +0000206 },
207#endif
Simon Glass11842872012-12-26 09:53:35 +0000208#ifdef CONFIG_SANDBOX
209 {
210 .fstype = FS_TYPE_SANDBOX,
Sjoerd Simons7d9faf62015-01-05 18:13:36 +0100211 .name = "sandbox",
Stephen Warrenec63d4a2014-02-03 13:21:01 -0700212 .null_dev_desc_ok = true,
Simon Glass11842872012-12-26 09:53:35 +0000213 .probe = sandbox_fs_set_blk_dev,
214 .close = sandbox_fs_close,
215 .ls = sandbox_fs_ls,
Stephen Warren97d66f22014-02-03 13:21:07 -0700216 .exists = sandbox_fs_exists,
Stephen Warren3eb58f52014-06-11 12:47:26 -0600217 .size = sandbox_fs_size,
Simon Glass11842872012-12-26 09:53:35 +0000218 .read = fs_read_sandbox,
Simon Glassea307e82013-04-20 08:42:51 +0000219 .write = fs_write_sandbox,
Christian Gmeiner9f9eec32014-11-12 14:35:04 +0100220 .uuid = fs_uuid_unsupported,
Rob Clark2b7bfd92017-09-09 13:15:55 -0400221 .opendir = fs_opendir_unsupported,
AKASHI Takahiro1ba42532018-09-11 15:59:13 +0900222 .unlink = fs_unlink_unsupported,
AKASHI Takahiroadc8c9f2018-09-11 15:59:08 +0900223 .mkdir = fs_mkdir_unsupported,
Simon Glass11842872012-12-26 09:53:35 +0000224 },
225#endif
Hans de Goede690c7962015-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 Clark2b7bfd92017-09-09 13:15:55 -0400239 .opendir = fs_opendir_unsupported,
AKASHI Takahiro1ba42532018-09-11 15:59:13 +0900240 .unlink = fs_unlink_unsupported,
AKASHI Takahiroadc8c9f2018-09-11 15:59:08 +0900241 .mkdir = fs_mkdir_unsupported,
Hans de Goede690c7962015-09-17 18:46:58 -0400242 },
243#endif
Marek BehĂșn98ec1d12017-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Ășn90762d92017-10-06 16:56:07 +0200257 .opendir = fs_opendir_unsupported,
AKASHI Takahiro1ba42532018-09-11 15:59:13 +0900258 .unlink = fs_unlink_unsupported,
AKASHI Takahiroadc8c9f2018-09-11 15:59:08 +0900259 .mkdir = fs_mkdir_unsupported,
Marek BehĂșn98ec1d12017-09-03 17:00:29 +0200260 },
261#endif
Simon Glass1aede482012-12-26 09:53:29 +0000262 {
263 .fstype = FS_TYPE_ANY,
Sjoerd Simons7d9faf62015-01-05 18:13:36 +0100264 .name = "unsupported",
Stephen Warrenec63d4a2014-02-03 13:21:01 -0700265 .null_dev_desc_ok = true,
Simon Glass1aede482012-12-26 09:53:29 +0000266 .probe = fs_probe_unsupported,
267 .close = fs_close_unsupported,
268 .ls = fs_ls_unsupported,
Stephen Warrend008fbb2014-02-03 13:21:00 -0700269 .exists = fs_exists_unsupported,
Stephen Warren3eb58f52014-06-11 12:47:26 -0600270 .size = fs_size_unsupported,
Simon Glass1aede482012-12-26 09:53:29 +0000271 .read = fs_read_unsupported,
Simon Glasseda14ea2013-04-20 08:42:50 +0000272 .write = fs_write_unsupported,
Christian Gmeiner9f9eec32014-11-12 14:35:04 +0100273 .uuid = fs_uuid_unsupported,
Rob Clark2b7bfd92017-09-09 13:15:55 -0400274 .opendir = fs_opendir_unsupported,
AKASHI Takahiro1ba42532018-09-11 15:59:13 +0900275 .unlink = fs_unlink_unsupported,
AKASHI Takahiroadc8c9f2018-09-11 15:59:08 +0900276 .mkdir = fs_mkdir_unsupported,
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000277 },
278};
279
Simon Glasse6aad852012-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 Kiernan3a6163a2018-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 Warreneefbc3f2012-10-22 06:43:51 +0000307int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
308{
Simon Glass1aede482012-12-26 09:53:29 +0000309 struct fstype_info *info;
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000310 int part, i;
Stephen Warren44161af2012-10-30 07:50:47 +0000311#ifdef CONFIG_NEEDS_MANUAL_RELOC
312 static int relocated;
313
314 if (!relocated) {
Simon Glass1aede482012-12-26 09:53:29 +0000315 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
316 i++, info++) {
Sjoerd Simons7d9faf62015-01-05 18:13:36 +0100317 info->name += gd->reloc_off;
Simon Glass1aede482012-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 Glasseda14ea2013-04-20 08:42:50 +0000322 info->write += gd->reloc_off;
Simon Glass1aede482012-12-26 09:53:29 +0000323 }
Stephen Warren44161af2012-10-30 07:50:47 +0000324 relocated = 1;
325 }
326#endif
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000327
Simon Glasse76ee972016-02-29 15:25:44 -0700328 part = blk_get_device_part_str(ifname, dev_part_str, &fs_dev_desc,
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000329 &fs_partition, 1);
330 if (part < 0)
331 return -1;
332
Simon Glass1aede482012-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 Warreneefbc3f2012-10-22 06:43:51 +0000336 continue;
337
Stephen Warrenec63d4a2014-02-03 13:21:01 -0700338 if (!fs_dev_desc && !info->null_dev_desc_ok)
339 continue;
340
Simon Glass6a46e2f2012-12-26 09:53:31 +0000341 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass1aede482012-12-26 09:53:29 +0000342 fs_type = info->fstype;
Rob Clark2b7bfd92017-09-09 13:15:55 -0400343 fs_dev_part = part;
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000344 return 0;
345 }
346 }
347
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000348 return -1;
349}
350
Rob Clark2b7bfd92017-09-09 13:15:55 -0400351/* 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 Takahiro43efaa02018-10-17 16:32:02 +0900368 fs_dev_part = part;
Rob Clark2b7bfd92017-09-09 13:15:55 -0400369 return 0;
370 }
371 }
372
373 return -1;
374}
375
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000376static void fs_close(void)
377{
Simon Glasse6aad852012-12-26 09:53:30 +0000378 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000379
Simon Glasse6aad852012-12-26 09:53:30 +0000380 info->close();
Simon Glass19e38582012-12-26 09:53:33 +0000381
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000382 fs_type = FS_TYPE_ANY;
383}
384
Christian Gmeiner9f9eec32014-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 Warreneefbc3f2012-10-22 06:43:51 +0000392int fs_ls(const char *dirname)
393{
394 int ret;
395
Simon Glasse6aad852012-12-26 09:53:30 +0000396 struct fstype_info *info = fs_get_info(fs_type);
397
398 ret = info->ls(dirname);
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000399
Simon Glass19e38582012-12-26 09:53:33 +0000400 fs_type = FS_TYPE_ANY;
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000401 fs_close();
402
403 return ret;
404}
405
Stephen Warrend008fbb2014-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 Ramasami96171fb2014-11-17 14:39:38 -0800419int fs_size(const char *filename, loff_t *size)
Stephen Warren3eb58f52014-06-11 12:47:26 -0600420{
421 int ret;
422
423 struct fstype_info *info = fs_get_info(fs_type);
424
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800425 ret = info->size(filename, size);
Stephen Warren3eb58f52014-06-11 12:47:26 -0600426
427 fs_close();
428
429 return ret;
430}
431
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800432int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
433 loff_t *actread)
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000434{
Simon Glasse6aad852012-12-26 09:53:30 +0000435 struct fstype_info *info = fs_get_info(fs_type);
Simon Glasscbe5d5d2012-12-26 09:53:32 +0000436 void *buf;
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000437 int ret;
438
Simon Glasscbe5d5d2012-12-26 09:53:32 +0000439 /*
440 * We don't actually know how many bytes are being read, since len==0
441 * means read the whole file.
442 */
443 buf = map_sysmem(addr, len);
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800444 ret = info->read(filename, buf, offset, len, actread);
Simon Glasscbe5d5d2012-12-26 09:53:32 +0000445 unmap_sysmem(buf);
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000446
Simon Glasse6aad852012-12-26 09:53:30 +0000447 /* If we requested a specific number of bytes, check we got it */
Max Krummenacher56d9cdf2015-08-05 17:16:58 +0200448 if (ret == 0 && len && *actread != len)
Heinrich Schuchardtf02c5c52018-01-01 21:15:37 +0100449 debug("** %s shorter than offset + len **\n", filename);
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000450 fs_close();
451
452 return ret;
453}
454
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800455int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
456 loff_t *actwrite)
Simon Glasseda14ea2013-04-20 08:42:50 +0000457{
458 struct fstype_info *info = fs_get_info(fs_type);
459 void *buf;
460 int ret;
461
Simon Glasseda14ea2013-04-20 08:42:50 +0000462 buf = map_sysmem(addr, len);
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800463 ret = info->write(filename, buf, offset, len, actwrite);
Simon Glasseda14ea2013-04-20 08:42:50 +0000464 unmap_sysmem(buf);
465
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800466 if (ret < 0 && len != *actwrite) {
Simon Glasseda14ea2013-04-20 08:42:50 +0000467 printf("** Unable to write file %s **\n", filename);
468 ret = -1;
469 }
470 fs_close();
471
472 return ret;
473}
474
Rob Clark2b7bfd92017-09-09 13:15:55 -0400475struct fs_dir_stream *fs_opendir(const char *filename)
476{
477 struct fstype_info *info = fs_get_info(fs_type);
478 struct fs_dir_stream *dirs = NULL;
479 int ret;
480
481 ret = info->opendir(filename, &dirs);
482 fs_close();
483 if (ret) {
484 errno = -ret;
485 return NULL;
486 }
487
488 dirs->desc = fs_dev_desc;
489 dirs->part = fs_dev_part;
490
491 return dirs;
492}
493
494struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs)
495{
496 struct fstype_info *info;
497 struct fs_dirent *dirent;
498 int ret;
499
500 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
501 info = fs_get_info(fs_type);
502
503 ret = info->readdir(dirs, &dirent);
504 fs_close();
505 if (ret) {
506 errno = -ret;
507 return NULL;
508 }
509
510 return dirent;
511}
512
513void fs_closedir(struct fs_dir_stream *dirs)
514{
515 struct fstype_info *info;
516
517 if (!dirs)
518 return;
519
520 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
521 info = fs_get_info(fs_type);
522
523 info->closedir(dirs);
524 fs_close();
525}
526
AKASHI Takahiro1ba42532018-09-11 15:59:13 +0900527int fs_unlink(const char *filename)
528{
529 int ret;
530
531 struct fstype_info *info = fs_get_info(fs_type);
532
533 ret = info->unlink(filename);
534
535 fs_type = FS_TYPE_ANY;
536 fs_close();
537
538 return ret;
539}
AKASHI Takahiroadc8c9f2018-09-11 15:59:08 +0900540
541int fs_mkdir(const char *dirname)
542{
543 int ret;
544
545 struct fstype_info *info = fs_get_info(fs_type);
546
547 ret = info->mkdir(dirname);
548
549 fs_type = FS_TYPE_ANY;
550 fs_close();
551
552 return ret;
553}
Rob Clark2b7bfd92017-09-09 13:15:55 -0400554
Stephen Warren3eb58f52014-06-11 12:47:26 -0600555int do_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
556 int fstype)
557{
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800558 loff_t size;
Stephen Warren3eb58f52014-06-11 12:47:26 -0600559
560 if (argc != 4)
561 return CMD_RET_USAGE;
562
563 if (fs_set_blk_dev(argv[1], argv[2], fstype))
564 return 1;
565
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800566 if (fs_size(argv[3], &size) < 0)
Stephen Warren3eb58f52014-06-11 12:47:26 -0600567 return CMD_RET_FAILURE;
568
Simon Glass4d949a22017-08-03 12:22:10 -0600569 env_set_hex("filesize", size);
Stephen Warren3eb58f52014-06-11 12:47:26 -0600570
571 return 0;
572}
573
Stephen Warren128d3d92012-10-31 11:05:07 +0000574int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denka10c7a52013-10-05 21:07:25 +0200575 int fstype)
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000576{
577 unsigned long addr;
578 const char *addr_str;
579 const char *filename;
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800580 loff_t bytes;
581 loff_t pos;
582 loff_t len_read;
583 int ret;
Andreas Bießmann1fd2d8a2012-11-14 13:32:37 +0100584 unsigned long time;
Pavel Machek4c1a9c52014-07-09 22:42:57 +0200585 char *ep;
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000586
Stephen Warrenb2d5cd62012-10-30 12:04:17 +0000587 if (argc < 2)
588 return CMD_RET_USAGE;
589 if (argc > 7)
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000590 return CMD_RET_USAGE;
591
Stephen Warrenb2d5cd62012-10-30 12:04:17 +0000592 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000593 return 1;
594
595 if (argc >= 4) {
Pavel Machek4c1a9c52014-07-09 22:42:57 +0200596 addr = simple_strtoul(argv[3], &ep, 16);
597 if (ep == argv[3] || *ep != '\0')
598 return CMD_RET_USAGE;
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000599 } else {
Simon Glass64b723f2017-08-03 12:22:12 -0600600 addr_str = env_get("loadaddr");
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000601 if (addr_str != NULL)
602 addr = simple_strtoul(addr_str, NULL, 16);
603 else
604 addr = CONFIG_SYS_LOAD_ADDR;
605 }
606 if (argc >= 5) {
607 filename = argv[4];
608 } else {
Simon Glass64b723f2017-08-03 12:22:12 -0600609 filename = env_get("bootfile");
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000610 if (!filename) {
611 puts("** No boot file defined **\n");
612 return 1;
613 }
614 }
615 if (argc >= 6)
Wolfgang Denka10c7a52013-10-05 21:07:25 +0200616 bytes = simple_strtoul(argv[5], NULL, 16);
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000617 else
618 bytes = 0;
619 if (argc >= 7)
Wolfgang Denka10c7a52013-10-05 21:07:25 +0200620 pos = simple_strtoul(argv[6], NULL, 16);
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000621 else
622 pos = 0;
623
Andreas Bießmann1fd2d8a2012-11-14 13:32:37 +0100624 time = get_timer(0);
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800625 ret = fs_read(filename, addr, pos, bytes, &len_read);
Andreas Bießmann1fd2d8a2012-11-14 13:32:37 +0100626 time = get_timer(time);
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800627 if (ret < 0)
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000628 return 1;
629
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800630 printf("%llu bytes read in %lu ms", len_read, time);
Andreas Bießmann1fd2d8a2012-11-14 13:32:37 +0100631 if (time > 0) {
632 puts(" (");
Tom Rinia17b7bc2014-11-24 11:50:46 -0500633 print_size(div_u64(len_read, time) * 1000, "/s");
Andreas Bießmann1fd2d8a2012-11-14 13:32:37 +0100634 puts(")");
635 }
636 puts("\n");
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000637
Simon Glass4d949a22017-08-03 12:22:10 -0600638 env_set_hex("fileaddr", addr);
639 env_set_hex("filesize", len_read);
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000640
641 return 0;
642}
643
644int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
645 int fstype)
646{
647 if (argc < 2)
648 return CMD_RET_USAGE;
Stephen Warrenb2d5cd62012-10-30 12:04:17 +0000649 if (argc > 4)
650 return CMD_RET_USAGE;
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000651
652 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
653 return 1;
654
Stephen Warrenb2d5cd62012-10-30 12:04:17 +0000655 if (fs_ls(argc >= 4 ? argv[3] : "/"))
Stephen Warreneefbc3f2012-10-22 06:43:51 +0000656 return 1;
657
658 return 0;
659}
Simon Glasseda14ea2013-04-20 08:42:50 +0000660
Stephen Warrend008fbb2014-02-03 13:21:00 -0700661int file_exists(const char *dev_type, const char *dev_part, const char *file,
662 int fstype)
663{
664 if (fs_set_blk_dev(dev_type, dev_part, fstype))
665 return 0;
666
667 return fs_exists(file);
668}
669
Simon Glasseda14ea2013-04-20 08:42:50 +0000670int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denka10c7a52013-10-05 21:07:25 +0200671 int fstype)
Simon Glasseda14ea2013-04-20 08:42:50 +0000672{
673 unsigned long addr;
674 const char *filename;
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800675 loff_t bytes;
676 loff_t pos;
677 loff_t len;
678 int ret;
Simon Glasseda14ea2013-04-20 08:42:50 +0000679 unsigned long time;
680
681 if (argc < 6 || argc > 7)
682 return CMD_RET_USAGE;
683
684 if (fs_set_blk_dev(argv[1], argv[2], fstype))
685 return 1;
686
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800687 addr = simple_strtoul(argv[3], NULL, 16);
688 filename = argv[4];
Wolfgang Denka10c7a52013-10-05 21:07:25 +0200689 bytes = simple_strtoul(argv[5], NULL, 16);
Simon Glasseda14ea2013-04-20 08:42:50 +0000690 if (argc >= 7)
Wolfgang Denka10c7a52013-10-05 21:07:25 +0200691 pos = simple_strtoul(argv[6], NULL, 16);
Simon Glasseda14ea2013-04-20 08:42:50 +0000692 else
693 pos = 0;
694
695 time = get_timer(0);
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800696 ret = fs_write(filename, addr, pos, bytes, &len);
Simon Glasseda14ea2013-04-20 08:42:50 +0000697 time = get_timer(time);
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800698 if (ret < 0)
Simon Glasseda14ea2013-04-20 08:42:50 +0000699 return 1;
700
Suriyan Ramasami96171fb2014-11-17 14:39:38 -0800701 printf("%llu bytes written in %lu ms", len, time);
Simon Glasseda14ea2013-04-20 08:42:50 +0000702 if (time > 0) {
703 puts(" (");
Tom Rinia17b7bc2014-11-24 11:50:46 -0500704 print_size(div_u64(len, time) * 1000, "/s");
Simon Glasseda14ea2013-04-20 08:42:50 +0000705 puts(")");
706 }
707 puts("\n");
708
709 return 0;
710}
Christian Gmeiner9f9eec32014-11-12 14:35:04 +0100711
712int do_fs_uuid(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
713 int fstype)
714{
715 int ret;
716 char uuid[37];
717 memset(uuid, 0, sizeof(uuid));
718
719 if (argc < 3 || argc > 4)
720 return CMD_RET_USAGE;
721
722 if (fs_set_blk_dev(argv[1], argv[2], fstype))
723 return 1;
724
725 ret = fs_uuid(uuid);
726 if (ret)
727 return CMD_RET_FAILURE;
728
729 if (argc == 4)
Simon Glass6a38e412017-08-03 12:22:09 -0600730 env_set(argv[3], uuid);
Christian Gmeiner9f9eec32014-11-12 14:35:04 +0100731 else
732 printf("%s\n", uuid);
733
734 return CMD_RET_SUCCESS;
735}
Sjoerd Simons7d9faf62015-01-05 18:13:36 +0100736
737int do_fs_type(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
738{
739 struct fstype_info *info;
740
741 if (argc < 3 || argc > 4)
742 return CMD_RET_USAGE;
743
744 if (fs_set_blk_dev(argv[1], argv[2], FS_TYPE_ANY))
745 return 1;
746
747 info = fs_get_info(fs_type);
748
749 if (argc == 4)
Simon Glass6a38e412017-08-03 12:22:09 -0600750 env_set(argv[3], info->name);
Sjoerd Simons7d9faf62015-01-05 18:13:36 +0100751 else
752 printf("%s\n", info->name);
753
754 return CMD_RET_SUCCESS;
755}
756
AKASHI Takahiro1ba42532018-09-11 15:59:13 +0900757int do_rm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
758 int fstype)
759{
760 if (argc != 4)
761 return CMD_RET_USAGE;
762
763 if (fs_set_blk_dev(argv[1], argv[2], fstype))
764 return 1;
765
766 if (fs_unlink(argv[3]))
767 return 1;
768
769 return 0;
770}
771
AKASHI Takahiroadc8c9f2018-09-11 15:59:08 +0900772int do_mkdir(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
773 int fstype)
774{
775 int ret;
776
777 if (argc != 4)
778 return CMD_RET_USAGE;
779
780 if (fs_set_blk_dev(argv[1], argv[2], fstype))
781 return 1;
782
783 ret = fs_mkdir(argv[3]);
784 if (ret) {
785 printf("** Unable to create a directory \"%s\" **\n", argv[3]);
786 return 1;
787 }
788
789 return 0;
790}