* sched/task/task_argvstr.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 <sched.h>
#include <stddef.h>
#include <stdio.h>
#include <nuttx/addrenv.h>
#include <nuttx/tls.h>
#include "sched/sched.h"
* Public Functions
****************************************************************************/
* Name: nxtask_argvstr
*
* Description:
* Safely read the contents of a task's argument vector, into a a safe
* buffer. Function skips the process's name.
*
* Input Parameters:
* tcb - tcb of the task.
* args - Output buffer for the argument vector.
* size - Size of the buffer.
*
* Returned Value:
* The actual string length that was written.
*
****************************************************************************/
size_t nxtask_argvstr(FAR struct tcb_s *tcb, FAR char *args, size_t size)
{
size_t n = 0u;
#ifdef CONFIG_ARCH_ADDRENV
FAR struct addrenv_s *oldenv;
#endif
if (!tcb || size < 1u || is_idle_task(tcb) ||
tcb->task_state == TSTATE_TASK_INVALID)
{
*args = '\0';
}
else
{
#ifdef CONFIG_ARCH_ADDRENV
if (tcb->group->tg_addrenv_own != NULL)
{
addrenv_select(tcb->group->tg_addrenv_own, &oldenv);
}
#endif
#ifndef CONFIG_DISABLE_PTHREAD
if ((atomic_read(&tcb->flags) & TCB_FLAG_TTYPE_MASK) ==
TCB_FLAG_TTYPE_PTHREAD)
{
FAR struct pthread_entry_s *entry =
(FAR struct pthread_entry_s *)(tcb + 1);
int ret = snprintf(args, size, " %p %p",
tcb->entry.main, entry->arg);
if (ret > 0)
{
n += (size_t)ret;
}
}
else
#endif
{
FAR char **argv = nxsched_get_stackargs(tcb);
if (argv++)
{
while (*argv != NULL && n < size)
{
int ret = snprintf(args + n, size - n, " %s", *argv++);
if (ret < 0)
{
break;
}
n += (size_t)ret;
}
}
}
#ifdef CONFIG_ARCH_ADDRENV
if (tcb->group->tg_addrenv_own != NULL)
{
addrenv_restore(oldenv);
}
#endif
if (n >= size - 1u)
{
n = size - 1u;
}
}
return n;
}