]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
login: fix NULL-deref on wall_message 1157/head
authorDavid Herrmann <dh.herrmann@gmail.com>
Sat, 5 Sep 2015 10:56:04 +0000 (12:56 +0200)
committerDavid Herrmann <dh.herrmann@gmail.com>
Sat, 5 Sep 2015 10:56:04 +0000 (12:56 +0200)
We treat an empty wall-message equal to a NULL wall-message since:

        commit 5744f59a3ee883ef3a78214bd5236157acdc35ba
        Author: Lennart Poettering <lennart@poettering.net>
        Date:   Fri Sep 4 10:34:47 2015 +0200

            logind: treat an empty wall message like a NULL one

Fix the shutdown scheduler to not deref a NULL pointer, but properly
check for an empty wall-message.

Fixes: #1120
src/login/logind-dbus.c

index 7cc68d4865dda8f59071f204895a389ca467266e..e433549cb94a42633cee41351b439bdcc3c2ec60 100644 (file)
@@ -1796,9 +1796,11 @@ static int update_schedule_file(Manager *m) {
         if (r < 0)
                 return log_error_errno(r, "Failed to create shutdown subdirectory: %m");
 
-        t = cescape(m->wall_message);
-        if (!t)
-                return log_oom();
+        if (!isempty(m->wall_message)) {
+                t = cescape(m->wall_message);
+                if (!t)
+                        return log_oom();
+        }
 
         r = fopen_temporary("/run/systemd/shutdown/scheduled", &f, &temp_path);
         if (r < 0)
@@ -1814,7 +1816,7 @@ static int update_schedule_file(Manager *m) {
                 m->enable_wall_messages,
                 m->scheduled_shutdown_type);
 
-        if (!isempty(m->wall_message))
+        if (t)
                 fprintf(f, "WALL_MESSAGE=%s\n", t);
 
         r = fflush_and_check(f);