diff options
author | Colin Watson <cjwatson@debian.org> | 2014-02-09 16:09:58 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2016-03-21 12:06:15 +0000 |
commit | bf0d87583a842b9e8aaf2a9cd9dbc3e976df2af4 (patch) | |
tree | 9928e236b802580595a7abb0b2f2b0d2fab1b75c /readconf.c | |
parent | 2b2c5ff34efa305e141130466260ca97f3a429ff (diff) |
Allow harmless group-writability
Allow secure files (~/.ssh/config, ~/.ssh/authorized_keys, etc.) to be
group-writable, provided that the group in question contains only the file's
owner. Rejected upstream for IMO incorrect reasons (e.g. a misunderstanding
about the contents of gr->gr_mem). Given that per-user groups and umask 002
are the default setup in Debian (for good reasons - this makes operating in
setgid directories with other groups much easier), we need to permit this by
default.
Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1060
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=314347
Last-Update: 2013-09-14
Patch-Name: user-group-modes.patch
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c index fde6b418a..cc1a6338d 100644 --- a/readconf.c +++ b/readconf.c | |||
@@ -39,6 +39,8 @@ | |||
39 | #include <stdio.h> | 39 | #include <stdio.h> |
40 | #include <string.h> | 40 | #include <string.h> |
41 | #include <unistd.h> | 41 | #include <unistd.h> |
42 | #include <pwd.h> | ||
43 | #include <grp.h> | ||
42 | #ifdef HAVE_UTIL_H | 44 | #ifdef HAVE_UTIL_H |
43 | #include <util.h> | 45 | #include <util.h> |
44 | #endif | 46 | #endif |
@@ -1626,8 +1628,7 @@ read_config_file(const char *filename, struct passwd *pw, const char *host, | |||
1626 | 1628 | ||
1627 | if (fstat(fileno(f), &sb) == -1) | 1629 | if (fstat(fileno(f), &sb) == -1) |
1628 | fatal("fstat %s: %s", filename, strerror(errno)); | 1630 | fatal("fstat %s: %s", filename, strerror(errno)); |
1629 | if (((sb.st_uid != 0 && sb.st_uid != getuid()) || | 1631 | if (!secure_permissions(&sb, getuid())) |
1630 | (sb.st_mode & 022) != 0)) | ||
1631 | fatal("Bad owner or permissions on %s", filename); | 1632 | fatal("Bad owner or permissions on %s", filename); |
1632 | } | 1633 | } |
1633 | 1634 | ||