]> Pileus Git - ~andy/fetchmail/blobdiff - pop3.c
Ready to ship.
[~andy/fetchmail] / pop3.c
diff --git a/pop3.c b/pop3.c
index 2c5ad87e563cba169e46a0a71482896db52ac859..bf91bc9206c7dcbb1867b89202f993e06847ef6f 100644 (file)
--- a/pop3.c
+++ b/pop3.c
@@ -1,72 +1,68 @@
-/* Copyright 1993-95 by Carl Harris, Jr. Copyright 1996 by Eric S. Raymond
- * All rights reserved.
+/*
+ * pop3.c -- POP3 protocol methods
+ *
  * For license terms, see the file COPYING in this directory.
  */
 
-/***********************************************************************
-  module:       pop3.c
-  project:      fetchmail
-  programmer:   Carl Harris, ceharris@mal.com
-               Hacks and bug fixes by esr.
-  description:  POP3 client code.
-
- ***********************************************************************/
-
 #include  <config.h>
+
 #include  <stdio.h>
-#include  "socket.h"
+#include  <string.h>
+#include  <ctype.h>
+#if defined(HAVE_UNISTD_H)
+#include <unistd.h>
+#endif
+#if defined(STDC_HEADERS)
+#include  <stdlib.h>
+#endif
 #include  "fetchmail.h"
+#include  "socket.h"
+
+#define PROTOCOL_ERROR {error(0, 0, "protocol error"); return(PS_ERROR);}
+
+extern char *strstr(); /* needed on sysV68 R3V7.1. */
+
+static int last;
 
-int pop3_ok (argbuf,socket)
+int pop3_ok (FILE *sockfp, char *argbuf)
 /* parse command response */
-char *argbuf;
-int socket;
 {
-  int ok;
-  char buf [POPBUFSIZE+1];
-  char *bufp;
-
-  if (SockGets(socket, buf, sizeof(buf)) >= 0) {
-    if (outlevel == O_VERBOSE)
-      fprintf(stderr,"%s\n",buf);
+    int ok;
+    char buf [POPBUFSIZE+1];
+    char *bufp;
 
-    bufp = buf;
-    if (*bufp == '+' || *bufp == '-')
-      bufp++;
-    else
-      return(PS_PROTOCOL);
+    if ((ok = gen_recv(sockfp, buf, sizeof(buf))) == 0)
+    {
+       bufp = buf;
+       if (*bufp == '+' || *bufp == '-')
+           bufp++;
+       else
+           return(PS_PROTOCOL);
 
-    while (isalpha(*bufp))
-      bufp++;
-    *(bufp++) = '\0';
+       while (isalpha(*bufp))
+           bufp++;
+       *(bufp++) = '\0';
 
-    if (strcmp(buf,"+OK") == 0)
-      ok = 0;
-    else if (strcmp(buf,"-ERR") == 0)
-      ok = PS_ERROR;
-    else
-      ok = PS_PROTOCOL;
+       if (strcmp(buf,"+OK") == 0)
+           ok = 0;
+       else if (strcmp(buf,"-ERR") == 0)
+           ok = PS_ERROR;
+       else
+           ok = PS_PROTOCOL;
 
-    if (argbuf != NULL)
-      strcpy(argbuf,bufp);
-  }
-  else 
-    ok = PS_SOCKET;
+       if (argbuf != NULL)
+           strcpy(argbuf,bufp);
+    }
 
-  return(ok);
+    return(ok);
 }
 
-int pop3_getauth(socket, queryctl, greeting)
+int pop3_getauth(FILE *sockfp, struct query *ctl, char *greeting)
 /* apply for connection authorization */
