blob: 0794b50d102a91378d4640522acba8ad94cf178e [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
8#include <common.h>
9
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
Stephen Warren045fa1e2012-10-22 06:43:51 +000019
Simon Glasse6f6f9e2020-05-10 11:39:58 -060020struct blk_desc;
21
Simon Glass14449982019-12-28 10:44:44 -070022/**
23 * do_fat_fsload - Run the fatload command
24 *
25 * @cmdtp: Command information for fatload
26 * @flag: Command flags (CMD_FLAG_...)
27 * @argc: Number of arguments
28 * @argv: List of arguments
29 * @return result (see enum command_ret_t)
30 */
Simon Glass09140112020-05-10 11:40:03 -060031int do_fat_fsload(struct cmd_tbl *cmdtp, int flag, int argc,
32 char *const argv[]);
Simon Glass14449982019-12-28 10:44:44 -070033
34/**
35 * do_ext2load - Run the ext2load command
36 *
37 * @cmdtp: Command information for ext2load
38 * @flag: Command flags (CMD_FLAG_...)
39 * @argc: Number of arguments
40 * @argv: List of arguments
41 * @return result (see enum command_ret_t)
42 */
Simon Glass09140112020-05-10 11:40:03 -060043int do_ext2load(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
Simon Glass14449982019-12-28 10:44:44 -070044
Stephen Warren045fa1e2012-10-22 06:43:51 +000045/*
46 * Tell the fs layer which block device an partition to use for future
47 * commands. This also internally identifies the filesystem that is present
48 * within the partition. The identification process may be limited to a
49 * specific filesystem type by passing FS_* in the fstype parameter.
50 *
51 * Returns 0 on success.
52 * Returns non-zero if there is an error accessing the disk or partition, or
53 * no known filesystem type could be recognized on it.
54 */
55int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype);
56
57/*
Rob Clark4bbcc962017-09-09 13:15:55 -040058 * fs_set_blk_dev_with_part - Set current block device + partition
59 *
60 * Similar to fs_set_blk_dev(), but useful for cases where you already
61 * know the blk_desc and part number.
62 *
63 * Returns 0 on success.
64 * Returns non-zero if invalid partition or error accessing the disk.
65 */
66int fs_set_blk_dev_with_part(struct blk_desc *desc, int part);
67
Alex Kiernan0d488e82018-05-29 15:30:50 +000068/**
AKASHI Takahiro64f49eb2019-10-07 14:59:35 +090069 * fs_close() - Unset current block device and partition
70 *
Heinrich Schuchardte4bad9f2019-10-13 10:26:26 +020071 * fs_close() closes the connection to a file system opened with either
72 * fs_set_blk_dev() or fs_set_dev_with_part().
73 *
74 * Many file functions implicitly call fs_close(), e.g. fs_closedir(),
75 * fs_exist(), fs_ln(), fs_ls(), fs_mkdir(), fs_read(), fs_size(), fs_write(),
76 * fs_unlink().
AKASHI Takahiro64f49eb2019-10-07 14:59:35 +090077 */
78void fs_close(void);
79
80/**
AKASHI Takahirob7cd9562019-10-07 14:59:37 +090081 * fs_get_type() - Get type of current filesystem
82 *
83 * Return: filesystem type
84 *
85 * Returns filesystem type representing the current filesystem, or
86 * FS_TYPE_ANY for any unrecognised filesystem.
87 */
88int fs_get_type(void);
89
90/**
Alex Kiernan0d488e82018-05-29 15:30:50 +000091 * fs_get_type_name() - Get type of current filesystem
92 *
93 * Return: Pointer to filesystem name
94 *
95 * Returns a string describing the current filesystem, or the sentinel
96 * "unsupported" for any unrecognised filesystem.
97 */
98const char *fs_get_type_name(void);
99
Rob Clark4bbcc962017-09-09 13:15:55 -0400100/*
Stephen Warren045fa1e2012-10-22 06:43:51 +0000101 * Print the list of files on the partition previously set by fs_set_blk_dev(),
102 * in directory "dirname".
103 *
104 * Returns 0 on success. Returns non-zero on error.
105 */
106int fs_ls(const char *dirname);
107
108/*
Stephen Warren61529162014-02-03 13:21:00 -0700109 * Determine whether a file exists
110 *
111 * Returns 1 if the file exists, 0 if it doesn't exist.
112 */
113int fs_exists(const char *filename);
114
115/*
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800116 * fs_size - Determine a file's size
Stephen Warrencf659812014-06-11 12:47:26 -0600117 *
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800118 * @filename: Name of the file
119 * @size: Size of file
120 * @return 0 if ok with valid *size, negative on error
Stephen Warrencf659812014-06-11 12:47:26 -0600121 */
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800122int fs_size(const char *filename, loff_t *size);
Stephen Warrencf659812014-06-11 12:47:26 -0600123
Heinrich Schuchardta0e92cd2019-04-25 20:36:39 +0200124/**
125 * fs_read() - read file from the partition previously set by fs_set_blk_dev()
Stephen Warren045fa1e2012-10-22 06:43:51 +0000126 *
Heinrich Schuchardta0e92cd2019-04-25 20:36:39 +0200127 * Note that not all filesystem drivers support either or both of offset != 0
128 * and len != 0.
129 *
130 * @filename: full path of the file to read from
131 * @addr: address of the buffer to write to
132 * @offset: offset in the file from where to start reading
133 * @len: the number of bytes to read. Use 0 to read entire file.
134 * @actread: returns the actual number of bytes read
135 * Return: 0 if OK with valid *actread, -1 on error conditions
Stephen Warren045fa1e2012-10-22 06:43:51 +0000136 */
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800137int fs_read(const char *filename, ulong addr, loff_t offset, loff_t len,
138 loff_t *actread);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000139
Heinrich Schuchardta0e92cd2019-04-25 20:36:39 +0200140/**
141 * fs_write() - write file to the partition previously set by fs_set_blk_dev()
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700142 *
Heinrich Schuchardta0e92cd2019-04-25 20:36:39 +0200143 * Note that not all filesystem drivers support offset != 0.
144 *
145 * @filename: full path of the file to write to
146 * @addr: address of the buffer to read from
147 * @offset: offset in the file from where to start writing
148 * @len: the number of bytes to write
149 * @actwrite: returns the actual number of bytes written
150 * Return: 0 if OK with valid *actwrite, -1 on error conditions
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700151 */
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800152int fs_write(const char *filename, ulong addr, loff_t offset, loff_t len,
153 loff_t *actwrite);
Stephen Warrenbd6fb312014-02-03 13:20:59 -0700154
155/*
Rob Clark4bbcc962017-09-09 13:15:55 -0400156 * Directory entry types, matches the subset of DT_x in posix readdir()
157 * which apply to u-boot.
158 */
159#define FS_DT_DIR 4 /* directory */
160#define FS_DT_REG 8 /* regular file */
161#define FS_DT_LNK 10 /* symbolic link */
162
163/*
164 * A directory entry, returned by fs_readdir(). Returns information
165 * about the file/directory at the current directory entry position.
166 */
167struct fs_dirent {
168 unsigned type; /* one of FS_DT_x (not a mask) */
169 loff_t size; /* size in bytes */
170 char name[256];
171};
172
173/* Note: fs_dir_stream should be treated as opaque to the user of fs layer */
174struct fs_dir_stream {
175 /* private to fs. layer: */
176 struct blk_desc *desc;
177 int part;
178};
179
180/*
181 * fs_opendir - Open a directory
182 *
183 * @filename: the path to directory to open
184 * @return a pointer to the directory stream or NULL on error and errno
185 * set appropriately
186 */
187struct fs_dir_stream *fs_opendir(const char *filename);
188
189/*
190 * fs_readdir - Read the next directory entry in the directory stream.
191 *
192 * Works in an analogous way to posix readdir(). The previously returned
193 * directory entry is no longer valid after calling fs_readdir() again.
194 * After fs_closedir() is called, the returned directory entry is no
195 * longer valid.
196 *
197 * @dirs: the directory stream
198 * @return the next directory entry (only valid until next fs_readdir() or
199 * fs_closedir() call, do not attempt to free()) or NULL if the end of
200 * the directory is reached.
201 */
202struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs);
203
204/*
205 * fs_closedir - close a directory stream
206 *
207 * @dirs: the directory stream
208 */
209void fs_closedir(struct fs_dir_stream *dirs);
210
211/*
AKASHI Takahiroe2519da2018-09-11 15:59:13 +0900212 * fs_unlink - delete a file or directory
213 *
214 * If a given name is a directory, it will be deleted only if it's empty
215 *
216 * @filename: Name of file or directory to delete
217 * @return 0 on success, -1 on error conditions
218 */
219int fs_unlink(const char *filename);
220
221/*
AKASHI Takahiroe7074cf2018-09-11 15:59:08 +0900222 * fs_mkdir - Create a directory
223 *
224 * @filename: Name of directory to create
225 * @return 0 on success, -1 on error conditions
226 */
227int fs_mkdir(const char *filename);
228
229/*
Stephen Warren045fa1e2012-10-22 06:43:51 +0000230 * Common implementation for various filesystem commands, optionally limited
231 * to a specific filesystem type via the fstype parameter.
232 */
Simon Glass09140112020-05-10 11:40:03 -0600233int do_size(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
234 int fstype);
235int do_load(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
236 int fstype);
237int do_ls(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
238 int fstype);
Stephen Warren61529162014-02-03 13:21:00 -0700239int file_exists(const char *dev_type, const char *dev_part, const char *file,
240 int fstype);
Simon Glass09140112020-05-10 11:40:03 -0600241int do_save(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
242 int fstype);
243int do_rm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
244 int fstype);
245int do_mkdir(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
246 int fstype);
247int do_ln(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
Jean-Jacques Hiblotaaa12152019-02-13 12:15:26 +0100248 int fstype);
Stephen Warren045fa1e2012-10-22 06:43:51 +0000249
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100250/*
251 * Determine the UUID of the specified filesystem and print it. Optionally it is
252 * possible to store the UUID directly in env.
253 */
Simon Glass09140112020-05-10 11:40:03 -0600254int do_fs_uuid(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[],
255 int fstype);
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100256
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100257/*
258 * Determine the type of the specified filesystem and print it. Optionally it is
259 * possible to store the type directly in env.
260 */
Simon Glass09140112020-05-10 11:40:03 -0600261int do_fs_type(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
Sjoerd Simons1a1ad8e2015-01-05 18:13:36 +0100262
Niel Fourie2280fa52020-03-24 16:17:04 +0100263/**
264 * do_fs_types - List supported filesystems.
265 *
266 * @cmdtp: Command information for fstypes
267 * @flag: Command flags (CMD_FLAG_...)
268 * @argc: Number of arguments
269 * @argv: List of arguments
270 * @return result (see enum command_ret_t)
271 */
272int do_fs_types(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[]);
273
Stephen Warren045fa1e2012-10-22 06:43:51 +0000274#endif /* _FS_H */