get/sethostname: Add a critical section. There is a microscopic possibily that the global name could change while being accessed by a thread

This commit is contained in:
Gregory Nutt 2015-07-05 08:50:51 -06:00
parent f31a96cfbf
commit fc5281e2a1
2 changed files with 20 additions and 3 deletions

@ -1 +1 @@
Subproject commit 06afb875fbe4d6d0b6a1ab85202d4c1e7f51bc2c
Subproject commit ab86088d3f24f838bffc759612787b93baf336eb

View File

@ -43,6 +43,8 @@
#include <unistd.h>
#include <unistd.h>
#include <arch/irq.h>
/* This file is only compiled if network support is enabled */
#ifdef CONFIG_NET
@ -106,9 +108,17 @@ static char g_hostname[HOST_NAME_MAX + 1] = CONFIG_NET_HOSTNAME;
int gethostname(FAR char *name, size_t namelen)
{
/* Return the host name, truncating to fit into the user provided buffer */
irqstate_t flags;
/* Return the host name, truncating to fit into the user provided buffer.
* The hostname is global resource. There is a microscopic possibility
* that it could change while we are copying it.
*/
flags = irqsave();
strncpy(name, g_hostname, namelen);
irqrestore(flags);
return 0;
}
@ -137,12 +147,19 @@ int gethostname(FAR char *name, size_t namelen)
int sethostname(FAR const char *name, size_t size)
{
irqstate_t flags;
/* Save the new host name, truncating to HOST_NAME_MAX if necessary. This
* internal copy is always NUL terminated.
* internal copy is always NUL terminated .The hostname is global resource.
* There is a microscopic possibility that it could be accessed while we
* are setting it.
*/
flags = irqsave();
strncpy(g_hostname, name, MIN(HOST_NAME_MAX, size));
g_hostname[HOST_NAME_MAX] = '\0';
irqrestore(flags);
return 0;
}