2021-11-06 05:31:05 -04:00
|
|
|
/*
|
2021-01-05 18:26:07 -05:00
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 05:31:05 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-02-19 14:50:18 -05:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
2020-03-30 05:50:08 -04:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <string.h>
|
2019-02-19 14:50:18 -05:00
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2021-01-05 18:26:07 -05:00
|
|
|
#include "esp_log.h"
|
|
|
|
#include "esp_vfs.h"
|
|
|
|
#include "hal/cpu_hal.h"
|
|
|
|
#include "openocd_semihosting.h"
|
2019-02-19 14:50:18 -05:00
|
|
|
|
2020-03-30 05:50:08 -04:00
|
|
|
#ifndef CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS
|
|
|
|
#define CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS 1
|
2020-03-20 08:35:00 -04:00
|
|
|
#endif
|
|
|
|
|
2020-03-30 05:50:08 -04:00
|
|
|
#ifndef CONFIG_VFS_SEMIHOSTFS_HOST_PATH_MAX_LEN
|
|
|
|
#define CONFIG_VFS_SEMIHOSTFS_HOST_PATH_MAX_LEN 128
|
2020-03-20 08:35:00 -04:00
|
|
|
#endif
|
|
|
|
|
2019-02-19 14:50:18 -05:00
|
|
|
const static char *TAG = "esp_semihost";
|
|
|
|
|
2020-03-30 05:50:08 -04:00
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
/* Additional open flags */
|
2019-02-19 14:50:18 -05:00
|
|
|
|
2020-03-30 05:50:08 -04:00
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
/* ESP-specific file open flag.
|
|
|
|
* Indicates that path passed to open() is absolute host path.
|
|
|
|
*/
|
2019-02-19 14:50:18 -05:00
|
|
|
#define ESP_O_SEMIHOST_ABSPATH 0x80000000
|
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
/* There is no O_BINARY flag defined in newlib, as well as on Linux,
|
|
|
|
* but we are leaving it to have the flags table identical to OpenOCD.
|
|
|
|
*/
|
|
|
|
#define O_BINARY 0
|
|
|
|
|
|
|
|
/* The table is identical to the one in OpenOCD semihosting_common.c */
|
2020-03-30 05:50:08 -04:00
|
|
|
static const int open_modeflags[12] = {
|
|
|
|
O_RDONLY,
|
|
|
|
O_RDONLY | O_BINARY,
|
|
|
|
O_RDWR,
|
|
|
|
O_RDWR | O_BINARY,
|
|
|
|
O_WRONLY | O_CREAT | O_TRUNC,
|
|
|
|
O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
|
|
|
|
O_RDWR | O_CREAT | O_TRUNC,
|
|
|
|
O_RDWR | O_CREAT | O_TRUNC | O_BINARY,
|
|
|
|
O_WRONLY | O_CREAT | O_APPEND,
|
|
|
|
O_WRONLY | O_CREAT | O_APPEND | O_BINARY,
|
|
|
|
O_RDWR | O_CREAT | O_APPEND,
|
|
|
|
O_RDWR | O_CREAT | O_APPEND | O_BINARY
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the number of appropriate file open mode set from open_modeflags and add some esp flags to them
|
|
|
|
*
|
|
|
|
* @param flags value, every bit of which reflects state of some open-file flag
|
2021-01-05 18:26:07 -05:00
|
|
|
* @return index of the flag from @ref open_modeflags[], or -1 if invalid flags combination is given.
|
2020-03-30 05:50:08 -04:00
|
|
|
*/
|
|
|
|
static inline int get_o_mode(int flags) {
|
2021-01-05 18:26:07 -05:00
|
|
|
if (flags & O_EXCL) { // bypassing lacking of this at table above
|
|
|
|
flags &= ~(O_EXCL);
|
|
|
|
flags |= O_CREAT;
|
2020-03-30 05:50:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < sizeof(open_modeflags) / sizeof(open_modeflags[0]); i++) {
|
2021-01-05 18:26:07 -05:00
|
|
|
if (flags == open_modeflags[i]) {
|
|
|
|
return i;
|
|
|
|
}
|
2020-03-30 05:50:08 -04:00
|
|
|
}
|
|
|
|
return -1; // there is no corresponding mode in the table
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char base_path[ESP_VFS_PATH_MAX + 1]; /* base path in VFS where host semihosting dir is mounted */
|
|
|
|
char host_path[CONFIG_VFS_SEMIHOSTFS_HOST_PATH_MAX_LEN + 1]; /* host path to use as base dir for open files */
|
2019-02-19 14:50:18 -05:00
|
|
|
} vfs_semihost_ctx_t;
|
|
|
|
|
2020-03-30 05:50:08 -04:00
|
|
|
static vfs_semihost_ctx_t s_semhost_ctx[CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS];
|
2019-02-19 14:50:18 -05:00
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
static inline bool ctx_is_unused(const vfs_semihost_ctx_t* ctx)
|
2019-02-19 14:50:18 -05:00
|
|
|
{
|
|
|
|
return ctx->base_path[0] == 0;
|
|
|
|
}
|
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
static inline bool ctx_uses_abspath(const vfs_semihost_ctx_t* ctx)
|
2019-02-19 14:50:18 -05:00
|
|
|
{
|
|
|
|
return ctx->host_path[0];
|
|
|
|
}
|
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
#define FAIL_IF_NO_DEBUGGER() \
|
|
|
|
do { \
|
|
|
|
if (!cpu_hal_is_debugger_attached()) { \
|
|
|
|
errno = EIO; \
|
|
|
|
return -1; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
2020-03-30 05:50:08 -04:00
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
#if __XTENSA__
|
|
|
|
static esp_err_t vfs_semihost_drvinfo(vfs_semihost_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
FAIL_IF_NO_DEBUGGER();
|
2020-03-30 05:50:08 -04:00
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
int ret = semihosting_ver_info();
|
|
|
|
if (ret == -1) {
|
|
|
|
/* Unsupported syscall - old version of OpenOCD */
|
|
|
|
return ESP_ERR_INVALID_VERSION;
|
2020-03-30 05:50:08 -04:00
|
|
|
}
|
2021-01-05 18:26:07 -05:00
|
|
|
return ESP_OK;
|
2020-03-30 05:50:08 -04:00
|
|
|
}
|
2021-01-05 18:26:07 -05:00
|
|
|
#endif // __XTENSA__
|
2020-03-30 05:50:08 -04:00
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
static int vfs_semihost_open(void* ctx, const char* path, int flags, int mode)
|
|
|
|
{
|
|
|
|
int ret_fd = -1;
|
2019-02-19 14:50:18 -05:00
|
|
|
char *host_path;
|
|
|
|
vfs_semihost_ctx_t *semi_ctx = ctx;
|
2021-01-05 18:26:07 -05:00
|
|
|
FAIL_IF_NO_DEBUGGER();
|
2020-03-30 05:50:08 -04:00
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
ESP_LOGV(TAG, "%s: %p '%s 0x%x 0x%x'", __func__, semi_ctx, path, flags, mode);
|
2020-03-30 05:50:08 -04:00
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
int o_mode = get_o_mode(flags);
|
2020-03-30 05:50:08 -04:00
|
|
|
if (o_mode == -1) { /* if wrong flags - error */
|
|
|
|
errno = EINVAL;
|
2021-01-05 18:26:07 -05:00
|
|
|
} else {
|
2020-03-30 05:50:08 -04:00
|
|
|
if (ctx_uses_abspath(semi_ctx)) {
|
2021-01-05 18:26:07 -05:00
|
|
|
/* Create full absolute path on the host by concatenating host base
|
|
|
|
* path and file path relative to the filesystem root.
|
|
|
|
*/
|
2020-03-30 05:50:08 -04:00
|
|
|
host_path = malloc(strlen(semi_ctx->host_path) + strlen(path) + 1);
|
|
|
|
if (host_path == NULL) { /* if no valid pointer - error and return */
|
|
|
|
errno = ENOMEM;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
strcpy(host_path, semi_ctx->host_path);
|
|
|
|
strcat(host_path, path);
|
2021-01-05 18:26:07 -05:00
|
|
|
#ifdef __XTENSA__
|
|
|
|
/* By default, OpenOCD for Xtensa prepends ESP_SEMIHOST_BASEDIR to
|
|
|
|
* the path passed from the target. Adding this special flag to o_mode
|
|
|
|
* inhibits this behavior.
|
|
|
|
* This is not necessary for RISC-V since standard semihosting
|
|
|
|
* implementation is used there and paths aren't mangled on OpenOCD side.
|
|
|
|
*/
|
|
|
|
if (ctx_uses_abspath(semi_ctx)) {
|
|
|
|
o_mode |= ESP_O_SEMIHOST_ABSPATH;
|
|
|
|
}
|
|
|
|
#endif // __XTENSA__
|
2020-03-30 05:50:08 -04:00
|
|
|
} else {
|
|
|
|
host_path = (char *)path;
|
2021-01-05 18:26:07 -05:00
|
|
|
/* For Xtensa targets in OpenOCD there is additional logic related to
|
|
|
|
* semihosting paths handling that isn't there for other targets.
|
|
|
|
* When ESP_SEMIHOST_BASEDIR OpenOCD variable is not set, OpenOCD will
|
|
|
|
* by default prepend '.' to the path passed from the target.
|
|
|
|
* By contrast, for RISC-V there is no such logic and the path will be
|
|
|
|
* used as is, no matter whether it is absolute or relative.
|
|
|
|
* See esp_xtensa_semihosting_get_file_name in esp_xtensa_semihosting.c
|
|
|
|
* for details.
|
|
|
|
*/
|
|
|
|
#ifndef __XTENSA__
|
|
|
|
if (*host_path == '/') {
|
|
|
|
++host_path;
|
|
|
|
}
|
|
|
|
#endif // !__XTENSA__
|
2020-03-30 05:50:08 -04:00
|
|
|
}
|
|
|
|
/* everything is ready: syscall and cleanup */
|
2021-01-05 18:26:07 -05:00
|
|
|
ret_fd = semihosting_open(host_path, o_mode, mode);
|
2020-03-30 05:50:08 -04:00
|
|
|
if (ctx_uses_abspath(semi_ctx)) {
|
|
|
|
free(host_path);
|
|
|
|
}
|
2019-02-19 14:50:18 -05:00
|
|
|
}
|
2020-03-30 05:50:08 -04:00
|
|
|
return ret_fd;
|
2019-02-19 14:50:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t vfs_semihost_write(void* ctx, int fd, const void * data, size_t size)
|
|
|
|
{
|
2021-01-05 18:26:07 -05:00
|
|
|
FAIL_IF_NO_DEBUGGER();
|
2019-02-19 14:50:18 -05:00
|
|
|
|
|
|
|
ESP_LOGV(TAG, "%s: %d %u bytes", __func__, fd, size);
|
2021-01-05 18:26:07 -05:00
|
|
|
return semihosting_write(fd, data, size);
|
2019-02-19 14:50:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t vfs_semihost_read(void* ctx, int fd, void* data, size_t size)
|
|
|
|
{
|
2021-01-05 18:26:07 -05:00
|
|
|
FAIL_IF_NO_DEBUGGER();
|
2019-02-19 14:50:18 -05:00
|
|
|
|
|
|
|
ESP_LOGV(TAG, "%s: %d %u bytes", __func__, fd, size);
|
2021-01-05 18:26:07 -05:00
|
|
|
return semihosting_read(fd, data, size);
|
2019-02-19 14:50:18 -05:00
|
|
|
}
|
|
|
|
|
2020-03-30 05:50:08 -04:00
|
|
|
|
2019-02-19 14:50:18 -05:00
|
|
|
static int vfs_semihost_close(void* ctx, int fd)
|
|
|
|
{
|
2021-01-05 18:26:07 -05:00
|
|
|
FAIL_IF_NO_DEBUGGER();
|
2019-02-19 14:50:18 -05:00
|
|
|
|
|
|
|
ESP_LOGV(TAG, "%s: %d", __func__, fd);
|
2021-01-05 18:26:07 -05:00
|
|
|
return semihosting_close(fd);
|
2019-02-19 14:50:18 -05:00
|
|
|
}
|
|
|
|
|
2020-03-30 05:50:08 -04:00
|
|
|
static off_t vfs_semihost_lseek(void* ctx, int fd, off_t offset, int mode)
|
2019-02-19 14:50:18 -05:00
|
|
|
{
|
2021-01-05 18:26:07 -05:00
|
|
|
FAIL_IF_NO_DEBUGGER();
|
2019-02-19 14:50:18 -05:00
|
|
|
|
2021-01-05 18:26:07 -05:00
|
|
|
return semihosting_seek(fd, offset, mode);
|
2019-02-19 14:50:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_vfs_semihost_register(const char* base_path, const char* host_path)
|
|
|
|
{
|
|
|
|
const esp_vfs_t vfs = {
|
|
|
|
.flags = ESP_VFS_FLAG_CONTEXT_PTR,
|
|
|
|
.write_p = &vfs_semihost_write,
|
|
|
|
.open_p = &vfs_semihost_open,
|
|
|
|
.close_p = &vfs_semihost_close,
|
|
|
|
.read_p = &vfs_semihost_read,
|
|
|
|
.lseek_p = &vfs_semihost_lseek,
|
|
|
|
};
|
|
|
|
ESP_LOGD(TAG, "Register semihosting driver '%s' -> '%s'", base_path, host_path ? host_path : "null");
|
2021-01-05 18:26:07 -05:00
|
|
|
if (!cpu_hal_is_debugger_attached()) {
|
2019-02-19 14:50:18 -05:00
|
|
|
ESP_LOGE(TAG, "OpenOCD is not connected!");
|
|
|
|
return ESP_ERR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
int i = 0;
|
2020-03-30 05:50:08 -04:00
|
|
|
for (i = 0; i < CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS; i++) {
|
2019-02-19 14:50:18 -05:00
|
|
|
if (ctx_is_unused(&s_semhost_ctx[i])) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (strcmp(base_path, s_semhost_ctx[i].base_path) == 0) {
|
|
|
|
return ESP_ERR_INVALID_STATE;
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 05:50:08 -04:00
|
|
|
if (i == CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS) {
|
2019-02-19 14:50:18 -05:00
|
|
|
return ESP_ERR_NO_MEM;
|
|
|
|
}
|
|
|
|
strlcpy(s_semhost_ctx[i].base_path, base_path, sizeof(s_semhost_ctx[i].base_path) - 1);
|
|
|
|
if (host_path) {
|
|
|
|
strlcpy(s_semhost_ctx[i].host_path, host_path, sizeof(s_semhost_ctx[i].host_path) - 1);
|
|
|
|
}
|
|
|
|
ESP_LOGD(TAG, "Register semihosting driver %d %p", i, &s_semhost_ctx[i]);
|
2021-01-05 18:26:07 -05:00
|
|
|
|
|
|
|
esp_err_t err;
|
|
|
|
#if __XTENSA__
|
|
|
|
/* Check for older OpenOCD versions */
|
|
|
|
err = vfs_semihost_drvinfo(&s_semhost_ctx[i]); // define semihosting version
|
2020-03-30 05:50:08 -04:00
|
|
|
if (err != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "Incompatible OpenOCD version detected. Please follow the getting started guides to install the required version.");
|
|
|
|
}
|
2021-01-05 18:26:07 -05:00
|
|
|
#endif // __XTENSA__
|
|
|
|
|
2020-03-30 05:50:08 -04:00
|
|
|
err = esp_vfs_register(base_path, &vfs, &s_semhost_ctx[i]);
|
|
|
|
if (err != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "Can't register the semihosting! Error: %s", esp_err_to_name(err));
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
return err;
|
2019-02-19 14:50:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_vfs_semihost_unregister(const char* base_path)
|
|
|
|
{
|
|
|
|
ESP_LOGD(TAG, "Unregister semihosting driver @ '%s'", base_path);
|
|
|
|
int i = 0;
|
2020-03-30 05:50:08 -04:00
|
|
|
for (i = 0; i < CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS; i++) {
|
2019-02-19 14:50:18 -05:00
|
|
|
if (s_semhost_ctx[i].base_path[0] != 0 && strcmp(base_path, s_semhost_ctx[i].base_path) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 05:50:08 -04:00
|
|
|
if (i == CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS) {
|
2019-02-19 14:50:18 -05:00
|
|
|
return ESP_ERR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
esp_err_t ret = esp_vfs_unregister(s_semhost_ctx[i].base_path);
|
|
|
|
if (ret != ESP_OK) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
s_semhost_ctx[i].base_path[0] = 0;
|
|
|
|
s_semhost_ctx[i].host_path[0] = 0;
|
|
|
|
ESP_LOGD(TAG, "Unregistered semihosting driver @ '%s'", base_path);
|
|
|
|
return ESP_OK;
|
|
|
|
}
|