X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4a19c3b254b01c298fe25d72f450a760278e9386..9b25ef35bd8c13480f79753c605f873d9e271936:/authenticate.c diff --git a/authenticate.c b/authenticate.c index c3dabd06..b699724c 100644 --- a/authenticate.c +++ b/authenticate.c @@ -2,12 +2,11 @@ * Support rsync daemon authentication. * * Copyright (C) 1998-2000 Andrew Tridgell - * Copyright (C) 2002, 2004, 2005, 2006 Wayne Davison + * Copyright (C) 2002-2007 Wayne Davison * * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -58,8 +57,9 @@ void base64_encode(const char *buf, int len, char *out, int pad) static void gen_challenge(const char *addr, char *challenge) { char input[32]; - char md4_out[MD4_SUM_LENGTH]; + char digest[MAX_DIGEST_LEN]; struct timeval tv; + int len; memset(input, 0, sizeof input); @@ -71,9 +71,9 @@ static void gen_challenge(const char *addr, char *challenge) sum_init(0); sum_update(input, sizeof input); - sum_end(md4_out); + len = sum_end(digest); - base64_encode(md4_out, MD4_SUM_LENGTH, challenge, 0); + base64_encode(digest, len, challenge, 0); } @@ -206,14 +206,15 @@ static const char *getpassf(const char *filename) * and the challenge string and return it base64-encoded. */ static void generate_hash(const char *in, const char *challenge, char *out) { - char buf[MD4_SUM_LENGTH]; + char buf[MAX_DIGEST_LEN]; + int len; sum_init(0); sum_update(in, strlen(in)); sum_update(challenge, strlen(challenge)); - sum_end(buf); + len = sum_end(buf); - base64_encode(buf, MD4_SUM_LENGTH, out, 0); + base64_encode(buf, len, out, 0); } /* Possibly negotiate authentication with the client. Use "leader" to @@ -226,10 +227,10 @@ char *auth_server(int f_in, int f_out, int module, const char *host, const char *addr, const char *leader) { char *users = lp_auth_users(module); - char challenge[MD4_SUM_LENGTH*2]; + char challenge[MAX_DIGEST_LEN*2]; char line[BIGPATHBUFLEN]; char secret[512]; - char pass2[MD4_SUM_LENGTH*2]; + char pass2[MAX_DIGEST_LEN*2]; char *tok, *pass; /* if no auth list then allow anyone in! */ @@ -290,7 +291,7 @@ char *auth_server(int f_in, int f_out, int module, const char *host, void auth_client(int fd, const char *user, const char *challenge) { const char *pass; - char pass2[MD4_SUM_LENGTH*2]; + char pass2[MAX_DIGEST_LEN*2]; if (!user || !*user) user = "nobody";