X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=crypt.c;h=49e9e8ae7863fed3f40881a356957f115bf31769;hp=1172ddc333fdb12f2010c11785c39f773561e777;hb=a5927501e41fa3fca2975452617474e78ffecc48;hpb=153bf6c6f74b8c951a8b2a13b0224f460148531e diff --git a/crypt.c b/crypt.c index 1172ddc3..49e9e8ae 100644 --- a/crypt.c +++ b/crypt.c @@ -65,11 +65,29 @@ void init_random_seed_or_die(void) srandom(seed); } +static int check_key_file(const char *file, int private) +{ + struct stat st; + + if (stat(file, &st) != 0) + return -ERRNO_TO_PARA_ERROR(errno); + if (private != LOAD_PRIVATE_KEY) + return 0; + if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) + return -E_KEY_PERM; + return 1; +} + static EVP_PKEY *load_key(const char *file, int private) { BIO *key; EVP_PKEY *pkey = NULL; + int ret = check_key_file(file, private); + if (ret < 0) { + PARA_ERROR_LOG("%s\n", para_strerror(-ret)); + return NULL; + } key = BIO_new(BIO_s_file()); if (!key) return NULL;