blob: ef540e7c23de31d51452fcf2b96dc19770b1c52a [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#ifndef _FS_H
6#define _FS_H
7
Heinrich Schuchardt13c11c62021-05-15 22:06:16 +02008#include <rtc.h>
Stephen Warren045fa1e2012-10-22 06:43:51 +00009
Simon Glass09140112020-05-10 11:40:03 -060010struct cmd_tbl;
11
Stephen Warren045fa1e2012-10-22 06:43:51 +000012#define FS_TYPE_ANY 0
13#define FS_TYPE_FAT 1
14#define FS_TYPE_EXT 2
Simon Glass92ccc962012-12-26 09:53:35 +000015#define FS_TYPE_SANDBOX 3
Hans de Goede251cee02015-09-17 18:46:58 -040016#define FS_TYPE_UBIFS 4
Marek BehĂșn0c936ee2017-09-03 17:00:29 +020017#define FS_TYPE_BTRFS 5
Joao Marcos Costac5100612020-07-30 15:33:47 +020018#define FS_TYPE_SQUASHFS 6
Huang Jianan830613f2022-02-26 15:05:47 +080019#define FS_TYPE_EROFS 7
Sean Andersonf676b452022-03-22 16:59:20 -040020#define FS_TYPE_SEMIHOSTING 8
Stephen Warren045fa1e2012-10-22 06:43:51 +000021
Simon Glasse6f6f9e2020-05-10 11:39:58 -060022struct blk_desc;
23
Simon Glass14449982019-12-28 10:44:44 -070024/**
25 * do_fat_fsload - Run the fatload command
26 *
27 * @cmdtp: Command information for fatload
28 * @flag: Command flags (CMD_FLAG_...)
29 * @argc: Number of arguments
30 * @argv: List of arguments
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010031 * Return: result (see enum command_ret_t)
Simon Glass14449982019-12-28 10:44:44 -070032 */
Simon Glass09140112020-05-10 11:40:03 -060033int do_fat_fsload(struct cmd_tbl *cmdtp, int flag, int argc,
34 char *const argv[]);
Simon Glass14449982019-12-28 10:44:44 -070035
36/**
37 * do_ext2load - Run the ext2load command
38 *
39 * @cmdtp: Command information for ext2load
40 * @flag: Command flags (CMD_FLAG_...)
41 * @argc: Number of arguments
42 * @argv: List of arguments
Heinrich Schuchardt185f8122022-01-19 18:05:50 +010043 * Return: result (see enum command_ret_t)
Simon Glass14449982019-12-28 10:44:44 -070044 */
Simon Glass09140112020-05-10 11:40:03 -060045int do_ext2load(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
Simon Glass14449982019-12-28 10:44:44 -070046
Stephen Warren045fa1e2012-10-22 06:43:51 +000047/*
Roger Knechtda223d82022-08-25 12:12:01 +000048 * Tell the fs layer which block device and partition to use for future
Stephen Warren045fa1e2012-10-22 06:43:51 +000049 * commands. This also internally identifies the filesystem that is present
50 * within the partition. The identification process may be limited to a
51 * specific filesystem type by passing FS_* in the fstype parameter.
52 *
53 * Returns 0 on success.
54 * Returns non-zero if there is an error accessing the disk or partition, or
55 * no known filesystem type could be recognized on it.
56 */
57int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype);
58
Simon Glassc24e58f2022-04-24 23:31:04 -060059/**
60 * fs_set_type() - Tell fs layer which filesystem type is used
61 *
62 * This is needed when reading from a non-block device such as sandbox. It does
63 * a similar job to fs_set_blk_dev() but just sets the filesystem type instead
64 * of detecting it and loading it on the block device
65 *
66 * @type: Filesystem type to use (FS_TYPE...)
67 */
68void fs_set_type(int type);
69
Stephen Warren045fa1e2012-10-22 06:43:51 +000070/*
Rob Clark4bbcc962017-09-09 13:15:55 -040071 * fs_set_blk_dev_with_part - Set current block device + partition
72 *
73 * Similar to fs_set_blk_dev(), but useful for cases where you already
74 * know the blk_desc and part number.
75 *
76 * Returns 0 on success.
77 * Returns non-zero if invalid partition or error accessing the disk.
78 */
79int fs_set_blk_dev_with_part(struct blk_desc *desc, int part);
80
Alex Kiernan0d488e82018-05-29 15:30:50 +000081/**
AKASHI Takahiro64f49eb2019-10-07 14:59:35 +090082 * fs_close() - Unset current block device and partition
83 *
Heinrich Schuchardte4bad9f2019-10-13 10:26:26 +020084 * fs_close() closes the connection to a file system opened with either
85 * fs_set_blk_dev() or fs_set_dev_with_part().
86 *
87 * Many file functions implicitly call fs_close(), e.g. fs_closedir(),
88 * fs_exist(), fs_ln(), fs_ls(), fs_mkdir(), fs_read(), fs_size(), fs_write(),
89 * fs_unlink().
AKASHI Takahiro64f49eb2019-10-07 14:59:35 +090090 */
91void fs_close(void);
92
93/**
AKASHI Takahirob7cd9562019-10-07 14:59:37 +090094 * fs_get_type() - Get type of current filesystem
95 *
96 * Return: filesystem type
97 *
98 * Returns filesystem type representing the current filesystem, or
99 * FS_TYPE_ANY for any unrecognised filesystem.
100 */
101int fs_get_type(void);
102
103/**
Alex Kiernan0d488e82018-05-29 15:30:50 +0000104 * fs_get_type_name() - Get type of current filesystem
105 *
106 * Return: Pointer to filesystem name
107 *
108 * Returns a string describing the current filesystem, or the sentinel
109 * "unsupported" for any unrecognised filesystem.
110 */
111const char *fs_get_type_name(void);
112
Rob Clark4bbcc962017-09-09 13:15:55 -0400113/*
Stephen Warren045fa1e2012-10-22 06:43:51 +0000114 * Print the list of files on the partition previously set by fs_set_blk_dev(),
115 * in directory "dirname".
116 *
117 * Returns 0 on success. Returns non-zero on error.
118 */
119int fs_ls(const char *dirname);
120
121/*
Stephen Warren61529162014-02-03 13:21:00 -0700122 * Determine whether a file exists
123 *
124 * Returns 1 if the file exists, 0 if it doesn't exist.
125 */
126int fs_exists(const char *filename);
127
128/*
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800129 * fs_size - Determine a file's size
Stephen Warrencf659812014-06-11 12:47:26 -0600130 *
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800131 * @filename: Name of the file
132 * @size: Size of file
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100133 * Return: 0 if ok with valid *size, negative on error
Stephen Warrencf659812014-06-11 12:47:26 -0600134 */
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800135int fs_size(const char *filename, loff_t *size);
Stephen Warrencf659812014-06-11 12:47:26 -0600136
Heinrich Schuchardta0e92cd2019-04-25 20:36:39 +0200137/**
138 * fs_read() - read file from the partition previously set by fs_set_blk_dev()
Stephen Warren045fa1e2012-10-22 06:43:51 +0000139 *
Heinrich Schuchardta0e92cd2019-04-25 20:36:39 +0200140 * Note that not all filesystem drivers support either or both of offset != 0
141 * and len != 0.
142 *
143 * @filename: full path of the file to read from
144 * @addr: address of the buffer to write to
145 * @offset: offset in the file from where to start reading
146 * @len: the number of bytes to read. Use 0 to read entire file.
147 * @actread: returns the actual number of bytes read
148 * Return: 0 if OK with valid *actread, -1 on error conditions
Stephen Warren045fa1e2012-10-22 06:43:51 +0000149 */
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800150int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
151 loff_t *actread);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000152
Heinrich Schuchardta0e92cd2019-04-25 20:36:39 +0200153/**
154 * fs_write() - write file to the partition previously set by fs_set_blk_dev()
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700155 *
Heinrich Schuchardta0e92cd2019-04-25 20:36:39 +0200156 * Note that not all filesystem drivers support offset != 0.
157 *
158 * @filename: full path of the file to write to
159 * @addr: address of the buffer to read from
160 * @offset: offset in the file from where to start writing
161 * @len: the number of bytes to write
162 * @actwrite: returns the actual number of bytes written
163 * Return: 0 if OK with valid *actwrite, -1 on error conditions
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700164 */
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800165int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
166 loff_t *actwrite);
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700167
168/*
Rob Clark4bbcc962017-09-09 13:15:55 -0400169 * Directory entry types, matches the subset of DT_x in posix readdir()
170 * which apply to u-boot.
171 */
172#define FS_DT_DIR 4 /* directory */
173#define FS_DT_REG 8 /* regular file */
174#define FS_DT_LNK 10 /* symbolic link */
175
Miquel Raynal2ac0baa2022-06-09 16:02:06 +0200176#define FS_DIRENT_NAME_LEN 256
177
Heinrich Schuchardt13c11c62021-05-15 22:06:16 +0200178/**
179 * struct fs_dirent - directory entry
180 *
181 * A directory entry, returned by fs_readdir(). Returns information
Rob Clark4bbcc962017-09-09 13:15:55 -0400182 * about the file/directory at the current directory entry position.
183 */
184struct fs_dirent {
Heinrich Schuchardt13c11c62021-05-15 22:06:16 +0200185 /** @type: one of FS_DT_x (not a mask) */
186 unsigned int type;
187 /** @size: file size */
188 loff_t size;
189 /** @flags: attribute flags (FS_ATTR_*) */
190 u32 attr;
191 /** create_time: time of creation */
192 struct rtc_time create_time;
193 /** access_time: time of last access */
194 struct rtc_time access_time;
195 /** change_time: time of last modification */
196 struct rtc_time change_time;
197 /** name: file name */
Miquel Raynal2ac0baa2022-06-09 16:02:06 +0200198 char name[FS_DIRENT_NAME_LEN];
Rob Clark4bbcc962017-09-09 13:15:55 -0400199};
200
201/* Note: fs_dir_stream should be treated as opaque to the user of fs layer */
202struct fs_dir_stream {
203 /* private to fs. layer: */
204 struct blk_desc *desc;
205 int part;
206};
207
208/*
209 * fs_opendir - Open a directory
210 *
211 * @filename: the path to directory to open
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100212 * Return: a pointer to the directory stream or NULL on error and errno
Rob Clark4bbcc962017-09-09 13:15:55 -0400213 * set appropriately
214 */
215struct fs_dir_stream *fs_opendir(const char *filename);
216
217/*
218 * fs_readdir - Read the next directory entry in the directory stream.
219 *
220 * Works in an analogous way to posix readdir(). The previously returned
221 * directory entry is no longer valid after calling fs_readdir() again.
222 * After fs_closedir() is called, the returned directory entry is no
223 * longer valid.
224 *
225 * @dirs: the directory stream
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100226 * Return: the next directory entry (only valid until next fs_readdir() or
Rob Clark4bbcc962017-09-09 13:15:55 -0400227 * fs_closedir() call, do not attempt to free()) or NULL if the end of
228 * the directory is reached.
229 */
230struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs);
231
232/*
233 * fs_closedir - close a directory stream
234 *
235 * @dirs: the directory stream
236 */
237void fs_closedir(struct fs_dir_stream *dirs);
238
239/*
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900240 * fs_unlink - delete a file or directory
241 *
242 * If a given name is a directory, it will be deleted only if it's empty
243 *
244 * @filename: Name of file or directory to delete
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100245 * Return: 0 on success, -1 on error conditions
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900246 */
247int fs_unlink(const char *filename);
248
249/*
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900250 * fs_mkdir - Create a directory
251 *
252 * @filename: Name of directory to create
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100253 * Return: 0 on success, -1 on error conditions
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900254 */
255int fs_mkdir(const char *filename);
256
257/*
Stephen Warren045fa1e2012-10-22 06:43:51 +0000258 * Common implementation for various filesystem commands, optionally limited
259 * to a specific filesystem type via the fstype parameter.
260 */
Simon Glass09140112020-05-10 11:40:03 -0600261int do_size(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
262 int fstype);
263int do_load(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
264 int fstype);
265int do_ls(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
266 int fstype);
Stephen Warren61529162014-02-03 13:21:00 -0700267int file_exists(const char *dev_type, const char *dev_part, const char *file,
268 int fstype);
Simon Glass09140112020-05-10 11:40:03 -0600269int do_save(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
270 int fstype);
271int do_rm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
272 int fstype);
273int do_mkdir(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
274 int fstype);
275int do_ln(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
Jean-Jacques Hiblotaaa12152019-02-13 12:15:26 +0100276 int fstype);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000277
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100278/*
279 * Determine the UUID of the specified filesystem and print it. Optionally it is
280 * possible to store the UUID directly in env.
281 */
Simon Glass09140112020-05-10 11:40:03 -0600282int do_fs_uuid(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
283 int fstype);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100284
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100285/*
286 * Determine the type of the specified filesystem and print it. Optionally it is
287 * possible to store the type directly in env.
288 */
Simon Glass09140112020-05-10 11:40:03 -0600289int do_fs_type(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100290
Niel Fourie2280fa52020-03-24 16:17:04 +0100291/**
292 * do_fs_types - List supported filesystems.
293 *
294 * @cmdtp: Command information for fstypes
295 * @flag: Command flags (CMD_FLAG_...)
296 * @argc: Number of arguments
297 * @argv: List of arguments
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100298 * Return: result (see enum command_ret_t)
Niel Fourie2280fa52020-03-24 16:17:04 +0100299 */
300int do_fs_types(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[]);
301
Simon Glassde7b5a82023-06-01 10:22:38 -0600302/**
303 * fs_read_alloc() - Allocate space for a file and read it
304 *
305 * You must call fs_set_blk_dev() or a similar function before calling this,
306 * since that sets up the block device to use.
307 *
308 * The file is terminated with a nul character
309 *
310 * @fname: Filename to read
311 * @size: Size of file to read (must be correct!)
312 * @align: Alignment to use for memory allocation (0 for default)
313 * @bufp: On success, returns the allocated buffer with the nul-terminated file
314 * in it
315 * Return: 0 if OK, -ENOMEM if out of memory, -EIO if read failed
316 */
317int fs_read_alloc(const char *fname, ulong size, uint align, void **bufp);
318
319/**
320 * fs_load_alloc() - Load a file into allocated space
321 *
322 * The file is terminated with a nul character
323 *
324 * @ifname: Interface name to read from (e.g. "mmc")
325 * @dev_part_str: Device and partition string (e.g. "1:2")
326 * @fname: Filename to read
327 * @max_size: Maximum allowed size for the file (use 0 for 1GB)
328 * @align: Alignment to use for memory allocation (0 for default)
329 * @bufp: On success, returns the allocated buffer with the nul-terminated file
330 * in it
331 * @sizep: On success, returns the size of the file
332 * Return: 0 if OK, -ENOMEM if out of memory, -ENOENT if the file does not
333 * exist, -ENOMEDIUM if the device does not exist, -E2BIG if the file is too
334 * large (greater than @max_size), -EIO if read failed
335 */
336int fs_load_alloc(const char *ifname, const char *dev_part_str,
337 const char *fname, ulong max_size, ulong align, void **bufp,
338 ulong *sizep);
339
Stephen Warren045fa1e2012-10-22 06:43:51 +0000340#endif /* _FS_H */