-int socket;
-struct hostrec *queryctl;
-char *greeting;
 {
-    char buf [POPBUFSIZE+1];
-
-#if defined(HAVE_APOP_SUPPORT)
     /* build MD5 digest from greeting timestamp + password */
-    if (queryctl->protocol == P_APOP) 
+    if (ctl->server.protocol == P_APOP) 
     {
        char *start,*end;
        char *msg;
@@ -75,197 +71,217 @@ char *greeting;
        for (start = greeting;  *start != 0 && *start != '<';  start++)
            continue;
        if (*start == 0) {
-           fprintf(stderr,"Required APOP timestamp not found in greeting\n");
+           error(0, 0, "Required APOP timestamp not found in greeting");
            return(PS_AUTHFAIL);
        }
 
        /* find end of timestamp */
        for (end = start;  *end != 0  && *end != '>';  end++)
            continue;
-       if (*end == 0 || (end - start - 1) == 1) {
-           fprintf(stderr,"Timestamp syntax error in greeting\n");
+       if (*end == 0 || end == start + 1) {
+           error(0, 0, "Timestamp syntax error in greeting");
            return(PS_AUTHFAIL);
        }
+       else
+           *++end = '\0';
 
        /* copy timestamp and password into digestion buffer */
-       msg = (char *) malloc((end-start-1) + strlen(queryctl->password) + 1);
-       *(++end) = 0;
+       msg = (char *)xmalloc((end-start+1) + strlen(ctl->password) + 1);
        strcpy(msg,start);
-       strcat(msg,queryctl->password);
+       strcat(msg,ctl->password);
 
-       strcpy(queryctl->digest, MD5Digest(msg));
+       strcpy(ctl->digest, MD5Digest(msg));
        free(msg);
     }
-#endif  /* HAVE_APOP_SUPPORT */
 
-    switch (queryctl->protocol) {
+    switch (ctl->server.protocol) {
     case P_POP3:
-       gen_send(socket,"USER %s", queryctl->remotename);
-       if (pop3_ok(buf,socket) != 0)
-           goto badAuth;
+       if ((gen_transact(sockfp, "USER %s", ctl->remotename)) != 0)
+           PROTOCOL_ERROR
 
-       if (queryctl->rpopid[0])
-           gen_send(socket, "RPOP %s", queryctl->rpopid);
-       else
-           gen_send(socket, "PASS %s", queryctl->password);
-       if (pop3_ok(buf,socket) != 0)
-           goto badAuth;
+       if ((gen_transact(sockfp, "PASS %s", ctl->password)) != 0)
+           PROTOCOL_ERROR
        break;
 
-#if defined(HAVE_APOP_SUPPORT)
     case P_APOP:
-       gen_send(socket,"APOP %s %s", queryctl->remotename, queryctl->digest);
-       if (pop3_ok(buf,socket) != 0) 
-           goto badAuth;
+       if ((gen_transact(sockfp, "APOP %s %s",
+                         ctl->remotename, ctl->digest)) != 0)
+           PROTOCOL_ERROR
+       break;
+
+    case P_RPOP:
+       if ((gen_transact(sockfp,"USER %s", ctl->remotename)) != 0)
+           PROTOCOL_ERROR
+
+       if ((gen_transact(sockfp, "RPOP %s", ctl->password)) != 0)
+           PROTOCOL_ERROR
        break;
-#endif  /* HAVE_APOP_SUPPORT */
 
     default:
-       fprintf(stderr,"Undefined protocol request in POP3_auth\n");
+       error(0, 0, "Undefined protocol request in POP3_auth");
     }
 
     /* we're approved */
     return(0);
-
-    /*NOTREACHED*/
-
-badAuth:
-    if (outlevel > O_SILENT && outlevel < O_VERBOSE)
-       fprintf(stderr,"%s\n",buf);
-    return(PS_ERROR);
 }
 
-static int use_uidl;
-
-static pop3_getrange(socket, queryctl, countp, firstp)
+static int pop3_getrange(FILE *sockfp, struct query *ctl, int*countp, int*newp)
 /* get range of messages to be fetched */
-int socket;
-struct hostrec *queryctl;
-int *countp;
-int *firstp;
 {
-  int ok;
-  char buf [POPBUFSIZE+1];
-
-  /* get the total message count */
-  gen_send(socket, "STAT");
-  ok = pop3_ok(buf,socket);
-  if (ok == 0)
-    sscanf(buf,"%d %*d", countp);
-  else
-    return(ok);
+    int ok;
+    char buf [POPBUFSIZE+1];
 
-  /*
-   * Ask for number of last message retrieved.  
-   * Newer, RFC-1760-conformant POP servers may not have the LAST command.
-   * Therefore we don't croak if we get a nonzero return.  Instead, send
-   * UIDL and try to find the last received ID stored for this host in
-   * the list we get back.
-   */
-  *firstp = 1;
-  use_uidl = 0;
-  if (!queryctl->fetchall) {
-    char id [IDLEN+1];
-    int num;
-
-    /* try LAST first */
-    gen_send(socket,"LAST");
-    ok = pop3_ok(buf,socket);
-    if (ok == 0 && sscanf(buf, "%d", firstp) == 0)
-       return(PS_ERROR);
-
-    use_uidl = (ok != 0); 
-
-    /* otherwise, if we have a stored last ID for this host,
-     * send UIDL and search the returned list for it
-     */ 
-    if (use_uidl && queryctl->lastid[0]) {
-      gen_send("UIDL");
-      if ((ok = pop3_ok(buf, socket)) == 0) {
-          while (SockGets(socket, buf, sizeof(buf)) >= 0) {
-           if (outlevel == O_VERBOSE)
-             fprintf(stderr,"%s\n",buf);
-           if (strcmp(buf, ".\n") == 0) {
-              break;
-           }
-            if (sscanf(buf, "%d %s\n", &num, id) == 2)
-               if (strcmp(id, queryctl->lastid) == 0)
-                   *firstp = num;
-          }
-       }
-    }
+    /* Ensure that the new list is properly empty */
+    ctl->newsaved = (struct idlist *)NULL;
 
+    /* get the total message count */
+    gen_send(sockfp, "STAT");
+    ok = pop3_ok(sockfp, buf);
     if (ok == 0)
-      (*firstp)++;
-  }
+       sscanf(buf,"%d %*d", countp);
+    else
+       return(ok);
+
+    /*
+     * Newer, RFC-1725-conformant POP servers may not have the LAST command.
+     * We work as hard as possible to hide this ugliness, but it makes 
+     * counting new messages intrinsically quadratic in the worst case.
+     */
+    last = 0;
+    *newp = -1;
+    if (*countp > 0 && !ctl->fetchall)
+    {
+       char id [IDLEN+1];
 
-  return(0);
-}
+       gen_send(sockfp,"LAST");
+       ok = pop3_ok(sockfp, buf);
+       if (ok == 0)
+       {
+           if (sscanf(buf, "%d", &last) == 0)
+               PROTOCOL_ERROR
+           *newp = (*countp - last);
+       }
+       else
+       {
+           /* grab the mailbox's UID list */
+           if ((ok = gen_transact(sockfp, "UIDL")) != 0)
+               PROTOCOL_ERROR
+           else
+           {
+               int     num;
+
+               *newp = 0;
+               while ((ok = gen_recv(sockfp, buf, sizeof(buf))) == 0)
+               {
+                   if (buf[0] == '.')
+                       break;
+                   else if (sscanf(buf, "%d %s", &num, id) == 2)
+                   {
+                       save_str(&ctl->newsaved, num, id);
+
+                       /* note: ID comparison is caseblind */
+                       if (!str_in_list(&ctl->oldsaved, id))
+                           (*newp)++;
+                   }
+               }
+           }
+       }
+    }
 
-static int pop3_fetch(socket, number, limit, lenp)
-/* request nth message */
-int socket;
-int number;
-int limit;
-int *lenp; 
-{
-    *lenp = 0;
-    if (limit) 
-        return(gen_transact(socket, "TOP %d %d", number, limit));
-      else 
-        return(gen_transact(socket, "RETR %d", number));
+    return(0);
 }
 
-static pop3_trail(socket, queryctl, number)
-/* update the last-seen field for this host */
-int socket;
-struct hostrec *queryctl;
-int number;
+static int pop3_getsizes(FILE *sockfp, int count, int *sizes)
+/* capture the sizes of all messages */
 {
-    if (!use_uidl)
-       return(0);
+    int        ok;
+
+    if ((ok = gen_transact(sockfp, "LIST")) != 0)
+       return(ok);
     else
     {
        char buf [POPBUFSIZE+1];
-       int     ok;
 
-       gen_send(socket, "UIDL %d", number);
-       if ((ok = pop3_ok(socket, buf)) != 0)
-           return(ok);
-       else
+       while ((ok = gen_recv(sockfp, buf, sizeof(buf))) == 0)
        {
-           sscanf(buf, "%*d %s", queryctl->lastid);
-           return(0);
+           int num, size;
+
+           if (buf[0] == '.')
+               break;
+           else if (sscanf(buf, "%d %d", &num, &size) == 2)
+               sizes[num - 1] = size;
+           else
+               sizes[num - 1] = -1;
        }
+
+       return(ok);
+    }
+}
+
+static int pop3_is_old(FILE *sockfp, struct query *ctl, int num)
+/* is the given message old? */
+{
+    if (!ctl->oldsaved)
+       return (num <= last);
+    else
+       /* note: ID comparison is caseblind */
+        return (str_in_list(&ctl->oldsaved,
+                           str_find (&ctl->newsaved, num)));
+}
+
+static int pop3_fetch(FILE *sockfp, struct query *ctl, int number, int *lenp)
+/* request nth message */
+{
+    int ok;
+    char buf [POPBUFSIZE+1], *cp;
+
+    gen_send(sockfp, "RETR %d", number);
+    if ((ok = pop3_ok(sockfp, buf)) != 0)
+       return(ok);
+    /* look for "nnn octets" -- there may or may not be preceding cruft */
+    if ((cp = strstr(buf, " octets")) == (char *)NULL)
+       *lenp = 0;
+    else
+    {
+       while (--cp >= buf && isdigit(*cp))
+           continue;
+       *lenp = atoi(++cp);
     }
+    return(0);
 }
 
-static struct method pop3 =
+static int pop3_delete(FILE *sockfp, struct query *ctl, int number)
+/* delete a given message */
 {
-    "POP3",                            /* Post Office Protocol v3 */
-    110,                               /* standard POP3 port */
-    0,                                 /* this is not a tagged protocol */
-    1,                                 /* this uses a message delimiter */
-    pop3_ok,                           /* parse command response */
-    pop3_getauth,                      /* get authorization */
-    pop3_getrange,                     /* query range of messages */
-    pop3_fetch,                                /* request given message */
-    pop3_trail,                                /* eat message trailer */
-    "DELE %d",                         /* set POP3 delete flag */
-    NULL,                              /* the POP3 expunge command */
-    "QUIT",                            /* the POP3 exit command */
+    return(gen_transact(sockfp, "DELE %d", number));
+}
+
+const static struct method pop3 =
+{
+    "POP3",            /* Post Office Protocol v3 */
+    110,               /* standard POP3 port */
+    0,                 /* this is not a tagged protocol */
+    1,                 /* this uses a message delimiter */
+    pop3_ok,           /* parse command response */
+    pop3_getauth,      /* get authorization */
+    pop3_getrange,     /* query range of messages */
+    pop3_getsizes,     /* we can get a list of sizes */
+    pop3_is_old,       /* how do we tell a message is old? */
+    pop3_fetch,                /* request given message */
+    NULL,              /* no message trailer */
+    pop3_delete,       /* how to delete a message */
+    "QUIT",            /* the POP3 exit command */
 };
 
-int doPOP3 (queryctl)
+int doPOP3 (struct query *ctl)
 /* retrieve messages using POP3 */
-struct hostrec *queryctl;
 {
-    if (queryctl->remotefolder[0]) {
+    if (ctl->mailbox) {
        fprintf(stderr,"Option --remote is not supported with POP3\n");
        return(PS_SYNTAX);
     }
-
-    return(do_protocol(queryctl, &pop3));
+    peek_capable = FALSE;
+    return(do_protocol(ctl, &pop3));
 }
 
-
+/* pop3.c ends here */