]> Pileus Git - ~andy/fetchmail/blobdiff - transact.c
Cosmetic fix.
[~andy/fetchmail] / transact.c
index 82729aa6b9fa6cbb1954fdd4bbb4305e94f08019..e98be34669e179be0535c5c9b554652a846542c4 100644 (file)
@@ -40,7 +40,7 @@ extern char *strstr();        /* needed on sysV68 R3V7.1. */
 
 int mytimeout;         /* value of nonreponse timeout */
 int suppress_tags;     /* emit tags? */
-char shroud[PASSWORDLEN*2+1];  /* string to shroud in debug output */
+char shroud[PASSWORDLEN*2+3];  /* string to shroud in debug output */
 struct msgblk msgblk;
 
 char tag[TAGLEN];
@@ -337,19 +337,30 @@ static char *parse_received(struct query *ctl, char *bufp)
 /* shared by readheaders and readbody */
 static int sizeticker;
 
-#define EMPTYLINE(s)   ((s)[0] == '\r' && (s)[1] == '\n' && (s)[2] == '\0')
+#define EMPTYLINE(s)   (((s)[0] == '\r' && (s)[1] == '\n' && (s)[2] == '\0') \
+                       || ((s)[0] == '\n' && (s)[1] == '\0'))
+
+static int end_of_header (const char *s)
+/* accept "\r*\n" as EOH in order to be bulletproof against broken survers */
+{
+    while (s[0] == '\r')
+       s++;
+    return (s[0] == '\n' && s[1] == '\0');
+}
 
 int readheaders(int sock,
                       long fetchlen,
                       long reallen,
                       struct query *ctl,
-                      int num)
+                      int num,
+                      flag *suppress_readbody)
 /* read message headers and ship to SMTP or MDA */
 /*   sock:             to which the server is connected */
 /*   fetchlen:         length of message according to fetch response */
 /*   reallen:          length of message according to getsizes */
 /*   ctl:              query control record */
 /*   num:              index of message */
