summaryrefslogtreecommitdiff
path: root/dev-libs/libcgroup/files/libcgroup-0.41-remove-umask.patch
blob: 42286ae8785fce43acde78175548b3c8e0229d03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
commit 0d88b73d189ea3440ccaab00418d6469f76fa590
Author: Michal Hocko <mhocko@suse.com>
Date:   Wed Jul 18 11:24:29 2018 +0200

    cgrulesengd: remove umask(0)
    
    One of our partners has noticed that cgred daemon is creating a log file
    (/var/log/cgred) with too wide permissions (0666) and that is seen as
    a security bug because an untrusted user can write to otherwise
    restricted area. CVE-2018-14348 has been assigned to this issue.
    
    Signed-off-by: Michal Hocko <mhocko@suse.com>
    Acked-by: Balbir Singh <bsingharora@gmail.com>

diff --git a/src/daemon/cgrulesengd.c b/src/daemon/cgrulesengd.c
index ea51f11..0d288f3 100644
--- a/src/daemon/cgrulesengd.c
+++ b/src/daemon/cgrulesengd.c
@@ -889,9 +889,6 @@ int cgre_start_daemon(const char *logp, const int logf,
 		} else if (pid > 0) {
 			exit(EXIT_SUCCESS);
 		}
-
-		/* Change the file mode mask. */
-		umask(0);
 	} else {
 		flog(LOG_DEBUG, "Not using daemon mode\n");
 		pid = getpid();