Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android wasi support. #590

Merged
merged 6 commits into from
Mar 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include <stdlib.h>

#if defined(__FreeBSD__) || defined(__APPLE__)
#if defined(__FreeBSD__) || defined(__APPLE__) || (defined(ANDROID) && __ANDROID_API__ < 28)
#define CONFIG_HAS_ARC4RANDOM_BUF 1
#else
#define CONFIG_HAS_ARC4RANDOM_BUF 0
Expand Down
81 changes: 81 additions & 0 deletions core/shared/platform/android/platform_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

#include "platform_api_vmcore.h"
#include "platform_api_extension.h"

#define API_NOT_SUPPORT_ERROR(API, VERSION) \
__android_log_print(ANDROID_LOG_ERROR, "wasm_runtime::", \
"%s() is only supported when __ANDROID_API__ >= %s.", \
#API, #VERSION);

int
bh_platform_init()
{
Expand Down Expand Up @@ -33,3 +39,78 @@ int os_vprintf(const char *fmt, va_list ap)
return __android_log_vprint(ANDROID_LOG_INFO, "wasm_runtime::", fmt, ap);
}

#if __ANDROID_API__ < 19

int futimens(int __dir_fd, const struct timespec __times[2])
{
API_NOT_SUPPORT_ERROR(futimens, 19);
return -1;
}

#endif

#if __ANDROID_API__ < 21

int posix_fallocate(int __fd, off_t __offset, off_t __length)
{
API_NOT_SUPPORT_ERROR(posix_fallocate, 21);
return -1;
}

int posix_fadvise(int fd, off_t offset, off_t len, int advice)
{
API_NOT_SUPPORT_ERROR(posix_fadvise, 21);
return -1;
}

int linkat(int __old_dir_fd, const char *__old_path,
int __new_dir_fd, const char *__new_path, int __flags)
{
API_NOT_SUPPORT_ERROR(linkat, 21);
return -1;
}

int symlinkat(const char *__old_path, int __new_dir_fd, const char *__new_path)
{
API_NOT_SUPPORT_ERROR(symlinkat, 21);
return -1;
}

ssize_t readlinkat(int __dir_fd, const char *__path, char *__buf, size_t __buf_size)
{
API_NOT_SUPPORT_ERROR(readlinkat, 21);
return -1;
}

#endif

#if __ANDROID_API__ < 23

long telldir(DIR *__dir)
{
API_NOT_SUPPORT_ERROR(telldir, 23);
return -1;
}

void seekdir(DIR *__dir, long __location)
{
API_NOT_SUPPORT_ERROR(seekdir, 23);
}

#endif

#if __ANDROID_API__ < 24

ssize_t preadv(int __fd, const struct iovec *__iov, int __count, off_t __offset)
{
API_NOT_SUPPORT_ERROR(preadv, 24);
return -1;
}

ssize_t pwritev(int __fd, const struct iovec *__iov, int __count, off_t __offset)
{
API_NOT_SUPPORT_ERROR(pwritev, 24);
return -1;
}

#endif
39 changes: 39 additions & 0 deletions core/shared/platform/android/platform_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,45 @@ void os_sigreturn();
#endif /* end of BUILD_TARGET_X86_64/AMD_64/AARCH64 */
#endif /* end of WASM_DISABLE_HW_BOUND_CHECK */

typedef long int __syscall_slong_t;

#if __ANDROID_API__ < 19

int futimens(int __dir_fd, const struct timespec __times[2]);

#endif

#if __ANDROID_API__ < 21

int posix_fallocate(int __fd, off_t __offset, off_t __length);

int posix_fadvise(int fd, off_t offset, off_t len, int advice);

int linkat(int __old_dir_fd, const char *__old_path,
int __new_dir_fd, const char *__new_path, int __flags);

int symlinkat(const char *__old_path, int __new_dir_fd, const char *__new_path);

ssize_t readlinkat(int __dir_fd, const char *__path, char *__buf, size_t __buf_size);

#endif

#if __ANDROID_API__ < 23

long telldir(DIR *__dir);

void seekdir(DIR *__dir, long __location);

#endif

#if __ANDROID_API__ < 24

ssize_t preadv(int __fd, const struct iovec *__iov, int __count, off_t __offset);

ssize_t pwritev(int __fd, const struct iovec *__iov, int __count, off_t __offset);

#endif

#ifdef __cplusplus
}
#endif
Expand Down
5 changes: 4 additions & 1 deletion product-mini/platforms/android/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ set (ANDROID_NDK $ENV{ANDROID_NDK_HOME})
set (ANDROID_SDK $ENV{ANDROID_SDK_HOME})
set (ANDROID_ABI "x86")
set (ANDROID_LD lld)
if (NOT DEFINED ANDROID_PLATFORM)
set (ANDROID_PLATFORM 24)
endif ()

project (iwasm)

Expand All @@ -20,7 +23,7 @@ set (WAMR_BUILD_TYPE Release)
set (WAMR_BUILD_INTERP 1)
set (WAMR_BUILD_AOT 0)
set (WAMR_BUILD_LIBC_BUILTIN 1)
set (WAMR_BUILD_LIBC_WASI 0)
set (WAMR_BUILD_LIBC_WASI 1)

# Reset default linker flags
set (CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
Expand Down