2 Copyright (C) Andrew Tridgell 1998
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 /* support rsync authentication */
22 /***************************************************************************
23 encode a buffer using base64 - simple and slow algorithm. null terminates
25 ***************************************************************************/
26 static void base64_encode(char *buf
, int len
, char *out
)
28 char *b64
= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
29 int bit_offset
, byte_offset
, idx
, i
;
30 unsigned char *d
= (unsigned char *)buf
;
31 int bytes
= (len
*8 + 5)/6;
33 memset(out
, 0, bytes
+1);
35 for (i
=0;i
<bytes
;i
++) {
36 byte_offset
= (i
*6)/8;
39 idx
= (d
[byte_offset
] >> (2-bit_offset
)) & 0x3F;
41 idx
= (d
[byte_offset
] << (bit_offset
-2)) & 0x3F;
42 if (byte_offset
+1 < len
) {
43 idx
|= (d
[byte_offset
+1] >> (8-(bit_offset
-2)));
50 /* create a 16 byte challenge buffer */
51 static void gen_challenge(char *addr
, char *challenge
)
56 memset(input
, 0, sizeof(input
));
58 strlcpy((char *)input
, addr
, 17);
59 gettimeofday(&tv
, NULL
);
60 SIVAL(input
, 16, tv
.tv_sec
);
61 SIVAL(input
, 20, tv
.tv_usec
);
62 SIVAL(input
, 24, getpid());
65 sum_update(input
, sizeof(input
));
70 /* return the secret for a user from the sercret file. maximum length
71 is len. null terminate it */
72 static int get_secret(int module
, char *user
, char *secret
, int len
)
74 char *fname
= lp_secrets_file(module
);
76 char line
[MAXPATHLEN
];
82 if (!fname
|| !*fname
) return 0;
84 fd
= open(fname
,O_RDONLY
);
85 if (fd
== -1) return 0;
87 if (do_stat(fname
, &st
) == -1) {
88 rprintf(FERROR
,"stat(%s) : %s\n", fname
, strerror(errno
));
90 } else if (lp_strict_modes(module
)) {
91 if ((st
.st_mode
& 06) != 0) {
92 rprintf(FERROR
,"secrets file must not be other-accessible (see strict modes option)\n");
94 } else if (am_root
&& (st
.st_uid
!= 0)) {
95 rprintf(FERROR
,"secrets file must be owned by root when running as root (see strict modes)\n");
100 rprintf(FERROR
,"continuing without secrets file\n");
107 memset(line
, 0, sizeof(line
));
108 while (i
<(sizeof(line
)-1)) {
109 if (read(fd
, &line
[i
], 1) != 1) {
110 memset(line
, 0, sizeof(line
));
114 if (line
[i
] == '\r') continue;
115 if (line
[i
] == '\n') break;
119 if (line
[0] == '#') continue;
120 p
= strchr(line
,':');
123 if (strcmp(user
, line
)) continue;
129 if (!found
) return 0;
131 strlcpy(secret
, pass
, len
);
135 static char *getpassf(char *filename
)
143 char *envpw
=getenv("RSYNC_PASSWORD");
145 if (!filename
) return NULL
;
147 if ( (fd
=open(filename
,O_RDONLY
)) == -1) {
148 rprintf(FERROR
,"could not open password file \"%s\"\n",filename
);
149 if (envpw
) rprintf(FERROR
,"falling back to RSYNC_PASSWORD environment variable.\n");
153 if (do_stat(filename
, &st
) == -1) {
154 rprintf(FERROR
,"stat(%s) : %s\n", filename
, strerror(errno
));
156 } else if ((st
.st_mode
& 06) != 0) {
157 rprintf(FERROR
,"password file must not be other-accessible\n");
159 } else if (am_root
&& (st
.st_uid
!= 0)) {
160 rprintf(FERROR
,"password file must be owned by root when running as root\n");
164 rprintf(FERROR
,"continuing without password file\n");
165 if (envpw
) rprintf(FERROR
,"using RSYNC_PASSWORD environment variable.\n");
170 if (envpw
) rprintf(FERROR
,"RSYNC_PASSWORD environment variable ignored\n");
172 buffer
[sizeof(buffer
)-1]='\0';
173 if ( (len
=read(fd
,buffer
,sizeof(buffer
)-1)) > 0)
175 char *p
= strtok(buffer
,"\n\r");
177 if (p
) p
= strdup(p
);
184 /* generate a 16 byte hash from a password and challenge */
185 static void generate_hash(char *in
, char *challenge
, char *out
)
190 sum_update(in
, strlen(in
));
191 sum_update(challenge
, strlen(challenge
));
194 base64_encode(buf
, 16, out
);
197 /* possible negotiate authentication with the client. Use "leader" to
198 start off the auth if necessary
200 return NULL if authentication failed
202 return "" if anonymous access
204 otherwise return username
206 char *auth_server(int fd
, int module
, char *addr
, char *leader
)
208 char *users
= lp_auth_users(module
);
210 char b64_challenge
[30];
211 char line
[MAXPATHLEN
];
212 static char user
[100];
218 /* if no auth list then allow anyone in! */
219 if (!users
|| !*users
) return "";
221 gen_challenge(addr
, challenge
);
223 base64_encode(challenge
, 16, b64_challenge
);
225 io_printf(fd
,"%s%s\n", leader
, b64_challenge
);
227 if (!read_line(fd
, line
, sizeof(line
)-1)) {
231 memset(user
, 0, sizeof(user
));
232 memset(pass
, 0, sizeof(pass
));
234 if (sscanf(line
,"%99s %29s", user
, pass
) != 2) {
238 users
= strdup(users
);
239 if (!users
) return NULL
;
241 for (tok
=strtok(users
," ,\t"); tok
; tok
= strtok(NULL
," ,\t")) {
242 if (strcmp(tok
, user
) == 0) break;
250 memset(secret
, 0, sizeof(secret
));
251 if (!get_secret(module
, user
, secret
, sizeof(secret
)-1)) {
252 memset(secret
, 0, sizeof(secret
));
256 generate_hash(secret
, b64_challenge
, pass2
);
257 memset(secret
, 0, sizeof(secret
));
259 if (strcmp(pass
, pass2
) == 0)
266 void auth_client(int fd
, char *user
, char *challenge
)
270 extern char *password_file
;
272 if (!user
|| !*user
) return;
274 if (!(pass
=getpassf(password_file
)) && !(pass
=getenv("RSYNC_PASSWORD"))) {
275 pass
= getpass("Password: ");
278 if (!pass
|| !*pass
) {
282 generate_hash(pass
, challenge
, pass2
);
283 io_printf(fd
, "%s %s\n", user
, pass2
);