+/*   suppress_readbody:        whether call to readbody() should be supressed */
 {
     struct addrblk
     {
@@ -365,15 +376,18 @@ int readheaders(int sock,
     int                        from_offs, reply_to_offs, resent_from_offs;
     int                        app_from_offs, sender_offs, resent_sender_offs;
     int                        env_offs;
-    char               *received_for, *rcv, *cp, *delivered_to;
+    char               *received_for, *rcv, *cp;
+    static char                *delivered_to = NULL;
     int                n, linelen, oldlen, ch, remaining, skipcount;
     struct idlist      *idp;
     flag               no_local_matches = FALSE;
-    flag               headers_ok, has_nuls;
+    flag               has_nuls;
     int                        olderrs, good_addresses, bad_addresses;
+    int                        retain_mail = 0, refuse_mail = 0;
+    flag               already_has_return_path = FALSE;
 
     sizeticker = 0;
-    has_nuls = headers_ok = FALSE;
+    has_nuls = FALSE;
     msgblk.return_path[0] = '\0';
     olderrs = ctl->errcount;
 
@@ -389,6 +403,8 @@ int readheaders(int sock,
     if (msgblk.headers)
        free(msgblk.headers);
     free_str_list(&msgblk.recipients);
+    if (delivered_to)
+       free(delivered_to);
 
     /* initially, no message ID */
     if (ctl->thisid)
@@ -403,9 +419,9 @@ int readheaders(int sock,
     skipcount = 0;
     ctl->mimemsg = 0;
 
-    for (remaining = fetchlen; remaining > 0 || protocol->delimited; remaining -= linelen)
+    for (remaining = fetchlen; remaining > 0 || protocol->delimited; )
     {
-       char *line;
+       char *line, *rline;
        int overlong = FALSE;
 
        line = xmalloc(sizeof(buf));
@@ -421,61 +437,68 @@ int readheaders(int sock,
                return(PS_SOCKET);
            }
            set_timeout(0);
+
+           remaining -= n;
            linelen += n;
            msgblk.msglen += n;
 
-               /*
-                * Try to gracefully handle the case, where the length of a
-                * line exceeds MSGBUFSIZE.
-                */
-               if ( n && buf[n-1] != '\n' ) {
-                       unsigned int llen = strlen(line);
-                       overlong = TRUE;
-                       line = realloc(line, llen + n + 1);
-                       strcpy(line + llen, buf);
-                       ch = ' '; /* So the next iteration starts */
-                       continue;
+           /*
+            * Try to gracefully handle the case where the length of a
+            * line exceeds MSGBUFSIZE.
+            */
+           if (n && buf[n-1] != '\n') 
+           {
+               overlong = TRUE;
+               rline = (char *) realloc(line, linelen + 1);
+               if (rline == NULL)
+               {
+                   free (line);
+                   return(PS_IOERR);
                }
+               line = rline;
+               memcpy(line + linelen - n, buf, n);
+               line[linelen] = '\0';
+               ch = ' '; /* So the next iteration starts */
+               continue;
+           }
 
            /* lines may not be properly CRLF terminated; fix this for qmail */
-           if (ctl->forcecr)
+           /* we don't want to overflow the buffer here */
+           if (ctl->forcecr && buf[n-1]=='\n' && (n==1 || buf[n-2]!='\r'))
            {
-               cp = buf + strlen(buf) - 1;
-               if (*cp == '\n' && (cp == buf || cp[-1] != '\r'))
+               char * tcp;
+               rline = (char *) realloc(line, linelen + 2);
+               if (rline == NULL)
                {
-                   *cp++ = '\r';
-                   *cp++ = '\n';
-                   *cp++ = '\0';
+                   free (line);
+                   return(PS_IOERR);
                }
+               line = rline;
+               memcpy(line + linelen - n, buf, n - 1);
+               tcp = line + linelen - 1;
+               *tcp++ = '\r';
+               *tcp++ = '\n';
+               *tcp++ = '\0';
+               n++;
+               linelen++;
            }
-
-               /*
-                * Decode MIME encoded headers. We MUST do this before
-                * looking at the Content-Type / Content-Transfer-Encoding
-                * headers (RFC 2046).
-                */
-               if ( ctl->mimedecode && overlong ) {
-                       /*
-                        * If we received an overlong line, we have to decode the
-                        * whole line at once.
-                        */
-                       line = (char *) realloc(line, strlen(line) + strlen(buf) +1);
-                       strcat(line, buf);
-                       UnMimeHeader(line);
-               }
-               else {
-                       if ( ctl->mimedecode )
-                               UnMimeHeader(buf);
-
-                       line = (char *) realloc(line, strlen(line) + strlen(buf) +1);
-                       strcat(line, buf);
+           else
+           {
+               rline = (char *) realloc(line, linelen + 1);
+               if (rline == NULL)
+               {
+                   free (line);
+                   return(PS_IOERR);
                }
+               line = rline;
+               memcpy(line + linelen - n, buf, n + 1);
+           }
 
            /* check for end of headers */
-           if (EMPTYLINE(line))
+           if (end_of_header(line))
            {
-               headers_ok = TRUE;
-               has_nuls = (linelen != strlen(line));
+               if (linelen != strlen (line))
+                   has_nuls = TRUE;
                free(line);
                goto process_headers;
            }
@@ -487,8 +510,13 @@ int readheaders(int sock,
             */
            if (protocol->delimited && line[0] == '.' && EMPTYLINE(line+1))
            {
-               headers_ok = FALSE;
-               has_nuls = (linelen != strlen(line));
+               if (outlevel > O_SILENT)
+                   report(stdout,
+                          GT_("message delimiter found while scanning headers\n"));
+               if (suppress_readbody)
+                   *suppress_readbody = TRUE;
+               if (linelen != strlen (line))
+                   has_nuls = TRUE;
                free(line);
                goto process_headers;
            }
@@ -497,15 +525,18 @@ int readheaders(int sock,
             * At least one brain-dead website (netmind.com) is known to
             * send out robotmail that's missing the RFC822 delimiter blank
             * line before the body! Without this check fetchmail segfaults.
-            * With it, we treat such messages as though they had the missing
-            * blank line.
+            * With it, we treat such messages as spam and refuse them.
             */
-           if (!isspace(line[0]) && !strchr(line, ':'))
+           if (!refuse_mail && !isspace(line[0]) && !strchr(line, ':'))
            {
-               headers_ok = FALSE;
-               has_nuls = (linelen != strlen(line));
-               free(line);
-               goto process_headers;
+               if (linelen != strlen (line))
+                   has_nuls = TRUE;
+               if (outlevel > O_SILENT)
+                   report(stdout,
+                          GT_("incorrect header line found while scanning headers\n"));
+               if (outlevel >= O_VERBOSE)
+                   report (stdout, GT_("line: %s"), line);
+               refuse_mail = 1;
            }
 
            /* check for RFC822 continuations */
@@ -521,7 +552,7 @@ int readheaders(int sock,
            sizeticker += linelen;
            while (sizeticker >= SIZETICKER)
            {
-               if ((!run.use_syslog && !isafile(1)) || run.showdots)
+               if (outlevel > O_SILENT && run.showdots)
                {
                    fputc('.', stdout);
                    fflush(stdout);
@@ -529,9 +560,33 @@ int readheaders(int sock,
                sizeticker -= SIZETICKER;
            }
        }
+               /*
+                * Decode MIME encoded headers. We MUST do this before
+                * looking at the Content-Type / Content-Transfer-Encoding
+                * headers (RFC 2046).
+                */
+               if ( ctl->mimedecode )
+               {
+                   char *tcp;
+                   UnMimeHeader(line);
+                   /* the line is now shorter. So we retrace back till we find our terminating
+                    * combination \n\0, we move backwards to make sure that we don't catch som
+                    * \n\0 stored in the decoded part of the message */
+                   for(tcp = line + linelen - 1; tcp > line && (*tcp != 0 || tcp[-1] != '\n'); tcp--);
+                   if(tcp > line) linelen = tcp - line;
+               }
+
+
+       /* skip processing if we are going to retain or refuse this mail */
+       if (retain_mail || refuse_mail)
+       {
+           free(line);
+           continue;
+       }
 
        /* we see an ordinary (non-header, non-message-delimiter line */
-       has_nuls = (linelen != strlen(line));
+       if (linelen != strlen (line))
+           has_nuls = TRUE;
 
        /* save the message's ID, we may use it for killing duplicates later */
        if (MULTIDROP(ctl) && !strncasecmp(line, "Message-ID:", 11))
@@ -559,9 +614,8 @@ int readheaders(int sock,
 #endif /* POP2_ENABLE */
            if (num == 1 && !strncasecmp(line, "X-IMAP:", 7)) {
                free(line);
-               free(msgblk.headers);
-               msgblk.headers = NULL;
-               return(PS_RETAINED);
+               retain_mail = 1;
+               continue;
            }
 
        /*
@@ -640,7 +694,7 @@ int readheaders(int sock,
        }
 
        if (ctl->rewrite)
-           line = reply_hack(line, ctl->server.truename);
+           line = reply_hack(line, ctl->server.truename, &linelen);
 
        /*
         * OK, this is messy.  If we're forwarding by SMTP, it's the
@@ -663,9 +717,17 @@ int readheaders(int sock,
         * not trigger bounces if delivery fails.  What we *do* need to do is
         * make sure we never try to rewrite such a blank Return-Path.  We
         * handle this with a check for <> in the rewrite logic above.
+        *
+        * Also, if an email has multiple Return-Path: statement, we only
+        * read the first occurance, as some spam email has more than one
+        * Return-Path.
+        *
         */
-       if (!strncasecmp("Return-Path:", line, 12) && (cp = nxtaddr(line)))
+       if ((already_has_return_path==FALSE) && !strncasecmp("Return-Path:", line, 12) && (cp = nxtaddr(line)))
        {
+           already_has_return_path = TRUE;
+           if (cp[0]=='\0')    /* nxtaddr() strips the brackets... */
+               cp="<>";
            strncpy(msgblk.return_path, cp, sizeof(msgblk.return_path));
            msgblk.return_path[sizeof(msgblk.return_path)-1] = '\0';
            if (!ctl->mda) {
@@ -676,9 +738,10 @@ int readheaders(int sock,
 
        if (!msgblk.headers)
        {
-           oldlen = strlen(line);
+           oldlen = linelen;
            msgblk.headers = xmalloc(oldlen + 1);
-           (void) strcpy(msgblk.headers, line);
+           (void) memcpy(msgblk.headers, line, linelen);
+           msgblk.headers[oldlen] = '\0';
            free(line);
            line = msgblk.headers;
        }
@@ -687,14 +750,15 @@ int readheaders(int sock,
            char *newhdrs;
            int newlen;
 
-           newlen = oldlen + strlen(line);
+           newlen = oldlen + linelen;
            newhdrs = (char *) realloc(msgblk.headers, newlen + 1);
            if (newhdrs == NULL) {
                free(line);
                return(PS_IOERR);
            }
            msgblk.headers = newhdrs;
-           strcpy(msgblk.headers + oldlen, line);
+           memcpy(msgblk.headers + oldlen, line, linelen);
+           msgblk.headers[newlen] = '\0';
            free(line);
            line = msgblk.headers + oldlen;
            oldlen = newlen;
@@ -721,10 +785,10 @@ int readheaders(int sock,
         * human user or a computer program) rather than a standard
         * address."  That implies that the contents of the Sender
         * field don't need to be a legal email address at all So
-        * ignore any Sender or Resent-Semnder lines unless they
+        * ignore any Sender or Resent-Sender lines unless they
         * contain @.
         *
-        * (RFC2822 says the condents of Sender must be a valid mailbox
+        * (RFC2822 says the contents of Sender must be a valid mailbox
         * address, which is also what RFC822 4.4.4 implies.)
         */
        else if (!strncasecmp("Sender:", line, 7) && (strchr(line, '@') || strchr(line, '!')))
@@ -799,6 +863,15 @@ int readheaders(int sock,
     }
 
  process_headers:    
+
+    if (retain_mail)
+    {
+       free(msgblk.headers);
+       msgblk.headers = NULL;
+       return(PS_RETAINED);
+    }
+    if (refuse_mail)
+       return(PS_REFUSED);
     /*
      * When mail delivered to a multidrop mailbox on the server is
      * addressed to multiple people on the client machine, there will
@@ -844,17 +917,6 @@ int readheaders(int sock,
        }
     }
 
-    /*
-     * We want to detect this early in case there are so few headers that the
-     * dispatch logic barfs.
-     */
-    if (!headers_ok)
-    {
-       if (outlevel > O_SILENT)
-           report(stdout,
-                  GT_("message delimiter found while scanning headers\n"));
-    }
-
     /*
      * Hack time.  If the first line of the message was blank, with no headers
      * (this happens occasionally due to bad gatewaying software) cons up
@@ -947,6 +1009,7 @@ int readheaders(int sock,
    {
            find_server_names(delivered_to, ctl, &msgblk.recipients);
        free(delivered_to);
+       delivered_to = NULL;
    }
        else if (received_for)
            /*
@@ -1233,7 +1296,7 @@ int readheaders(int sock,
     *cp++ = '\0';
     stuffline(ctl, buf);
 
-    return(headers_ok ? PS_SUCCESS : PS_TRUNCATED);
+    return(PS_SUCCESS);
 }
 
 int readbody(int sock, struct query *ctl, flag forward, int len)
@@ -1275,7 +1338,7 @@ int readbody(int sock, struct query *ctl, flag forward, int len)
            sizeticker += linelen;
            while (sizeticker >= SIZETICKER)
            {
-               if (outlevel > O_SILENT && (((run.poll_interval == 0 || nodetach) && !isafile(1)) || run.showdots))
+               if (outlevel > O_SILENT && run.showdots)
                {
                    fputc('.', stdout);
                    fflush(stdout);
@@ -1288,9 +1351,7 @@ int readbody(int sock, struct query *ctl, flag forward, int len)
        /* check for end of message */
        if (protocol->delimited && *inbufp == '.')
        {
-           if (inbufp[1] == '\r' && inbufp[2] == '\n' && inbufp[3] == '\0')
-               break;
-           else if (inbufp[1] == '\n' && inbufp[2] == '\0')
+           if (EMPTYLINE(inbufp+1))
                break;
            else
                msgblk.msglen--;        /* subtract the size of the dot escape */
@@ -1362,7 +1423,7 @@ static void enshroud(char *buf)
        char    *sp;
 
        sp = cp + strlen(shroud);
-       *cp = '*';
+       *cp++ = '*';
        while (*sp)
            *cp++ = *sp++;
        *cp = '\0';
@@ -1428,7 +1489,13 @@ int size;        /* length of buffer */
     {
        set_timeout(0);
        phase = oldphase;
-       return(PS_SOCKET);
+       if(isidletimeout())
+       {
+         resetidletimeout();
+         return(PS_IDLETIMEOUT);
+       }
+       else
+         return(PS_SOCKET);
     }
     else
     {