pop3.c
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:18k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /*
  2.  * pop3.c -- POP3 protocol methods
  3.  *
  4.  * Copyright 1998 by Eric S. Raymond.
  5.  * For license terms, see the file COPYING in this directory.
  6.  */
  7. #include  "config.h"
  8. #ifdef POP3_ENABLE
  9. #include  <stdio.h>
  10. #include  <string.h>
  11. #include  <ctype.h>
  12. #if defined(HAVE_UNISTD_H)
  13. #include <unistd.h>
  14. #endif
  15. #if defined(STDC_HEADERS)
  16. #include  <stdlib.h>
  17. #endif
  18.  
  19. #include  "fetchmail.h"
  20. #include  "socket.h"
  21. #include  "i18n.h"
  22. #if OPIE_ENABLE
  23. #include <opie.h>
  24. #endif /* OPIE_ENABLE */
  25. #ifndef strstr /* glibc-2.1 declares this as a macro */
  26. extern char *strstr(); /* needed on sysV68 R3V7.1. */
  27. #endif /* strstr */
  28. static int last;
  29. #ifdef SDPS_ENABLE
  30. char *sdps_envfrom;
  31. char *sdps_envto;
  32. #endif /* SDPS_ENABLE */
  33. #if OPIE_ENABLE
  34. static char lastok[POPBUFSIZE+1];
  35. #endif /* OPIE_ENABLE */
  36. int pop3_ok (int sock, char *argbuf)
  37. /* parse command response */
  38. {
  39.     int ok;
  40.     char buf [POPBUFSIZE+1];
  41.     char *bufp;
  42.     if ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)
  43.     {
  44. bufp = buf;
  45. if (*bufp == '+' || *bufp == '-')
  46.     bufp++;
  47. else
  48.     return(PS_PROTOCOL);
  49. while (isalpha(*bufp))
  50.     bufp++;
  51. if (*bufp)
  52.   *(bufp++) = '';
  53. if (strcmp(buf,"+OK") == 0)
  54. {
  55. #if OPIE_ENABLE
  56.     strcpy(lastok, bufp);
  57. #endif /* OPIE_ENABLE */
  58.     ok = 0;
  59. }
  60. else if (strncmp(buf,"-ERR", 4) == 0)
  61. {
  62.     if (stage > STAGE_GETAUTH) 
  63. ok = PS_PROTOCOL;
  64.     /*
  65.      * We're checking for "lock busy", "unable to lock", 
  66.      * "already locked", "wait a few minutes" etc. here. 
  67.      * This indicates that we have to wait for the server to
  68.      * unwedge itself before we can poll again.
  69.      *
  70.      * PS_LOCKBUSY check empirically verified with two recent
  71.      * versions of the Berkeley popper; QPOP (version 2.2)  and
  72.      * QUALCOMM Pop server derived from UCB (version 2.1.4-R3)
  73.      * These are caught by the case-indifferent "lock" check.
  74.      * The "wait" catches "mail storage services unavailable,
  75.      * wait a few minutes and try again" on the InterMail server.
  76.      *
  77.      * If these aren't picked up on correctly, fetchmail will 
  78.      * think there is an authentication failure and wedge the
  79.      * connection in order to prevent futile polls.
  80.      *
  81.      * Gad, what a kluge.
  82.      */
  83.     else if (strstr(bufp,"lock")
  84.      || strstr(bufp,"Lock")
  85.      || strstr(bufp,"LOCK")
  86.      || strstr(bufp,"wait")
  87.      /* these are blessed by RFC 2449 */
  88.      || strstr(bufp,"[IN-USE]")||strstr(bufp,"[LOGIN-DELAY]"))
  89. ok = PS_LOCKBUSY;
  90.     else
  91. ok = PS_AUTHFAIL;
  92.     if (*bufp)
  93.       report(stderr, "%sn", bufp);
  94. }
  95. else
  96.     ok = PS_PROTOCOL;
  97. if (argbuf != NULL)
  98.     strcpy(argbuf,bufp);
  99.     }
  100.     return(ok);
  101. }
  102. int pop3_getauth(int sock, struct query *ctl, char *greeting)
  103. /* apply for connection authorization */
  104. {
  105.     int ok;
  106.     char *start,*end;
  107.     char *msg;
  108. #if OPIE_ENABLE
  109.     char *challenge;
  110. #endif /* OPIE_ENABLE */
  111. #ifdef SDPS_ENABLE
  112.     /*
  113.      * This needs to catch both demon.co.uk and demon.net.
  114.      * If we see either, and we're in multidrop mode, try to use
  115.      * the SDPS *ENV extension.
  116.      */
  117.     if (!(ctl->server.sdps) && MULTIDROP(ctl) && strstr(greeting, "demon."))
  118.         ctl->server.sdps = TRUE;
  119. #endif /* SDPS_ENABLE */
  120.     /* 
  121.      * In theory, we ought to probe with CAPA here (RFC 2449).
  122.      * But AFAIK this commpand is not widely implemented, and
  123.      * we have our own tests for optional commands, and it seems
  124.      * vanishingly unlikely that the RFC 2449 extended responses
  125.      * [IN-USE] and [LOGIN-DELAY] will ever be accidentally spoofed.
  126.      * So we'll not bother, and save ourselves the overhead.
  127.      */
  128.     switch (ctl->server.protocol) {
  129.     case P_POP3:
  130. #ifdef RPA_ENABLE
  131. /* CompuServe POP3 Servers as of 990730 want AUTH first for RPA */
  132. if (strstr(ctl->remotename, "@compuserve.com"))
  133. {
  134.     /* AUTH command should return a list of available mechanisms */
  135.     if (gen_transact(sock, "AUTH") == 0)
  136.     {
  137. char buffer[10];
  138. flag has_rpa = FALSE;
  139. while ((ok = gen_recv(sock, buffer, sizeof(buffer))) == 0)
  140. {
  141.     if (buffer[0] == '.')
  142. break;
  143.     if (strncasecmp(buffer, "rpa", 3) == 0)
  144. has_rpa = TRUE;
  145. }
  146. if (has_rpa && !POP3_auth_rpa(ctl->remotename, 
  147.       ctl->password, sock))
  148.     return(PS_SUCCESS);
  149.     }
  150.     return(PS_AUTHFAIL);
  151. }
  152. else /* not a CompuServe account */
  153. #endif /* RPA_ENABLE */
  154.     ok = gen_transact(sock, "USER %s", ctl->remotename);
  155. #if OPIE_ENABLE
  156. /* see RFC1938: A One-Time Password System */
  157. if (challenge = strstr(lastok, "otp-")) {
  158.   char response[OPIE_RESPONSE_MAX+1];
  159.   int i;
  160.   i = opiegenerator(challenge, !strcmp(ctl->password, "opie") ? "" : ctl->password, response);
  161.   if ((i == -2) && !run.poll_interval) {
  162.     char secret[OPIE_SECRET_MAX+1];
  163.     fprintf(stderr, _("Secret pass phrase: "));
  164.     if (opiereadpass(secret, sizeof(secret), 0))
  165.       i = opiegenerator(challenge,  secret, response);
  166.     memset(secret, 0, sizeof(secret));
  167.   };
  168.   if (i) {
  169.     ok = PS_ERROR;
  170.     break;
  171.   };
  172.   ok = gen_transact(sock, "PASS %s", response);
  173.   break;
  174. }
  175. #endif /* OPIE_ENABLE */
  176. /* ordinary validation, no one-time password or RPA */ 
  177. ok = gen_transact(sock, "PASS %s", ctl->password);
  178. break;
  179.     case P_APOP:
  180. /* build MD5 digest from greeting timestamp + password */
  181. /* find start of timestamp */
  182. for (start = greeting;  *start != 0 && *start != '<';  start++)
  183.     continue;
  184. if (*start == 0) {
  185.     report(stderr,
  186.    _("Required APOP timestamp not found in greetingn"));
  187.     return(PS_AUTHFAIL);
  188. }
  189. /* find end of timestamp */
  190. for (end = start;  *end != 0  && *end != '>';  end++)
  191.     continue;
  192. if (*end == 0 || end == start + 1) {
  193.     report(stderr, 
  194.    _("Timestamp syntax error in greetingn"));
  195.     return(PS_AUTHFAIL);
  196. }
  197. else
  198.     *++end = '';
  199. /* copy timestamp and password into digestion buffer */
  200. xalloca(msg, char *, (end-start+1) + strlen(ctl->password) + 1);
  201. strcpy(msg,start);
  202. strcat(msg,ctl->password);
  203. strcpy(ctl->digest, MD5Digest((unsigned char *)msg));
  204. ok = gen_transact(sock, "APOP %s %s", ctl->remotename, ctl->digest);
  205. break;
  206.     case P_RPOP:
  207. if ((ok = gen_transact(sock,"USER %s", ctl->remotename)) == 0)
  208.     ok = gen_transact(sock, "RPOP %s", ctl->password);
  209. break;
  210.     default:
  211. report(stderr, _("Undefined protocol request in POP3_authn"));
  212. ok = PS_ERROR;
  213.     }
  214.     if (ok != 0)
  215.     {
  216. /* maybe we detected a lock-busy condition? */
  217.         if (ok == PS_LOCKBUSY)
  218.     report(stderr, _("lock busy!  Is another session active?n")); 
  219. return(ok);
  220.     }
  221.     /*
  222.      * Empirical experience shows some server/OS combinations
  223.      * may need a brief pause even after any lockfiles on the
  224.      * server are released, to give the server time to finish
  225.      * copying back very large mailfolders from the temp-file...
  226.      * this is only ever an issue with extremely large mailboxes.
  227.      */
  228.     sleep(3); /* to be _really_ safe, probably need sleep(5)! */
  229.     /* we're peek-capable if use of TOP is enabled */
  230.     peek_capable = !(ctl->fetchall || ctl->keep);
  231.     /* we're approved */
  232.     return(PS_SUCCESS);
  233. }
  234. static int
  235. pop3_gettopid( int sock, int num , char *id)
  236. {
  237.     int ok;
  238.     int got_it;
  239.     char buf [POPBUFSIZE+1];
  240.     sprintf( buf, "TOP %d 1", num );
  241.     if( (ok = gen_transact(sock, buf ) ) != 0 )
  242.        return ok; 
  243.     got_it = 0;
  244.     while((ok = gen_recv(sock, buf, sizeof(buf))) == 0) {
  245. if( buf[0] == '.' )
  246.     break;
  247. if( ! got_it && ! strncasecmp("Message-Id:", buf, 11 )) {
  248.     got_it = 1;
  249.     /* prevent stack overflows */
  250.     buf[IDLEN+12] = 0;
  251.     sscanf( buf+12, "%s", id);
  252. }
  253.     }
  254.     return 0;
  255. }
  256. static int
  257. pop3_slowuidl( int sock,  struct query *ctl, int *countp, int *newp)
  258. {
  259.     /* This approach tries to get the message headers from the
  260.      * remote hosts and compares the message-id to the already known
  261.      * ones:
  262.      *  + if the first message containes a new id, all messages on
  263.      *    the server will be new
  264.      *  + if the first is known, try to estimate the last known message
  265.      *    on the server and check. If this works you know the total number
  266.      *    of messages to get.
  267.      *  + Otherwise run a binary search to determine the last known message
  268.      */
  269.     int ok, nolinear = 0;
  270.     int first_nr, list_len, try_id, try_nr, add_id;
  271.     int num;
  272.     char id [IDLEN+1];
  273.     
  274.     if( (ok = pop3_gettopid( sock, 1, id )) != 0 )
  275. return ok;
  276.     
  277.     if( ( first_nr = str_nr_in_list(&ctl->oldsaved, id) ) == -1 ) {
  278. /* the first message is unknown -> all messages are new */
  279. *newp = *countp;
  280. return 0;
  281.     }
  282.     /* check where we expect the latest known message */
  283.     list_len = count_list( &ctl->oldsaved );
  284.     try_id = list_len  - first_nr; /* -1 + 1 */
  285.     if( try_id > 1 ) {
  286. if( try_id <= *countp ) {
  287.     if( (ok = pop3_gettopid( sock, try_id, id )) != 0 )
  288. return ok;
  289.     
  290.     try_nr = str_nr_last_in_list(&ctl->oldsaved, id);
  291. } else {
  292.     try_id = *countp+1;
  293.     try_nr = -1;
  294. }
  295. if( try_nr != list_len -1 ) {
  296.     /* some messages inbetween have been deleted... */
  297.     if( try_nr == -1 ) {
  298. nolinear = 1;
  299. for( add_id = 1<<30; add_id > try_id-1; add_id >>= 1 )
  300.     ;
  301. for( ; add_id; add_id >>= 1 ) {
  302.     if( try_nr == -1 ) {
  303. if( try_id - add_id <= 1 ) {
  304.     continue;
  305. }
  306. try_id -= add_id;
  307.     } else 
  308. try_id += add_id;
  309.     
  310.     if( (ok = pop3_gettopid( sock, try_id, id )) != 0 )
  311. return ok;
  312.     try_nr = str_nr_in_list(&ctl->oldsaved, id);
  313. }
  314. if( try_nr == -1 ) {
  315.     try_id--;
  316. }
  317.     } else {
  318. report(stderr, 
  319.        _("Messages inserted into list on server. Cannot handle this.n"));
  320. return -1;
  321.     }
  322.     }
  323.     /* the first try_id messages are known -> copy them to the newsaved list */
  324.     for( num = first_nr; num < list_len; num++ )
  325.     {
  326. struct idlist *new = save_str(&ctl->newsaved, 
  327. str_from_nr_list(&ctl->oldsaved, num),
  328. UID_UNSEEN);
  329. new->val.status.num = num - first_nr + 1;
  330.     }
  331.     if( nolinear ) {
  332. free_str_list(&ctl->oldsaved);
  333. ctl->oldsaved = 0;
  334. last = try_id;
  335.     }
  336.     *newp = *countp - try_id;
  337.     return 0;
  338. }
  339. static int pop3_getrange(int sock, 
  340.  struct query *ctl,
  341.  const char *folder,
  342.  int *countp, int *newp, int *bytes)
  343. /* get range of messages to be fetched */
  344. {
  345.     int ok;
  346.     char buf [POPBUFSIZE+1];
  347.     /* Ensure that the new list is properly empty */
  348.     ctl->newsaved = (struct idlist *)NULL;
  349. #ifdef MBOX
  350.     /* Alain Knaff suggests this, but it's not RFC standard */
  351.     if (folder)
  352. if ((ok = gen_transact(sock, "MBOX %s", folder)))
  353.     return ok;
  354. #endif /* MBOX */
  355.     /* get the total message count */
  356.     gen_send(sock, "STAT");
  357.     ok = pop3_ok(sock, buf);
  358.     if (ok == 0)
  359. sscanf(buf,"%d %d", countp, bytes);
  360.     else
  361. return(ok);
  362.     /*
  363.      * Newer, RFC-1725-conformant POP servers may not have the LAST command.
  364.      * We work as hard as possible to hide this ugliness, but it makes 
  365.      * counting new messages intrinsically quadratic in the worst case.
  366.      */
  367.     last = 0;
  368.     *newp = -1;
  369.     if (*countp > 0 && !ctl->fetchall)
  370.     {
  371. char id [IDLEN+1];
  372. if (!ctl->server.uidl) {
  373.     gen_send(sock, "LAST");
  374.     ok = pop3_ok(sock, buf);
  375. } else
  376.     ok = 1;
  377. if (ok == 0)
  378. {
  379.     if (sscanf(buf, "%d", &last) == 0)
  380.     {
  381. report(stderr, _("protocol errorn"));
  382. return(PS_ERROR);
  383.     }
  384.     *newp = (*countp - last);
  385. }
  386.   else
  387.   {
  388.     /* grab the mailbox's UID list */
  389.     if ((ok = gen_transact(sock, "UIDL")) != 0)
  390.     {
  391. /* don't worry, yet! do it the slow way */
  392. if((ok = pop3_slowuidl( sock, ctl, countp, newp))!=0)
  393. {
  394.     report(stderr, _("protocol error while fetching UIDLsn"));
  395.     return(PS_ERROR);
  396. }
  397.     }
  398.     else
  399.     {
  400. int num;
  401. *newp = 0;
  402.   while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)
  403. {
  404.       if (buf[0] == '.')
  405.   break;
  406.       else if (sscanf(buf, "%d %s", &num, id) == 2)
  407.     {
  408.   struct idlist *new;
  409. new = save_str(&ctl->newsaved, id, UID_UNSEEN);
  410. new->val.status.num = num;
  411. if (str_in_list(&ctl->oldsaved, id, FALSE)) {
  412.     new->val.status.mark = UID_SEEN;
  413.     str_set_mark(&ctl->oldsaved, id, UID_SEEN);
  414. }
  415. else
  416.     (*newp)++;
  417.     }
  418.   }
  419.       }
  420.   }
  421.     }
  422.     return(PS_SUCCESS);
  423. }
  424. static int pop3_getsizes(int sock, int count, int *sizes)
  425. /* capture the sizes of all messages */
  426. {
  427.     int ok;
  428.     if ((ok = gen_transact(sock, "LIST")) != 0)
  429. return(ok);
  430.     else
  431.     {
  432. char buf [POPBUFSIZE+1];
  433. while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)
  434. {
  435.     int num, size;
  436.     if (buf[0] == '.')
  437. break;
  438.     else if (sscanf(buf, "%d %d", &num, &size) == 2)
  439. sizes[num - 1] = size;
  440. }
  441. return(ok);
  442.     }
  443. }
  444. static int pop3_is_old(int sock, struct query *ctl, int num)
  445. /* is the given message old? */
  446. {
  447.     if (!ctl->oldsaved)
  448. return (num <= last);
  449.     else
  450.         return (str_in_list(&ctl->oldsaved,
  451.     str_find(&ctl->newsaved, num), FALSE));
  452. }
  453. #ifdef UNUSED
  454. /*
  455.  * We could use this to fetch headers only as we do for IMAP.  The trouble 
  456.  * is that there's no way to fetch the body only.  So the following RETR 
  457.  * would have to re-fetch the header.  Enough messages have longer headers
  458.  * than bodies to make this a net loss.
  459.  */
  460. static int pop_fetch_headers(int sock, struct query *ctl,int number,int *lenp)
  461. /* request headers of nth message */
  462. {
  463.     int ok;
  464.     char buf[POPBUFSIZE+1];
  465.     gen_send(sock, "TOP %d 0", number);
  466.     if ((ok = pop3_ok(sock, buf)) != 0)
  467. return(ok);
  468.     *lenp = -1; /* we got sizes from the LIST response */
  469.     return(PS_SUCCESS);
  470. }
  471. #endif /* UNUSED */
  472. static int pop3_fetch(int sock, struct query *ctl, int number, int *lenp)
  473. /* request nth message */
  474. {
  475.     int ok;
  476.     char buf[POPBUFSIZE+1];
  477. #ifdef SDPS_ENABLE
  478.     /*
  479.      * See http://www.demon.net/services/mail/sdps-tech.html
  480.      * for a description of what we're parsing here.
  481.      */
  482.     if (ctl->server.sdps)
  483.     {
  484. int linecount = 0;
  485. sdps_envfrom = (char *)NULL;
  486. sdps_envto = (char *)NULL;
  487. gen_send(sock, "*ENV %d", number);
  488. do {
  489.     if (gen_recv(sock, buf, sizeof(buf)))
  490.             {
  491.                 break;
  492.             }
  493.             linecount++;
  494.     switch (linecount) {
  495.     case 4:
  496. /* No need to wrap envelope from address */
  497. sdps_envfrom = xmalloc(strlen(buf)+1);
  498. strcpy(sdps_envfrom,buf);
  499. break;
  500.     case 5:
  501.                 /* Wrap address with To: <> so nxtaddr() likes it */
  502.                 sdps_envto = xmalloc(strlen(buf)+7);
  503.                 sprintf(sdps_envto,"To: <%s>",buf);
  504. break;
  505.             }
  506. } while
  507.     (!(buf[0] == '.' && (buf[1] == 'r' || buf[1] == 'n' || buf[1] == '')));
  508.     }
  509. #endif /* SDPS_ENABLE */
  510.     /*
  511.      * Though the POP RFCs don't document this fact, on almost every
  512.      * POP3 server I know of messages are marked "seen" only at the
  513.      * time the OK response to a RETR is issued.
  514.      *
  515.      * This means we can use TOP to fetch the message without setting its
  516.      * seen flag.  This is good!  It means that if the protocol exchange
  517.      * craps out during the message, it will still be marked `unseen' on
  518.      * the server.  (Exception: in early 1999 SpryNet's POP3 servers were
  519.      * reported to mark messages seen on a TOP fetch.)
  520.      *
  521.      * However...*don't* do this if we're using keep to suppress deletion!
  522.      * In that case, marking the seen flag is the only way to prevent the
  523.      * message from being re-fetched on subsequent runs.
  524.      *
  525.      * Also use RETR if fetchall is on.  This gives us a workaround
  526.      * for servers like usa.net's that bungle TOP.  It's pretty
  527.      * harmless because fetchall guarantees that any message dropped
  528.      * by an interrupted RETR will be picked up on the next poll of the
  529.      * site.
  530.      *
  531.      * We take advantage here of the fact that, according to all the
  532.      * POP RFCs, "if the number of lines requested by the POP3 client
  533.      * is greater than than the number of lines in the body, then the
  534.      * POP3 server sends the entire message.").
  535.      *
  536.      * The line count passed (99999999) is the maximum value CompuServe will
  537.      * accept; it's much lower than the natural value 2147483646 (the maximum
  538.      * twos-complement signed 32-bit integer minus 1) */
  539.     if (ctl->keep || ctl->fetchall)
  540. gen_send(sock, "RETR %d", number);
  541.     else
  542. gen_send(sock, "TOP %d 99999999", number);
  543.     if ((ok = pop3_ok(sock, buf)) != 0)
  544. return(ok);
  545.     *lenp = -1; /* we got sizes from the LIST response */
  546.     return(PS_SUCCESS);
  547. }
  548. static int pop3_delete(int sock, struct query *ctl, int number)
  549. /* delete a given message */
  550. {
  551.     /* actually, mark for deletion -- doesn't happen until QUIT time */
  552.     return(gen_transact(sock, "DELE %d", number));
  553. }
  554. static int pop3_logout(int sock, struct query *ctl)
  555. /* send logout command */
  556. {
  557.     int ok;
  558.     ok = gen_transact(sock, "QUIT");
  559.     if (!ok)
  560. expunge_uids(ctl);
  561.     return(ok);
  562. }
  563. const static struct method pop3 =
  564. {
  565.     "POP3", /* Post Office Protocol v3 */
  566. #if INET6_ENABLE
  567.     "pop3", /* standard POP3 port */
  568.     "pop3s", /* ssl POP3 port */
  569. #else /* INET6_ENABLE */
  570.     110, /* standard POP3 port */
  571.     995, /* ssl POP3 port */
  572. #endif /* INET6_ENABLE */
  573.     FALSE, /* this is not a tagged protocol */
  574.     TRUE, /* this uses a message delimiter */
  575.     pop3_ok, /* parse command response */
  576.     NULL, /* no password canonicalization */
  577.     pop3_getauth, /* get authorization */
  578.     pop3_getrange, /* query range of messages */
  579.     pop3_getsizes, /* we can get a list of sizes */
  580.     pop3_is_old, /* how do we tell a message is old? */
  581.     pop3_fetch, /* request given message */
  582.     NULL, /* no way to fetch body alone */
  583.     NULL, /* no message trailer */
  584.     pop3_delete, /* how to delete a message */
  585.     pop3_logout, /* log out, we're done */
  586.     FALSE, /* no, we can't re-poll */
  587. };
  588. int doPOP3 (struct query *ctl)
  589. /* retrieve messages using POP3 */
  590. {
  591. #ifndef MBOX
  592.     if (ctl->mailboxes->id) {
  593. fprintf(stderr,_("Option --remote is not supported with POP3n"));
  594. return(PS_SYNTAX);
  595.     }
  596. #endif /* MBOX */
  597.     peek_capable = !ctl->fetchall;
  598.     return(do_protocol(ctl, &pop3));
  599. }
  600. #endif /* POP3_ENABLE */
  601. /* pop3.c ends here */