]> Pileus Git - ~andy/fetchmail/blob - uid.c
Compiler warnings fixes, preprocessor and minor general cleanup.
[~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, GT_("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,
296                            st);
297 }
298
299 void free_str_list(struct idlist **idl)
300 /* free the given UID list */
301 {
302     if (*idl == (struct idlist *)NULL)
303         return;
304
305     free_str_list(&(*idl)->next);
306     free ((*idl)->id);
307     free(*idl);
308     *idl = (struct idlist *)NULL;
309 }
310
311 void save_str_pair(struct idlist **idl, const char *str1, const char *str2)
312 /* save an ID pair on the given list */
313 {
314     struct idlist **end;
315
316     /* do it nonrecursively so the list is in the right order */
317     for (end = idl; *end; end = &(*end)->next)
318         continue;
319
320     *end = (struct idlist *)xmalloc(sizeof(struct idlist));
321     (*end)->id = str1 ? xstrdup(str1) : (char *)NULL;
322     if (str2)
323         (*end)->val.id2 = xstrdup(str2);
324     else
325         (*end)->val.id2 = (char *)NULL;
326     (*end)->next = (struct idlist *)NULL;
327 }
328
329 #ifdef __UNUSED__
330 void free_str_pair_list(struct idlist **idl)
331 /* free the given ID pair list */
332 {
333     if (*idl == (struct idlist *)NULL)
334         return;
335
336     free_idpair_list(&(*idl)->next);
337     free ((*idl)->id);
338     free ((*idl)->val.id2);
339     free(*idl);
340     *idl = (struct idlist *)NULL;
341 }
342 #endif
343
344 struct idlist *str_in_list(struct idlist **idl, const char *str, const flag caseblind)
345 /* is a given ID in the given list? (comparison may be caseblind) */
346 {
347     struct idlist *walk;
348     if (caseblind) {
349         for( walk = *idl; walk; walk = walk->next )
350             if( strcasecmp( str, (char *)walk->id) == 0 )
351                 return walk;
352     } else {
353         for( walk = *idl; walk; walk = walk->next )
354             if( strcmp( str, (char *)walk->id) == 0 )
355                 return walk;
356     }
357     return NULL;
358 }
359
360 int str_nr_in_list( struct idlist **idl, const char *str )
361   /* return the position of str in idl */
362 {
363     int nr;
364     struct idlist *walk;
365     if ( !str )
366         return -1;
367     for( walk = *idl, nr = 0; walk; nr ++, walk = walk->next )
368         if( strcmp( str, walk->id) == 0 )
369             return nr;
370     return -1;
371 }
372
373 int str_nr_last_in_list( struct idlist **idl, const char *str)
374 /* return the last position of str in idl */
375 {
376     int nr, ret = -1;
377     struct idlist *walk;
378     if ( !str )
379         return -1;
380     for( walk = *idl, nr = 0; walk; nr ++, walk = walk->next )
381         if( strcmp( str, walk->id) == 0 )
382             ret = nr;
383     return ret;
384 }
385
386 void str_set_mark( struct idlist **idl, const char *str, const flag val)
387 /* update the mark on an of an id to given value */
388 {
389     int nr;
390     struct idlist *walk;
391     if (!str)
392         return;
393     for(walk = *idl, nr = 0; walk; nr ++, walk = walk->next)
394         if (strcmp(str, walk->id) == 0)
395             walk->val.status.mark = val;
396 }
397
398 int count_list( struct idlist **idl)
399 /* count the number of elements in the list */
400 {
401   if( !*idl )
402     return 0;
403   return 1 + count_list( &(*idl)->next );
404 }
405
406 /*@null@*/ char *str_from_nr_list(struct idlist **idl, long number)
407 /* return the number'th string in idl */
408 {
409     if( !*idl  || number < 0)
410         return 0;
411     if( number == 0 )
412         return (*idl)->id;
413     return str_from_nr_list(&(*idl)->next, number-1);
414 }
415
416
417 char *str_find(struct idlist **idl, long number)
418 /* return the id of the given number in the given list. */
419 {
420     if (*idl == (struct idlist *) 0)
421         return((char *) 0);
422     else if (number == (*idl)->val.status.num)
423         return((*idl)->id);
424     else
425         return(str_find(&(*idl)->next, number));
426 }
427
428 struct idlist *id_find(struct idlist **idl, long number)
429 /* return the id of the given number in the given list. */
430 {
431     struct idlist       *idp;
432     for (idp = *idl; idp; idp = idp->next)
433         if (idp->val.status.num == number)
434             return(idp);
435     return(0);
436 }
437
438 char *idpair_find(struct idlist **idl, const char *id)
439 /* return the id of the given id in the given list (caseblind comparison) */
440 {
441     if (*idl == (struct idlist *) 0)
442         return((char *) 0);
443     else if (strcasecmp(id, (*idl)->id) == 0)
444         return((*idl)->val.id2 ? (*idl)->val.id2 : (*idl)->id);
445     else
446         return(idpair_find(&(*idl)->next, id));
447 }
448
449 int delete_str(struct idlist **idl, long num)
450 /* delete given message from given list */
451 {
452     struct idlist       *idp;
453
454     for (idp = *idl; idp; idp = idp->next)
455         if (idp->val.status.num == num)
456         {
457             idp->val.status.mark = UID_DELETED;
458             return(1);
459         }
460     return(0);
461 }
462
463 struct idlist *copy_str_list(struct idlist *idl)
464 /* copy the given UID list */
465 {
466     struct idlist *newnode ;
467
468     if (idl == (struct idlist *)NULL)
469         return(NULL);
470     else
471     {
472         newnode = (struct idlist *)xmalloc(sizeof(struct idlist));
473         memcpy(newnode, idl, sizeof(struct idlist));
474         newnode->next = copy_str_list(idl->next);
475         return(newnode);
476     }
477 }
478
479 void append_str_list(struct idlist **idl, struct idlist **nidl)
480 /* append nidl to idl (does not copy *) */
481 {
482     if ((*nidl) == (struct idlist *)NULL || *nidl == *idl)
483         return;
484     else if ((*idl) == (struct idlist *)NULL)
485         *idl = *nidl;
486     else if ((*idl)->next == (struct idlist *)NULL)
487         (*idl)->next = *nidl;
488     else if ((*idl)->next != *nidl)
489         append_str_list(&(*idl)->next, nidl);
490 }
491
492 #ifdef POP3_ENABLE
493 void expunge_uids(struct query *ctl)
494 /* assert that all UIDs marked deleted have actually been expunged */
495 {
496     struct idlist *idl;
497
498     for (idl = dofastuidl ? ctl->oldsaved : ctl->newsaved; idl; idl = idl->next)
499         if (idl->val.status.mark == UID_DELETED)
500             idl->val.status.mark = UID_EXPUNGED;
501 }
502
503 void uid_swap_lists(struct query *ctl) 
504 /* finish a query */
505 {
506     /* debugging code */
507     if (ctl->server.uidl && outlevel >= O_DEBUG)
508     {
509         struct idlist *idp;
510
511         if (dofastuidl)
512             report_build(stdout, GT_("Merged UID list from %s:"), ctl->server.pollname);
513         else
514             report_build(stdout, GT_("New UID list from %s:"), ctl->server.pollname);
515         for (idp = dofastuidl ? ctl->oldsaved : ctl->newsaved; idp; idp = idp->next)
516             report_build(stdout, " %s = %d", (char *)idp->id, idp->val.status.mark);
517         if (!idp)
518             report_build(stdout, GT_(" <empty>"));
519         report_complete(stdout, "\n");
520     }
521
522     /*
523      * Don't swap UID lists unless we've actually seen UIDLs.
524      * This is necessary in order to keep UIDL information
525      * from being heedlessly deleted later on.
526      *
527      * Older versions of fetchmail did
528      *
529      *     free_str_list(&scratchlist);
530      *
531      * after swap.  This was wrong; we need to preserve the UIDL information
532      * from unqueried hosts.  Unfortunately, not doing this means that
533      * under some circumstances UIDLs can end up being stored forever --
534      * specifically, if a user description is removed from .fetchmailrc
535      * with UIDLs from that account in .fetchids, there is no way for
536      * them to ever get garbage-collected.
537      */
538     if (ctl->newsaved)
539     {
540         /* old state of mailbox may now be irrelevant */
541         if (outlevel >= O_DEBUG)
542             report(stdout, GT_("swapping UID lists\n"));
543         free_str_list(&ctl->oldsaved);
544         ctl->oldsaved = ctl->newsaved;
545         ctl->newsaved = (struct idlist *) NULL;
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         unlink(idfile);
612     }
613     else
614     {
615         if (outlevel >= O_DEBUG)
616             report(stdout, GT_("Writing fetchids file.\n"));
617         /* FIXME: do not overwrite the old idfile */
618         if ((tmpfp = fopen(idfile, "w")) != (FILE *)NULL) {
619             for (ctl = hostlist; ctl; ctl = ctl->next) {
620                 for (idp = ctl->oldsaved; idp; idp = idp->next)
621                     if (idp->val.status.mark == UID_SEEN
622                                 || idp->val.status.mark == UID_DELETED)
623                         fprintf(tmpfp, "%s@%s %s\n", 
624                             ctl->remotename, ctl->server.queryname, (char *)idp->id);
625             }
626             for (idp = scratchlist; idp; idp = idp->next)
627                 fputs(idp->id, tmpfp);
628             fclose(tmpfp);
629         }
630     }
631 }
632 #endif /* POP3_ENABLE */
633
634 /* uid.c ends here */