]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Error out if --password-file specifed and it fails.
authorWayne Davison <wayned@samba.org>
Wed, 7 Sep 2011 04:18:32 +0000 (21:18 -0700)
committerWayne Davison <wayned@samba.org>
Sat, 10 Sep 2011 20:38:17 +0000 (13:38 -0700)
Fixes bug 8440.

authenticate.c

index 3af7337ac74fadcfe73651cda87df2f687dc9eae..76503774655e22480ae6611a373bc9d18d541ee8 100644 (file)
@@ -156,36 +156,27 @@ static const char *getpassf(const char *filename)
 {
        STRUCT_STAT st;
        char buffer[512], *p;
-       int fd, n, ok = 1;
-       const char *envpw = getenv("RSYNC_PASSWORD");
+       int fd, n;
 
        if (!filename)
                return NULL;
 
        if ((fd = open(filename,O_RDONLY)) < 0) {
-               rsyserr(FWARNING, errno, "could not open password file \"%s\"",
-                       filename);
-               if (envpw)
-                       rprintf(FINFO, "falling back to RSYNC_PASSWORD environment variable.\n");
-               return NULL;
+               rsyserr(FERROR, errno, "could not open password file %s", filename);
+               exit_cleanup(RERR_SYNTAX);
        }
 
        if (do_stat(filename, &st) == -1) {
-               rsyserr(FWARNING, errno, "stat(%s)", filename);
-               ok = 0;
-       } else if ((st.st_mode & 06) != 0) {
-               rprintf(FWARNING, "password file must not be other-accessible\n");
-               ok = 0;
-       } else if (MY_UID() == 0 && st.st_uid != 0) {
-               rprintf(FWARNING, "password file must be owned by root when running as root\n");
-               ok = 0;
+               rsyserr(FERROR, errno, "stat(%s)", filename);
+               exit_cleanup(RERR_SYNTAX);
        }
-       if (!ok) {
-               close(fd);
-               rprintf(FWARNING, "continuing without password file\n");
-               if (envpw)
-                       rprintf(FINFO, "falling back to RSYNC_PASSWORD environment variable.\n");
-               return NULL;
+       if ((st.st_mode & 06) != 0) {
+               rprintf(FERROR, "ERROR: password file must not be other-accessible\n");
+               exit_cleanup(RERR_SYNTAX);
+       }
+       if (MY_UID() == 0 && st.st_uid != 0) {
+               rprintf(FERROR, "ERROR: password file must be owned by root when running as root\n");
+               exit_cleanup(RERR_SYNTAX);
        }
 
        n = read(fd, buffer, sizeof buffer - 1);
@@ -196,7 +187,8 @@ static const char *getpassf(const char *filename)
                        return strdup(p);
        }
 
-       return NULL;
+       rprintf(FERROR, "ERROR: failed to read a password from %s\n", filename);
+       exit_cleanup(RERR_SYNTAX);
 }
 
 /* Generate an MD4 hash created from the combination of the password