2019-08-01 02:07:26 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "AP_Filesystem.h"
|
|
|
|
|
2022-08-14 19:14:57 -03:00
|
|
|
#include "AP_Filesystem_config.h"
|
|
|
|
#include <AP_HAL/HAL.h>
|
2023-06-14 00:54:54 -03:00
|
|
|
#include <AP_HAL/Util.h>
|
2022-08-14 19:14:57 -03:00
|
|
|
|
2019-08-01 02:07:26 -03:00
|
|
|
static AP_Filesystem fs;
|
|
|
|
|
2023-05-14 22:44:22 -03:00
|
|
|
// create exactly one "local" filesystem:
|
|
|
|
#if AP_FILESYSTEM_FATFS_ENABLED
|
2020-03-11 03:48:09 -03:00
|
|
|
#include "AP_Filesystem_FATFS.h"
|
|
|
|
static AP_Filesystem_FATFS fs_local;
|
2023-05-14 22:44:22 -03:00
|
|
|
#elif AP_FILESYSTEM_ESP32_ENABLED
|
2021-10-27 05:06:35 -03:00
|
|
|
#include "AP_Filesystem_ESP32.h"
|
|
|
|
static AP_Filesystem_ESP32 fs_local;
|
2023-05-14 22:44:22 -03:00
|
|
|
#elif AP_FILESYSTEM_POSIX_ENABLED
|
2020-03-11 03:48:09 -03:00
|
|
|
#include "AP_Filesystem_posix.h"
|
|
|
|
static AP_Filesystem_Posix fs_local;
|
2023-05-14 22:44:22 -03:00
|
|
|
#else
|
|
|
|
static AP_Filesystem_Backend fs_local;
|
|
|
|
int errno;
|
2020-03-11 03:48:09 -03:00
|
|
|
#endif
|
|
|
|
|
2022-08-14 19:14:57 -03:00
|
|
|
#if AP_FILESYSTEM_ROMFS_ENABLED
|
2020-03-11 03:48:09 -03:00
|
|
|
#include "AP_Filesystem_ROMFS.h"
|
|
|
|
static AP_Filesystem_ROMFS fs_romfs;
|
|
|
|
#endif
|
|
|
|
|
2022-08-14 19:14:57 -03:00
|
|
|
#if AP_FILESYSTEM_PARAM_ENABLED
|
2020-03-21 02:19:15 -03:00
|
|
|
#include "AP_Filesystem_Param.h"
|
|
|
|
static AP_Filesystem_Param fs_param;
|
2022-08-14 19:14:57 -03:00
|
|
|
#endif
|
2020-03-21 02:19:15 -03:00
|
|
|
|
2022-08-14 19:14:57 -03:00
|
|
|
#if AP_FILESYSTEM_SYS_ENABLED
|
2020-03-27 17:29:27 -03:00
|
|
|
#include "AP_Filesystem_Sys.h"
|
|
|
|
static AP_Filesystem_Sys fs_sys;
|
2022-08-14 19:14:57 -03:00
|
|
|
#endif
|
2020-03-27 17:29:27 -03:00
|
|
|
|
2022-08-14 19:14:57 -03:00
|
|
|
#if AP_FILESYSTEM_MISSION_ENABLED
|
2021-04-04 23:46:49 -03:00
|
|
|
#include "AP_Filesystem_Mission.h"
|
|
|
|
static AP_Filesystem_Mission fs_mission;
|
2021-05-19 23:34:12 -03:00
|
|
|
#endif
|
2021-04-04 23:46:49 -03:00
|
|
|
|
2020-03-11 03:48:09 -03:00
|
|
|
/*
|
|
|
|
mapping from filesystem prefix to backend
|
|
|
|
*/
|
|
|
|
const AP_Filesystem::Backend AP_Filesystem::backends[] = {
|
|
|
|
{ nullptr, fs_local },
|
2022-08-14 19:14:57 -03:00
|
|
|
#if AP_FILESYSTEM_ROMFS_ENABLED
|
2020-03-20 22:13:30 -03:00
|
|
|
{ "@ROMFS/", fs_romfs },
|
2020-03-11 03:48:09 -03:00
|
|
|
#endif
|
2022-08-14 19:14:57 -03:00
|
|
|
#if AP_FILESYSTEM_PARAM_ENABLED
|
2020-03-21 02:19:15 -03:00
|
|
|
{ "@PARAM/", fs_param },
|
2022-08-14 19:14:57 -03:00
|
|
|
#endif
|
|
|
|
#if AP_FILESYSTEM_SYS_ENABLED
|
2020-03-27 17:29:27 -03:00
|
|
|
{ "@SYS/", fs_sys },
|
2020-11-11 04:00:52 -04:00
|
|
|
{ "@SYS", fs_sys },
|
2022-08-14 19:14:57 -03:00
|
|
|
#endif
|
|
|
|
#if AP_FILESYSTEM_MISSION_ENABLED
|
2021-04-04 23:46:49 -03:00
|
|
|
{ "@MISSION/", fs_mission },
|
2021-05-19 23:34:12 -03:00
|
|
|
#endif
|
2020-03-11 03:48:09 -03:00
|
|
|
};
|
|
|
|
|
2021-11-07 04:30:47 -04:00
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2020-03-11 03:48:09 -03:00
|
|
|
#define MAX_FD_PER_BACKEND 256U
|
|
|
|
#define NUM_BACKENDS ARRAY_SIZE(backends)
|
2020-10-23 22:24:06 -03:00
|
|
|
#define LOCAL_BACKEND backends[0]
|
2020-03-11 03:48:09 -03:00
|
|
|
#define BACKEND_IDX(backend) (&(backend) - &backends[0])
|
|
|
|
|
|
|
|
/*
|
|
|
|
find backend by path
|
|
|
|
*/
|
|
|
|
const AP_Filesystem::Backend &AP_Filesystem::backend_by_path(const char *&path) const
|
|
|
|
{
|
|
|
|
for (uint8_t i=1; i<NUM_BACKENDS; i++) {
|
|
|
|
const uint8_t plen = strlen(backends[i].prefix);
|
|
|
|
if (strncmp(path, backends[i].prefix, plen) == 0) {
|
|
|
|
path += plen;
|
|
|
|
return backends[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// default to local filesystem
|
|
|
|
return LOCAL_BACKEND;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
return backend by file descriptor
|
|
|
|
*/
|
|
|
|
const AP_Filesystem::Backend &AP_Filesystem::backend_by_fd(int &fd) const
|
|
|
|
{
|
|
|
|
if (fd < 0 || uint32_t(fd) >= NUM_BACKENDS*MAX_FD_PER_BACKEND) {
|
|
|
|
return LOCAL_BACKEND;
|
|
|
|
}
|
|
|
|
const uint8_t idx = uint32_t(fd) / MAX_FD_PER_BACKEND;
|
|
|
|
fd -= idx * MAX_FD_PER_BACKEND;
|
|
|
|
return backends[idx];
|
|
|
|
}
|
|
|
|
|
2022-03-14 11:33:32 -03:00
|
|
|
int AP_Filesystem::open(const char *fname, int flags, bool allow_absolute_paths)
|
2020-03-11 03:48:09 -03:00
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(fname);
|
2022-03-14 11:33:32 -03:00
|
|
|
int fd = backend.fs.open(fname, flags, allow_absolute_paths);
|
2020-03-11 03:48:09 -03:00
|
|
|
if (fd < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (uint32_t(fd) >= MAX_FD_PER_BACKEND) {
|
|
|
|
backend.fs.close(fd);
|
|
|
|
errno = ERANGE;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// offset fd so we can recognise the backend
|
|
|
|
const uint8_t idx = (&backend - &backends[0]);
|
|
|
|
fd += idx * MAX_FD_PER_BACKEND;
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AP_Filesystem::close(int fd)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_fd(fd);
|
|
|
|
return backend.fs.close(fd);
|
|
|
|
}
|
|
|
|
|
2020-03-29 22:53:29 -03:00
|
|
|
int32_t AP_Filesystem::read(int fd, void *buf, uint32_t count)
|
2020-03-11 03:48:09 -03:00
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_fd(fd);
|
|
|
|
return backend.fs.read(fd, buf, count);
|
|
|
|
}
|
|
|
|
|
2020-03-29 22:53:29 -03:00
|
|
|
int32_t AP_Filesystem::write(int fd, const void *buf, uint32_t count)
|
2020-03-11 03:48:09 -03:00
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_fd(fd);
|
|
|
|
return backend.fs.write(fd, buf, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
int AP_Filesystem::fsync(int fd)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_fd(fd);
|
|
|
|
return backend.fs.fsync(fd);
|
|
|
|
}
|
|
|
|
|
2020-03-29 22:53:29 -03:00
|
|
|
int32_t AP_Filesystem::lseek(int fd, int32_t offset, int seek_from)
|
2020-03-11 03:48:09 -03:00
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_fd(fd);
|
|
|
|
return backend.fs.lseek(fd, offset, seek_from);
|
|
|
|
}
|
|
|
|
|
|
|
|
int AP_Filesystem::stat(const char *pathname, struct stat *stbuf)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(pathname);
|
|
|
|
return backend.fs.stat(pathname, stbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
int AP_Filesystem::unlink(const char *pathname)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(pathname);
|
|
|
|
return backend.fs.unlink(pathname);
|
|
|
|
}
|
|
|
|
|
|
|
|
int AP_Filesystem::mkdir(const char *pathname)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(pathname);
|
|
|
|
return backend.fs.mkdir(pathname);
|
|
|
|
}
|
|
|
|
|
2023-02-21 17:23:28 -04:00
|
|
|
int AP_Filesystem::rename(const char *oldpath, const char *newpath)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(oldpath);
|
|
|
|
return backend.fs.rename(oldpath, newpath);
|
|
|
|
}
|
|
|
|
|
2020-03-11 03:48:09 -03:00
|
|
|
AP_Filesystem::DirHandle *AP_Filesystem::opendir(const char *pathname)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(pathname);
|
|
|
|
DirHandle *h = new DirHandle;
|
|
|
|
if (!h) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
h->dir = backend.fs.opendir(pathname);
|
|
|
|
if (h->dir == nullptr) {
|
|
|
|
delete h;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
h->fs_index = BACKEND_IDX(backend);
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct dirent *AP_Filesystem::readdir(DirHandle *dirp)
|
|
|
|
{
|
|
|
|
if (!dirp) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
const Backend &backend = backends[dirp->fs_index];
|
|
|
|
return backend.fs.readdir(dirp->dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
int AP_Filesystem::closedir(DirHandle *dirp)
|
|
|
|
{
|
|
|
|
if (!dirp) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
const Backend &backend = backends[dirp->fs_index];
|
|
|
|
int ret = backend.fs.closedir(dirp->dir);
|
|
|
|
delete dirp;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return free disk space in bytes
|
|
|
|
int64_t AP_Filesystem::disk_free(const char *path)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(path);
|
|
|
|
return backend.fs.disk_free(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
// return total disk space in bytes
|
|
|
|
int64_t AP_Filesystem::disk_space(const char *path)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(path);
|
|
|
|
return backend.fs.disk_space(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
set mtime on a file
|
|
|
|
*/
|
2020-03-29 22:53:29 -03:00
|
|
|
bool AP_Filesystem::set_mtime(const char *filename, const uint32_t mtime_sec)
|
2020-03-11 03:48:09 -03:00
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(filename);
|
|
|
|
return backend.fs.set_mtime(filename, mtime_sec);
|
|
|
|
}
|
|
|
|
|
2020-10-23 22:24:06 -03:00
|
|
|
// if filesystem is not running then try a remount
|
|
|
|
bool AP_Filesystem::retry_mount(void)
|
|
|
|
{
|
|
|
|
return LOCAL_BACKEND.fs.retry_mount();
|
|
|
|
}
|
|
|
|
|
|
|
|
// unmount filesystem for reboot
|
|
|
|
void AP_Filesystem::unmount(void)
|
|
|
|
{
|
|
|
|
return LOCAL_BACKEND.fs.unmount();
|
|
|
|
}
|
|
|
|
|
2020-11-12 20:02:21 -04:00
|
|
|
/*
|
|
|
|
load a file to memory as a single chunk. Use only for small files
|
|
|
|
*/
|
|
|
|
FileData *AP_Filesystem::load_file(const char *filename)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_path(filename);
|
|
|
|
return backend.fs.load_file(filename);
|
|
|
|
}
|
|
|
|
|
2021-09-29 00:01:26 -03:00
|
|
|
// returns null-terminated string; cr or lf terminates line
|
|
|
|
bool AP_Filesystem::fgets(char *buf, uint8_t buflen, int fd)
|
|
|
|
{
|
|
|
|
const Backend &backend = backend_by_fd(fd);
|
|
|
|
|
|
|
|
uint8_t i = 0;
|
|
|
|
for (; i<buflen-1; i++) {
|
2022-01-26 13:21:00 -04:00
|
|
|
if (backend.fs.read(fd, &buf[i], 1) <= 0) {
|
|
|
|
if (i==0) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-09-29 00:01:26 -03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (buf[i] == '\r' || buf[i] == '\n') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf[i] = '\0';
|
2022-01-26 13:21:00 -04:00
|
|
|
return true;
|
2021-09-29 00:01:26 -03:00
|
|
|
}
|
2020-11-12 20:02:21 -04:00
|
|
|
|
2023-06-06 23:38:55 -03:00
|
|
|
#if AP_FILESYSTEM_FORMAT_ENABLED
|
2021-11-07 04:30:47 -04:00
|
|
|
// format filesystem
|
|
|
|
bool AP_Filesystem::format(void)
|
|
|
|
{
|
|
|
|
if (hal.util->get_soft_armed()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return LOCAL_BACKEND.fs.format();
|
|
|
|
}
|
2022-12-08 02:47:18 -04:00
|
|
|
AP_Filesystem_Backend::FormatStatus AP_Filesystem::get_format_status(void) const
|
|
|
|
{
|
|
|
|
return LOCAL_BACKEND.fs.get_format_status();
|
|
|
|
}
|
2023-06-06 23:38:55 -03:00
|
|
|
#endif
|
2021-11-07 04:30:47 -04:00
|
|
|
|
2019-08-01 02:07:26 -03:00
|
|
|
namespace AP
|
|
|
|
{
|
|
|
|
AP_Filesystem &FS()
|
|
|
|
{
|
|
|
|
return fs;
|
|
|
|
}
|
|
|
|
}
|
2020-03-29 22:53:29 -03:00
|
|
|
|