2013-03-11 07:42:49 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* include/nuttx/userspace.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __INCLUDE_NUTTX_USERSPACE_H
|
|
|
|
#define __INCLUDE_NUTTX_USERSPACE_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
2013-03-17 08:40:49 +08:00
|
|
|
#include <signal.h>
|
2013-03-17 01:37:40 +08:00
|
|
|
#include <pthread.h>
|
2013-03-11 07:42:49 +08:00
|
|
|
|
2013-03-23 22:46:02 +08:00
|
|
|
#include <nuttx/arch.h>
|
|
|
|
|
2014-08-30 04:47:22 +08:00
|
|
|
#ifdef CONFIG_BUILD_PROTECTED
|
2013-03-11 07:42:49 +08:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
2020-05-01 02:43:08 +08:00
|
|
|
|
2013-03-11 07:42:49 +08:00
|
|
|
/* Configuration ************************************************************/
|
2020-05-01 02:43:08 +08:00
|
|
|
|
2014-08-30 04:47:22 +08:00
|
|
|
/* If CONFIG_BUILD_PROTECTED, then CONFIG_NUTTX_USERSPACE must be defined to
|
2013-03-11 07:42:49 +08:00
|
|
|
* provide the address where the user-space header can be found in memory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONFIG_NUTTX_USERSPACE
|
|
|
|
# error "CONFIG_NUTTX_USERSPACE is not defined"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Let's insist on 4-byte alignment. This alignment may not be required
|
|
|
|
* technically for all platforms. However, neither is it an unreasonable
|
|
|
|
* requirement for any platform.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if (CONFIG_NUTTX_USERSPACE & 3) != 0
|
|
|
|
# warning "CONFIG_NUTTX_USERSPACE is not aligned to a 4-byte boundary"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Helper Macros ************************************************************/
|
2020-05-01 02:43:08 +08:00
|
|
|
|
2013-03-11 07:42:49 +08:00
|
|
|
/* This macro is used to access the struct userpace_s header that can be
|
|
|
|
* found at the beginning of the user-space blob.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define USERSPACE ((FAR struct userspace_s *)CONFIG_NUTTX_USERSPACE)
|
|
|
|
|
|
|
|
/* In user space, these functions are directly callable. In kernel space,
|
|
|
|
* they can be called through the userspace structure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-07-10 22:37:02 +08:00
|
|
|
* Public Type Definitions
|
2013-03-11 07:42:49 +08:00
|
|
|
****************************************************************************/
|
2015-07-10 22:37:02 +08:00
|
|
|
|
|
|
|
struct mm_heaps_s; /* Forward reference */
|
|
|
|
|
2020-05-01 02:43:08 +08:00
|
|
|
/* Every user-space blob starts with a header that provides information about
|
|
|
|
* the blob. The form of that header is provided by struct userspace_s. An
|
|
|
|
* instance of this is expected to reside at CONFIG_NUTTX_USERSPACE.
|
2013-03-11 07:42:49 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct userspace_s
|
|
|
|
{
|
|
|
|
/* General memory map */
|
|
|
|
|
|
|
|
main_t us_entrypoint;
|
|
|
|
uintptr_t us_textstart;
|
|
|
|
uintptr_t us_textend;
|
|
|
|
uintptr_t us_datasource;
|
|
|
|
uintptr_t us_datastart;
|
|
|
|
uintptr_t us_dataend;
|
|
|
|
uintptr_t us_bssstart;
|
|
|
|
uintptr_t us_bssend;
|
2019-03-20 00:20:43 +08:00
|
|
|
uintptr_t us_heapend;
|
2013-03-11 07:42:49 +08:00
|
|
|
|
2015-07-10 22:37:02 +08:00
|
|
|
/* Memory manager heap structure */
|
|
|
|
|
|
|
|
FAR struct mm_heap_s *us_heap;
|
|
|
|
|
2013-03-17 01:37:40 +08:00
|
|
|
/* Task/thread startup routines */
|
2013-03-15 06:44:06 +08:00
|
|
|
|
This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit().
Squashed commit of the following:
Trivial, cosmetic
sched/, arch/, and include: Rename task_vforkstart() as nxtask_vforkstart()
sched/, arch/, and include: Rename task_vforkabort() as nxtask_vforkabort()
sched/, arch/, and include: Rename task_vforksetup() as nxtask_vfork_setup()
sched/: Rename notify_cancellation() as nxnotify_cancellation()
sched/: Rename task_recover() to nxtask_recover()
sched/task, sched/pthread/, Documentation/: Rename task_argsetup() and task_terminate() to nxtask_argsetup() and nxtask_terminate(), respectively.
sched/task: Rename task_schedsetup() to nxtask_schedsetup()
sched/ (plus some binfmt/, include/, and arch/): Rename task_start() and task_starthook() to nxtask_start() and nxtask_starthook().
arch/ and sched/: Rename task_exit() and task_exithook() to nxtask_exit() and nxtask_exithook(), respectively.
sched/task: Rename all internal, static, functions to begin with the nx prefix.
2019-02-05 03:42:51 +08:00
|
|
|
CODE void (*task_startup)(main_t entrypt, int argc, FAR char *argv[])
|
2013-03-17 08:40:49 +08:00
|
|
|
noreturn_function;
|
2013-03-17 01:37:40 +08:00
|
|
|
#ifndef CONFIG_DISABLE_PTHREAD
|
This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit().
Squashed commit of the following:
Trivial, cosmetic
sched/, arch/, and include: Rename task_vforkstart() as nxtask_vforkstart()
sched/, arch/, and include: Rename task_vforkabort() as nxtask_vforkabort()
sched/, arch/, and include: Rename task_vforksetup() as nxtask_vfork_setup()
sched/: Rename notify_cancellation() as nxnotify_cancellation()
sched/: Rename task_recover() to nxtask_recover()
sched/task, sched/pthread/, Documentation/: Rename task_argsetup() and task_terminate() to nxtask_argsetup() and nxtask_terminate(), respectively.
sched/task: Rename task_schedsetup() to nxtask_schedsetup()
sched/ (plus some binfmt/, include/, and arch/): Rename task_start() and task_starthook() to nxtask_start() and nxtask_starthook().
arch/ and sched/: Rename task_exit() and task_exithook() to nxtask_exit() and nxtask_exithook(), respectively.
sched/task: Rename all internal, static, functions to begin with the nx prefix.
2019-02-05 03:42:51 +08:00
|
|
|
CODE void (*pthread_startup)(pthread_startroutine_t entrypt,
|
2013-03-17 08:40:49 +08:00
|
|
|
pthread_addr_t arg);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Signal handler trampoline */
|
|
|
|
|
This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit().
Squashed commit of the following:
Trivial, cosmetic
sched/, arch/, and include: Rename task_vforkstart() as nxtask_vforkstart()
sched/, arch/, and include: Rename task_vforkabort() as nxtask_vforkabort()
sched/, arch/, and include: Rename task_vforksetup() as nxtask_vfork_setup()
sched/: Rename notify_cancellation() as nxnotify_cancellation()
sched/: Rename task_recover() to nxtask_recover()
sched/task, sched/pthread/, Documentation/: Rename task_argsetup() and task_terminate() to nxtask_argsetup() and nxtask_terminate(), respectively.
sched/task: Rename task_schedsetup() to nxtask_schedsetup()
sched/ (plus some binfmt/, include/, and arch/): Rename task_start() and task_starthook() to nxtask_start() and nxtask_starthook().
arch/ and sched/: Rename task_exit() and task_exithook() to nxtask_exit() and nxtask_exithook(), respectively.
sched/task: Rename all internal, static, functions to begin with the nx prefix.
2019-02-05 03:42:51 +08:00
|
|
|
CODE void (*signal_handler)(_sa_sigaction_t sighand, int signo,
|
2013-03-17 08:40:49 +08:00
|
|
|
FAR siginfo_t *info, FAR void *ucontext);
|
2013-03-11 07:42:49 +08:00
|
|
|
|
|
|
|
/* User-space work queue support */
|
|
|
|
|
2014-10-12 05:59:40 +08:00
|
|
|
#ifdef CONFIG_LIB_USRWORK
|
This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit().
Squashed commit of the following:
Trivial, cosmetic
sched/, arch/, and include: Rename task_vforkstart() as nxtask_vforkstart()
sched/, arch/, and include: Rename task_vforkabort() as nxtask_vforkabort()
sched/, arch/, and include: Rename task_vforksetup() as nxtask_vfork_setup()
sched/: Rename notify_cancellation() as nxnotify_cancellation()
sched/: Rename task_recover() to nxtask_recover()
sched/task, sched/pthread/, Documentation/: Rename task_argsetup() and task_terminate() to nxtask_argsetup() and nxtask_terminate(), respectively.
sched/task: Rename task_schedsetup() to nxtask_schedsetup()
sched/ (plus some binfmt/, include/, and arch/): Rename task_start() and task_starthook() to nxtask_start() and nxtask_starthook().
arch/ and sched/: Rename task_exit() and task_exithook() to nxtask_exit() and nxtask_exithook(), respectively.
sched/task: Rename all internal, static, functions to begin with the nx prefix.
2019-02-05 03:42:51 +08:00
|
|
|
CODE int (*work_usrstart)(void);
|
2013-03-11 07:42:49 +08:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-03-17 08:40:49 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: task_startup
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is the user-space, task startup function. It is called
|
|
|
|
* from up_task_start() in user-mode.
|
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Input Parameters:
|
2013-03-17 08:40:49 +08:00
|
|
|
* entrypt - The user-space address of the task entry point
|
|
|
|
* argc and argv - Standard arguments for the task entry point
|
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2013-03-17 08:40:49 +08:00
|
|
|
* None. This function does not return.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-30 03:21:23 +08:00
|
|
|
#ifndef __KERNEL__
|
2020-05-01 02:43:08 +08:00
|
|
|
void task_startup(main_t entrypt, int argc, FAR char *argv[])
|
|
|
|
noreturn_function;
|
2013-03-17 08:40:49 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pthread_startup
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is the user-space, pthread startup function. It is called
|
|
|
|
* from up_pthread_start() in user-mode.
|
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Input Parameters:
|
2013-03-17 08:40:49 +08:00
|
|
|
* entrypt - The user-space address of the pthread entry point
|
|
|
|
* arg - Standard argument for the pthread entry point
|
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2013-03-17 08:40:49 +08:00
|
|
|
* None. This function does not return.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-30 03:21:23 +08:00
|
|
|
#if !defined(__KERNEL__) && !defined(CONFIG_DISABLE_PTHREAD)
|
2013-03-17 08:40:49 +08:00
|
|
|
void pthread_startup(pthread_startroutine_t entrypt, pthread_addr_t arg);
|
|
|
|
#endif
|
|
|
|
|
2013-03-11 07:42:49 +08:00
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-30 04:47:22 +08:00
|
|
|
#endif /* CONFIG_BUILD_PROTECTED */
|
2013-03-11 07:42:49 +08:00
|
|
|
#endif /* __INCLUDE_NUTTX_USERSPACE_H */
|