aboutsummaryrefslogtreecommitdiff
path: root/sshfs.c
diff options
context:
space:
mode:
authorMike Kelly <mike@pair.com>2012-02-17 11:35:15 -0500
committerBenjamin Fleischer <fleiben@gmail.com>2012-03-09 22:48:58 +0100
commiteb60e2d1a2c66534e6a8ed6d8609c9c89a3deaf9 (patch)
treea49c6d1b8ae5fc8958f6ca07c4e772686c166649 /sshfs.c
parent0d34c7b742fe8f9a7de81afd3f4c906da38b26a3 (diff)
downloadsshfs-eb60e2d1a2c66534e6a8ed6d8609c9c89a3deaf9.tar
sshfs-eb60e2d1a2c66534e6a8ed6d8609c9c89a3deaf9.tar.gz
sshfs-eb60e2d1a2c66534e6a8ed6d8609c9c89a3deaf9.tar.bz2
sshfs-eb60e2d1a2c66534e6a8ed6d8609c9c89a3deaf9.zip
make sure idmap files aren't writable by others
otherwise, other local users could change the mapping, and gain access to things they shouldn't
Diffstat (limited to 'sshfs.c')
-rw-r--r--sshfs.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/sshfs.c b/sshfs.c
index 8119d68..408123c 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -3696,6 +3696,7 @@ static void read_id_map(char *file, uint32_t *(*map_fn)(char *),
FILE *fp;
char line[LINE_MAX];
unsigned int lineno = 0;
+ uid_t local_uid = getuid();
fp = fopen(file, "r");
if (fp == NULL) {
@@ -3703,6 +3704,21 @@ static void read_id_map(char *file, uint32_t *(*map_fn)(char *),
file, strerror(errno));
exit(1);
}
+ struct stat st;
+ if (fstat(fileno(fp), &st) == -1) {
+ fprintf(stderr, "failed to stat '%s': %s\n", file,
+ strerror(errno));
+ exit(1);
+ }
+ if (st.st_uid != local_uid) {
+ fprintf(stderr, "'%s' is not owned by uid %lu\n", file,
+ (unsigned long)local_uid);
+ exit(1);
+ }
+ if (st.st_mode & S_IWGRP || st.st_mode & S_IWOTH) {
+ fprintf(stderr, "'%s' is writable by other users\n", file);
+ exit(1);
+ }
while (fgets(line, LINE_MAX, fp) != NULL) {
lineno++;