]> Pileus Git - ~andy/fetchmail/blob - uid.c
01a33137eef122c22f69145d829e92b488824b97
[~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", (char *)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", (char *)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)->val.status.mark = status;
286     (*end)->id = (unsigned char *)str;
287     (*end)->next = NULL;
288
289     return end;
290 }
291
292 /* return the end list element for direct modification */
293 struct idlist *save_str(struct idlist **idl, const char *str, flag st)
294 {
295     return *save_str_quick(idl, str ? xstrdup(str) : NULL, st);
296 }
297
298 void free_str_list(struct idlist **idl)
299 /* free the given UID list */
300 {
301     if (*idl == (struct idlist *)NULL)
302         return;
303
304     free_str_list(&(*idl)->next);
305     free ((*idl)->id);
306     free(*idl);
307     *idl = (struct idlist *)NULL;
308 }
309
310 void save_str_pair(struct idlist **idl, const char *str1, const char *str2)
311 /* save an ID pair on the given list */
312 {
313     struct idlist **end;
314
315     /* do it nonrecursively so the list is in the right order */
316     for (end = idl; *end; end = &(*end)->next)
317         continue;
318
319     *end = (struct idlist *)xmalloc(sizeof(struct idlist));
320     (*end)->id = str1 ? xstrdup(str1) : (char *)NULL;
321     if (str2)
322         (*end)->val.id2 = xstrdup(str2);
323     else
324         (*end)->val.id2 = (char *)NULL;
325     (*end)->next = (struct idlist *)NULL;
326 }
327
328 #ifdef __UNUSED__
329 void free_str_pair_list(struct idlist **idl)
330 /* free the given ID pair list */
331 {
332     if (*idl == (struct idlist *)NULL)
333         return;
334
335     free_idpair_list(&(*idl)->next);
336     free ((*idl)->id);
337     free ((*idl)->val.id2);
338     free(*idl);
339     *idl = (struct idlist *)NULL;
340 }
341 #endif
342
343 struct idlist *str_in_list(struct idlist **idl, const char *str, const flag caseblind)
344 /* is a given ID in the given list? (comparison may be caseblind) */
345 {
346     struct idlist *walk;
347     if (caseblind) {
348         for( walk = *idl; walk; walk = walk->next )
349             if( strcasecmp( str, (char *)walk->id) == 0 )
350                 return walk;
351     } else {
352         for( walk = *idl; walk; walk = walk->next )
353             if( strcmp( str, (char *)walk->id) == 0 )
354                 return walk;
355     }
356     return NULL;
357 }
358
359 int str_nr_in_list( struct idlist **idl, const char *str )
360   /* return the position of str in idl */
361 {
362     int nr;
363     struct idlist *walk;
364     if ( !str )
365         return -1;
366     for( walk = *idl, nr = 0; walk; nr ++, walk = walk->next )
367         if( strcmp( str, walk->id) == 0 )
368             return nr;
369     return -1;
370 }
371
372 int str_nr_last_in_list( struct idlist **idl, const char *str)
373 /* return the last position of str in idl */
374 {
375     int nr, ret = -1;
376     struct idlist *walk;
377     if ( !str )
378         return -1;
379     for( walk = *idl, nr = 0; walk; nr ++, walk = walk->next )
380         if( strcmp( str, walk->id) == 0 )
381             ret = nr;
382     return ret;
383 }
384
385 void str_set_mark( struct idlist **idl, const char *str, const flag val)
386 /* update the mark on an of an id to given value */
387 {
388     int nr;
389     struct idlist *walk;
390     if (!str)
391         return;
392     for(walk = *idl, nr = 0; walk; nr ++, walk = walk->next)
393         if (strcmp(str, walk->id) == 0)
394             walk->val.status.mark = val;
395 }
396
397 int count_list( struct idlist **idl)
398 /* count the number of elements in the list */
399 {
400   if( !*idl )
401     return 0;
402   return 1 + count_list( &(*idl)->next );
403 }
404
405 /*@null@*/ char *str_from_nr_list(struct idlist **idl, long number)
406 /* return the number'th string in idl */
407 {
408     if( !*idl  || number < 0)
409         return 0;
410     if( number == 0 )
411         return (*idl)->id;
412     return str_from_nr_list(&(*idl)->next, number-1);
413 }
414
415
416 char *str_find(struct idlist **idl, long number)
417 /* return the id of the given number in the given list. */
418 {
419     if (*idl == (struct idlist *) 0)
420         return((char *) 0);
421     else if (number == (*idl)->val.status.num)
422         return((*idl)->id);
423     else
424         return(str_find(&(*idl)->next, number));
425 }
426
427 struct idlist *id_find(struct idlist **idl, long number)
428 /* return the id of the given number in the given list. */
429 {
430     struct idlist       *idp;
431     for (idp = *idl; idp; idp = idp->next)
432         if (idp->val.status.num == number)
433             return(idp);
434     return(0);
435 }
436
437 char *idpair_find(struct idlist **idl, const char *id)
438 /* return the id of the given id in the given list (caseblind comparison) */
439 {
440     if (*idl == (struct idlist *) 0)
441         return((char *) 0);
442     else if (strcasecmp(id, (*idl)->id) == 0)
443         return((*idl)->val.id2 ? (*idl)->val.id2 : (*idl)->id);
444     else
445         return(idpair_find(&(*idl)->next, id));
446 }
447
448 int delete_str(struct idlist **idl, long num)
449 /* delete given message from given list */
450 {
451     struct idlist       *idp;
452
453     for (idp = *idl; idp; idp = idp->next)
454         if (idp->val.status.num == num)
455         {
456             idp->val.status.mark = UID_DELETED;
457             return(1);
458         }
459     return(0);
460 }
461
462 struct idlist *copy_str_list(struct idlist *idl)
463 /* copy the given UID list */
464 {
465     struct idlist *newnode ;
466
467     if (idl == (struct idlist *)NULL)
468         return(NULL);
469     else
470     {
471         newnode = (struct idlist *)xmalloc(sizeof(struct idlist));
472         memcpy(newnode, idl, sizeof(struct idlist));
473         newnode->next = copy_str_list(idl->next);
474         return(newnode);
475     }
476 }
477
478 void append_str_list(struct idlist **idl, struct idlist **nidl)
479 /* append nidl to idl (does not copy *) */
480 {
481     if ((*nidl) == (struct idlist *)NULL || *nidl == *idl)
482         return;
483     else if ((*idl) == (struct idlist *)NULL)
484         *idl = *nidl;
485     else if ((*idl)->next == (struct idlist *)NULL)
486         (*idl)->next = *nidl;
487     else if ((*idl)->next != *nidl)
488         append_str_list(&(*idl)->next, nidl);
489 }
490
491 #ifdef POP3_ENABLE
492 void expunge_uids(struct query *ctl)
493 /* assert that all UIDs marked deleted have actually been expunged */
494 {
495     struct idlist *idl;
496
497     for (idl = dofastuidl ? ctl->oldsaved : ctl->newsaved; idl; idl = idl->next)
498         if (idl->val.status.mark == UID_DELETED)
499             idl->val.status.mark = UID_EXPUNGED;
500 }
501
502 void uid_swap_lists(struct query *ctl) 
503 /* finish a query */
504 {
505     /* debugging code */
506     if (ctl->server.uidl && outlevel >= O_DEBUG)
507     {
508         struct idlist *idp;
509
510         if (dofastuidl)
511             report_build(stdout, GT_("Merged UID list from %s:"), ctl->server.pollname);
512         else
513             report_build(stdout, GT_("New UID list from %s:"), ctl->server.pollname);
514         for (idp = dofastuidl ? ctl->oldsaved : ctl->newsaved; idp; idp = idp->next)
515             report_build(stdout, " %s = %d", (char *)idp->id, idp->val.status.mark);
516         if (!idp)
517             report_build(stdout, GT_(" <empty>"));
518         report_complete(stdout, "\n");
519     }
520
521     /*
522      * Don't swap UID lists unless we've actually seen UIDLs.
523      * This is necessary in order to keep UIDL information
524      * from being heedlessly deleted later on.
525      *
526      * Older versions of fetchmail did
527      *
528      *     free_str_list(&scratchlist);
529      *
530      * after swap.  This was wrong; we need to preserve the UIDL information
531      * from unqueried hosts.  Unfortunately, not doing this means that
532      * under some circumstances UIDLs can end up being stored forever --
533      * specifically, if a user description is removed from .fetchmailrc
534      * with UIDLs from that account in .fetchids, there is no way for
535      * them to ever get garbage-collected.
536      */
537     if (ctl->newsaved)
538     {
539         /* old state of mailbox may now be irrelevant */
540         struct idlist *temp = ctl->oldsaved;
541         if (outlevel >= O_DEBUG)
542             report(stdout, GT_("swapping UID lists\n"));
543         ctl->oldsaved = ctl->newsaved;
544         ctl->newsaved = (struct idlist *) NULL;
545         free_str_list(&temp);
546     }
547     /* in fast uidl, there is no need to swap lists: the old state of
548      * mailbox cannot be discarded! */
549     else if (outlevel >= O_DEBUG && !dofastuidl)
550         report(stdout, GT_("not swapping UID lists, no UIDs seen this query\n"));
551 }
552
553 void uid_discard_new_list(struct query *ctl)
554 /* finish a query which had errors */
555 {
556     /* debugging code */
557     if (ctl->server.uidl && outlevel >= O_DEBUG)
558     {
559         struct idlist *idp;
560
561         /* this is now a merged list! the mails which were seen in this
562          * poll are marked here. */
563         report_build(stdout, GT_("Merged UID list from %s:"), ctl->server.pollname);
564         for (idp = ctl->oldsaved; idp; idp = idp->next)
565             report_build(stdout, " %s = %d", (char *)idp->id, idp->val.status.mark);
566         if (!idp)
567             report_build(stdout, GT_(" <empty>"));
568         report_complete(stdout, "\n");
569     }
570
571     if (ctl->newsaved)
572     {
573         /* new state of mailbox is not reliable */
574         if (outlevel >= O_DEBUG)
575             report(stdout, GT_("discarding new UID list\n"));
576         free_str_list(&ctl->newsaved);
577         ctl->newsaved = (struct idlist *) NULL;
578     }
579 }
580
581 void uid_reset_num(struct query *ctl)
582 /* reset the number associated with each id */
583 {
584     struct idlist *idp;
585     for (idp = ctl->oldsaved; idp; idp = idp->next)
586         idp->val.status.num = 0;
587 }
588
589 void write_saved_lists(struct query *hostlist, const char *idfile)
590 /* perform end-of-run write of seen-messages list */
591 {
592     long        idcount;
593     FILE        *tmpfp;
594     struct query *ctl;
595     struct idlist *idp;
596
597     /* if all lists are empty, nuke the file */
598     idcount = 0;
599     for (ctl = hostlist; ctl; ctl = ctl->next) {
600         for (idp = ctl->oldsaved; idp; idp = idp->next)
601             if (idp->val.status.mark == UID_SEEN
602                     || idp->val.status.mark == UID_DELETED)
603                 idcount++;
604     }
605
606     /* either nuke the file or write updated last-seen IDs */
607     if (!idcount && !scratchlist)
608     {
609         if (outlevel >= O_DEBUG)
610             report(stdout, GT_("Deleting fetchids file.\n"));
611         if (unlink(idfile))
612             report(stderr, GT_("Error deleting %s: %s\n"), strerror(errno));
613     } else {
614         char *newnam = xmalloc(strlen(idfile) + 2);
615         strcpy(newnam, idfile);
616         strcat(newnam, "_");
617         if (outlevel >= O_DEBUG)
618             report(stdout, GT_("Writing fetchids file.\n"));
619         (void)unlink(newnam); /* remove file/link first */
620         if ((tmpfp = fopen(newnam, "w")) != (FILE *)NULL) {
621             int errflg;
622             for (ctl = hostlist; ctl; ctl = ctl->next) {
623                 for (idp = ctl->oldsaved; idp; idp = idp->next)
624                     if (idp->val.status.mark == UID_SEEN
625                                 || idp->val.status.mark == UID_DELETED)
626                         fprintf(tmpfp, "%s@%s %s\n", 
627                             ctl->remotename, ctl->server.queryname, (char *)idp->id);
628             }
629             for (idp = scratchlist; idp; idp = idp->next)
630                 fputs(idp->id, tmpfp);
631             fflush(tmpfp);
632             errflg = ferror(tmpfp);
633             fclose(tmpfp);
634             /* if we could write successfully, move into place;
635              * otherwise, drop */
636             if (errflg) {
637                 report(stderr, GT_("Error writing to fetchids file %s, old file left in place.\n"), newnam);
638                 unlink(newnam);
639             } else {
640                 if (rename(newnam, idfile)) {
641                     report(stderr, GT_("Cannot rename fetchids file %s to %s: %s\n"), newnam, idfile, strerror(errno));
642                 }
643             }
644         } else {
645             report(stderr, GT_("Cannot open fetchids file %s for writing: %s\n"), newnam, strerror(errno));
646         }
647         free(newnam);
648     }
649 }
650 #endif /* POP3_ENABLE */
651
652 /* uid.c ends here */