[abrt/f19] Rebuild with correct libreport and fixed problem with missing dump location

Jakub Filak jfilak at fedoraproject.org
Fri Mar 22 12:40:50 UTC 2013


commit 9fdda6a8309bcabc99069c91e30cb4f421ae7de0
Author: Jakub Filak <jfilak at redhat.com>
Date:   Fri Mar 22 10:34:43 2013 +0100

    Rebuild with correct libreport and fixed problem with missing dump location

 abrt-2.1.2-recreate_dump_location.patch |  139 +++++++++++++++++++++++++++++++
 abrt.spec                               |   14 +++-
 2 files changed, 150 insertions(+), 3 deletions(-)
---
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 at 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 at 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 d94f949..99d2d1a 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/
@@ -34,6 +34,9 @@ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz
 Patch0: abrt-rhelkeys.patch
 Patch1: disable_gpg_check.patch
 Patch2: abrt-2.1.1-hide_all_ureport_stuff.patch
+# Remove this patch with abrt-2.1.3
+Patch3: abrt-2.1.2-recreate_dump_location.patch
+
 BuildRequires: dbus-devel
 BuildRequires: gtk3-devel
 BuildRequires: rpm-devel >= 4.6
@@ -49,9 +52,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
@@ -265,6 +268,7 @@ problems handled by ABRT in Python.
 %endif
 #Fedora
 %patch1 -p1 -b .gpgcheck
+%patch3 -p1 -b .dumplocation
 
 %build
 autoconf
@@ -740,6 +744,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
 %{_defaultdocdir}/%{name}-python-%{version}/examples/
 
 %changelog
+* Fri Mar 22 2013 Jakub Filak <jfilak at 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 at redhat.com> 2.1.2-1
 - Improve log messages
 - Update translation


More information about the scm-commits mailing list