aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-07-17 20:54:32 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-07-17 20:54:32 +0000
commit5b6b38cbd82468ac720d25b1889f63f4251bf4db (patch)
treed12e69b8843a9388be9793b4ba32caa6d35f3c61 /pop3.c
parent7b413aaa538cb43e69f954e2c7ee6a19951a48c8 (diff)
downloadfetchmail-5b6b38cbd82468ac720d25b1889f63f4251bf4db.tar.gz
fetchmail-5b6b38cbd82468ac720d25b1889f63f4251bf4db.tar.bz2
fetchmail-5b6b38cbd82468ac720d25b1889f63f4251bf4db.zip
First round of changes for OPIE support.
svn path=/trunk/; revision=1173
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c41
1 files changed, 40 insertions, 1 deletions
diff --git a/pop3.c b/pop3.c
index fdd87539..edc99110 100644
--- a/pop3.c
+++ b/pop3.c
@@ -19,6 +19,10 @@
#include "fetchmail.h"
#include "socket.h"
+#if HAVE_LIBOPIE
+#include <opie.h>
+#endif /* HAVE_LIBOPIE */
+
#define PROTOCOL_ERROR {error(0, 0, "protocol error"); return(PS_ERROR);}
#define LOCKBUSY_ERROR {error(0, 0, "lock busy! Is another session active?"); return(PS_LOCKBUSY);}
@@ -27,6 +31,10 @@ extern char *strstr(); /* needed on sysV68 R3V7.1. */
static int last;
+#if HAVE_LIBOPIE
+static char lastok[POPBUFSIZE+1];
+#endif /* HAVE_LIBOPIE */
+
int pop3_ok (int sock, char *argbuf)
/* parse command response */
{
@@ -47,7 +55,12 @@ int pop3_ok (int sock, char *argbuf)
*(bufp++) = '\0';
if (strcmp(buf,"+OK") == 0)
+ {
+#if HAVE_LIBOPIE
+ strcpy(lastok, bufp);
+#endif /* HAVE_LIBOPIE */
ok = 0;
+ }
else if (strcmp(buf,"-ERR") == 0)
{
/*
@@ -79,6 +92,9 @@ int pop3_getauth(int sock, struct query *ctl, char *greeting)
/* apply for connection authorization */
{
int ok;
+#if HAVE_LIBOPIE
+ char *challenge;
+#endif /* HAVE_LIBOPIE */
/* build MD5 digest from greeting timestamp + password */
if (ctl->server.protocol == P_APOP)
@@ -118,7 +134,30 @@ int pop3_getauth(int sock, struct query *ctl, char *greeting)
if ((gen_transact(sock, "USER %s", ctl->remotename)) != 0)
PROTOCOL_ERROR
- if ((ok = gen_transact(sock, "PASS %s", ctl->password)) != 0)
+#ifdef HAVE_LIBOPIE
+ /* see RFC1938: A One-Time Password System */
+ if (challenge = strstr(lastok, "otp-"))
+ {
+ char response[OPIE_RESPONSE_MAX+1];
+
+ if (ctl->password && !strcmp(ctl->password, "opie"))
+ {
+ if (ok = opiegenerator(challenge, "", response))
+ if (ok != 2)
+ PROTOCOL_ERROR
+ }
+ else if (opiegenerator(challenge, ctl->password, response))
+ PROTOCOL_ERROR
+
+ ok = gen_transact(sock, "PASS %s", response);
+ }
+ else
+#else
+ /* ordinary validation, no one-time password */
+ ok = gen_transact(sock, "PASS %s", ctl->password);
+#endif /* HAVE_LIBOPIE */
+
+ if (ok != 0)
{
if (ok == PS_LOCKBUSY)
LOCKBUSY_ERROR