Blame SOURCES/0103-ccpp-avoid-overriding-system-files-by-coredump.patch
|
|
baab13 |
From cdb4c5b0855d910132e61d71afbd445b0271fcb4 Mon Sep 17 00:00:00 2001
|
|
|
baab13 |
From: Jakub Filak <jfilak@redhat.com>
|
|
|
baab13 |
Date: Tue, 21 Apr 2015 07:54:17 +0200
|
|
|
baab13 |
Subject: [ABRT PATCH] ccpp: avoid overriding system files by coredump
|
|
|
baab13 |
|
|
|
baab13 |
Related: #1211835
|
|
|
baab13 |
|
|
|
baab13 |
Signed-off-by: Jakub Filak <jfilak@redhat.com>
|
|
|
baab13 |
---
|
|
|
baab13 |
src/hooks/abrt-hook-ccpp.c | 2 +-
|
|
|
baab13 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
baab13 |
|
|
|
baab13 |
diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c
|
|
|
baab13 |
index 3a6d002..02f15d5 100644
|
|
|
baab13 |
--- a/src/hooks/abrt-hook-ccpp.c
|
|
|
baab13 |
+++ b/src/hooks/abrt-hook-ccpp.c
|
|
|
baab13 |
@@ -544,7 +544,7 @@ static bool dump_fd_info(const char *dest_filename, char *source_filename, int s
|
|
|
baab13 |
/* Like xopen, but on error, unlocks and deletes dd and user core */
|
|
|
baab13 |
static int create_or_die(const char *filename)
|
|
|
baab13 |
{
|
|
|
baab13 |
- int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, DEFAULT_DUMP_DIR_MODE);
|
|
|
baab13 |
+ int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, DEFAULT_DUMP_DIR_MODE);
|
|
|
baab13 |
if (fd >= 0)
|
|
|
baab13 |
{
|
|
|
baab13 |
IGNORE_RESULT(fchown(fd, dd->dd_uid, dd->dd_gid));
|
|
|
baab13 |
--
|
|
|
baab13 |
1.8.3.1
|
|
|
baab13 |
|