kpropd denial of service [MITKRB5-SA-2011-001 CVE-2010-4022]
authorTom Yu <tlyu@mit.edu>
Wed, 9 Feb 2011 20:25:03 +0000 (20:25 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 9 Feb 2011 20:25:03 +0000 (20:25 +0000)
When operating in standalone mode and not doing iprop, don't return
from do_standalone() if the child exits with abnormal status.

ticket: 6859
tags: pullup
target_version: 1.9.1

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24621 dc483132-0cff-0310-8789-dd5450dbe970

src/slave/kpropd.c

index a1d458348ba4632cd013c5a02b8ddd8138355b12..91c11e9558eaa2e837445d4585f4a9fae52730ee 100644 (file)
@@ -414,11 +414,11 @@ retry:
             }
 
             close(s);
-            if (iproprole == IPROP_SLAVE)
+            if (iproprole == IPROP_SLAVE) {
                 close(finet);
-
-            if ((ret = WEXITSTATUS(status)) != 0)
-                return (ret);
+                if ((ret = WEXITSTATUS(status)) != 0)
+                    return (ret);
+            }
         }
         if (iproprole == IPROP_SLAVE)
             break;