Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 4 | */ |
| 5 | #ifndef _FS_H |
| 6 | #define _FS_H |
| 7 | |
| 8 | #include <common.h> |
| 9 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 10 | struct cmd_tbl; |
| 11 | |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 12 | #define FS_TYPE_ANY 0 |
| 13 | #define FS_TYPE_FAT 1 |
| 14 | #define FS_TYPE_EXT 2 |
Simon Glass | 92ccc96 | 2012-12-26 09:53:35 +0000 | [diff] [blame] | 15 | #define FS_TYPE_SANDBOX 3 |
Hans de Goede | 251cee0 | 2015-09-17 18:46:58 -0400 | [diff] [blame] | 16 | #define FS_TYPE_UBIFS 4 |
Marek BehĂșn | 0c936ee | 2017-09-03 17:00:29 +0200 | [diff] [blame] | 17 | #define FS_TYPE_BTRFS 5 |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 18 | |
Simon Glass | e6f6f9e | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 19 | struct blk_desc; |
| 20 | |
Simon Glass | 1444998 | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 21 | /** |
| 22 | * do_fat_fsload - Run the fatload command |
| 23 | * |
| 24 | * @cmdtp: Command information for fatload |
| 25 | * @flag: Command flags (CMD_FLAG_...) |
| 26 | * @argc: Number of arguments |
| 27 | * @argv: List of arguments |
| 28 | * @return result (see enum command_ret_t) |
| 29 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 30 | int do_fat_fsload(struct cmd_tbl *cmdtp, int flag, int argc, |
| 31 | char *const argv[]); |
Simon Glass | 1444998 | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 32 | |
| 33 | /** |
| 34 | * do_ext2load - Run the ext2load command |
| 35 | * |
| 36 | * @cmdtp: Command information for ext2load |
| 37 | * @flag: Command flags (CMD_FLAG_...) |
| 38 | * @argc: Number of arguments |
| 39 | * @argv: List of arguments |
| 40 | * @return result (see enum command_ret_t) |
| 41 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 42 | int do_ext2load(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); |
Simon Glass | 1444998 | 2019-12-28 10:44:44 -0700 | [diff] [blame] | 43 | |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 44 | /* |
| 45 | * Tell the fs layer which block device an partition to use for future |
| 46 | * commands. This also internally identifies the filesystem that is present |
| 47 | * within the partition. The identification process may be limited to a |
| 48 | * specific filesystem type by passing FS_* in the fstype parameter. |
| 49 | * |
| 50 | * Returns 0 on success. |
| 51 | * Returns non-zero if there is an error accessing the disk or partition, or |
| 52 | * no known filesystem type could be recognized on it. |
| 53 | */ |
| 54 | int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype); |
| 55 | |
| 56 | /* |
Rob Clark | 4bbcc96 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 57 | * fs_set_blk_dev_with_part - Set current block device + partition |
| 58 | * |
| 59 | * Similar to fs_set_blk_dev(), but useful for cases where you already |
| 60 | * know the blk_desc and part number. |
| 61 | * |
| 62 | * Returns 0 on success. |
| 63 | * Returns non-zero if invalid partition or error accessing the disk. |
| 64 | */ |
| 65 | int fs_set_blk_dev_with_part(struct blk_desc *desc, int part); |
| 66 | |
Alex Kiernan | 0d488e8 | 2018-05-29 15:30:50 +0000 | [diff] [blame] | 67 | /** |
AKASHI Takahiro | 64f49eb | 2019-10-07 14:59:35 +0900 | [diff] [blame] | 68 | * fs_close() - Unset current block device and partition |
| 69 | * |
Heinrich Schuchardt | e4bad9f | 2019-10-13 10:26:26 +0200 | [diff] [blame] | 70 | * fs_close() closes the connection to a file system opened with either |
| 71 | * fs_set_blk_dev() or fs_set_dev_with_part(). |
| 72 | * |
| 73 | * Many file functions implicitly call fs_close(), e.g. fs_closedir(), |
| 74 | * fs_exist(), fs_ln(), fs_ls(), fs_mkdir(), fs_read(), fs_size(), fs_write(), |
| 75 | * fs_unlink(). |
AKASHI Takahiro | 64f49eb | 2019-10-07 14:59:35 +0900 | [diff] [blame] | 76 | */ |
| 77 | void fs_close(void); |
| 78 | |
| 79 | /** |
AKASHI Takahiro | b7cd956 | 2019-10-07 14:59:37 +0900 | [diff] [blame] | 80 | * fs_get_type() - Get type of current filesystem |
| 81 | * |
| 82 | * Return: filesystem type |
| 83 | * |
| 84 | * Returns filesystem type representing the current filesystem, or |
| 85 | * FS_TYPE_ANY for any unrecognised filesystem. |
| 86 | */ |
| 87 | int fs_get_type(void); |
| 88 | |
| 89 | /** |
Alex Kiernan | 0d488e8 | 2018-05-29 15:30:50 +0000 | [diff] [blame] | 90 | * fs_get_type_name() - Get type of current filesystem |
| 91 | * |
| 92 | * Return: Pointer to filesystem name |
| 93 | * |
| 94 | * Returns a string describing the current filesystem, or the sentinel |
| 95 | * "unsupported" for any unrecognised filesystem. |
| 96 | */ |
| 97 | const char *fs_get_type_name(void); |
| 98 | |
Rob Clark | 4bbcc96 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 99 | /* |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 100 | * Print the list of files on the partition previously set by fs_set_blk_dev(), |
| 101 | * in directory "dirname". |
| 102 | * |
| 103 | * Returns 0 on success. Returns non-zero on error. |
| 104 | */ |
| 105 | int fs_ls(const char *dirname); |
| 106 | |
| 107 | /* |
Stephen Warren | 6152916 | 2014-02-03 13:21:00 -0700 | [diff] [blame] | 108 | * Determine whether a file exists |
| 109 | * |
| 110 | * Returns 1 if the file exists, 0 if it doesn't exist. |
| 111 | */ |
| 112 | int fs_exists(const char *filename); |
| 113 | |
| 114 | /* |
Suriyan Ramasami | d455d87 | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 115 | * fs_size - Determine a file's size |
Stephen Warren | cf65981 | 2014-06-11 12:47:26 -0600 | [diff] [blame] | 116 | * |
Suriyan Ramasami | d455d87 | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 117 | * @filename: Name of the file |
| 118 | * @size: Size of file |
| 119 | * @return 0 if ok with valid *size, negative on error |
Stephen Warren | cf65981 | 2014-06-11 12:47:26 -0600 | [diff] [blame] | 120 | */ |
Suriyan Ramasami | d455d87 | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 121 | int fs_size(const char *filename, loff_t *size); |
Stephen Warren | cf65981 | 2014-06-11 12:47:26 -0600 | [diff] [blame] | 122 | |
Heinrich Schuchardt | a0e92cd | 2019-04-25 20:36:39 +0200 | [diff] [blame] | 123 | /** |
| 124 | * fs_read() - read file from the partition previously set by fs_set_blk_dev() |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 125 | * |
Heinrich Schuchardt | a0e92cd | 2019-04-25 20:36:39 +0200 | [diff] [blame] | 126 | * Note that not all filesystem drivers support either or both of offset != 0 |
| 127 | * and len != 0. |
| 128 | * |
| 129 | * @filename: full path of the file to read from |
| 130 | * @addr: address of the buffer to write to |
| 131 | * @offset: offset in the file from where to start reading |
| 132 | * @len: the number of bytes to read. Use 0 to read entire file. |
| 133 | * @actread: returns the actual number of bytes read |
| 134 | * Return: 0 if OK with valid *actread, -1 on error conditions |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 135 | */ |
Suriyan Ramasami | d455d87 | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 136 | int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len, |
| 137 | loff_t *actread); |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 138 | |
Heinrich Schuchardt | a0e92cd | 2019-04-25 20:36:39 +0200 | [diff] [blame] | 139 | /** |
| 140 | * fs_write() - write file to the partition previously set by fs_set_blk_dev() |
Stephen Warren | bd6fb31 | 2014-02-03 13:20:59 -0700 | [diff] [blame] | 141 | * |
Heinrich Schuchardt | a0e92cd | 2019-04-25 20:36:39 +0200 | [diff] [blame] | 142 | * Note that not all filesystem drivers support offset != 0. |
| 143 | * |
| 144 | * @filename: full path of the file to write to |
| 145 | * @addr: address of the buffer to read from |
| 146 | * @offset: offset in the file from where to start writing |
| 147 | * @len: the number of bytes to write |
| 148 | * @actwrite: returns the actual number of bytes written |
| 149 | * Return: 0 if OK with valid *actwrite, -1 on error conditions |
Stephen Warren | bd6fb31 | 2014-02-03 13:20:59 -0700 | [diff] [blame] | 150 | */ |
Suriyan Ramasami | d455d87 | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 151 | int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len, |
| 152 | loff_t *actwrite); |
Stephen Warren | bd6fb31 | 2014-02-03 13:20:59 -0700 | [diff] [blame] | 153 | |
| 154 | /* |
Rob Clark | 4bbcc96 | 2017-09-09 13:15:55 -0400 | [diff] [blame] | 155 | * Directory entry types, matches the subset of DT_x in posix readdir() |
| 156 | * which apply to u-boot. |
| 157 | */ |
| 158 | #define FS_DT_DIR 4 /* directory */ |
| 159 | #define FS_DT_REG 8 /* regular file */ |
| 160 | #define FS_DT_LNK 10 /* symbolic link */ |
| 161 | |
| 162 | /* |
| 163 | * A directory entry, returned by fs_readdir(). Returns information |
| 164 | * about the file/directory at the current directory entry position. |
| 165 | */ |
| 166 | struct fs_dirent { |
| 167 | unsigned type; /* one of FS_DT_x (not a mask) */ |
| 168 | loff_t size; /* size in bytes */ |
| 169 | char name[256]; |
| 170 | }; |
| 171 | |
| 172 | /* Note: fs_dir_stream should be treated as opaque to the user of fs layer */ |
| 173 | struct fs_dir_stream { |
| 174 | /* private to fs. layer: */ |
| 175 | struct blk_desc *desc; |
| 176 | int part; |
| 177 | }; |
| 178 | |
| 179 | /* |
| 180 | * fs_opendir - Open a directory |
| 181 | * |
| 182 | * @filename: the path to directory to open |
| 183 | * @return a pointer to the directory stream or NULL on error and errno |
| 184 | * set appropriately |
| 185 | */ |
| 186 | struct fs_dir_stream *fs_opendir(const char *filename); |
| 187 | |
| 188 | /* |
| 189 | * fs_readdir - Read the next directory entry in the directory stream. |
| 190 | * |
| 191 | * Works in an analogous way to posix readdir(). The previously returned |
| 192 | * directory entry is no longer valid after calling fs_readdir() again. |
| 193 | * After fs_closedir() is called, the returned directory entry is no |
| 194 | * longer valid. |
| 195 | * |
| 196 | * @dirs: the directory stream |
| 197 | * @return the next directory entry (only valid until next fs_readdir() or |
| 198 | * fs_closedir() call, do not attempt to free()) or NULL if the end of |
| 199 | * the directory is reached. |
| 200 | */ |
| 201 | struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs); |
| 202 | |
| 203 | /* |
| 204 | * fs_closedir - close a directory stream |
| 205 | * |
| 206 | * @dirs: the directory stream |
| 207 | */ |
| 208 | void fs_closedir(struct fs_dir_stream *dirs); |
| 209 | |
| 210 | /* |
AKASHI Takahiro | e2519da | 2018-09-11 15:59:13 +0900 | [diff] [blame] | 211 | * fs_unlink - delete a file or directory |
| 212 | * |
| 213 | * If a given name is a directory, it will be deleted only if it's empty |
| 214 | * |
| 215 | * @filename: Name of file or directory to delete |
| 216 | * @return 0 on success, -1 on error conditions |
| 217 | */ |
| 218 | int fs_unlink(const char *filename); |
| 219 | |
| 220 | /* |
AKASHI Takahiro | e7074cf | 2018-09-11 15:59:08 +0900 | [diff] [blame] | 221 | * fs_mkdir - Create a directory |
| 222 | * |
| 223 | * @filename: Name of directory to create |
| 224 | * @return 0 on success, -1 on error conditions |
| 225 | */ |
| 226 | int fs_mkdir(const char *filename); |
| 227 | |
| 228 | /* |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 229 | * Common implementation for various filesystem commands, optionally limited |
| 230 | * to a specific filesystem type via the fstype parameter. |
| 231 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 232 | int do_size(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 233 | int fstype); |
| 234 | int do_load(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 235 | int fstype); |
| 236 | int do_ls(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 237 | int fstype); |
Stephen Warren | 6152916 | 2014-02-03 13:21:00 -0700 | [diff] [blame] | 238 | int file_exists(const char *dev_type, const char *dev_part, const char *file, |
| 239 | int fstype); |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 240 | int do_save(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 241 | int fstype); |
| 242 | int do_rm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 243 | int fstype); |
| 244 | int do_mkdir(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 245 | int fstype); |
| 246 | int do_ln(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
Jean-Jacques Hiblot | aaa1215 | 2019-02-13 12:15:26 +0100 | [diff] [blame] | 247 | int fstype); |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 248 | |
Christian Gmeiner | 59e890e | 2014-11-12 14:35:04 +0100 | [diff] [blame] | 249 | /* |
| 250 | * Determine the UUID of the specified filesystem and print it. Optionally it is |
| 251 | * possible to store the UUID directly in env. |
| 252 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 253 | int do_fs_uuid(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[], |
| 254 | int fstype); |
Christian Gmeiner | 59e890e | 2014-11-12 14:35:04 +0100 | [diff] [blame] | 255 | |
Sjoerd Simons | 1a1ad8e | 2015-01-05 18:13:36 +0100 | [diff] [blame] | 256 | /* |
| 257 | * Determine the type of the specified filesystem and print it. Optionally it is |
| 258 | * possible to store the type directly in env. |
| 259 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 260 | int do_fs_type(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]); |
Sjoerd Simons | 1a1ad8e | 2015-01-05 18:13:36 +0100 | [diff] [blame] | 261 | |
Stephen Warren | 045fa1e | 2012-10-22 06:43:51 +0000 | [diff] [blame] | 262 | #endif /* _FS_H */ |