* sched/task/task_setup.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <sys/types.h>
#include <ctype.h>
#include <stdint.h>
#include <sched.h>
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <debug.h>
#include <nuttx/arch.h>
#include <nuttx/sched.h>
#include <nuttx/signal.h>
#include <nuttx/tls.h>
#include "sched/sched.h"
#include "pthread/pthread.h"
#include "group/group.h"
#include "task/task.h"
#include "tls/tls.h"
* Pre-processor Definitions
****************************************************************************/
* list is not properly terminated.
*/
#define MAX_STACK_ARGS 256
* Private Data
****************************************************************************/
static const char g_noname[] = "<noname>";
* Private Functions
****************************************************************************/
* Name: nxtask_assign_pid
*
* Description:
* This function assigns the next unique task ID to a task.
*
* Input Parameters:
* tcb - TCB of task
*
* Returned Value:
* OK on success; ERROR on failure (errno is not set)
*
****************************************************************************/
static int nxtask_assign_pid(FAR struct tcb_s *tcb)
{
FAR struct tcb_s **pidhash;
irqstate_t flags;
pid_t next_pid;
int hash_ndx;
void *temp;
int i;
int ret = -ENOMEM;
* ERROR means that the g_pidhash[] table is completely full.
* We cannot allow another task to be started.
*/
for (; ; )
{
* because g_pidhash is accessed from an interrupt context
*/
flags = spin_lock_irqsave(&g_pidhashlock);
next_pid = g_lastpid + 1;
for (i = 0; i < g_npidhash; i++)
{
if (next_pid <= 0)
{
next_pid = 1;
}
hash_ndx = PIDHASH(next_pid);
if (!g_pidhash[hash_ndx])
{
g_pidhash[hash_ndx] = tcb;
tcb->pid = next_pid;
atomic_set(&tcb->refs, 1);
g_lastpid = next_pid;
spin_unlock_irqrestore(&g_pidhashlock, flags);
ret = OK;
break;
}
next_pid++;
}
if (ret == OK)
{
break;
}
* We will alloc new space and copy original g_pidhash to it to
* expand space.
*/
temp = g_pidhash;
* Here we check whether other threads have applied successfully,
* and if successful, return directly
*/
spin_unlock_irqrestore(&g_pidhashlock, flags);
pidhash = kmm_zalloc((size_t)g_npidhash * 2u * sizeof(*pidhash));
if (pidhash == NULL)
{
ret = -ENOMEM;
break;
}
flags = spin_lock_irqsave(&g_pidhashlock);
if (temp != g_pidhash)
{
spin_unlock_irqrestore(&g_pidhashlock, flags);
kmm_free(pidhash);
continue;
}
g_npidhash *= 2;
* so we need to rebuild their relationship
*/
for (i = 0; i < g_npidhash / 2; i++)
{
if (g_pidhash[i] == NULL)
{
* This may be triggered when a context switch occurs
* during zalloc and a thread is destroyed.
*/
continue;
}
hash_ndx = PIDHASH(g_pidhash[i]->pid);
DEBUGASSERT(pidhash[hash_ndx] == NULL);
pidhash[hash_ndx] = g_pidhash[i];
}
g_pidhash = pidhash;
spin_unlock_irqrestore(&g_pidhashlock, flags);
kmm_free(temp);
}
return ret;
}
* Name: nxtask_inherit_affinity
*
* Description:
* exec(), task_create(), and vfork() all inherit the affinity mask from
* the parent thread. This is the default for pthread_create() as well
* but the affinity mask can be specified in the pthread attributes as
* well. pthread_setup() will have to fix up the affinity mask in this
* case.
*
* Input Parameters:
* tcb - The TCB of the new task.
*
* Returned Value:
* None
*
* Assumptions:
* The parent of the new task is the task at the head of the assigned task
* list for the current CPU.
*
****************************************************************************/
#ifdef CONFIG_SMP
static inline void nxtask_inherit_affinity(FAR struct tcb_s *tcb)
{
FAR struct tcb_s *rtcb = this_task();
tcb->affinity = rtcb->affinity;
}
#else
# define nxtask_inherit_affinity(tcb)
#endif
* Name: nxtask_save_parent
*
* Description:
* Save the task ID of the parent task in the child task's group and
* allocate a child status structure to catch the child task's exit
* status.
*
* Input Parameters:
* tcb - The TCB of the new, child task.
* ttype - Type of the new thread: task, pthread, or kernel thread
*
* Returned Value:
* None
*
* Assumptions:
* The parent of the new task is the task at the head of the ready-to-run
* list.
*
****************************************************************************/
#ifdef CONFIG_SCHED_HAVE_PARENT
static inline void nxtask_save_parent(FAR struct tcb_s *tcb, int ttype)
{
DEBUGASSERT(tcb != NULL && tcb->group != NULL);
* this logic applies to pthreads with reside in the same group as the
* parent and share that same child/parent relationships.
*/
#ifndef CONFIG_DISABLE_PTHREAD
if ((atomic_read(&tcb->flags) & TCB_FLAG_TTYPE_MASK) !=
TCB_FLAG_TTYPE_PTHREAD)
#endif
{
FAR struct tcb_s *rtcb = this_task();
DEBUGASSERT(rtcb != NULL && rtcb->group != NULL);
* group. Copy the ID from the parent's task group structure to
* child's task group.
*/
tcb->group->tg_ppid = rtcb->group->tg_pid;
#ifdef CONFIG_SCHED_CHILD_STATUS
* the SA_NOCLDWAIT flag with sigaction().
*/
if ((atomic_read(&rtcb->group->tg_flags) & GROUP_FLAG_NOCLDWAIT) == 0)
{
FAR struct child_status_s *child;
* the parent TCB. There should not be.
*/
child = group_find_child(rtcb->group, tcb->pid);
DEBUGASSERT(child == NULL);
if (child == NULL)
{
child = group_alloc_child();
}
DEBUGASSERT(child != NULL);
if (child != NULL)
{
child->ch_flags = ttype;
child->ch_pid = tcb->pid;
child->ch_status = 0;
group_add_child(rtcb->group, child);
}
}
#else
* child tasks created.
*/
DEBUGASSERT(atomic_read(&rtcb->group->tg_nchildren) < UINT16_MAX);
atomic_add_relaxed(&rtcb->group->tg_nchildren, 1);
#endif
}
}
#else
# define nxtask_save_parent(tcb,ttype)
#endif
* Name: nxtask_dup_dspace
*
* Description:
* When a new task or thread is created from a PIC module, then that
* module (probably) intends the task or thread to execute in the same
* D-Space. This function will duplicate the D-Space for that purpose.
*
* Input Parameters:
* tcb - The TCB of the new task.
*
* Returned Value:
* None
*
* Assumptions:
* The parent of the new task is the task at the head of the ready-to-run
* list.
*
****************************************************************************/
#ifdef CONFIG_PIC
static inline void nxtask_dup_dspace(FAR struct tcb_s *tcb)
{
FAR struct tcb_s *rtcb = this_task();
if (rtcb->dspace != NULL)
{
* count on the memory. The D-Space memory will persist until the
* last thread exits (see nxsched_release_tcb()).
*/
tcb->dspace = rtcb->dspace;
tcb->dspace->crefs++;
}
}
#else
# define nxtask_dup_dspace(tcb)
#endif
* Name: nxthread_setup_scheduler
*
* Description:
* This functions initializes the common portions of the Task Control Block
* (TCB) in preparation for starting a new thread.
*
* nxthread_setup_scheduler() is called from nxtask_setup_scheduler() and
* pthread_setup_scheduler().
*
* Input Parameters:
* tcb - Address of the new task's TCB
* priority - Priority of the new task
* start - Thread startup routine
* entry - Thread user entry point
* ttype - Type of the new thread: task, pthread, or kernel thread
*
* Returned Value:
* OK on success; ERROR on failure.
*
* This function can only failure is it is unable to assign a new, unique
* task ID to the TCB (errno is not set).
*
****************************************************************************/
static int nxthread_setup_scheduler(FAR struct tcb_s *tcb, int priority,
start_t start, CODE void *entry,
int ttype)
{
FAR struct tcb_s *rtcb = this_task();
irqstate_t flags;
int ret;
ret = nxtask_assign_pid(tcb);
if (ret == OK)
{
struct tls_info_s *info = tcb->stack_alloc_ptr;
info->tl_tid = tcb->pid;
tcb->sched_priority = priority;
tcb->init_priority = priority;
#ifdef CONFIG_PRIORITY_INHERITANCE
tcb->base_priority = (uint8_t)priority;
#endif
tcb->start = start;
tcb->entry.main = (main_t)entry;
* up_initial_state() is called.
*/
ttype &= TCB_FLAG_TTYPE_MASK;
atomic_and(&tcb->flags, ~TCB_FLAG_TTYPE_MASK);
atomic_or(&tcb->flags, ttype);
atomic_and(&tcb->flags, ~TCB_FLAG_POLICY_MASK);
#if CONFIG_RR_INTERVAL > 0
atomic_or(&tcb->flags, TCB_FLAG_SCHED_RR);
tcb->timeslice = MSEC2TICK(CONFIG_RR_INTERVAL);
#else
atomic_or(&tcb->flags, TCB_FLAG_SCHED_FIFO);
#endif
* a child status structure.
*/
nxtask_save_parent(tcb, ttype);
#ifdef CONFIG_SMP
* from the parent thread. This is the default for pthread_create()
* as well but the affinity mask can be specified in the pthread
* attributes as well. pthread_create() will have to fix up the
* affinity mask in this case.
*/
nxtask_inherit_affinity(tcb);
#endif
* inherit the signal mask of the parent thread.
*/
tcb->sigprocmask = rtcb->sigprocmask;
* until it is activated.
*/
tcb->task_state = TSTATE_TASK_INVALID;
* must be done before calling up_initial_state() so that the
* state setup will take the PIC address base into account.
*/
nxtask_dup_dspace(tcb);
up_initial_state(tcb);
flags = enter_critical_section();
dq_addfirst((FAR dq_entry_t *)tcb, list_inactivetasks());
tcb->task_state = TSTATE_TASK_INACTIVE;
leave_critical_section(flags);
}
return ret;
}
* Public Functions
****************************************************************************/
* Name: nxtask_setup_stackargs
*
* Description:
* Allocate space on the new task's stack and will copy the argv[] array
* and all strings to the task's stack where it is readily accessible to
* the task. Data on the stack, on the other hand, is guaranteed to be
* accessible no matter what privilege mode the task runs in.
*
* Input Parameters:
* tcb - Address of the new task's TCB
* name - Name of the new task
* argv - A pointer to an array of input parameters. The array should be
* terminated with a NULL argv[] value. If no parameters are
* required, argv may be NULL.
*
* Returned Value:
* Zero (OK) on success; a negated errno on failure.
*
****************************************************************************/
int nxtask_setup_stackargs(FAR struct tcb_s *tcb,
FAR const char *name,
FAR char * const argv[])
{
FAR char **stackargv;
FAR char *str;
size_t strtablen;
size_t argvlen;
size_t nbytes;
int argc;
int i;
int ret = OK;
if (!name)
{
name = g_noname;
}
strtablen = (strlen(name) + 1u);
* argument strings (including the null terminators). The argument count
* does not include the task name in that will be in argv[0].
*/
argc = 0;
if (argv != NULL)
{
while (argv[argc])
{
* Check each time if the accumulated size exceeds the
* size of the allocated stack.
*/
strtablen += (strlen(argv[argc]) + 1u);
if (strtablen >= tcb->adj_stack_size)
{
ret = -ENAMETOOLONG;
break;
}
else
{
* prevent running away with an unterminated argv[] list.
* MAX_STACK_ARGS should be sufficiently large that this never
* happens in normal usage.
*/
if (++argc > MAX_STACK_ARGS)
{
ret = -E2BIG;
break;
}
}
}
}
if (ret == OK)
{
* that argc + 2 entries are needed: The number of arguments plus the
* task name plus a NULL argv[] entry to terminate the list.
*/
argvlen = (size_t)(argc + 2) * sizeof(FAR char *);
stackargv = (FAR char **)up_stack_frame(tcb, argvlen + strtablen);
if (stackargv == NULL)
{
ret = -ENOMEM;
}
else
{
* after the argv[] array and mark it as a null string.
*/
str = (FAR char *)stackargv + argvlen;
* and its NUL terminator in the string buffer.
*/
stackargv[0] = str;
nbytes = strlen(name) + 1u;
strlcpy(str, name, strtablen);
str += nbytes;
strtablen -= nbytes;
for (i = 0; i < argc; i++)
{
* copy the argument into the buffer. Increment str to skip
* over the argument and its NUL terminator in the string
* buffer.
*/
stackargv[i + 1] = str;
nbytes = strlen(argv[i]) + 1u;
strlcpy(str, argv[i], strtablen);
str += nbytes;
strtablen -= nbytes;
}
* save the argv[] array pointer in the TCB where it will be
* recovered later by nxtask_start().
*/
stackargv[argc + 1] = NULL;
* fields
*/
nxsched_get_tls(tcb)->tl_argv = stackargv;
}
}
return ret;
}
* Name: nxtask_setup_scheduler
*
* Description:
* This functions initializes a Task Control Block (TCB) in preparation
* for starting a new task.
*
* nxtask_setup_scheduler() is called from nxtask_init() and
* nxtask_start().
*
* Input Parameters:
* tcb - Address of the new task's TCB
* priority - Priority of the new task
* start - Start-up function (probably nxtask_start())
* main - Application start point of the new task
* ttype - Type of the new thread: task or kernel thread
*
* Returned Value:
* OK on success; ERROR on failure.
*
* This function can only failure is it is unable to assign a new, unique
* task ID to the TCB (errno is not set).
*
****************************************************************************/
int nxtask_setup_scheduler(FAR struct tcb_s *tcb, int priority,
start_t start, main_t main, int ttype)
{
return nxthread_setup_scheduler(tcb, priority, start, main, ttype);
}
* Name: pthread_setup_scheduler
*
* Description:
* This functions initializes a Task Control Block (TCB) in preparation
* for starting a new pthread.
*
* pthread_setup_scheduler() is called from pthread_create(),
*
* Input Parameters:
* tcb - Address of the new task's TCB
* priority - Priority of the new task
* start - Start-up function (probably pthread_start())
* entry - Entry point of the new pthread
* ttype - Type of the new thread: task, pthread, or kernel thread
*
* Returned Value:
* OK on success; ERROR on failure.
*
* This function can only failure is it is unable to assign a new, unique
* task ID to the TCB (errno is not set).
*
****************************************************************************/
#ifndef CONFIG_DISABLE_PTHREAD
int pthread_setup_scheduler(FAR struct tcb_s *tcb, int priority,
start_t start, pthread_startroutine_t entry)
{
return nxthread_setup_scheduler(tcb, priority, start, entry,
TCB_FLAG_TTYPE_PTHREAD);
}
#endif
* Name: nxtask_setup_name
*
* Description:
* Assign the task name.
*
* Input Parameters:
* tcb - Address of the new task's TCB
* name - Name of the new task
*
* Returned Value:
* None
*
****************************************************************************/
#if CONFIG_TASK_NAME_SIZE > 0
void nxtask_setup_name(FAR struct tcb_s *tcb, FAR const char *name)
{
FAR char *dst = tcb->name;
int i;
if (!name)
{
name = g_noname;
}
for (i = 0; i < CONFIG_TASK_NAME_SIZE; i++)
{
char c = *name++;
if (c == '\0')
{
break;
}
*dst++ = isspace((int)c) ? '_' : c;
}
*dst = '\0';
}
#endif