public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/abrt] update-2.17.8: Rebuild with correct libreport and fixed problem with missing dump location
@ 2026-08-03 10:22 Jakub Filak
  0 siblings, 0 replies; only message in thread
From: Jakub Filak @ 2026-08-03 10:22 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/abrt
Branch : update-2.17.8
Commit : 6d10ce5905b1b44e500504e7912dbcdac9f3ed0d
Author : Jakub Filak <jfilak@redhat.com>
Date   : 2013-03-22T11:04:24+01:00
Stats  : +150/-3 in 2 file(s)
URL    : https://src.fedoraproject.org/rpms/abrt/c/6d10ce5905b1b44e500504e7912dbcdac9f3ed0d?branch=update-2.17.8

Log:
Rebuild with correct libreport and fixed problem with missing dump location

---
diff --git a/abrt-2.1.2-recreate_dump_location.patch b/abrt-2.1.2-recreate_dump_location.patch
new file mode 100644
index 0000000..ab5a25a
--- /dev/null
+++ b/abrt-2.1.2-recreate_dump_location.patch
@@ -0,0 +1,139 @@
+From f3ef192d2ee78bdb4290ea966bc1467d2b599a7e Mon Sep 17 00:00:00 2001
+From: Jakub Filak <jfilak@redhat.com>
+Date: Fri, 22 Mar 2013 10:18:16 +0100
+Subject: [ABRT PATCH] abrtd: recreate Dump Location directory if it is delete
+
+- add inotify watch IN_DELETE_SELF and IN_MOVE_SELF and as a rection on
+these events create the dump location and restore inotify watch.
+
+- closes #624
+
+Signed-off-by: Jakub Filak <jfilak@redhat.com>
+---
+ src/daemon/abrtd.c | 82 +++++++++++++++++++++++++++++++++---------------------
+ 1 file changed, 50 insertions(+), 32 deletions(-)
+
+diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c
+index f6d3965..7bc93ef 100644
+--- a/src/daemon/abrtd.c
++++ b/src/daemon/abrtd.c
+@@ -41,6 +41,7 @@
+ /* Maximum number of simultaneously opened client connections. */
+ #define MAX_CLIENT_COUNT  10
+ 
++#define IN_DUMP_LOCATION_FLAGS (IN_CREATE | IN_MOVED_TO | IN_DELETE_SELF | IN_MOVE_SELF)
+ 
+ /* Daemon initializes, then sits in glib main loop, waiting for events.
+  * Events can be:
+@@ -490,6 +491,36 @@ static gboolean handle_event_output_cb(GIOChannel *gio, GIOCondition condition,
+     /* Removing will also drop the last ref to this gio, closing/freeing it */
+ }
+ 
++static void ensure_writable_dir(const char *dir, mode_t mode, const char *user)
++{
++    struct stat sb;
++
++    if (mkdir(dir, mode) != 0 && errno != EEXIST)
++        perror_msg_and_die("Can't create '%s'", dir);
++    if (stat(dir, &sb) != 0 || !S_ISDIR(sb.st_mode))
++        error_msg_and_die("'%s' is not a directory", dir);
++
++    struct passwd *pw = getpwnam(user);
++    if (!pw)
++        perror_msg_and_die("Can't find user '%s'", user);
++
++    if ((sb.st_uid != pw->pw_uid || sb.st_gid != pw->pw_gid) && lchown(dir, pw->pw_uid, pw->pw_gid) != 0)
++        perror_msg_and_die("Can't set owner %u:%u on '%s'", (unsigned int)pw->pw_uid, (unsigned int)pw->pw_gid, dir);
++    if ((sb.st_mode & 07777) != mode && chmod(dir, mode) != 0)
++        perror_msg_and_die("Can't set mode %o on '%s'", mode, dir);
++}
++
++static void sanitize_dump_dir_rights()
++{
++    /* We can't allow everyone to create dumps: otherwise users can flood
++     * us with thousands of bogus or malicious dumps */
++    /* 07000 bits are setuid, setgit, and sticky, and they must be unset */
++    /* 00777 bits are usual "rwxrwxrwx" access rights */
++    ensure_writable_dir(g_settings_dump_location, 0755, "abrt");
++    /* temp dir */
++    ensure_writable_dir(VAR_RUN"/abrt", 0755, "root");
++}
++
+ /* Inotify handler */
+ 
+ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpointer ptr_unused)
+@@ -594,6 +625,22 @@ static gboolean handle_inotify_cb(GIOChannel *gio, GIOCondition condition, gpoin
+             continue;
+         }
+ 
++        if (event->mask & IN_DELETE_SELF || event->mask & IN_MOVE_SELF)
++        {
++            /* HACK: we expect that we watch deletion only of 'g_settings_dump_location'
++             * but this handler is used for 'g_settings_sWatchCrashdumpArchiveDir' too
++             */
++            log("Recreating deleted dump location '%s'", g_settings_dump_location);
++            inotify_rm_watch(g_io_channel_unix_get_fd(gio), event->wd);
++            sanitize_dump_dir_rights();
++            if (inotify_add_watch(g_io_channel_unix_get_fd(gio), g_settings_dump_location, IN_DUMP_LOCATION_FLAGS) < 0)
++            {
++                perror_msg_and_die("inotify_add_watch failed on recreated '%s'", g_settings_dump_location);
++            }
++
++            continue;
++        }
++
+         if (!(event->mask & IN_ISDIR) || !name)
+         {
+             /* ignore lock files and such */
+@@ -810,36 +857,6 @@ static void start_syslog_logging()
+     putenv((char*)"ABRT_SYSLOG=1");
+ }
+ 
+-static void ensure_writable_dir(const char *dir, mode_t mode, const char *user)
+-{
+-    struct stat sb;
+-
+-    if (mkdir(dir, mode) != 0 && errno != EEXIST)
+-        perror_msg_and_die("Can't create '%s'", dir);
+-    if (stat(dir, &sb) != 0 || !S_ISDIR(sb.st_mode))
+-        error_msg_and_die("'%s' is not a directory", dir);
+-
+-    struct passwd *pw = getpwnam(user);
+-    if (!pw)
+-        perror_msg_and_die("Can't find user '%s'", user);
+-
+-    if ((sb.st_uid != pw->pw_uid || sb.st_gid != pw->pw_gid) && lchown(dir, pw->pw_uid, pw->pw_gid) != 0)
+-        perror_msg_and_die("Can't set owner %u:%u on '%s'", (unsigned int)pw->pw_uid, (unsigned int)pw->pw_gid, dir);
+-    if ((sb.st_mode & 07777) != mode && chmod(dir, mode) != 0)
+-        perror_msg_and_die("Can't set mode %o on '%s'", mode, dir);
+-}
+-
+-static void sanitize_dump_dir_rights()
+-{
+-    /* We can't allow everyone to create dumps: otherwise users can flood
+-     * us with thousands of bogus or malicious dumps */
+-    /* 07000 bits are setuid, setgit, and sticky, and they must be unset */
+-    /* 00777 bits are usual "rwxrwxrwx" access rights */
+-    ensure_writable_dir(g_settings_dump_location, 0755, "abrt");
+-    /* temp dir */
+-    ensure_writable_dir(VAR_RUN"/abrt", 0755, "root");
+-}
+-
+ int main(int argc, char** argv)
+ {
+     /* I18n */
+@@ -966,8 +983,9 @@ int main(int argc, char** argv)
+         perror_msg_and_die("inotify_init failed");
+     close_on_exec_on(inotify_fd);
+ 
+-    /* Watching 'g_settings_dump_location' for new files... */
+-    if (inotify_add_watch(inotify_fd, g_settings_dump_location, IN_CREATE | IN_MOVED_TO) < 0)
++    /* Watching 'g_settings_dump_location' for new files and delete self
++     * because hooks expects that the dump location exists if abrtd is runnig*/
++    if (inotify_add_watch(inotify_fd, g_settings_dump_location, IN_DUMP_LOCATION_FLAGS) < 0)
+     {
+         perror_msg("inotify_add_watch failed on '%s'", g_settings_dump_location);
+         goto init_error;
+-- 
+1.8.1.4
+

diff --git a/abrt.spec b/abrt.spec
index cf93301..1b1dce7 100644
--- a/abrt.spec
+++ b/abrt.spec
@@ -25,7 +25,7 @@
 Summary: Automatic bug detection and reporting tool
 Name: abrt
 Version: 2.1.2
-Release: 1%{?dist}
+Release: 2%{?dist}
 License: GPLv2+
 Group: Applications/System
 URL: https://fedorahosted.org/abrt/
@@ -36,6 +36,9 @@ Patch1: disable_gpg_check.patch
 Patch2: abrt-2.1.1-hide_all_ureport_stuff.patch
 Patch3: abrt-2.1.1-dont_enable_shortened_reporting_in_gnome.patch
 Patch4: abrt-2.1.1-disable_autoreporting_dialog.patch
+# Remove this patch with abrt-2.1.3
+Patch5: abrt-2.1.2-recreate_dump_location.patch
+
 BuildRequires: dbus-devel
 BuildRequires: gtk3-devel
 BuildRequires: rpm-devel >= 4.6
@@ -51,9 +54,9 @@ BuildRequires: nss-devel
 BuildRequires: asciidoc
 BuildRequires: doxygen
 BuildRequires: xmlto
-BuildRequires: libreport-devel >= 2.1.0-1
+BuildRequires: libreport-devel >= 2.1.2
 BuildRequires: btparser-devel
-Requires: libreport >= 2.1.0-1
+Requires: libreport >= 2.1.2
 
 %if %{with systemd}
 Requires: systemd-units
@@ -269,6 +272,7 @@ problems handled by ABRT in Python.
 %endif
 #Fedora
 %patch1 -p1 -b .gpgcheck
+%patch5 -p1 -b .dumplocation
 
 %build
 autoconf
@@ -744,6 +748,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 %{_defaultdocdir}/%{name}-python-%{version}/examples/
 
 %changelog
+* Fri Mar 22 2013 Jakub Filak <jfilak@redhat.com> 2.1.2-2
+- Require correct version of libreport
+- Add a patch for abrtd which ensures that the dump location always exists
+
 * Tue Mar 19 2013 Jakub Filak <jfilak@redhat.com> 2.1.2-1
 - Improve log messages
 - Update translation

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-08-03 10:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-03 10:22 [rpms/abrt] update-2.17.8: Rebuild with correct libreport and fixed problem with missing dump location Jakub Filak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox