blob: 33808d549e0a5cd5e0a005dc5b00a3337aa4f0f8 [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
Simon Glass436e2b72012-12-26 09:53:29 +0000108struct fstype_info {
Stephen Warren045fa1e2012-10-22 06:43:51 +0000109 int fstype;
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100110 char *name;
Stephen Warren377202b2014-02-03 13:21:01 -0700111 /*
112 * Is it legal to pass NULL as .probe()'s fs_dev_desc parameter? This
113 * should be false in most cases. For "virtual" filesystems which
114 * aren't based on a U-Boot block device (e.g. sandbox), this can be
115 * set to true. This should also be true for the dumm entry at the end
116 * of fstypes[], since that is essentially a "virtual" (non-existent)
117 * filesystem.
118 */
119 bool null_dev_desc_ok;
Simon Glass4101f682016-02-29 15:25:34 -0700120 int (*probe)(struct blk_desc *fs_dev_desc,
Simon Glass2ded0d42012-12-26 09:53:31 +0000121 disk_partition_t *fs_partition);
Simon Glass436e2b72012-12-26 09:53:29 +0000122 int (*ls)(const char *dirname);
Stephen Warren61529162014-02-03 13:21:00 -0700123 int (*exists)(const char *filename);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800124 int (*size)(const char *filename, loff_t *size);
125 int (*read)(const char *filename, void *buf, loff_t offset,
126 loff_t len, loff_t *actread);
127 int (*write)(const char *filename, void *buf, loff_t offset,
128 loff_t len, loff_t *actwrite);
Simon Glass436e2b72012-12-26 09:53:29 +0000129 void (*close)(void);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100130 int (*uuid)(char *uuid_str);
Rob Clark4bbcc962017-09-09 13:15:55 -0400131 /*
132 * Open a directory stream. On success return 0 and directory
133 * stream pointer via 'dirsp'. On error, return -errno. See
134 * fs_opendir().
135 */
136 int (*opendir)(const char *filename, struct fs_dir_stream **dirsp);
137 /*
138 * Read next entry from directory stream. On success return 0
139 * and directory entry pointer via 'dentp'. On error return
140 * -errno. See fs_readdir().
141 */
142 int (*readdir)(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
143 /* see fs_closedir() */
144 void (*closedir)(struct fs_dir_stream *dirs);
Simon Glass436e2b72012-12-26 09:53:29 +0000145};
146
147static struct fstype_info fstypes[] = {
148#ifdef CONFIG_FS_FAT
Stephen Warren045fa1e2012-10-22 06:43:51 +0000149 {
150 .fstype = FS_TYPE_FAT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100151 .name = "fat",
Stephen Warren377202b2014-02-03 13:21:01 -0700152 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000153 .probe = fat_set_blk_dev,
154 .close = fat_close,
Rob Clark89191d62017-09-09 13:15:58 -0400155 .ls = fs_ls_generic,
Stephen Warrenb7b5f312014-02-03 13:21:10 -0700156 .exists = fat_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600157 .size = fat_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000158 .read = fat_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800159#ifdef CONFIG_FAT_WRITE
160 .write = file_fat_write,
161#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700162 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800163#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100164 .uuid = fs_uuid_unsupported,
Rob Clark89191d62017-09-09 13:15:58 -0400165 .opendir = fat_opendir,
166 .readdir = fat_readdir,
167 .closedir = fat_closedir,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000168 },
Simon Glass436e2b72012-12-26 09:53:29 +0000169#endif
170#ifdef CONFIG_FS_EXT4
Stephen Warren045fa1e2012-10-22 06:43:51 +0000171 {
172 .fstype = FS_TYPE_EXT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100173 .name = "ext4",
Stephen Warren377202b2014-02-03 13:21:01 -0700174 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000175 .probe = ext4fs_probe,
176 .close = ext4fs_close,
Simon Glass436e2b72012-12-26 09:53:29 +0000177 .ls = ext4fs_ls,
Stephen Warren55af5c92014-02-03 13:21:09 -0700178 .exists = ext4fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600179 .size = ext4fs_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000180 .read = ext4_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800181#ifdef CONFIG_CMD_EXT4_WRITE
182 .write = ext4_write_file,
183#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700184 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800185#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100186 .uuid = ext4fs_uuid,
Rob Clark4bbcc962017-09-09 13:15:55 -0400187 .opendir = fs_opendir_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000188 },
189#endif
Simon Glass92ccc962012-12-26 09:53:35 +0000190#ifdef CONFIG_SANDBOX
191 {
192 .fstype = FS_TYPE_SANDBOX,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100193 .name = "sandbox",
Stephen Warren377202b2014-02-03 13:21:01 -0700194 .null_dev_desc_ok = true,
Simon Glass92ccc962012-12-26 09:53:35 +0000195 .probe = sandbox_fs_set_blk_dev,
196 .close = sandbox_fs_close,
197 .ls = sandbox_fs_ls,
Stephen Warren0a30aa12014-02-03 13:21:07 -0700198 .exists = sandbox_fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600199 .size = sandbox_fs_size,
Simon Glass92ccc962012-12-26 09:53:35 +0000200 .read = fs_read_sandbox,
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000201 .write = fs_write_sandbox,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100202 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400203 .opendir = fs_opendir_unsupported,
Simon Glass92ccc962012-12-26 09:53:35 +0000204 },
205#endif
Hans de Goede251cee02015-09-17 18:46:58 -0400206#ifdef CONFIG_CMD_UBIFS
207 {
208 .fstype = FS_TYPE_UBIFS,
209 .name = "ubifs",
210 .null_dev_desc_ok = true,
211 .probe = ubifs_set_blk_dev,
212 .close = ubifs_close,
213 .ls = ubifs_ls,
214 .exists = ubifs_exists,
215 .size = ubifs_size,
216 .read = ubifs_read,
217 .write = fs_write_unsupported,
218 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400219 .opendir = fs_opendir_unsupported,
Hans de Goede251cee02015-09-17 18:46:58 -0400220 },
221#endif
Marek Behún0c936ee2017-09-03 17:00:29 +0200222#ifdef CONFIG_FS_BTRFS
223 {
224 .fstype = FS_TYPE_BTRFS,
225 .name = "btrfs",
226 .null_dev_desc_ok = false,
227 .probe = btrfs_probe,
228 .close = btrfs_close,
229 .ls = btrfs_ls,
230 .exists = btrfs_exists,
231 .size = btrfs_size,
232 .read = btrfs_read,
233 .write = fs_write_unsupported,
234 .uuid = btrfs_uuid,
Marek Behún38fc6832017-10-06 16:56:07 +0200235 .opendir = fs_opendir_unsupported,
Marek Behún0c936ee2017-09-03 17:00:29 +0200236 },
237#endif
Simon Glass436e2b72012-12-26 09:53:29 +0000238 {
239 .fstype = FS_TYPE_ANY,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100240 .name = "unsupported",
Stephen Warren377202b2014-02-03 13:21:01 -0700241 .null_dev_desc_ok = true,
Simon Glass436e2b72012-12-26 09:53:29 +0000242 .probe = fs_probe_unsupported,
243 .close = fs_close_unsupported,
244 .ls = fs_ls_unsupported,
Stephen Warren61529162014-02-03 13:21:00 -0700245 .exists = fs_exists_unsupported,
Stephen Warrencf659812014-06-11 12:47:26 -0600246 .size = fs_size_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000247 .read = fs_read_unsupported,
Simon Glassa8f6ab52013-04-20 08:42:50 +0000248 .write = fs_write_unsupported,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100249 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400250 .opendir = fs_opendir_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000251 },
252};
253
Simon Glassc6f548d2012-12-26 09:53:30 +0000254static struct fstype_info *fs_get_info(int fstype)
255{
256 struct fstype_info *info;
257 int i;
258
259 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
260 if (fstype == info->fstype)
261 return info;
262 }
263
264 /* Return the 'unsupported' sentinel */
265 return info;
266}
267
Alex Kiernan0d488e82018-05-29 15:30:50 +0000268/**
269 * fs_get_type_name() - Get type of current filesystem
270 *
271 * Return: Pointer to filesystem name
272 *
273 * Returns a string describing the current filesystem, or the sentinel
274 * "unsupported" for any unrecognised filesystem.
275 */
276const char *fs_get_type_name(void)
277{
278 return fs_get_info(fs_type)->name;
279}
280
Stephen Warren045fa1e2012-10-22 06:43:51 +0000281int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
282{
Simon Glass436e2b72012-12-26 09:53:29 +0000283 struct fstype_info *info;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000284 int part, i;
Stephen Warrena1b231c2012-10-30 07:50:47 +0000285#ifdef CONFIG_NEEDS_MANUAL_RELOC
286 static int relocated;
287
288 if (!relocated) {
Simon Glass436e2b72012-12-26 09:53:29 +0000289 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
290 i++, info++) {
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100291 info->name += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000292 info->probe += gd->reloc_off;
293 info->close += gd->reloc_off;
294 info->ls += gd->reloc_off;
295 info->read += gd->reloc_off;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000296 info->write += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000297 }
Stephen Warrena1b231c2012-10-30 07:50:47 +0000298 relocated = 1;
299 }
300#endif
Stephen Warren045fa1e2012-10-22 06:43:51 +0000301
Simon Glasse35929e2016-02-29 15:25:44 -0700302 part = blk_get_device_part_str(ifname, dev_part_str, &fs_dev_desc,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000303 &fs_partition, 1);
304 if (part < 0)
305 return -1;
306
Simon Glass436e2b72012-12-26 09:53:29 +0000307 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
308 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
309 fstype != info->fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000310 continue;
311
Stephen Warren377202b2014-02-03 13:21:01 -0700312 if (!fs_dev_desc && !info->null_dev_desc_ok)
313 continue;
314
Simon Glass2ded0d42012-12-26 09:53:31 +0000315 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass436e2b72012-12-26 09:53:29 +0000316 fs_type = info->fstype;
Rob Clark4bbcc962017-09-09 13:15:55 -0400317 fs_dev_part = part;
318 return 0;
319 }
320 }
321
322 return -1;
323}
324
325/* set current blk device w/ blk_desc + partition # */
326int fs_set_blk_dev_with_part(struct blk_desc *desc, int part)
327{
328 struct fstype_info *info;
329 int ret, i;
330
331 if (part >= 1)
332 ret = part_get_info(desc, part, &fs_partition);
333 else
334 ret = part_get_info_whole_disk(desc, &fs_partition);
335 if (ret)
336 return ret;
337 fs_dev_desc = desc;
338
339 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
340 if (!info->probe(fs_dev_desc, &fs_partition)) {
341 fs_type = info->fstype;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000342 return 0;
343 }
344 }
345
Stephen Warren045fa1e2012-10-22 06:43:51 +0000346 return -1;
347}
348
349static void fs_close(void)
350{
Simon Glassc6f548d2012-12-26 09:53:30 +0000351 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000352
Simon Glassc6f548d2012-12-26 09:53:30 +0000353 info->close();
Simon Glasse6d52412012-12-26 09:53:33 +0000354
Stephen Warren045fa1e2012-10-22 06:43:51 +0000355 fs_type = FS_TYPE_ANY;
356}
357
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100358int fs_uuid(char *uuid_str)
359{
360 struct fstype_info *info = fs_get_info(fs_type);
361
362 return info->uuid(uuid_str);
363}
364
Stephen Warren045fa1e2012-10-22 06:43:51 +0000365int fs_ls(const char *dirname)
366{
367 int ret;
368
Simon Glassc6f548d2012-12-26 09:53:30 +0000369 struct fstype_info *info = fs_get_info(fs_type);
370
371 ret = info->ls(dirname);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000372
Simon Glasse6d52412012-12-26 09:53:33 +0000373 fs_type = FS_TYPE_ANY;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000374 fs_close();
375
376 return ret;
377}
378
Stephen Warren61529162014-02-03 13:21:00 -0700379int fs_exists(const char *filename)
380{
381 int ret;
382
383 struct fstype_info *info = fs_get_info(fs_type);
384
385 ret = info->exists(filename);
386
387 fs_close();
388
389 return ret;
390}
391
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800392int fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600393{
394 int ret;
395
396 struct fstype_info *info = fs_get_info(fs_type);
397
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800398 ret = info->size(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600399
400 fs_close();
401
402 return ret;
403}
404
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800405int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
406 loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000407{
Simon Glassc6f548d2012-12-26 09:53:30 +0000408 struct fstype_info *info = fs_get_info(fs_type);
Simon Glass117e0502012-12-26 09:53:32 +0000409 void *buf;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000410 int ret;
411
Simon Glass117e0502012-12-26 09:53:32 +0000412 /*
413 * We don't actually know how many bytes are being read, since len==0
414 * means read the whole file.
415 */
416 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800417 ret = info->read(filename, buf, offset, len, actread);
Simon Glass117e0502012-12-26 09:53:32 +0000418 unmap_sysmem(buf);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000419
Simon Glassc6f548d2012-12-26 09:53:30 +0000420 /* If we requested a specific number of bytes, check we got it */
Max Krummenacher7a3e70c2015-08-05 17:16:58 +0200421 if (ret == 0 && len && *actread != len)
Heinrich Schuchardta327bde2018-01-01 21:15:37 +0100422 debug("** %s shorter than offset + len **\n", filename);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000423 fs_close();
424
425 return ret;
426}
427
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800428int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
429 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000430{
431 struct fstype_info *info = fs_get_info(fs_type);
432 void *buf;
433 int ret;
434
Simon Glassa8f6ab52013-04-20 08:42:50 +0000435 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800436 ret = info->write(filename, buf, offset, len, actwrite);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000437 unmap_sysmem(buf);
438
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800439 if (ret < 0 && len != *actwrite) {
Simon Glassa8f6ab52013-04-20 08:42:50 +0000440 printf("** Unable to write file %s **\n", filename);
441 ret = -1;
442 }
443 fs_close();
444
445 return ret;
446}
447
Rob Clark4bbcc962017-09-09 13:15:55 -0400448struct fs_dir_stream *fs_opendir(const char *filename)
449{
450 struct fstype_info *info = fs_get_info(fs_type);
451 struct fs_dir_stream *dirs = NULL;
452 int ret;
453
454 ret = info->opendir(filename, &dirs);
455 fs_close();
456 if (ret) {
457 errno = -ret;
458 return NULL;
459 }
460
461 dirs->desc = fs_dev_desc;
462 dirs->part = fs_dev_part;
463
464 return dirs;
465}
466
467struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs)
468{
469 struct fstype_info *info;
470 struct fs_dirent *dirent;
471 int ret;
472
473 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
474 info = fs_get_info(fs_type);
475
476 ret = info->readdir(dirs, &dirent);
477 fs_close();
478 if (ret) {
479 errno = -ret;
480 return NULL;
481 }
482
483 return dirent;
484}
485
486void fs_closedir(struct fs_dir_stream *dirs)
487{
488 struct fstype_info *info;
489
490 if (!dirs)
491 return;
492
493 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
494 info = fs_get_info(fs_type);
495
496 info->closedir(dirs);
497 fs_close();
498}
499
500
Stephen Warrencf659812014-06-11 12:47:26 -0600501int do_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
502 int fstype)
503{
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800504 loff_t size;
Stephen Warrencf659812014-06-11 12:47:26 -0600505
506 if (argc != 4)
507 return CMD_RET_USAGE;
508
509 if (fs_set_blk_dev(argv[1], argv[2], fstype))
510 return 1;
511
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800512 if (fs_size(argv[3], &size) < 0)
Stephen Warrencf659812014-06-11 12:47:26 -0600513 return CMD_RET_FAILURE;
514
Simon Glass018f5302017-08-03 12:22:10 -0600515 env_set_hex("filesize", size);
Stephen Warrencf659812014-06-11 12:47:26 -0600516
517 return 0;
518}
519
Stephen Warrenf9b55e22012-10-31 11:05:07 +0000520int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200521 int fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000522{
523 unsigned long addr;
524 const char *addr_str;
525 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800526 loff_t bytes;
527 loff_t pos;
528 loff_t len_read;
529 int ret;
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100530 unsigned long time;
Pavel Machek949bbd72014-07-09 22:42:57 +0200531 char *ep;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000532
Stephen Warrene9b0f992012-10-30 12:04:17 +0000533 if (argc < 2)
534 return CMD_RET_USAGE;
535 if (argc > 7)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000536 return CMD_RET_USAGE;
537
Stephen Warrene9b0f992012-10-30 12:04:17 +0000538 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000539 return 1;
540
541 if (argc >= 4) {
Pavel Machek949bbd72014-07-09 22:42:57 +0200542 addr = simple_strtoul(argv[3], &ep, 16);
543 if (ep == argv[3] || *ep != '\0')
544 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000545 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600546 addr_str = env_get("loadaddr");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000547 if (addr_str != NULL)
548 addr = simple_strtoul(addr_str, NULL, 16);
549 else
550 addr = CONFIG_SYS_LOAD_ADDR;
551 }
552 if (argc >= 5) {
553 filename = argv[4];
554 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600555 filename = env_get("bootfile");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000556 if (!filename) {
557 puts("** No boot file defined **\n");
558 return 1;
559 }
560 }
561 if (argc >= 6)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200562 bytes = simple_strtoul(argv[5], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000563 else
564 bytes = 0;
565 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200566 pos = simple_strtoul(argv[6], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000567 else
568 pos = 0;
569
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100570 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800571 ret = fs_read(filename, addr, pos, bytes, &len_read);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100572 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800573 if (ret < 0)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000574 return 1;
575
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800576 printf("%llu bytes read in %lu ms", len_read, time);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100577 if (time > 0) {
578 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500579 print_size(div_u64(len_read, time) * 1000, "/s");
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100580 puts(")");
581 }
582 puts("\n");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000583
Simon Glass018f5302017-08-03 12:22:10 -0600584 env_set_hex("fileaddr", addr);
585 env_set_hex("filesize", len_read);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000586
587 return 0;
588}
589
590int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
591 int fstype)
592{
593 if (argc < 2)
594 return CMD_RET_USAGE;
Stephen Warrene9b0f992012-10-30 12:04:17 +0000595 if (argc > 4)
596 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000597
598 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
599 return 1;
600
Stephen Warrene9b0f992012-10-30 12:04:17 +0000601 if (fs_ls(argc >= 4 ? argv[3] : "/"))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000602 return 1;
603
604 return 0;
605}
Simon Glassa8f6ab52013-04-20 08:42:50 +0000606
Stephen Warren61529162014-02-03 13:21:00 -0700607int file_exists(const char *dev_type, const char *dev_part, const char *file,
608 int fstype)
609{
610 if (fs_set_blk_dev(dev_type, dev_part, fstype))
611 return 0;
612
613 return fs_exists(file);
614}
615
Simon Glassa8f6ab52013-04-20 08:42:50 +0000616int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200617 int fstype)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000618{
619 unsigned long addr;
620 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800621 loff_t bytes;
622 loff_t pos;
623 loff_t len;
624 int ret;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000625 unsigned long time;
626
627 if (argc < 6 || argc > 7)
628 return CMD_RET_USAGE;
629
630 if (fs_set_blk_dev(argv[1], argv[2], fstype))
631 return 1;
632
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800633 addr = simple_strtoul(argv[3], NULL, 16);
634 filename = argv[4];
Wolfgang Denkb770e882013-10-05 21:07:25 +0200635 bytes = simple_strtoul(argv[5], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000636 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200637 pos = simple_strtoul(argv[6], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000638 else
639 pos = 0;
640
641 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800642 ret = fs_write(filename, addr, pos, bytes, &len);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000643 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800644 if (ret < 0)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000645 return 1;
646
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800647 printf("%llu bytes written in %lu ms", len, time);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000648 if (time > 0) {
649 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500650 print_size(div_u64(len, time) * 1000, "/s");
Simon Glassa8f6ab52013-04-20 08:42:50 +0000651 puts(")");
652 }
653 puts("\n");
654
655 return 0;
656}
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100657
658int do_fs_uuid(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
659 int fstype)
660{
661 int ret;
662 char uuid[37];
663 memset(uuid, 0, sizeof(uuid));
664
665 if (argc < 3 || argc > 4)
666 return CMD_RET_USAGE;
667
668 if (fs_set_blk_dev(argv[1], argv[2], fstype))
669 return 1;
670
671 ret = fs_uuid(uuid);
672 if (ret)
673 return CMD_RET_FAILURE;
674
675 if (argc == 4)
Simon Glass382bee52017-08-03 12:22:09 -0600676 env_set(argv[3], uuid);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100677 else
678 printf("%s\n", uuid);
679
680 return CMD_RET_SUCCESS;
681}
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100682
683int do_fs_type(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
684{
685 struct fstype_info *info;
686
687 if (argc < 3 || argc > 4)
688 return CMD_RET_USAGE;
689
690 if (fs_set_blk_dev(argv[1], argv[2], FS_TYPE_ANY))
691 return 1;
692
693 info = fs_get_info(fs_type);
694
695 if (argc == 4)
Simon Glass382bee52017-08-03 12:22:09 -0600696 env_set(argv[3], info->name);
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100697 else
698 printf("%s\n", info->name);
699
700 return CMD_RET_SUCCESS;
701}
702