X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fuser.c;h=b533b04277de6a3cfb736c054d42b822769fa30a;hb=a7f4102bbfd42681ac505f2adb3ff35d8aba3d88;hp=e92598d800f8293bed227e83c940636001492007;hpb=7ba980f0f6cc645fdf8763f1a4a6597dfcf3c7c0;p=openldap diff --git a/servers/slapd/user.c b/servers/slapd/user.c index e92598d800..b533b04277 100644 --- a/servers/slapd/user.c +++ b/servers/slapd/user.c @@ -1,20 +1,27 @@ -/* user.c - set user id, group id and group access list +/* user.c - set user id, group id and group access list */ +/* $OpenLDAP$ */ +/* This work is part of OpenLDAP Software . * - * Copyright 1999 by PM Lashley and The OpenLDAP Foundation. + * Copyright 1998-2009 The OpenLDAP Foundation. + * Portions Copyright 1999 PM Lashley. * All rights reserved. * - * Redistribution and use in source and binary forms are permitted only - * as authorized by the OpenLDAP Public License. A copy of this - * license is available at http://www.OpenLDAP.org/license.html or - * in file LICENSE in the top-level directory of the distribution. -*/ + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . + */ #include "portable.h" #if defined(HAVE_SETUID) && defined(HAVE_SETGID) #include -#include + +#include #ifdef HAVE_PWD_H #include @@ -27,25 +34,39 @@ #include #include "slap.h" - +#include "lutil.h" /* * Set real and effective user id and group id, and group access list + * The user and group arguments are freed. */ void slap_init_user( char *user, char *group ) { - uid_t uid = (uid_t) -1; - gid_t gid = (gid_t) -1; + uid_t uid = 0; + gid_t gid = 0; + int got_uid = 0, got_gid = 0; if ( user ) { struct passwd *pwd; - if ( isdigit( (unsigned char) *user )) { - uid = atoi( user ); + if ( isdigit( (unsigned char) *user ) ) { + unsigned u; + + got_uid = 1; + if ( lutil_atou( &u, user ) != 0 ) { + Debug( LDAP_DEBUG_ANY, "Unble to parse user %s\n", + user, 0, 0 ); + + exit( EXIT_FAILURE ); + } + uid = (uid_t)u; #ifdef HAVE_GETPWUID pwd = getpwuid( uid ); goto did_getpw; +#else + free( user ); + user = NULL; #endif } else { pwd = getpwnam( user ); @@ -53,14 +74,17 @@ slap_init_user( char *user, char *group ) if ( pwd == NULL ) { Debug( LDAP_DEBUG_ANY, "No passwd entry for user %s\n", user, 0, 0 ); - exit( 1 ); + + exit( EXIT_FAILURE ); } - if ( uid >= 0 ) { + if ( got_uid ) { free( user ); user = (pwd != NULL ? ch_strdup( pwd->pw_name ) : NULL); } else { + got_uid = 1; uid = pwd->pw_uid; } + got_gid = 1; gid = pwd->pw_gid; #ifdef HAVE_ENDPWENT endpwent(); @@ -71,7 +95,15 @@ slap_init_user( char *user, char *group ) if ( group ) { struct group *grp; if ( isdigit( (unsigned char) *group )) { - gid = atoi( group ); + unsigned g; + + if ( lutil_atou( &g, group ) != 0 ) { + Debug( LDAP_DEBUG_ANY, "Unble to parse group %s\n", + group, 0, 0 ); + + exit( EXIT_FAILURE ); + } + gid = (uid_t)g; #ifdef HAVE_GETGRGID grp = getgrgid( gid ); goto did_group; @@ -84,17 +116,20 @@ slap_init_user( char *user, char *group ) if ( grp == NULL ) { Debug( LDAP_DEBUG_ANY, "No group entry for group %s\n", group, 0, 0 ); - exit( 1 ); + + exit( EXIT_FAILURE ); } } free( group ); + got_gid = 1; } if ( user ) { if ( getuid() == 0 && initgroups( user, gid ) != 0 ) { Debug( LDAP_DEBUG_ANY, "Could not set the group access (gid) list\n", 0, 0, 0 ); - exit( 1 ); + + exit( EXIT_FAILURE ); } free( user ); } @@ -103,32 +138,36 @@ slap_init_user( char *user, char *group ) endgrent(); #endif - if ( gid >= 0 ) { + if ( got_gid ) { if ( setgid( gid ) != 0 ) { Debug( LDAP_DEBUG_ANY, "Could not set real group id to %d\n", - gid, 0, 0 ); - exit( 1 ); + (int) gid, 0, 0 ); + + exit( EXIT_FAILURE ); } #ifdef HAVE_SETEGID if ( setegid( gid ) != 0 ) { Debug( LDAP_DEBUG_ANY, "Could not set effective group id to %d\n", - gid, 0, 0 ); - exit( 1 ); + (int) gid, 0, 0 ); + + exit( EXIT_FAILURE ); } #endif } - if ( uid >= 0 ) { + if ( got_uid ) { if ( setuid( uid ) != 0 ) { - Debug( LDAP_DEBUG_ANY, "Could not set effective user id to %d\n", - uid, 0, 0 ); - exit( 1 ); + Debug( LDAP_DEBUG_ANY, "Could not set real user id to %d\n", + (int) uid, 0, 0 ); + + exit( EXIT_FAILURE ); } #ifdef HAVE_SETEUID if ( seteuid( uid ) != 0 ) { - Debug( LDAP_DEBUG_ANY, "Could not set real user id to %d\n", - uid, 0, 0 ); - exit( 1 ); + Debug( LDAP_DEBUG_ANY, "Could not set effective user id to %d\n", + (int) uid, 0, 0 ); + + exit( EXIT_FAILURE ); } #endif }