* sched/task/task_reparent.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 <assert.h>
#include <errno.h>
#include <nuttx/irq.h>
#include <nuttx/sched.h>
#include "sched/sched.h"
#include "group/group.h"
#include "task/task.h"
#ifdef CONFIG_SCHED_HAVE_PARENT
* Public Functions
****************************************************************************/
* Name: task_reparent
*
* Description:
* Change the parent of a task.
*
* Input Parameters:
* ppid - PID of the new parent task (0 for grandparent, i.e. the parent
* of the current parent task)
* chpid - PID of the child to be reparented.
*
* Returned Value:
* 0 (OK) on success; A negated errno value on failure.
*
****************************************************************************/
#ifdef HAVE_GROUP_MEMBERS
int task_reparent(pid_t ppid, pid_t chpid)
{
#ifdef CONFIG_SCHED_CHILD_STATUS
FAR struct child_status_s *child;
#endif
FAR struct task_group_s *chgrp;
FAR struct task_group_s *ogrp;
FAR struct task_group_s *pgrp;
FAR struct tcb_s *chtcb;
FAR struct tcb_s *otcb;
FAR struct tcb_s *ptcb;
pid_t opid;
int ret = -ECHILD;
chtcb = nxsched_get_tcb(chpid);
if (chtcb)
{
chgrp = chtcb->group;
DEBUGASSERT(chgrp);
opid = chgrp->tg_ppid;
otcb = nxsched_get_tcb(opid);
if (otcb)
{
ogrp = otcb->group;
DEBUGASSERT(ogrp);
* is the grandparent will be the new parent, i.e.,
* the parent of the current parent task.
*/
if (ppid == 0)
{
ppid = ogrp->tg_ppid;
ptcb = nxsched_get_tcb(ppid);
if (ptcb)
{
ret = OK;
pgrp = ptcb->group;
}
}
else
{
ptcb = nxsched_get_tcb(ppid);
if (ptcb)
{
ret = OK;
pgrp = chtcb->group;
ppid = pgrp->tg_pid;
}
else
{
ret = -ESRCH;
}
}
if (ret == OK)
{
* change the parent of the task. Rather, we change the parent
* task group for all members of the child's task group.
*/
chgrp->tg_ppid = ppid;
#ifdef CONFIG_SCHED_CHILD_STATUS
child = group_remove_child(ogrp, chpid);
if (child)
{
* status?
*/
if (!(atomic_read(&pgrp->tg_flags) & GROUP_FLAG_NOCLDWAIT))
{
* task group
*/
group_add_child(pgrp, child);
}
else
{
group_free_child(child);
}
}
else
{
* group has suppressed child exit status.
*/
ret = ((atomic_read(&ogrp->tg_flags) &
GROUP_FLAG_NOCLDWAIT) == 0) ? -ENOENT : OK;
}
#else
DEBUGASSERT(atomic_read(&ogrp->tg_nchildren) > 0);
atomic_sub(&ogrp->tg_nchildren, 1);
atomic_add(&pgrp->tg_nchildren, 1);
#endif
nxsched_put_tcb(ptcb);
}
nxsched_put_tcb(otcb);
}
nxsched_put_tcb(chtcb);
}
return ret;
}
#else
int task_reparent(pid_t ppid, pid_t chpid)
{
#ifdef CONFIG_SCHED_CHILD_STATUS
FAR struct child_status_s *child;
#endif
FAR struct tcb_s *ptcb = NULL;
FAR struct tcb_s *chtcb = NULL;
FAR struct tcb_s *otcb = NULL;
pid_t opid;
int ret = -ECHILD;
chtcb = nxsched_get_tcb(chpid);
if (chtcb)
{
opid = chtcb->group->tg_ppid;
otcb = nxsched_get_tcb(opid);
if (!otcb)
{
ret = -ESRCH;
}
else
{
* is the grandparent will be the new parent, i.e., the parent
* of the current parent task.
*/
if (ppid == 0)
{
ppid = otcb->group->tg_ppid;
}
ptcb = nxsched_get_tcb(ppid);
if (!ptcb)
{
ret = -ESRCH;
}
else
{
* the new parent.
*/
chtcb->group->tg_ppid = ppid;
#ifdef CONFIG_SCHED_CHILD_STATUS
child = group_remove_child(otcb->group, chpid);
if (child)
{
* exit status?
* */
if (!(atomic_read(&ptcb->group->tg_flags) &
GROUP_FLAG_NOCLDWAIT))
{
* task group
*/
group_add_child(ptcb->group, child);
}
else
{
group_free_child(child);
}
ret = OK;
}
else
{
* group has suppressed child exit status.
*/
ret = ((atomic_read(&otcb->group->tg_flags) &
GROUP_FLAG_NOCLDWAIT) == 0) ? -ENOENT : OK;
}
#else
DEBUGASSERT(otcb->group != NULL &&
atomic_read(&otcb->group->tg_nchildren) > 0);
atomic_sub(&otcb->group->tg_nchildren, 1);
atomic_add(&ptcb->group->tg_nchildren, 1);
ret = OK;
#endif
nxsched_put_tcb(ptcb);
}
nxsched_put_tcb(otcb);
}
nxsched_put_tcb(chtcb);
}
return ret;
}
#endif
#endif