2007-06-30 21:39:17 +02:00
|
|
|
/****************************************************************************
|
2016-08-07 16:25:30 +02:00
|
|
|
* sched/environ/env_getenv.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>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.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: getenv
|
2007-06-30 21:39:17 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The getenv() function searches the environment list for a string that
|
|
|
|
* matches the string pointed to by name.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2014-04-13 22:32:20 +02:00
|
|
|
* name - The name of the variable to find.
|
2007-06-30 21:39:17 +02:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2007-06-30 21:39:17 +02:00
|
|
|
* The value of the valiable (read-only) or NULL on failure
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Not called from an interrupt handler
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2018-08-10 18:16:39 +02:00
|
|
|
FAR char *getenv(FAR const char *name)
|
2007-06-30 21:39:17 +02:00
|
|
|
{
|
2013-02-04 19:46:28 +01:00
|
|
|
FAR struct tcb_s *rtcb;
|
2013-01-26 00:21:27 +01:00
|
|
|
FAR struct task_group_s *group;
|
|
|
|
FAR char *pvar;
|
|
|
|
FAR char *pvalue = NULL;
|
2007-06-30 21:39:17 +02:00
|
|
|
int ret = OK;
|
|
|
|
|
|
|
|
/* Verify that a string was passed */
|
|
|
|
|
2019-08-30 14:43:45 +02:00
|
|
|
if (name == NULL)
|
2007-06-30 21:39:17 +02:00
|
|
|
{
|
|
|
|
ret = EINVAL;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
2013-02-04 23:38:59 +01:00
|
|
|
/* Get a reference to the thread-private environ in the TCB. */
|
2007-06-30 21:39:17 +02:00
|
|
|
|
|
|
|
sched_lock();
|
2016-02-07 00:44:41 +01:00
|
|
|
rtcb = this_task();
|
2013-01-26 00:21:27 +01:00
|
|
|
group = rtcb->group;
|
2007-06-30 21:39:17 +02:00
|
|
|
|
|
|
|
/* Check if the variable exists */
|
|
|
|
|
2019-08-30 14:43:45 +02:00
|
|
|
if (group == NULL || (pvar = env_findvar(group, name)) == NULL)
|
2007-06-30 21:39:17 +02:00
|
|
|
{
|
|
|
|
ret = ENOENT;
|
|
|
|
goto errout_with_lock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* It does! Get the value sub-string from the name=value string */
|
|
|
|
|
|
|
|
pvalue = strchr(pvar, '=');
|
2019-08-30 14:43:45 +02:00
|
|
|
if (pvalue == NULL)
|
2007-06-30 21:39:17 +02:00
|
|
|
{
|
|
|
|
/* The name=value string has no '=' This is a bug! */
|
|
|
|
|
|
|
|
ret = EINVAL;
|
|
|
|
goto errout_with_lock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Adjust the pointer so that it points to the value right after the '=' */
|
|
|
|
|
|
|
|
pvalue++;
|
|
|
|
sched_unlock();
|
|
|
|
return pvalue;
|
|
|
|
|
|
|
|
errout_with_lock:
|
|
|
|
sched_unlock();
|
|
|
|
errout:
|
2012-07-14 21:30:31 +02:00
|
|
|
set_errno(ret);
|
2007-06-30 21:39:17 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_DISABLE_ENVIRON */
|