Skip to content

Commit

Permalink
- [email protected] 2001/09/23 11:09:13
Browse files Browse the repository at this point in the history
     [authfile.c]
     relax permission check for private key files.
  • Loading branch information
mouring committed Sep 23, 2001
1 parent 15da033 commit 7aff261
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions authfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/

#include "includes.h"
RCSID("$OpenBSD: authfile.c,v 1.37 2001/06/23 15:12:17 itojun Exp $");
RCSID("$OpenBSD: authfile.c,v 1.38 2001/09/23 11:09:13 markus Exp $");

#include <openssl/err.h>
#include <openssl/evp.h>
Expand Down Expand Up @@ -486,18 +486,21 @@ key_perm_ok(int fd, const char *filename)
{
struct stat st;

/* check owner and modes */
if (fstat(fd, &st) < 0)
return 0;
/*
* if a key owned by the user is accessed, then we check the
* permissions of the file. if the key owned by a different user,
* then we don't care.
*/
#ifdef HAVE_CYGWIN
if (check_ntsec(filename))
#endif
if (fstat(fd, &st) < 0 ||
(st.st_uid != 0 && getuid() != 0 && st.st_uid != getuid()) ||
(st.st_mode & 077) != 0) {
close(fd);
if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @");
error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
error("Bad ownership or mode(0%3.3o) for '%s'.",
error("Permissions 0%3.3o for '%s' are too open.",
st.st_mode & 0777, filename);
error("It is recommended that your private key files are NOT accessible by others.");
error("This private key will be ignored.");
Expand Down

0 comments on commit 7aff261

Please sign in to comment.