diff options
Diffstat (limited to 'misc.c')
-rw-r--r-- | misc.c | 27 |
1 files changed, 26 insertions, 1 deletions
@@ -45,8 +45,9 @@ | |||
45 | #include <netdb.h> | 45 | #include <netdb.h> |
46 | #ifdef HAVE_PATHS_H | 46 | #ifdef HAVE_PATHS_H |
47 | # include <paths.h> | 47 | # include <paths.h> |
48 | #include <pwd.h> | ||
49 | #endif | 48 | #endif |
49 | #include <pwd.h> | ||
50 | #include <grp.h> | ||
50 | #ifdef SSH_TUN_OPENBSD | 51 | #ifdef SSH_TUN_OPENBSD |
51 | #include <net/if.h> | 52 | #include <net/if.h> |
52 | #endif | 53 | #endif |
@@ -638,6 +639,30 @@ read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz, | |||
638 | } | 639 | } |
639 | 640 | ||
640 | int | 641 | int |
642 | secure_permissions(struct stat *st, uid_t uid) | ||
643 | { | ||
644 | if (st->st_uid != 0 && st->st_uid != uid) | ||
645 | return 0; | ||
646 | if ((st->st_mode & 020) != 0) { | ||
647 | /* If the file is group-writable, the group in question must | ||
648 | * have at most one member, namely the file's owner. | ||
649 | */ | ||
650 | struct passwd *pw = getpwuid(st->st_uid); | ||
651 | struct group *gr = getgrgid(st->st_gid); | ||
652 | if (!pw || !gr) | ||
653 | return 0; | ||
654 | else if (gr->gr_mem[0]) { | ||
655 | if (strcmp(pw->pw_name, gr->gr_mem[0]) || | ||
656 | gr->gr_mem[1]) | ||
657 | return 0; | ||
658 | } | ||
659 | } | ||
660 | if ((st->st_mode & 002) != 0) | ||
661 | return 0; | ||
662 | return 1; | ||
663 | } | ||
664 | |||
665 | int | ||
641 | tun_open(int tun, int mode) | 666 | tun_open(int tun, int mode) |
642 | { | 667 | { |
643 | #if defined(CUSTOM_SYS_TUN_OPEN) | 668 | #if defined(CUSTOM_SYS_TUN_OPEN) |