forked from Imagelibrary/rtems
2010-07-30 Bharath Suri <bharath.s.jois@gmail.com>
PR 1645/cpukit * libcsupport/src/getuid.c: Moved setuid() routine to its own file. * libcsupport/src/setuid.c: New file with setuid() routine. * libcsupport/src/seteuid.c: New file with seteuid() routine.
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
2010-07-30 Bharath Suri <bharath.s.jois@gmail.com>
|
||||||
|
|
||||||
|
PR 1645/cpukit
|
||||||
|
* libcsupport/src/getuid.c: Moved setuid() routine to its own
|
||||||
|
file.
|
||||||
|
* libcsupport/src/setuid.c: New file with setuid() routine.
|
||||||
|
* libcsupport/src/seteuid.c: New file with seteuid() routine.
|
||||||
|
|
||||||
2010-07-30 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2010-07-30 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* libcsupport/src/fstat.c, libcsupport/src/rmdir.c,
|
* libcsupport/src/fstat.c, libcsupport/src/rmdir.c,
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ DIRECTORY_SCAN_C_FILES += src/getcwd.c
|
|||||||
|
|
||||||
ID_C_FILES = src/getegid.c src/geteuid.c src/getgid.c src/getgroups.c \
|
ID_C_FILES = src/getegid.c src/geteuid.c src/getgid.c src/getgroups.c \
|
||||||
src/getlogin.c src/getpgrp.c src/getpid.c src/getppid.c src/getuid.c \
|
src/getlogin.c src/getpgrp.c src/getpid.c src/getppid.c src/getuid.c \
|
||||||
src/setpgid.c src/setsid.c
|
src/setuid.c src/seteuid.c src/setpgid.c src/setsid.c
|
||||||
|
|
||||||
MALLOC_C_FILES = src/malloc_initialize.c src/calloc.c src/malloc.c \
|
MALLOC_C_FILES = src/malloc_initialize.c src/calloc.c src/malloc.c \
|
||||||
src/realloc.c src/_calloc_r.c src/_malloc_r.c \
|
src/realloc.c src/_calloc_r.c src/_malloc_r.c \
|
||||||
|
|||||||
@@ -1,4 +1,11 @@
|
|||||||
/*
|
/*
|
||||||
|
* COPYRIGHT (c) 1989-2010.
|
||||||
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
*
|
||||||
|
* The license and distribution terms for this file may be
|
||||||
|
* found in the file LICENSE in this distribution or at
|
||||||
|
* http://www.rtems.com/license/LICENSE.
|
||||||
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -10,38 +17,14 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include <rtems/system.h>
|
|
||||||
#include <rtems/score/object.h>
|
|
||||||
#include <rtems/seterr.h>
|
|
||||||
|
|
||||||
#include <rtems/userenv.h>
|
#include <rtems/userenv.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MACRO in userenv.h
|
|
||||||
*
|
|
||||||
uid_t _POSIX_types_Uid = 0;
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*PAGE
|
|
||||||
*
|
|
||||||
* 4.2.1 Get Real User, Effective User, Ral Group, and Effective Group IDs,
|
* 4.2.1 Get Real User, Effective User, Ral Group, and Effective Group IDs,
|
||||||
* P1003.1b-1993, p. 84
|
* P1003.1b-1993, p. 84
|
||||||
*/
|
*/
|
||||||
|
|
||||||
uid_t getuid( void )
|
uid_t getuid( void )
|
||||||
{
|
{
|
||||||
return _POSIX_types_Uid;
|
return _POSIX_types_Uid;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*PAGE
|
|
||||||
*
|
|
||||||
* 4.2.2 Set User and Group IDs, P1003.1b-1993, p. 84
|
|
||||||
*/
|
|
||||||
|
|
||||||
int setuid(
|
|
||||||
uid_t uid
|
|
||||||
)
|
|
||||||
{
|
|
||||||
_POSIX_types_Uid = uid;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|||||||
26
cpukit/libcsupport/src/seteuid.c
Normal file
26
cpukit/libcsupport/src/seteuid.c
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
/*
|
||||||
|
* COPYRIGHT (c) 1989-2010.
|
||||||
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
*
|
||||||
|
* The license and distribution terms for this file may be
|
||||||
|
* found in the file LICENSE in this distribution or at
|
||||||
|
* http://www.rtems.com/license/LICENSE.
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <limits.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
#include <rtems/userenv.h>
|
||||||
|
|
||||||
|
int seteuid( uid_t euid )
|
||||||
|
{
|
||||||
|
_POSIX_types_Euid = euid;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
32
cpukit/libcsupport/src/setuid.c
Normal file
32
cpukit/libcsupport/src/setuid.c
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
/*
|
||||||
|
* COPYRIGHT (c) 1989-2010.
|
||||||
|
* On-Line Applications Research Corporation (OAR).
|
||||||
|
*
|
||||||
|
* The license and distribution terms for this file may be
|
||||||
|
* found in the file LICENSE in this distribution or at
|
||||||
|
* http://www.rtems.com/license/LICENSE.
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <limits.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
#include <rtems/userenv.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* 4.2.2 Set User and Group IDs, P1003.1b-1993, p. 84
|
||||||
|
*/
|
||||||
|
int setuid(
|
||||||
|
uid_t uid
|
||||||
|
)
|
||||||
|
{
|
||||||
|
_POSIX_types_Uid = uid;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user