]> Pileus Git - ~andy/fetchmail/blob - uid.c
6516c3294fa520e4aec1b66ca499bb05ac10e097
[~andy/fetchmail] / uid.c
1 /*
2  * uid.c -- UIDL handling for POP3 servers without LAST
3  *
4  * For license terms, see the file COPYING in this directory.
5  */
6
7 #include "config.h"
8
9 #include <sys/stat.h>
10 #include <errno.h>
11 #include <stdio.h>
12 #include <limits.h>
13 #if defined(STDC_HEADERS)
14 #include <stdlib.h>
15 #include <string.h>
16 #endif
17 #if defined(HAVE_UNISTD_H)
18 #include <unistd.h>
19 #endif
20
21 #include "fetchmail.h"
22 #include "i18n.h"
23
24 /*
25  * Machinery for handling UID lists live here.  This is mainly to support
26  * RFC1725/RFC1939-conformant POP3 servers without a LAST command, but may also
27  * be useful for making the IMAP4 querying logic UID-oriented, if a future
28  * revision of IMAP forces me to.
29  *
30  * These functions are also used by the rest of the code to maintain
31  * string lists.
32  *
33  * Here's the theory:
34  *
35  * At start of a query, we have a (possibly empty) list of UIDs to be
36  * considered seen in `oldsaved'.  These are messages that were left in
37  * the mailbox and *not deleted* on previous queries (we don't need to
38  * remember the UIDs of deleted messages because ... well, they're gone!)
39  * This list is initially set up by initialize_saved_list() from the
40  * .fetchids file.
41  *
42  * Early in the query, during the execution of the protocol-specific
43  * getrange code, the driver expects that the host's `newsaved' member
44  * will be filled with a list of UIDs and message numbers representing
45  * the mailbox state.  If this list is empty, the server did
46  * not respond to the request for a UID listing.
47  *
48  * Each time a message is fetched, we can check its UID against the
49  * `oldsaved' list to see if it is old.
50  *
51  * Each time a message-id is seen, we mark it with MARK_SEEN.
52  *
53  * Each time a message is deleted, we mark its id UID_DELETED in the
54  * `newsaved' member.  When we want to assert that an expunge has been
55  * done on the server, we call expunge_uid() to register that all
56  * deleted messages are gone by marking them UID_EXPUNGED.
57  *
58  * At the end of the query, the `newsaved' member becomes the
59  * `oldsaved' list.  The old `oldsaved' list is freed.
60  *
61  * At the end of the fetchmail run, seen and non-EXPUNGED members of all
62  * current `oldsaved' lists are flushed out to the .fetchids file to
63  * be picked up by the next run.  If there are no un-expunged
64  * messages, the file is deleted.
65  *
66  * One disadvantage of UIDL is that all the UIDs have to be downloaded
67  * before a search for new messages can be done. Typically, new messages
68  * are appended to mailboxes. Hence, downloading all UIDs just to download
69  * a few new mails is a waste of bandwidth. If new messages are always at
70  * the end of the mailbox, fast UIDL will decrease the time required to
71  * download new mails.
72  *
73  * During fast UIDL, the UIDs of all messages are not downloaded! The first
74  * unseen message is searched for by using a binary search on UIDs. UIDs
75  * after the first unseen message are downloaded as and when needed.
76  *
77  * The advantages of fast UIDL are (this is noticeable only when the
78  * mailbox has too many mails):
79  *
80  * - There is no need to download the UIDs of all mails right at the start.
81  * - There is no need to save all the UIDs in memory separately in
82  * `newsaved' list.
83  * - There is no need to download the UIDs of seen mail (except for the
84  * first binary search).
85  * - The first new mail is downloaded considerably faster.
86  *
87  * The disadvantages are:
88  *
89  * - Since all UIDs are not downloaded, it is not possible to swap old and
90  * new list. The current state of the mailbox is essentially a merged state
91  * of old and new mails.
92  * - If an intermediate mail has been temporarily refused (say, due to 4xx
93  * code from the smtp server), this mail may not get downloaded.
94  * - If 'flush' is used, such intermediate mails will also get deleted.
95  *
96  * The first two disadvantages can be overcome by doing a linear search
97  * once in a while (say, every 10th poll). Also, with flush, fast UIDL
98  * should be disabled.
99  *
100  * Note: some comparisons (those used for DNS address lists) are caseblind!
101  */
102
103 int dofastuidl = 0;
104
105 /* UIDs associated with un-queried hosts */
106 static struct idlist *scratchlist;
107
108 #ifdef POP3_ENABLE
109 void initialize_saved_lists(struct query *hostlist, const char *idfile)
110 /* read file of saved IDs and attach to each host */
111 {
112     struct stat statbuf;
113     FILE        *tmpfp;
114     struct query *ctl;
115
116     /* make sure lists are initially empty */
117     for (ctl = hostlist; ctl; ctl = ctl->next) {
118         ctl->skipped = (struct idlist *)NULL;
119         ctl->oldsaved = (struct idlist *)NULL;
120         ctl->newsaved = (struct idlist *)NULL;
121         ctl->oldsavedend = &ctl->oldsaved;
122     }
123
124     errno = 0;
125
126     /*
127      * Croak if the uidl directory does not exist.
128      * This probably means an NFS mount failed and we can't
129      * see a uidl file that ought to be there.
130      * Question: is this a portable check? It's not clear
131      * that all implementations of lstat() will return ENOTDIR
132      * rather than plain ENOENT in this case...
133      */
134     if (lstat(idfile, &statbuf) < 0) {
135         if (errno == ENOTDIR)
136         {
137             report(stderr, "lstat: %s: %s\n", idfile, strerror(errno));
138             exit(PS_IOERR);
139         }
140     }
141
142     /* let's get stored message UIDs from previous queries */
143     if ((tmpfp = fopen(idfile, "r")) != (FILE *)NULL)
144     {
145         char buf[POPBUFSIZE+1];
146         char *host = NULL;      /* pacify -Wall */
147         char *user;
148         char *id;
149         char *atsign;   /* temp pointer used in parsing user and host */
150         char *delimp1;
151         char saveddelim1;
152         char *delimp2;
153         char saveddelim2 = '\0';        /* pacify -Wall */
154
155         while (fgets(buf, POPBUFSIZE, tmpfp) != (char *)NULL)
156         {
157             /*
158              * At this point, we assume the bug has two fields -- a user@host 
159              * part, and an ID part. Either field may contain spurious @ signs.
160              * The previous version of this code presumed one could split at 
161              * the rightmost '@'.  This is not correct, as InterMail puts an 
162              * '@' in the UIDL.
163              */
164           
165             /* first, skip leading spaces */
166             user = buf + strspn(buf, " \t");
167
168             /*
169              * First, we split the buf into a userhost part and an id
170              * part ... but id doesn't necessarily start with a '<',
171              * espescially if the POP server returns an X-UIDL header
172              * instead of a Message-ID, as GMX's (www.gmx.net) POP3
173              * StreamProxy V1.0 does.
174              *
175              * this is one other trick. The userhost part 
176              * may contain ' ' in the user part, at least in
177              * the lotus notes case.
178              * So we start looking for the '@' after which the
179              * host will follow with the ' ' seperator finaly id.
180              */
181             if ((delimp1 = strchr(user, '@')) != NULL &&
182                 (id = strchr(delimp1,' ')) != NULL)
183             {
184                 for (delimp1 = id; delimp1 >= user; delimp1--)
185                     if ((*delimp1 != ' ') && (*delimp1 != '\t'))
186                         break;
187
188                 /* 
189                  * It should be safe to assume that id starts after
190                  * the " " - after all, we're writing the " "
191                  * ourselves in write_saved_lists() :-)
192                  */
193                 id = id + strspn(id, " ");
194
195                 delimp1++; /* but what if there is only white space ?!? */
196                 saveddelim1 = *delimp1; /* save char after token */
197                 *delimp1 = '\0';                /* delimit token with \0 */
198                 if (id != NULL) 
199                 {
200                     /* now remove trailing white space chars from id */
201                     if ((delimp2 = strpbrk(id, " \t\n")) != NULL ) {
202                         saveddelim2 = *delimp2;
203                         *delimp2 = '\0';
204                     }
205                     atsign = strrchr(user, '@');
206                     if (atsign) {
207                         *atsign = '\0';
208                         host = atsign + 1;
209
210                     }
211                     for (ctl = hostlist; ctl; ctl = ctl->next) {
212                         if (strcasecmp(host, ctl->server.queryname) == 0
213                             && strcasecmp(user, ctl->remotename) == 0) {
214         
215                             save_str(&ctl->oldsaved, id, UID_SEEN);
216                             break;
217                         }
218                     }
219                     /* 
220                      * If it's not in a host we're querying,
221                      * save it anyway.  Otherwise we'd lose UIDL
222                      * information any time we queried an explicit
223                      * subset of hosts.
224                      */
225                     if (ctl == (struct query *)NULL) {
226                                 /* restore string */
227                         *delimp1 = saveddelim1;
228                         *atsign = '@';
229                         if (delimp2 != NULL) {
230                             *delimp2 = saveddelim2;
231                         }
232                         save_str(&scratchlist, buf, UID_SEEN);
233                     }
234                 }
235             }
236         }
237         fclose(tmpfp);  /* not checking should be safe, mode was "r" */
238     }
239
240     if (outlevel >= O_DEBUG)
241     {
242         struct idlist   *idp;
243         int uidlcount = 0;
244
245         for (ctl = hostlist; ctl; ctl = ctl->next)
246             if (ctl->server.uidl)
247             {
248                 report_build(stdout, GT_("Old UID list from %s:"), 
249                              ctl->server.pollname);
250                 for (idp = ctl->oldsaved; idp; idp = idp->next)
251                     report_build(stdout, " %s", idp->id);
252                 if (!idp)
253                     report_build(stdout, GT_(" <empty>"));
254                 report_complete(stdout, "\n");
255                 uidlcount++;
256             }
257
258         if (uidlcount)
259         {
260             report_build(stdout, GT_("Scratch list of UIDs:"));
261             for (idp = scratchlist; idp; idp = idp->next)
262                 report_build(stdout, " %s", idp->id);
263             if (!idp)
264                 report_build(stdout, GT_(" <empty>"));
265             report_complete(stdout, "\n");
266         }
267     }
268 }
269 #endif /* POP3_ENABLE */
270
271 /* return a pointer to the last element of the list to help the quick,
272  * constant-time addition to the list, NOTE: this function does not dup
273  * the string, the caller must do that. */
274 /*@shared@*/ static struct idlist **save_str_quick(/*@shared@*/ struct idlist **idl,
275                                /*@only@*/ char *str, flag status)
276 /* save a number/UID pair on the given UID list */
277 {
278     struct idlist **end;
279
280     /* do it nonrecursively so the list is in the right order */
281     for (end = idl; *end; end = &(*end)->next)
282         continue;
283
284     *end = (struct idlist *)xmalloc(sizeof(struct idlist));
285     (*end)->id = str;
286     (*end)->val.status.mark = status;
287     (*end)->val.status.num = 0;
288     (*end)->next = NULL;
289
290     return end;
291 }
292
293 /* return the end list element for direct modification */
294 struct idlist *save_str(struct idlist **idl, const char *str, flag st)
295 {
296     return *save_str_quick(idl, str ? xstrdup(str) : NULL, st);
297 }
298
299 void free_str_list(struct idlist **idl)
300 /* free the given UID list */
301 {
302     struct idlist *i = *idl;
303
304     while(i) {
305         struct idlist *t = i->next;
306         free(i->id);
307         free(i);
308         i = t;
309     }
310     *idl = 0;
311 }
312
313 void save_str_pair(struct idlist **idl, const char *str1, const char *str2)
314 /* save an ID pair on the given list */
315 {
316     struct idlist **end;
317
318     /* do it nonrecursively so the list is in the right order */
319     for (end = idl; *end; end = &(*end)->next)
320         continue;
321
322     *end = (struct idlist *)xmalloc(sizeof(struct idlist));
323     (*end)->id = str1 ? xstrdup(str1) : (char *)NULL;
324     if (str2)
325         (*end)->val.id2 = xstrdup(str2);
326     else
327         (*end)->val.id2 = (char *)NULL;
328     (*end)->next = (struct idlist *)NULL;
329 }
330
331 #ifdef __UNUSED__
332 void free_str_pair_list(struct idlist **idl)
333 /* free the given ID pair list */
334 {
335     if (*idl == (struct idlist *)NULL)
336         return;
337
338     free_idpair_list(&(*idl)->next);
339     free ((*idl)->id);
340     free ((*idl)->val.id2);
341     free(*idl);
342     *idl = (struct idlist *)NULL;
343 }
344 #endif
345
346 struct idlist *str_in_list(struct idlist **idl, const char *str, const flag caseblind)
347 /* is a given ID in the given list? (comparison may be caseblind) */
348 {
349     struct idlist *walk;
350     if (caseblind) {
351         for( walk = *idl; walk; walk = walk->next )
352             if( strcasecmp( str, walk->id) == 0 )
353                 return walk;
354     } else {
355         for( walk = *idl; walk; walk = walk->next )
356             if( strcmp( str, walk->id) == 0 )
357                 return walk;
358     }
359     return NULL;
360 }
361
362 int str_nr_in_list( struct idlist **idl, const char *str )
363   /* return the position of str in idl */
364 {
365     int nr;
366     struct idlist *walk;
367     if ( !str )
368         return -1;
369     for( walk = *idl, nr = 0; walk; nr ++, walk = walk->next )
370         if( strcmp( str, walk->id) == 0 )
371             return nr;
372     return -1;
373 }
374
375 int str_nr_last_in_list( struct idlist **idl, const char *str)
376 /* return the last position of str in idl */
377 {
378     int nr, ret = -1;
379     struct idlist *walk;
380     if ( !str )
381         return -1;
382     for( walk = *idl, nr = 0; walk; nr ++, walk = walk->next )
383         if( strcmp( str, walk->id) == 0 )
384             ret = nr;
385     return ret;
386 }
387
388 void str_set_mark( struct idlist **idl, const char *str, const flag val)
389 /* update the mark on an of an id to given value */
390 {
391     int nr;
392     struct idlist *walk;
393     if (!str)
394         return;
395     for(walk = *idl, nr = 0; walk; nr ++, walk = walk->next)
396         if (strcmp(str, walk->id) == 0)
397             walk->val.status.mark = val;
398 }
399
400 int count_list( struct idlist **idl)
401 /* count the number of elements in the list */
402 {
403   if( !*idl )
404     return 0;
405   return 1 + count_list( &(*idl)->next );
406 }
407
408 /*@null@*/ char *str_from_nr_list(struct idlist **idl, long number)
409 /* return the number'th string in idl */
410 {
411     if( !*idl  || number < 0)
412         return 0;
413     if( number == 0 )
414         return (*idl)->id;
415     return str_from_nr_list(&(*idl)->next, number-1);
416 }
417
418
419 char *str_find(struct idlist **idl, long number)
420 /* return the id of the given number in the given list. */
421 {
422     if (*idl == (struct idlist *) 0)
423         return((char *) 0);
424     else if (number == (*idl)->val.status.num)
425         return((*idl)->id);
426     else
427         return(str_find(&(*idl)->next, number));
428 }
429
430 struct idlist *id_find(struct idlist **idl, long number)
431 /* return the id of the given number in the given list. */
432 {
433     struct idlist       *idp;
434     for (idp = *idl; idp; idp = idp->next)
435         if (idp->val.status.num == number)
436             return(idp);
437     return(0);
438 }
439
440 char *idpair_find(struct idlist **idl, const char *id)
441 /* return the id of the given id in the given list (caseblind comparison) */
442 {
443     if (*idl == (struct idlist *) 0)
444         return((char *) 0);
445     else if (strcasecmp(id, (*idl)->id) == 0)
446         return((*idl)->val.id2 ? (*idl)->val.id2 : (*idl)->id);
447     else
448         return(idpair_find(&(*idl)->next, id));
449 }
450
451 int delete_str(struct idlist **idl, long num)
452 /* delete given message from given list */
453 {
454     struct idlist       *idp;
455
456     for (idp = *idl; idp; idp = idp->next)
457         if (idp->val.status.num == num)
458         {
459             idp->val.status.mark = UID_DELETED;
460             return(1);
461         }
462     return(0);
463 }
464
465 struct idlist *copy_str_list(struct idlist *idl)
466 /* copy the given UID list */
467 {
468     struct idlist *newnode ;
469
470     if (idl == (struct idlist *)NULL)
471         return(NULL);
472     else
473     {
474         newnode = (struct idlist *)xmalloc(sizeof(struct idlist));
475         memcpy(newnode, idl, sizeof(struct idlist));
476         newnode->next = copy_str_list(idl->next);
477         return(newnode);
478     }
479 }
480
481 void append_str_list(struct idlist **idl, struct idlist **nidl)
482 /* append nidl to idl (does not copy *) */
483 {
484     if ((*nidl) == (struct idlist *)NULL || *nidl == *idl)
485         return;
486     else if ((*idl) == (struct idlist *)NULL)
487         *idl = *nidl;
488     else if ((*idl)->next == (struct idlist *)NULL)
489         (*idl)->next = *nidl;
490     else if ((*idl)->next != *nidl)
491         append_str_list(&(*idl)->next, nidl);
492 }
493
494 #ifdef POP3_ENABLE
495 void expunge_uids(struct query *ctl)
496 /* assert that all UIDs marked deleted have actually been expunged */
497 {
498     struct idlist *idl;
499
500     for (idl = dofastuidl ? ctl->oldsaved : ctl->newsaved; idl; idl = idl->next)
501         if (idl->val.status.mark == UID_DELETED)
502             idl->val.status.mark = UID_EXPUNGED;
503 }
504
505 void uid_swap_lists(struct query *ctl) 
506 /* finish a query */
507 {
508     /* debugging code */
509     if (ctl->server.uidl && outlevel >= O_DEBUG)
510     {
511         struct idlist *idp;
512
513         if (dofastuidl)
514             report_build(stdout, GT_("Merged UID list from %s:"), ctl->server.pollname);
515         else
516             report_build(stdout, GT_("New UID list from %s:"), ctl->server.pollname);
517         for (idp = dofastuidl ? ctl->oldsaved : ctl->newsaved; idp; idp = idp->next)
518             report_build(stdout, " %s = %d", idp->id, idp->val.status.mark);
519         if (!idp)
520             report_build(stdout, GT_(" <empty>"));
521         report_complete(stdout, "\n");
522     }
523
524     /*
525      * Don't swap UID lists unless we've actually seen UIDLs.
526      * This is necessary in order to keep UIDL information
527      * from being heedlessly deleted later on.
528      *
529      * Older versions of fetchmail did
530      *
531      *     free_str_list(&scratchlist);
532      *
533      * after swap.  This was wrong; we need to preserve the UIDL information
534      * from unqueried hosts.  Unfortunately, not doing this means that
535      * under some circumstances UIDLs can end up being stored forever --
536      * specifically, if a user description is removed from .fetchmailrc
537      * with UIDLs from that account in .fetchids, there is no way for
538      * them to ever get garbage-collected.
539      */
540     if (ctl->newsaved)
541     {
542         /* old state of mailbox may now be irrelevant */
543         struct idlist *temp = ctl->oldsaved;
544         if (outlevel >= O_DEBUG)
545             report(stdout, GT_("swapping UID lists\n"));
546         ctl->oldsaved = ctl->newsaved;
547         ctl->newsaved = (struct idlist *) NULL;
548         free_str_list(&temp);
549     }
550     /* in fast uidl, there is no need to swap lists: the old state of
551      * mailbox cannot be discarded! */
552     else if (outlevel >= O_DEBUG && !dofastuidl)
553         report(stdout, GT_("not swapping UID lists, no UIDs seen this query\n"));
554 }
555
556 void uid_discard_new_list(struct query *ctl)
557 /* finish a query which had errors */
558 {
559     /* debugging code */
560     if (ctl->server.uidl && outlevel >= O_DEBUG)
561     {
562         struct idlist *idp;
563
564         /* this is now a merged list! the mails which were seen in this
565          * poll are marked here. */
566         report_build(stdout, GT_("Merged UID list from %s:"), ctl->server.pollname);
567         for (idp = ctl->oldsaved; idp; idp = idp->next)
568             report_build(stdout, " %s = %d", idp->id, idp->val.status.mark);
569         if (!idp)
570             report_build(stdout, GT_(" <empty>"));
571         report_complete(stdout, "\n");
572     }
573
574     if (ctl->newsaved)
575     {
576         /* new state of mailbox is not reliable */
577         if (outlevel >= O_DEBUG)
578             report(stdout, GT_("discarding new UID list\n"));
579         free_str_list(&ctl->newsaved);
580         ctl->newsaved = (struct idlist *) NULL;
581     }
582 }
583
584 void uid_reset_num(struct query *ctl)
585 /* reset the number associated with each id */
586 {
587     struct idlist *idp;
588     for (idp = ctl->oldsaved; idp; idp = idp->next)
589         idp->val.status.num = 0;
590 }
591
592 void write_saved_lists(struct query *hostlist, const char *idfile)
593 /* perform end-of-run write of seen-messages list */
594 {
595     long        idcount;
596     FILE        *tmpfp;
597     struct query *ctl;
598     struct idlist *idp;
599
600     /* if all lists are empty, nuke the file */
601     idcount = 0;
602     for (ctl = hostlist; ctl; ctl = ctl->next) {
603         for (idp = ctl->oldsaved; idp; idp = idp->next)
604             if (idp->val.status.mark == UID_SEEN
605                     || idp->val.status.mark == UID_DELETED)
606                 idcount++;
607     }
608
609     /* either nuke the file or write updated last-seen IDs */
610     if (!idcount && !scratchlist)
611     {
612         if (outlevel >= O_DEBUG)
613             report(stdout, GT_("Deleting fetchids file.\n"));
614         if (unlink(idfile) && errno != ENOENT)
615             report(stderr, GT_("Error deleting %s: %s\n"), idfile, strerror(errno));
616     } else {
617         char *newnam = xmalloc(strlen(idfile) + 2);
618         strcpy(newnam, idfile);
619         strcat(newnam, "_");
620         if (outlevel >= O_DEBUG)
621             report(stdout, GT_("Writing fetchids file.\n"));
622         (void)unlink(newnam); /* remove file/link first */
623         if ((tmpfp = fopen(newnam, "w")) != (FILE *)NULL) {
624             int errflg;
625             for (ctl = hostlist; ctl; ctl = ctl->next) {
626                 for (idp = ctl->oldsaved; idp; idp = idp->next)
627                     if (idp->val.status.mark == UID_SEEN
628                                 || idp->val.status.mark == UID_DELETED)
629                         fprintf(tmpfp, "%s@%s %s\n", 
630                             ctl->remotename, ctl->server.queryname, idp->id);
631             }
632             for (idp = scratchlist; idp; idp = idp->next)
633                 fputs(idp->id, tmpfp);
634             fflush(tmpfp);
635             errflg = ferror(tmpfp);
636             fclose(tmpfp);
637             /* if we could write successfully, move into place;
638              * otherwise, drop */
639             if (errflg) {
640                 report(stderr, GT_("Error writing to fetchids file %s, old file left in place.\n"), newnam);
641                 unlink(newnam);
642             } else {
643                 if (rename(newnam, idfile)) {
644                     report(stderr, GT_("Cannot rename fetchids file %s to %s: %s\n"), newnam, idfile, strerror(errno));
645                 }
646             }
647         } else {
648             report(stderr, GT_("Cannot open fetchids file %s for writing: %s\n"), newnam, strerror(errno));
649         }
650         free(newnam);
651     }
652 }
653 #endif /* POP3_ENABLE */
654
655 /* uid.c ends here */