2002-01-17 11:45:58 +03:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2002-01-17 11:45:58 +03:00
Safe versions of getpw * calls
Copyright ( C ) Andrew Bartlett 2002
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2002-01-17 11:45:58 +03:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2002-01-17 11:45:58 +03:00
*/
# include "includes.h"
2006-02-21 22:22:49 +03:00
struct passwd * tcopy_passwd ( TALLOC_CTX * mem_ctx , const struct passwd * from )
2002-01-17 11:45:58 +03:00
{
2006-02-04 01:19:41 +03:00
struct passwd * ret = TALLOC_P ( mem_ctx , struct passwd ) ;
2006-03-30 02:41:24 +04:00
if ( ! ret ) {
return NULL ;
}
2006-02-04 01:19:41 +03:00
ret - > pw_name = talloc_strdup ( ret , from - > pw_name ) ;
ret - > pw_passwd = talloc_strdup ( ret , from - > pw_passwd ) ;
2002-01-17 11:45:58 +03:00
ret - > pw_uid = from - > pw_uid ;
ret - > pw_gid = from - > pw_gid ;
2006-02-04 01:19:41 +03:00
ret - > pw_gecos = talloc_strdup ( ret , from - > pw_gecos ) ;
ret - > pw_dir = talloc_strdup ( ret , from - > pw_dir ) ;
ret - > pw_shell = talloc_strdup ( ret , from - > pw_shell ) ;
2002-01-17 11:45:58 +03:00
return ret ;
}
2005-03-03 19:52:44 +03:00
void flush_pwnam_cache ( void )
{
2007-12-20 16:54:33 +03:00
memcache_flush ( NULL , GETPWNAM_CACHE ) ;
2005-03-03 19:52:44 +03:00
}
2006-02-04 01:19:41 +03:00
struct passwd * getpwnam_alloc ( TALLOC_CTX * mem_ctx , const char * name )
2002-01-17 11:45:58 +03:00
{
2007-12-20 16:54:33 +03:00
struct passwd * temp , * cached ;
2002-01-17 11:45:58 +03:00
2007-12-20 16:54:33 +03:00
temp = ( struct passwd * ) memcache_lookup_talloc (
NULL , GETPWNAM_CACHE , data_blob_string_const ( name ) ) ;
if ( temp ! = NULL ) {
return tcopy_passwd ( mem_ctx , temp ) ;
2004-11-12 18:01:40 +03:00
}
2002-07-15 14:35:28 +04:00
temp = sys_getpwnam ( name ) ;
2007-12-20 16:54:33 +03:00
if ( temp = = NULL ) {
2002-01-17 11:45:58 +03:00
return NULL ;
}
2007-12-20 16:54:33 +03:00
cached = tcopy_passwd ( NULL , temp ) ;
if ( cached = = NULL ) {
/*
* Just don ' t add this into the cache , ignore the failure
*/
return temp ;
2004-11-12 18:01:40 +03:00
}
2007-12-20 16:54:33 +03:00
memcache_add_talloc ( NULL , GETPWNAM_CACHE , data_blob_string_const ( name ) ,
cached ) ;
2007-04-02 10:57:37 +04:00
return tcopy_passwd ( mem_ctx , temp ) ;
2002-01-17 11:45:58 +03:00
}
2006-02-04 01:19:41 +03:00
struct passwd * getpwuid_alloc ( TALLOC_CTX * mem_ctx , uid_t uid )
2002-01-17 11:45:58 +03:00
{
struct passwd * temp ;
2002-07-15 14:35:28 +04:00
temp = sys_getpwuid ( uid ) ;
2002-01-17 11:45:58 +03:00
if ( ! temp ) {
#if 0
if ( errno = = ENOMEM ) {
/* what now? */
}
# endif
return NULL ;
}
2006-02-21 22:22:49 +03:00
return tcopy_passwd ( mem_ctx , temp ) ;
2002-01-17 11:45:58 +03:00
}