×
Close
The permissions on this repository are being updated. This may take a while.
During this time, you or some of the project's contributors may not be able
to push to this repository.
Blame SOURCES/0103-ccpp-avoid-overriding-system-files-by-coredump.patch
Branch: 34d89766674fcac52de2b6a37bf5d1f31182a5ac
8ec399
From cdb4c5b0855d910132e61d71afbd445b0271fcb4 Mon Sep 17 00:00:00 2001
8ec399
From: Jakub Filak <jfilak@redhat.com>
8ec399
Date: Tue, 21 Apr 2015 07:54:17 +0200
8ec399
Subject: [ABRT PATCH] ccpp: avoid overriding system files by coredump
8ec399
8ec399
Related: #1211835
8ec399
8ec399
Signed-off-by: Jakub Filak <jfilak@redhat.com>
8ec399
---
8ec399
src/hooks/abrt-hook-ccpp.c | 2 +-
8ec399
1 file changed, 1 insertion(+), 1 deletion(-)
8ec399
8ec399
diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c
8ec399
index 3a6d002..02f15d5 100644
8ec399
--- a/src/hooks/abrt-hook-ccpp.c
8ec399
+++ b/src/hooks/abrt-hook-ccpp.c
8ec399
@@ -544,7 +544,7 @@ static bool dump_fd_info(const char *dest_filename, char *source_filename, int s
8ec399
/* Like xopen, but on error, unlocks and deletes dd and user core */
8ec399
static int create_or_die(const char *filename)
8ec399
{
8ec399
- int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, DEFAULT_DUMP_DIR_MODE);
8ec399
+ int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, DEFAULT_DUMP_DIR_MODE);
8ec399
if (fd >= 0)
8ec399
{
8ec399
IGNORE_RESULT(fchown(fd, dd->dd_uid, dd->dd_gid));
8ec399
--
8ec399
1.8.3.1
8ec399