2007-06-30 21:39:17 +02:00
|
|
|
/****************************************************************************
|
2014-08-08 21:53:29 +02:00
|
|
|
* sched/environ/env_unsetenv.c
|
2007-06-30 21:39:17 +02:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* 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
|
2007-06-30 21:39:17 +02:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-06-30 21:39:17 +02:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* 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.
|
2007-06-30 21:39:17 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_ENVIRON
|
|
|
|
|
|
|
|
#include <sched.h>
|
|
|
|
#include <string.h>
|
2021-05-18 08:59:14 +02:00
|
|
|
#include <assert.h>
|
2007-06-30 21:39:17 +02:00
|
|
|
#include <errno.h>
|
|
|
|
|
2011-04-03 22:41:49 +02:00
|
|
|
#include <nuttx/kmalloc.h>
|
|
|
|
|
2014-08-09 01:53:55 +02:00
|
|
|
#include "sched/sched.h"
|
2014-08-08 21:53:29 +02:00
|
|
|
#include "environ/environ.h"
|
2007-06-30 21:39:17 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-07-14 21:30:31 +02:00
|
|
|
* Name: unsetenv
|
2007-06-30 21:39:17 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The unsetenv() function deletes the variable name from the environment.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2007-06-30 21:39:17 +02:00
|
|
|
* name - The name of the variable to delete
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2007-06-30 21:39:17 +02:00
|
|
|
* Zero on success
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Not called from an interrupt handler
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-01-26 00:21:27 +01:00
|
|
|
int unsetenv(FAR const char *name)
|
2007-06-30 21:39:17 +02:00
|
|
|
{
|
2016-02-07 00:44:41 +01:00
|
|
|
FAR struct tcb_s *rtcb = this_task();
|
2013-01-26 00:21:27 +01:00
|
|
|
FAR struct task_group_s *group = rtcb->group;
|
|
|
|
FAR char *pvar;
|
|
|
|
FAR char *newenvp;
|
|
|
|
int newsize;
|
2007-06-30 21:39:17 +02:00
|
|
|
int ret = OK;
|
|
|
|
|
2013-01-26 00:21:27 +01:00
|
|
|
DEBUGASSERT(name && group);
|
2007-06-30 21:39:17 +02:00
|
|
|
|
|
|
|
/* Check if the variable exists */
|
|
|
|
|
2013-01-26 00:21:27 +01:00
|
|
|
sched_lock();
|
|
|
|
if (group && (pvar = env_findvar(group, name)) != NULL)
|
2007-06-30 21:39:17 +02:00
|
|
|
{
|
|
|
|
/* It does! Remove the name=value pair from the environment. */
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
env_removevar(group, pvar);
|
2007-06-30 21:39:17 +02:00
|
|
|
|
|
|
|
/* Reallocate the new environment buffer */
|
|
|
|
|
2013-01-26 00:21:27 +01:00
|
|
|
newsize = group->tg_envsize;
|
2018-09-30 19:40:10 +02:00
|
|
|
if (newsize <= 0)
|
2007-06-30 21:39:17 +02:00
|
|
|
{
|
2018-09-30 19:45:59 +02:00
|
|
|
/* Free the old environment (if there was one) */
|
|
|
|
|
|
|
|
if (group->tg_envp != NULL)
|
|
|
|
{
|
|
|
|
kumm_free(group->tg_envp);
|
|
|
|
group->tg_envp = NULL;
|
|
|
|
}
|
|
|
|
|
2018-09-30 19:40:10 +02:00
|
|
|
group->tg_envsize = 0;
|
2007-06-30 21:39:17 +02:00
|
|
|
}
|
2013-01-26 00:21:27 +01:00
|
|
|
else
|
|
|
|
{
|
2018-09-30 19:45:59 +02:00
|
|
|
/* Reallocate the environment to reclaim a little memory */
|
|
|
|
|
2018-09-30 19:40:10 +02:00
|
|
|
newenvp = (FAR char *)kumm_realloc(group->tg_envp, newsize);
|
|
|
|
if (newenvp == NULL)
|
|
|
|
{
|
|
|
|
set_errno(ENOMEM);
|
|
|
|
ret = ERROR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Save the new environment pointer (it might have changed due
|
|
|
|
* to reallocation).
|
|
|
|
*/
|
|
|
|
|
|
|
|
group->tg_envp = newenvp;
|
|
|
|
}
|
2013-01-26 00:21:27 +01:00
|
|
|
}
|
2007-06-30 21:39:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sched_unlock();
|
2013-01-26 00:21:27 +01:00
|
|
|
return ret;
|
2007-06-30 21:39:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_DISABLE_ENVIRON */
|