CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
tar: updated to 1.30
[crossrootfs.git] / shadow / CVE-2018-7169.patch
CommitLineData
2131b6b5
VM
1From fb28c99b8a66ff2605c5cb96abc0a4d975f92de0 Mon Sep 17 00:00:00 2001
2From: Aleksa Sarai <asarai@suse.de>
3Date: Thu, 15 Feb 2018 23:49:40 +1100
4Subject: [PATCH] newgidmap: enforce setgroups=deny if self-mapping a group
5
6This is necessary to match the kernel-side policy of "self-mapping in a
7user namespace is fine, but you cannot drop groups" -- a policy that was
8created in order to stop user namespaces from allowing trivial privilege
9escalation by dropping supplementary groups that were "blacklisted" from
10certain paths.
11
12This is the simplest fix for the underlying issue, and effectively makes
13it so that unless a user has a valid mapping set in /etc/subgid (which
14only administrators can modify) -- and they are currently trying to use
15that mapping -- then /proc/$pid/setgroups will be set to deny. This
16workaround is only partial, because ideally it should be possible to set
17an "allow_setgroups" or "deny_setgroups" flag in /etc/subgid to allow
18administrators to further restrict newgidmap(1).
19
20We also don't write anything in the "allow" case because "allow" is the
21default, and users may have already written "deny" even if they
22technically are allowed to use setgroups. And we don't write anything if
23the setgroups policy is already "deny".
24
25Ref: https://bugs.launchpad.net/ubuntu/+source/shadow/+bug/1729357
26Fixes: CVE-2018-7169
27Reported-by: Craig Furman <craig.furman89@gmail.com>
28Signed-off-by: Aleksa Sarai <asarai@suse.de>
29---
30 src/newgidmap.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++------
31 1 file changed, 80 insertions(+), 9 deletions(-)
32
33diff --git a/src/newgidmap.c b/src/newgidmap.c
34index b1e33513..59a2e75c 100644
35--- a/src/newgidmap.c
36+++ b/src/newgidmap.c
37@@ -46,32 +46,37 @@
38 */
39 const char *Prog;
40
41-static bool verify_range(struct passwd *pw, struct map_range *range)
42+
43+static bool verify_range(struct passwd *pw, struct map_range *range, bool *allow_setgroups)
44 {
45 /* An empty range is invalid */
46 if (range->count == 0)
47 return false;
48
49- /* Test /etc/subgid */
50- if (have_sub_gids(pw->pw_name, range->lower, range->count))
51+ /* Test /etc/subgid. If the mapping is valid then we allow setgroups. */
52+ if (have_sub_gids(pw->pw_name, range->lower, range->count)) {
53+ *allow_setgroups = true;
54 return true;
55+ }
56
57- /* Allow a process to map its own gid */
58- if ((range->count == 1) && (pw->pw_gid == range->lower))
59+ /* Allow a process to map its own gid. */
60+ if ((range->count == 1) && (pw->pw_gid == range->lower)) {
61+ /* noop -- if setgroups is enabled already we won't disable it. */
62 return true;
63+ }
64
65 return false;
66 }
67
68 static void verify_ranges(struct passwd *pw, int ranges,
69- struct map_range *mappings)
70+ struct map_range *mappings, bool *allow_setgroups)
71 {
72 struct map_range *mapping;
73 int idx;
74
75 mapping = mappings;
76 for (idx = 0; idx < ranges; idx++, mapping++) {
77- if (!verify_range(pw, mapping)) {
78+ if (!verify_range(pw, mapping, allow_setgroups)) {
79 fprintf(stderr, _( "%s: gid range [%lu-%lu) -> [%lu-%lu) not allowed\n"),
80 Prog,
81 mapping->upper,
82@@ -89,6 +94,70 @@ static void usage(void)
83 exit(EXIT_FAILURE);
84 }
85
86+void write_setgroups(int proc_dir_fd, bool allow_setgroups)
87+{
88+ int setgroups_fd;
89+ char *policy, policy_buffer[4096];
90+
91+ /*
92+ * Default is "deny", and any "allow" will out-rank a "deny". We don't
93+ * forcefully write an "allow" here because the process we are writing
94+ * mappings for may have already set themselves to "deny" (and "allow"
95+ * is the default anyway). So allow_setgroups == true is a noop.
96+ */
97+ policy = "deny\n";
98+ if (allow_setgroups)
99+ return;
100+
101+ setgroups_fd = openat(proc_dir_fd, "setgroups", O_RDWR|O_CLOEXEC);
102+ if (setgroups_fd < 0) {
103+ /*
104+ * If it's an ENOENT then we are on too old a kernel for the setgroups
105+ * code to exist. Emit a warning and bail on this.
106+ */
107+ if (ENOENT == errno) {
108+ fprintf(stderr, _("%s: kernel doesn't support setgroups restrictions\n"), Prog);
109+ goto out;
110+ }
111+ fprintf(stderr, _("%s: couldn't open process setgroups: %s\n"),
112+ Prog,
113+ strerror(errno));
114+ exit(EXIT_FAILURE);
115+ }
116+
117+ /*
118+ * Check whether the policy is already what we want. /proc/self/setgroups
119+ * is write-once, so attempting to write after it's already written to will
120+ * fail.
121+ */
122+ if (read(setgroups_fd, policy_buffer, sizeof(policy_buffer)) < 0) {
123+ fprintf(stderr, _("%s: failed to read setgroups: %s\n"),
124+ Prog,
125+ strerror(errno));
126+ exit(EXIT_FAILURE);
127+ }
128+ if (!strncmp(policy_buffer, policy, strlen(policy)))
129+ goto out;
130+
131+ /* Write the policy. */
132+ if (lseek(setgroups_fd, 0, SEEK_SET) < 0) {
133+ fprintf(stderr, _("%s: failed to seek setgroups: %s\n"),
134+ Prog,
135+ strerror(errno));
136+ exit(EXIT_FAILURE);
137+ }
138+ if (dprintf(setgroups_fd, "%s", policy) < 0) {
139+ fprintf(stderr, _("%s: failed to setgroups %s policy: %s\n"),
140+ Prog,
141+ policy,
142+ strerror(errno));
143+ exit(EXIT_FAILURE);
144+ }
145+
146+out:
147+ close(setgroups_fd);
148+}
149+
150 /*
151 * newgidmap - Set the gid_map for the specified process
152 */
153@@ -103,6 +172,7 @@ int main(int argc, char **argv)
154 struct stat st;
155 struct passwd *pw;
156 int written;
157+ bool allow_setgroups = false;
158
159 Prog = Basename (argv[0]);
160
161@@ -145,7 +215,7 @@ int main(int argc, char **argv)
162 (unsigned long) getuid ()));
163 return EXIT_FAILURE;
164 }
165-
166+
167 /* Get the effective uid and effective gid of the target process */
168 if (fstat(proc_dir_fd, &st) < 0) {
169 fprintf(stderr, _("%s: Could not stat directory for target %u\n"),
170@@ -177,8 +247,9 @@ int main(int argc, char **argv)
171 if (!mappings)
172 usage();
173
174- verify_ranges(pw, ranges, mappings);
175+ verify_ranges(pw, ranges, mappings, &allow_setgroups);
176
177+ write_setgroups(proc_dir_fd, allow_setgroups);
178 write_mapping(proc_dir_fd, ranges, mappings, "gid_map");
179 sub_gid_close();
180