X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fuser.c;h=29aa25b4298e9f2f5fd05610e4f390c3f00da87c;hb=3eb87b2faae4b9f59f1270936f70a1781c2abd7a;hp=3a3ecdff177fc8f8935e5c04662328eac7360332;hpb=4bc786f34b50aa301be6f5600f58a980070f481e;p=openldap diff --git a/servers/slapd/user.c b/servers/slapd/user.c index 3a3ecdff17..29aa25b429 100644 --- a/servers/slapd/user.c +++ b/servers/slapd/user.c @@ -1,18 +1,19 @@ +/* user.c - set user id, group id and group access list */ /* $OpenLDAP$ */ -/* - * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file - */ -/* user.c - set user id, group id and group access list +/* This work is part of OpenLDAP Software . * - * Copyright 1999 by PM Lashley. + * Copyright 1998-2005 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" @@ -34,7 +35,6 @@ #include "slap.h" - /* * Set real and effective user id and group id, and group access list * The user and group arguments are freed. @@ -43,9 +43,9 @@ void slap_init_user( char *user, char *group ) { - uid_t uid; - gid_t gid; - int got_uid = 0, got_gid = 0; + uid_t uid = 0; + gid_t gid = 0; + int got_uid = 0, got_gid = 0; if ( user ) { struct passwd *pwd; @@ -65,6 +65,7 @@ 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( EXIT_FAILURE ); } if ( got_uid ) { @@ -98,6 +99,7 @@ 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( EXIT_FAILURE ); } } @@ -109,6 +111,7 @@ slap_init_user( char *user, char *group ) if ( getuid() == 0 && initgroups( user, gid ) != 0 ) { Debug( LDAP_DEBUG_ANY, "Could not set the group access (gid) list\n", 0, 0, 0 ); + exit( EXIT_FAILURE ); } free( user ); @@ -122,12 +125,14 @@ slap_init_user( char *user, char *group ) if ( setgid( gid ) != 0 ) { Debug( LDAP_DEBUG_ANY, "Could not set real group id to %d\n", (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", (int) gid, 0, 0 ); + exit( EXIT_FAILURE ); } #endif @@ -137,12 +142,14 @@ slap_init_user( char *user, char *group ) if ( setuid( uid ) != 0 ) { 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 effective user id to %d\n", (int) uid, 0, 0 ); + exit( EXIT_FAILURE ); } #endif