about summary refs log tree commit diff
path: root/nscd/pwdcache.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-07-27 22:51:04 +0000
committerUlrich Drepper <drepper@redhat.com>2004-07-27 22:51:04 +0000
commita29015c344a68dfb82dfd725145873c97b264321 (patch)
tree9181e639d2f778974d2d6588659c6391816bff26 /nscd/pwdcache.c
parent468352fe77982afe2532c4992cdc13acca37c3c5 (diff)
downloadglibc-a29015c344a68dfb82dfd725145873c97b264321.tar.gz
glibc-a29015c344a68dfb82dfd725145873c97b264321.tar.xz
glibc-a29015c344a68dfb82dfd725145873c97b264321.zip
(cache_addpw): If necessary, add entry also under the name the user provided.
Diffstat (limited to 'nscd/pwdcache.c')
-rw-r--r--nscd/pwdcache.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c
index 62501f81d2..3949eb2106 100644
--- a/nscd/pwdcache.c
+++ b/nscd/pwdcache.c
@@ -81,7 +81,7 @@ struct passwddata
 
 static void
 cache_addpw (struct database *db, int fd, request_header *req, void *key,
-	     struct passwd *pwd, uid_t owner)
+	     struct passwd *pwd, uid_t owner, int type)
 {
   ssize_t total;
   ssize_t written;
@@ -175,6 +175,11 @@ cache_addpw (struct database *db, int fd, request_header *req, void *key,
       cache_add (GETPWBYNAME, data->strdata, pw_name_len, data,
 		 total, data, 0, t, db, owner);
 
+      /* If the key is different from the name add a separate entry.  */
+      if (type == GETPWBYNAME && strcmp (key, data->strdata) != 0)
+	cache_add (GETPWBYNAME, key, strlen (key) + 1, data,
+		   total, data, 0, t, db, owner);
+
       cache_add (GETPWBYUID, cp, n, data, total, data, 1, t, db, owner);
 
       pthread_rwlock_unlock (&db->lock);
@@ -244,7 +249,7 @@ addpwbyname (struct database *db, int fd, request_header *req,
   if (secure[pwddb])
     seteuid (oldeuid);
 
-  cache_addpw (db, fd, req, key, pwd, c_uid);
+  cache_addpw (db, fd, req, key, pwd, c_uid, GETPWBYNAME);
 
   if (use_malloc)
     free (buffer);
@@ -316,7 +321,7 @@ addpwbyuid (struct database *db, int fd, request_header *req,
   if (secure[pwddb])
     seteuid (oldeuid);
 
-  cache_addpw (db, fd, req, key, pwd, c_uid);
+  cache_addpw (db, fd, req, key, pwd, c_uid, GETPWBYUID);
 
   if (use_malloc)
     free (buffer);