]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix typo in identity code which is pre-requisite for CVE-2013-4311
authorDaniel P. Berrange <berrange@redhat.com>
Mon, 23 Sep 2013 11:46:25 +0000 (12:46 +0100)
committerEric Blake <eblake@redhat.com>
Mon, 23 Sep 2013 20:40:05 +0000 (14:40 -0600)
The fix for CVE-2013-4311 had a pre-requisite enhancement
to the identity code

  commit db7a5688c05f3fd60d9d2b74c72427eb9ee9c176
  Author: Daniel P. Berrange <berrange@redhat.com>
  Date:   Thu Aug 22 16:00:01 2013 +0100

    Also store user & group ID values in virIdentity

This had a typo which caused the group ID to overwrite the
user ID string. This meant any checks using this would have
the wrong ID value. This only affected the ACL code, not the
initial polkit auth. It also leaked memory.

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
(cherry picked from commit e4697b92abaad16e8e6b41a1e55be9b084d48d5a)

src/rpc/virnetserverclient.c

index 6b97cb688403e990b2fa0c9f7ad8183ebb66accc..c496f2b0f5a6dc86749fba064ab68c4ef04a7566 100644 (file)
@@ -683,7 +683,7 @@ virNetServerClientCreateIdentity(virNetServerClientPtr client)
             goto cleanup;
         if (!(groupname = virGetGroupName(gid)))
             goto cleanup;
-        if (virAsprintf(&userid, "%d", (int)gid) < 0)
+        if (virAsprintf(&groupid, "%d", (int)gid) < 0)
             goto cleanup;
         if (virAsprintf(&processid, "%llu",
                         (unsigned long long)pid) < 0) {