blob: 62165d5c57010c8bd4d665fd977c0c0fbbecbe44 [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 Takahiroe7074cf2018-09-11 15:59:08 +0900108static inline int fs_mkdir_unsupported(const char *dirname)
109{
110 return -1;
111}
112
Simon Glass436e2b72012-12-26 09:53:29 +0000113struct fstype_info {
Stephen Warren045fa1e2012-10-22 06:43:51 +0000114 int fstype;
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100115 char *name;
Stephen Warren377202b2014-02-03 13:21:01 -0700116 /*
117 * Is it legal to pass NULL as .probe()'s fs_dev_desc parameter? This
118 * should be false in most cases. For "virtual" filesystems which
119 * aren't based on a U-Boot block device (e.g. sandbox), this can be
Heinrich Schuchardtca230b02018-08-11 15:52:14 +0200120 * set to true. This should also be true for the dummy entry at the end
Stephen Warren377202b2014-02-03 13:21:01 -0700121 * of fstypes[], since that is essentially a "virtual" (non-existent)
122 * filesystem.
123 */
124 bool null_dev_desc_ok;
Simon Glass4101f682016-02-29 15:25:34 -0700125 int (*probe)(struct blk_desc *fs_dev_desc,
Simon Glass2ded0d42012-12-26 09:53:31 +0000126 disk_partition_t *fs_partition);
Simon Glass436e2b72012-12-26 09:53:29 +0000127 int (*ls)(const char *dirname);
Stephen Warren61529162014-02-03 13:21:00 -0700128 int (*exists)(const char *filename);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800129 int (*size)(const char *filename, loff_t *size);
130 int (*read)(const char *filename, void *buf, loff_t offset,
131 loff_t len, loff_t *actread);
132 int (*write)(const char *filename, void *buf, loff_t offset,
133 loff_t len, loff_t *actwrite);
Simon Glass436e2b72012-12-26 09:53:29 +0000134 void (*close)(void);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100135 int (*uuid)(char *uuid_str);
Rob Clark4bbcc962017-09-09 13:15:55 -0400136 /*
137 * Open a directory stream. On success return 0 and directory
138 * stream pointer via 'dirsp'. On error, return -errno. See
139 * fs_opendir().
140 */
141 int (*opendir)(const char *filename, struct fs_dir_stream **dirsp);
142 /*
143 * Read next entry from directory stream. On success return 0
144 * and directory entry pointer via 'dentp'. On error return
145 * -errno. See fs_readdir().
146 */
147 int (*readdir)(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
148 /* see fs_closedir() */
149 void (*closedir)(struct fs_dir_stream *dirs);
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900150 int (*mkdir)(const char *dirname);
Simon Glass436e2b72012-12-26 09:53:29 +0000151};
152
153static struct fstype_info fstypes[] = {
154#ifdef CONFIG_FS_FAT
Stephen Warren045fa1e2012-10-22 06:43:51 +0000155 {
156 .fstype = FS_TYPE_FAT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100157 .name = "fat",
Stephen Warren377202b2014-02-03 13:21:01 -0700158 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000159 .probe = fat_set_blk_dev,
160 .close = fat_close,
Rob Clark89191d62017-09-09 13:15:58 -0400161 .ls = fs_ls_generic,
Stephen Warrenb7b5f312014-02-03 13:21:10 -0700162 .exists = fat_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600163 .size = fat_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000164 .read = fat_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800165#ifdef CONFIG_FAT_WRITE
166 .write = file_fat_write,
167#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700168 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800169#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100170 .uuid = fs_uuid_unsupported,
Rob Clark89191d62017-09-09 13:15:58 -0400171 .opendir = fat_opendir,
172 .readdir = fat_readdir,
173 .closedir = fat_closedir,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900174 .mkdir = fs_mkdir_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000175 },
Simon Glass436e2b72012-12-26 09:53:29 +0000176#endif
177#ifdef CONFIG_FS_EXT4
Stephen Warren045fa1e2012-10-22 06:43:51 +0000178 {
179 .fstype = FS_TYPE_EXT,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100180 .name = "ext4",
Stephen Warren377202b2014-02-03 13:21:01 -0700181 .null_dev_desc_ok = false,
Simon Glasse6d52412012-12-26 09:53:33 +0000182 .probe = ext4fs_probe,
183 .close = ext4fs_close,
Simon Glass436e2b72012-12-26 09:53:29 +0000184 .ls = ext4fs_ls,
Stephen Warren55af5c92014-02-03 13:21:09 -0700185 .exists = ext4fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600186 .size = ext4fs_size,
Simon Glasse6d52412012-12-26 09:53:33 +0000187 .read = ext4_read_file,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800188#ifdef CONFIG_CMD_EXT4_WRITE
189 .write = ext4_write_file,
190#else
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700191 .write = fs_write_unsupported,
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800192#endif
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100193 .uuid = ext4fs_uuid,
Rob Clark4bbcc962017-09-09 13:15:55 -0400194 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900195 .mkdir = fs_mkdir_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000196 },
197#endif
Simon Glass92ccc962012-12-26 09:53:35 +0000198#ifdef CONFIG_SANDBOX
199 {
200 .fstype = FS_TYPE_SANDBOX,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100201 .name = "sandbox",
Stephen Warren377202b2014-02-03 13:21:01 -0700202 .null_dev_desc_ok = true,
Simon Glass92ccc962012-12-26 09:53:35 +0000203 .probe = sandbox_fs_set_blk_dev,
204 .close = sandbox_fs_close,
205 .ls = sandbox_fs_ls,
Stephen Warren0a30aa12014-02-03 13:21:07 -0700206 .exists = sandbox_fs_exists,
Stephen Warrencf659812014-06-11 12:47:26 -0600207 .size = sandbox_fs_size,
Simon Glass92ccc962012-12-26 09:53:35 +0000208 .read = fs_read_sandbox,
Simon Glass7eb2c8d2013-04-20 08:42:51 +0000209 .write = fs_write_sandbox,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100210 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400211 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900212 .mkdir = fs_mkdir_unsupported,
Simon Glass92ccc962012-12-26 09:53:35 +0000213 },
214#endif
Hans de Goede251cee02015-09-17 18:46:58 -0400215#ifdef CONFIG_CMD_UBIFS
216 {
217 .fstype = FS_TYPE_UBIFS,
218 .name = "ubifs",
219 .null_dev_desc_ok = true,
220 .probe = ubifs_set_blk_dev,
221 .close = ubifs_close,
222 .ls = ubifs_ls,
223 .exists = ubifs_exists,
224 .size = ubifs_size,
225 .read = ubifs_read,
226 .write = fs_write_unsupported,
227 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400228 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900229 .mkdir = fs_mkdir_unsupported,
Hans de Goede251cee02015-09-17 18:46:58 -0400230 },
231#endif
Marek BehĂșn0c936ee2017-09-03 17:00:29 +0200232#ifdef CONFIG_FS_BTRFS
233 {
234 .fstype = FS_TYPE_BTRFS,
235 .name = "btrfs",
236 .null_dev_desc_ok = false,
237 .probe = btrfs_probe,
238 .close = btrfs_close,
239 .ls = btrfs_ls,
240 .exists = btrfs_exists,
241 .size = btrfs_size,
242 .read = btrfs_read,
243 .write = fs_write_unsupported,
244 .uuid = btrfs_uuid,
Marek BehĂșn38fc6832017-10-06 16:56:07 +0200245 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900246 .mkdir = fs_mkdir_unsupported,
Marek BehĂșn0c936ee2017-09-03 17:00:29 +0200247 },
248#endif
Simon Glass436e2b72012-12-26 09:53:29 +0000249 {
250 .fstype = FS_TYPE_ANY,
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100251 .name = "unsupported",
Stephen Warren377202b2014-02-03 13:21:01 -0700252 .null_dev_desc_ok = true,
Simon Glass436e2b72012-12-26 09:53:29 +0000253 .probe = fs_probe_unsupported,
254 .close = fs_close_unsupported,
255 .ls = fs_ls_unsupported,
Stephen Warren61529162014-02-03 13:21:00 -0700256 .exists = fs_exists_unsupported,
Stephen Warrencf659812014-06-11 12:47:26 -0600257 .size = fs_size_unsupported,
Simon Glass436e2b72012-12-26 09:53:29 +0000258 .read = fs_read_unsupported,
Simon Glassa8f6ab52013-04-20 08:42:50 +0000259 .write = fs_write_unsupported,
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100260 .uuid = fs_uuid_unsupported,
Rob Clark4bbcc962017-09-09 13:15:55 -0400261 .opendir = fs_opendir_unsupported,
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900262 .mkdir = fs_mkdir_unsupported,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000263 },
264};
265
Simon Glassc6f548d2012-12-26 09:53:30 +0000266static struct fstype_info *fs_get_info(int fstype)
267{
268 struct fstype_info *info;
269 int i;
270
271 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes) - 1; i++, info++) {
272 if (fstype == info->fstype)
273 return info;
274 }
275
276 /* Return the 'unsupported' sentinel */
277 return info;
278}
279
Alex Kiernan0d488e82018-05-29 15:30:50 +0000280/**
281 * fs_get_type_name() - Get type of current filesystem
282 *
283 * Return: Pointer to filesystem name
284 *
285 * Returns a string describing the current filesystem, or the sentinel
286 * "unsupported" for any unrecognised filesystem.
287 */
288const char *fs_get_type_name(void)
289{
290 return fs_get_info(fs_type)->name;
291}
292
Stephen Warren045fa1e2012-10-22 06:43:51 +0000293int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype)
294{
Simon Glass436e2b72012-12-26 09:53:29 +0000295 struct fstype_info *info;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000296 int part, i;
Stephen Warrena1b231c2012-10-30 07:50:47 +0000297#ifdef CONFIG_NEEDS_MANUAL_RELOC
298 static int relocated;
299
300 if (!relocated) {
Simon Glass436e2b72012-12-26 09:53:29 +0000301 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes);
302 i++, info++) {
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100303 info->name += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000304 info->probe += gd->reloc_off;
305 info->close += gd->reloc_off;
306 info->ls += gd->reloc_off;
307 info->read += gd->reloc_off;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000308 info->write += gd->reloc_off;
Simon Glass436e2b72012-12-26 09:53:29 +0000309 }
Stephen Warrena1b231c2012-10-30 07:50:47 +0000310 relocated = 1;
311 }
312#endif
Stephen Warren045fa1e2012-10-22 06:43:51 +0000313
Simon Glasse35929e2016-02-29 15:25:44 -0700314 part = blk_get_device_part_str(ifname, dev_part_str, &fs_dev_desc,
Stephen Warren045fa1e2012-10-22 06:43:51 +0000315 &fs_partition, 1);
316 if (part < 0)
317 return -1;
318
Simon Glass436e2b72012-12-26 09:53:29 +0000319 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
320 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY &&
321 fstype != info->fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000322 continue;
323
Stephen Warren377202b2014-02-03 13:21:01 -0700324 if (!fs_dev_desc && !info->null_dev_desc_ok)
325 continue;
326
Simon Glass2ded0d42012-12-26 09:53:31 +0000327 if (!info->probe(fs_dev_desc, &fs_partition)) {
Simon Glass436e2b72012-12-26 09:53:29 +0000328 fs_type = info->fstype;
Rob Clark4bbcc962017-09-09 13:15:55 -0400329 fs_dev_part = part;
330 return 0;
331 }
332 }
333
334 return -1;
335}
336
337/* set current blk device w/ blk_desc + partition # */
338int fs_set_blk_dev_with_part(struct blk_desc *desc, int part)
339{
340 struct fstype_info *info;
341 int ret, i;
342
343 if (part >= 1)
344 ret = part_get_info(desc, part, &fs_partition);
345 else
346 ret = part_get_info_whole_disk(desc, &fs_partition);
347 if (ret)
348 return ret;
349 fs_dev_desc = desc;
350
351 for (i = 0, info = fstypes; i < ARRAY_SIZE(fstypes); i++, info++) {
352 if (!info->probe(fs_dev_desc, &fs_partition)) {
353 fs_type = info->fstype;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000354 return 0;
355 }
356 }
357
Stephen Warren045fa1e2012-10-22 06:43:51 +0000358 return -1;
359}
360
361static void fs_close(void)
362{
Simon Glassc6f548d2012-12-26 09:53:30 +0000363 struct fstype_info *info = fs_get_info(fs_type);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000364
Simon Glassc6f548d2012-12-26 09:53:30 +0000365 info->close();
Simon Glasse6d52412012-12-26 09:53:33 +0000366
Stephen Warren045fa1e2012-10-22 06:43:51 +0000367 fs_type = FS_TYPE_ANY;
368}
369
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100370int fs_uuid(char *uuid_str)
371{
372 struct fstype_info *info = fs_get_info(fs_type);
373
374 return info->uuid(uuid_str);
375}
376
Stephen Warren045fa1e2012-10-22 06:43:51 +0000377int fs_ls(const char *dirname)
378{
379 int ret;
380
Simon Glassc6f548d2012-12-26 09:53:30 +0000381 struct fstype_info *info = fs_get_info(fs_type);
382
383 ret = info->ls(dirname);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000384
Simon Glasse6d52412012-12-26 09:53:33 +0000385 fs_type = FS_TYPE_ANY;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000386 fs_close();
387
388 return ret;
389}
390
Stephen Warren61529162014-02-03 13:21:00 -0700391int fs_exists(const char *filename)
392{
393 int ret;
394
395 struct fstype_info *info = fs_get_info(fs_type);
396
397 ret = info->exists(filename);
398
399 fs_close();
400
401 return ret;
402}
403
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800404int fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600405{
406 int ret;
407
408 struct fstype_info *info = fs_get_info(fs_type);
409
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800410 ret = info->size(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600411
412 fs_close();
413
414 return ret;
415}
416
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800417int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
418 loff_t *actread)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000419{
Simon Glassc6f548d2012-12-26 09:53:30 +0000420 struct fstype_info *info = fs_get_info(fs_type);
Simon Glass117e0502012-12-26 09:53:32 +0000421 void *buf;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000422 int ret;
423
Simon Glass117e0502012-12-26 09:53:32 +0000424 /*
425 * We don't actually know how many bytes are being read, since len==0
426 * means read the whole file.
427 */
428 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800429 ret = info->read(filename, buf, offset, len, actread);
Simon Glass117e0502012-12-26 09:53:32 +0000430 unmap_sysmem(buf);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000431
Simon Glassc6f548d2012-12-26 09:53:30 +0000432 /* If we requested a specific number of bytes, check we got it */
Max Krummenacher7a3e70c2015-08-05 17:16:58 +0200433 if (ret == 0 && len && *actread != len)
Heinrich Schuchardta327bde2018-01-01 21:15:37 +0100434 debug("** %s shorter than offset + len **\n", filename);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000435 fs_close();
436
437 return ret;
438}
439
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800440int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
441 loff_t *actwrite)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000442{
443 struct fstype_info *info = fs_get_info(fs_type);
444 void *buf;
445 int ret;
446
Simon Glassa8f6ab52013-04-20 08:42:50 +0000447 buf = map_sysmem(addr, len);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800448 ret = info->write(filename, buf, offset, len, actwrite);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000449 unmap_sysmem(buf);
450
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800451 if (ret < 0 && len != *actwrite) {
Simon Glassa8f6ab52013-04-20 08:42:50 +0000452 printf("** Unable to write file %s **\n", filename);
453 ret = -1;
454 }
455 fs_close();
456
457 return ret;
458}
459
Rob Clark4bbcc962017-09-09 13:15:55 -0400460struct fs_dir_stream *fs_opendir(const char *filename)
461{
462 struct fstype_info *info = fs_get_info(fs_type);
463 struct fs_dir_stream *dirs = NULL;
464 int ret;
465
466 ret = info->opendir(filename, &dirs);
467 fs_close();
468 if (ret) {
469 errno = -ret;
470 return NULL;
471 }
472
473 dirs->desc = fs_dev_desc;
474 dirs->part = fs_dev_part;
475
476 return dirs;
477}
478
479struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs)
480{
481 struct fstype_info *info;
482 struct fs_dirent *dirent;
483 int ret;
484
485 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
486 info = fs_get_info(fs_type);
487
488 ret = info->readdir(dirs, &dirent);
489 fs_close();
490 if (ret) {
491 errno = -ret;
492 return NULL;
493 }
494
495 return dirent;
496}
497
498void fs_closedir(struct fs_dir_stream *dirs)
499{
500 struct fstype_info *info;
501
502 if (!dirs)
503 return;
504
505 fs_set_blk_dev_with_part(dirs->desc, dirs->part);
506 info = fs_get_info(fs_type);
507
508 info->closedir(dirs);
509 fs_close();
510}
511
512
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900513int fs_mkdir(const char *dirname)
514{
515 int ret;
516
517 struct fstype_info *info = fs_get_info(fs_type);
518
519 ret = info->mkdir(dirname);
520
521 fs_type = FS_TYPE_ANY;
522 fs_close();
523
524 return ret;
525}
526
Stephen Warrencf659812014-06-11 12:47:26 -0600527int do_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
528 int fstype)
529{
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800530 loff_t size;
Stephen Warrencf659812014-06-11 12:47:26 -0600531
532 if (argc != 4)
533 return CMD_RET_USAGE;
534
535 if (fs_set_blk_dev(argv[1], argv[2], fstype))
536 return 1;
537
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800538 if (fs_size(argv[3], &size) < 0)
Stephen Warrencf659812014-06-11 12:47:26 -0600539 return CMD_RET_FAILURE;
540
Simon Glass018f5302017-08-03 12:22:10 -0600541 env_set_hex("filesize", size);
Stephen Warrencf659812014-06-11 12:47:26 -0600542
543 return 0;
544}
545
Stephen Warrenf9b55e22012-10-31 11:05:07 +0000546int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200547 int fstype)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000548{
549 unsigned long addr;
550 const char *addr_str;
551 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800552 loff_t bytes;
553 loff_t pos;
554 loff_t len_read;
555 int ret;
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100556 unsigned long time;
Pavel Machek949bbd72014-07-09 22:42:57 +0200557 char *ep;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000558
Stephen Warrene9b0f992012-10-30 12:04:17 +0000559 if (argc < 2)
560 return CMD_RET_USAGE;
561 if (argc > 7)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000562 return CMD_RET_USAGE;
563
Stephen Warrene9b0f992012-10-30 12:04:17 +0000564 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000565 return 1;
566
567 if (argc >= 4) {
Pavel Machek949bbd72014-07-09 22:42:57 +0200568 addr = simple_strtoul(argv[3], &ep, 16);
569 if (ep == argv[3] || *ep != '\0')
570 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000571 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600572 addr_str = env_get("loadaddr");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000573 if (addr_str != NULL)
574 addr = simple_strtoul(addr_str, NULL, 16);
575 else
576 addr = CONFIG_SYS_LOAD_ADDR;
577 }
578 if (argc >= 5) {
579 filename = argv[4];
580 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600581 filename = env_get("bootfile");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000582 if (!filename) {
583 puts("** No boot file defined **\n");
584 return 1;
585 }
586 }
587 if (argc >= 6)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200588 bytes = simple_strtoul(argv[5], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000589 else
590 bytes = 0;
591 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200592 pos = simple_strtoul(argv[6], NULL, 16);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000593 else
594 pos = 0;
595
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100596 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800597 ret = fs_read(filename, addr, pos, bytes, &len_read);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100598 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800599 if (ret < 0)
Stephen Warren045fa1e2012-10-22 06:43:51 +0000600 return 1;
601
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800602 printf("%llu bytes read in %lu ms", len_read, time);
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100603 if (time > 0) {
604 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500605 print_size(div_u64(len_read, time) * 1000, "/s");
Andreas Bießmannda1fd962012-11-14 13:32:37 +0100606 puts(")");
607 }
608 puts("\n");
Stephen Warren045fa1e2012-10-22 06:43:51 +0000609
Simon Glass018f5302017-08-03 12:22:10 -0600610 env_set_hex("fileaddr", addr);
611 env_set_hex("filesize", len_read);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000612
613 return 0;
614}
615
616int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
617 int fstype)
618{
619 if (argc < 2)
620 return CMD_RET_USAGE;
Stephen Warrene9b0f992012-10-30 12:04:17 +0000621 if (argc > 4)
622 return CMD_RET_USAGE;
Stephen Warren045fa1e2012-10-22 06:43:51 +0000623
624 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype))
625 return 1;
626
Stephen Warrene9b0f992012-10-30 12:04:17 +0000627 if (fs_ls(argc >= 4 ? argv[3] : "/"))
Stephen Warren045fa1e2012-10-22 06:43:51 +0000628 return 1;
629
630 return 0;
631}
Simon Glassa8f6ab52013-04-20 08:42:50 +0000632
Stephen Warren61529162014-02-03 13:21:00 -0700633int file_exists(const char *dev_type, const char *dev_part, const char *file,
634 int fstype)
635{
636 if (fs_set_blk_dev(dev_type, dev_part, fstype))
637 return 0;
638
639 return fs_exists(file);
640}
641
Simon Glassa8f6ab52013-04-20 08:42:50 +0000642int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Wolfgang Denkb770e882013-10-05 21:07:25 +0200643 int fstype)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000644{
645 unsigned long addr;
646 const char *filename;
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800647 loff_t bytes;
648 loff_t pos;
649 loff_t len;
650 int ret;
Simon Glassa8f6ab52013-04-20 08:42:50 +0000651 unsigned long time;
652
653 if (argc < 6 || argc > 7)
654 return CMD_RET_USAGE;
655
656 if (fs_set_blk_dev(argv[1], argv[2], fstype))
657 return 1;
658
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800659 addr = simple_strtoul(argv[3], NULL, 16);
660 filename = argv[4];
Wolfgang Denkb770e882013-10-05 21:07:25 +0200661 bytes = simple_strtoul(argv[5], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000662 if (argc >= 7)
Wolfgang Denkb770e882013-10-05 21:07:25 +0200663 pos = simple_strtoul(argv[6], NULL, 16);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000664 else
665 pos = 0;
666
667 time = get_timer(0);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800668 ret = fs_write(filename, addr, pos, bytes, &len);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000669 time = get_timer(time);
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800670 if (ret < 0)
Simon Glassa8f6ab52013-04-20 08:42:50 +0000671 return 1;
672
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800673 printf("%llu bytes written in %lu ms", len, time);
Simon Glassa8f6ab52013-04-20 08:42:50 +0000674 if (time > 0) {
675 puts(" (");
Tom Rini9e374e72014-11-24 11:50:46 -0500676 print_size(div_u64(len, time) * 1000, "/s");
Simon Glassa8f6ab52013-04-20 08:42:50 +0000677 puts(")");
678 }
679 puts("\n");
680
681 return 0;
682}
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100683
684int do_fs_uuid(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
685 int fstype)
686{
687 int ret;
688 char uuid[37];
689 memset(uuid, 0, sizeof(uuid));
690
691 if (argc < 3 || argc > 4)
692 return CMD_RET_USAGE;
693
694 if (fs_set_blk_dev(argv[1], argv[2], fstype))
695 return 1;
696
697 ret = fs_uuid(uuid);
698 if (ret)
699 return CMD_RET_FAILURE;
700
701 if (argc == 4)
Simon Glass382bee52017-08-03 12:22:09 -0600702 env_set(argv[3], uuid);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100703 else
704 printf("%s\n", uuid);
705
706 return CMD_RET_SUCCESS;
707}
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100708
709int do_fs_type(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
710{
711 struct fstype_info *info;
712
713 if (argc < 3 || argc > 4)
714 return CMD_RET_USAGE;
715
716 if (fs_set_blk_dev(argv[1], argv[2], FS_TYPE_ANY))
717 return 1;
718
719 info = fs_get_info(fs_type);
720
721 if (argc == 4)
Simon Glass382bee52017-08-03 12:22:09 -0600722 env_set(argv[3], info->name);
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100723 else
724 printf("%s\n", info->name);
725
726 return CMD_RET_SUCCESS;
727}
728
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900729int do_mkdir(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
730 int fstype)
731{
732 int ret;
733
734 if (argc != 4)
735 return CMD_RET_USAGE;
736
737 if (fs_set_blk_dev(argv[1], argv[2], fstype))
738 return 1;
739
740 ret = fs_mkdir(argv[3]);
741 if (ret) {
742 printf("** Unable to create a directory \"%s\" **\n", argv[3]);
743 return 1;
744 }
745
746 return 0;
747}