]> git.proxmox.com Git - qemu.git/commitdiff
qga: unlink just created guest-file if fchmod() or fdopen() fails on it
authorLaszlo Ersek <lersek@redhat.com>
Wed, 8 May 2013 15:31:36 +0000 (17:31 +0200)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Mon, 13 May 2013 14:45:49 +0000 (09:45 -0500)
We shouldn't allow guest filesystem pollution on error paths.

Suggested-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
qga/commands-posix.c

index 2eec712526ad05be506d276561e4f5c6d6ed7ef6..e199738c71d5c2a9b994248957383f88251e3a75 100644 (file)
@@ -355,6 +355,9 @@ safe_open_or_create(const char *path, const char *mode, Error **err)
             }
 
             close(fd);
+            if (oflag & O_CREAT) {
+                unlink(path);
+            }
         }
     }