]> Pileus Git - ~andy/fetchmail/blob - uid.c
Merge branch 'master' into next
[~andy/fetchmail] / uid.c
1 /**
2  * \file 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 #include <stdlib.h>
14 #include <string.h>
15 #include <unistd.h>
16
17 #include "fetchmail.h"
18 #include "gettext.h"
19 #include "sdump.h"
20
21 /*
22  * Machinery for handling UID lists live here.  This is mainly to support
23  * RFC1725/RFC1939-conformant POP3 servers without a LAST command, but may also
24  * be useful for making the IMAP4 querying logic UID-oriented, if a future
25  * revision of IMAP forces me to.
26  *
27  * These functions are also used by the rest of the code to maintain
28  * string lists.
29  *
30  * Here's the theory:
31  *
32  * At start of a query, we have a (possibly empty) list of UIDs to be
33  * considered seen in `oldsaved'.  These are messages that were left in
34  * the mailbox and *not deleted* on previous queries (we don't need to
35  * remember the UIDs of deleted messages because ... well, they're gone!)
36  * This list is initially set up by initialize_saved_list() from the
37  * .fetchids file.
38  *
39  * Early in the query, during the execution of the protocol-specific
40  * getrange code, the driver expects that the host's `newsaved' member
41  * will be filled with a list of UIDs and message numbers representing
42  * the mailbox state.  If this list is empty, the server did
43  * not respond to the request for a UID listing.
44  *
45  * Each time a message is fetched, we can check its UID against the
46  * `oldsaved' list to see if it is old.
47  *
48  * Each time a message-id is seen, we mark it with MARK_SEEN.
49  *
50  * Each time a message is deleted, we mark its id UID_DELETED in the
51  * `newsaved' member.  When we want to assert that an expunge has been
52  * done on the server, we call expunge_uid() to register that all
53  * deleted messages are gone by marking them UID_EXPUNGED.
54  *
55  * At the end of the query, the `newsaved' member becomes the
56  * `oldsaved' list.  The old `oldsaved' list is freed.
57  *
58  * At the end of the fetchmail run, seen and non-EXPUNGED members of all
59  * current `oldsaved' lists are flushed out to the .fetchids file to
60  * be picked up by the next run.  If there are no un-expunged
61  * messages, the file is deleted.
62  *
63  * One disadvantage of UIDL is that all the UIDs have to be downloaded
64  * before a search for new messages can be done. Typically, new messages
65  * are appended to mailboxes. Hence, downloading all UIDs just to download
66  * a few new mails is a waste of bandwidth. If new messages are always at
67  * the end of the mailbox, fast UIDL will decrease the time required to
68  * download new mails.
69  *
70  * During fast UIDL, the UIDs of all messages are not downloaded! The first
71  * unseen message is searched for by using a binary search on UIDs. UIDs
72  * after the first unseen message are downloaded as and when needed.
73  *
74  * The advantages of fast UIDL are (this is noticeable only when the
75  * mailbox has too many mails):
76  *
77  * - There is no need to download the UIDs of all mails right at the start.
78  * - There is no need to save all the UIDs in memory separately in
79  * `newsaved' list.
80  * - There is no need to download the UIDs of seen mail (except for the
81  * first binary search).
82  * - The first new mail is downloaded considerably faster.
83  *
84  * The disadvantages are:
85  *
86  * - Since all UIDs are not downloaded, it is not possible to swap old and
87  * new list. The current state of the mailbox is essentially a merged state
88  * of old and new mails.
89  * - If an intermediate mail has been temporarily refused (say, due to 4xx
90  * code from the smtp server), this mail may not get downloaded.
91  * - If 'flush' is used, such intermediate mails will also get deleted.
92  *
93  * The first two disadvantages can be overcome by doing a linear search
94  * once in a while (say, every 10th poll). Also, with flush, fast UIDL
95  * should be disabled.
96  *
97  * Note: some comparisons (those used for DNS address lists) are caseblind!
98  */
99
100 int dofastuidl = 0;
101
102 #ifdef POP3_ENABLE
103 /** UIDs associated with un-queried hosts */
104 static struct idlist *scratchlist;
105
106 /** Read saved IDs from \a idfile and attach to each host in \a hostlist. */
107 static int dump_saved_uid(struct uid_db_record *rec, void *unused)
108 {
109     char *t;
110
111     (void)unused;
112
113     t = sdump(rec->id, rec->id_len);
114     report_build(stdout, " %s", t);
115     free(t);
116
117     return 0;
118 }
119
120 void initialize_saved_lists(struct query *hostlist, const char *idfile)
121 {
122     struct stat statbuf;
123     FILE        *tmpfp;
124     struct query *ctl;
125
126     /* make sure lists are initially empty */
127     for (ctl = hostlist; ctl; ctl = ctl->next) {
128         ctl->skipped = (struct idlist *)NULL;
129
130         init_uid_db(&ctl->oldsaved);
131         init_uid_db(&ctl->newsaved);
132     }
133
134     errno = 0;
135
136     /*
137      * Croak if the uidl directory does not exist.
138      * This probably means an NFS mount failed and we can't
139      * see a uidl file that ought to be there.
140      * Question: is this a portable check? It's not clear
141      * that all implementations of lstat() will return ENOTDIR
142      * rather than plain ENOENT in this case...
143      */
144     if (lstat(idfile, &statbuf) < 0) {
145         if (errno == ENOTDIR)
146         {
147             report(stderr, "lstat: %s: %s\n", idfile, strerror(errno));
148             exit(PS_IOERR);
149         }
150     }
151
152     /* let's get stored message UIDs from previous queries */
153     if ((tmpfp = fopen(idfile, "r")) != (FILE *)NULL)
154     {
155         char buf[POPBUFSIZE+1];
156         char *host = NULL;      /* pacify -Wall */
157         char *user;
158         char *id;
159         char *atsign;   /* temp pointer used in parsing user and host */
160         char *delimp1;
161         char saveddelim1;
162         char *delimp2;
163         char saveddelim2 = '\0';        /* pacify -Wall */
164
165         while (fgets(buf, POPBUFSIZE, tmpfp) != (char *)NULL)
166         {
167             /*
168              * At this point, we assume the bug has two fields -- a user@host
169              * part, and an ID part. Either field may contain spurious @ signs.
170              * The previous version of this code presumed one could split at
171              * the rightmost '@'.  This is not correct, as InterMail puts an
172              * '@' in the UIDL.
173              */
174
175             /* first, skip leading spaces */
176             user = buf + strspn(buf, " \t");
177
178             /*
179              * First, we split the buf into a userhost part and an id
180              * part ... but id doesn't necessarily start with a '<',
181              * espescially if the POP server returns an X-UIDL header
182              * instead of a Message-ID, as GMX's (www.gmx.net) POP3
183              * StreamProxy V1.0 does.
184              *
185              * this is one other trick. The userhost part
186              * may contain ' ' in the user part, at least in
187              * the lotus notes case.
188              * So we start looking for the '@' after which the
189              * host will follow with the ' ' separator with the id.
190              *
191              * XXX FIXME: There is a case this code cannot handle:
192              * the user name cannot have blanks after a '@'.
193              */
194             if ((delimp1 = strchr(user, '@')) != NULL &&
195                 (id = strchr(delimp1,' ')) != NULL)
196             {
197                 for (delimp1 = id; delimp1 >= user; delimp1--)
198                     if ((*delimp1 != ' ') && (*delimp1 != '\t'))
199                         break;
200
201                 /*
202                  * It should be safe to assume that id starts after
203                  * the " " - after all, we're writing the " "
204                  * ourselves in write_saved_lists() :-)
205                  */
206                 id = id + strspn(id, " ");
207
208                 delimp1++; /* but what if there is only white space ?!? */
209                 /* we have at least one @, else we are not in this branch */
210                 saveddelim1 = *delimp1;         /* save char after token */
211                 *delimp1 = '\0';                /* delimit token with \0 */
212
213                 /* now remove trailing white space chars from id */
214                 if ((delimp2 = strpbrk(id, " \t\n")) != NULL ) {
215                     saveddelim2 = *delimp2;
216                     *delimp2 = '\0';
217                 }
218
219                 atsign = strrchr(user, '@');
220                 /* we have at least one @, else we are not in this branch */
221                 *atsign = '\0';
222                 host = atsign + 1;
223
224                 /* find uidl db and save it */
225                 for (ctl = hostlist; ctl; ctl = ctl->next) {
226                     if (strcasecmp(host, ctl->server.queryname) == 0
227                             && strcasecmp(user, ctl->remotename) == 0) {
228                         uid_db_insert(&ctl->oldsaved, id, UID_SEEN);
229                         break;
230                     }
231                 }
232                 /*
233                  * If it's not in a host we're querying,
234                  * save it anyway.  Otherwise we'd lose UIDL
235                  * information any time we queried an explicit
236                  * subset of hosts.
237                  */
238                 if (ctl == (struct query *)NULL) {
239                     /* restore string */
240                     *delimp1 = saveddelim1;
241                     *atsign = '@';
242                     if (delimp2 != NULL) {
243                         *delimp2 = saveddelim2;
244                     }
245                     save_str(&scratchlist, buf, UID_SEEN);
246                 }
247             }
248         }
249         fclose(tmpfp);  /* not checking should be safe, mode was "r" */
250     }
251
252     if (outlevel >= O_DEBUG)
253     {
254         struct idlist   *idp;
255
256         for (ctl = hostlist; ctl; ctl = ctl->next)
257             {
258                 report_build(stdout, GT_("Old UID list from %s:"),
259                              ctl->server.pollname);
260
261                 if (!uid_db_n_records(&ctl->oldsaved))
262                     report_build(stdout, GT_(" <empty>"));
263                 else
264                     traverse_uid_db(&ctl->oldsaved, dump_saved_uid, NULL);
265
266                 report_complete(stdout, "\n");
267             }
268
269         report_build(stdout, GT_("Scratch list of UIDs:"));
270         if (!scratchlist)
271                 report_build(stdout, GT_(" <empty>"));
272         else for (idp = scratchlist; idp; idp = idp->next) {
273                 char *t = sdump(idp->id, strlen(idp->id)-1);
274                 report_build(stdout, " %s\n", t);
275                 free(t);
276         }
277         report_complete(stdout, "\n");
278     }
279 }
280
281 /** Assert that all UIDs marked deleted in query \a ctl have actually been
282 expunged. */
283 static int mark_as_expunged_if(struct uid_db_record *rec, void *unused)
284 {
285     (void)unused;
286
287     if (rec->status == UID_DELETED) rec->status = UID_EXPUNGED;
288     return 0;
289 }
290
291 void expunge_uids(struct query *ctl)
292 {
293     traverse_uid_db(dofastuidl ? &ctl->oldsaved : &ctl->newsaved,
294                      mark_as_expunged_if, NULL);
295 }
296
297 static const char *str_uidmark(int mark)
298 {
299         static char buf[20];
300
301         switch(mark) {
302                 case UID_UNSEEN:
303                         return "UNSEEN";
304                 case UID_SEEN:
305                         return "SEEN";
306                 case UID_EXPUNGED:
307                         return "EXPUNGED";
308                 case UID_DELETED:
309                         return "DELETED";
310                 default:
311                         if (snprintf(buf, sizeof(buf), "MARK=%d", mark) < 0)
312                                 return "ERROR";
313                         else
314                                 return buf;
315         }
316 }
317
318 static int dump_uid_db_record(struct uid_db_record *rec, void *arg)
319 {
320         unsigned *n_recs;
321         char *t;
322
323         n_recs = (unsigned int *)arg;
324         --*n_recs;
325
326         t = sdump(rec->id, rec->id_len);
327         report_build(stdout, " %s = %s%s", t, str_uidmark(rec->status), *n_recs ? "," : "");
328         free(t);
329
330         return 0;
331 }
332
333 static void dump_uid_db(struct uid_db *db)
334 {
335         unsigned n_recs;
336
337         n_recs = uid_db_n_records(db);
338         if (!n_recs) {
339                 report_build(stdout, GT_(" <empty>"));
340                 return;
341         }
342
343         traverse_uid_db(db, dump_uid_db_record, &n_recs);
344 }
345
346 /* finish a query */
347 void uid_swap_lists(struct query *ctl)
348 {
349     /* debugging code */
350     if (outlevel >= O_DEBUG)
351     {
352         if (dofastuidl) {
353             report_build(stdout, GT_("Merged UID list from %s:"), ctl->server.pollname);
354             dump_uid_db(&ctl->oldsaved);
355         } else {
356             report_build(stdout, GT_("New UID list from %s:"), ctl->server.pollname);
357             dump_uid_db(&ctl->newsaved);
358         }
359         report_complete(stdout, "\n");
360     }
361
362     /*
363      * Don't swap UID lists unless we've actually seen UIDLs.
364      * This is necessary in order to keep UIDL information
365      * from being heedlessly deleted later on.
366      *
367      * Older versions of fetchmail did
368      *
369      *     free_str_list(&scratchlist);
370      *
371      * after swap.  This was wrong; we need to preserve the UIDL information
372      * from unqueried hosts.  Unfortunately, not doing this means that
373      * under some circumstances UIDLs can end up being stored forever --
374      * specifically, if a user description is removed from .fetchmailrc
375      * with UIDLs from that account in .fetchids, there is no way for
376      * them to ever get garbage-collected.
377      */
378     if (uid_db_n_records(&ctl->newsaved))
379     {
380         swap_uid_db_data(&ctl->newsaved, &ctl->oldsaved);
381         clear_uid_db(&ctl->newsaved);
382     }
383     /* in fast uidl, there is no need to swap lists: the old state of
384      * mailbox cannot be discarded! */
385     else if (outlevel >= O_DEBUG && !dofastuidl)
386         report(stdout, GT_("not swapping UID lists, no UIDs seen this query\n"));
387 }
388
389 /* finish a query which had errors */
390 void uid_discard_new_list(struct query *ctl)
391 {
392     /* debugging code */
393     if (outlevel >= O_DEBUG)
394     {
395         /* this is now a merged list! the mails which were seen in this
396          * poll are marked here. */
397         report_build(stdout, GT_("Merged UID list from %s:"), ctl->server.pollname);
398         dump_uid_db(&ctl->oldsaved);
399         report_complete(stdout, "\n");
400     }
401
402     if (uid_db_n_records(&ctl->newsaved))
403     {
404         /* new state of mailbox is not reliable */
405         if (outlevel >= O_DEBUG)
406             report(stdout, GT_("discarding new UID list\n"));
407         clear_uid_db(&ctl->newsaved);
408     }
409 }
410
411 /** Reset the number associated with each id */
412 void uid_reset_num(struct query *ctl)
413 {
414     reset_uid_db_nums(&ctl->oldsaved);
415 }
416
417 /** Write list of seen messages, at end of run. */
418 static int count_seen_deleted(struct uid_db_record *rec, void *arg)
419 {
420     if (rec->status == UID_SEEN || rec->status == UID_DELETED)
421         ++*(long *)arg;
422     return 0;
423 }
424
425 struct write_saved_info {
426     struct query *ctl;
427     FILE *fp;
428 };
429
430 static int write_uid_db_record(struct uid_db_record *rec, void *arg)
431 {
432     struct write_saved_info *info;
433     int rc;
434
435     if (!(rec->status == UID_SEEN || rec->status == UID_DELETED))
436         return 0;
437
438     info = (struct write_saved_info *)arg;
439     rc = fprintf(info->fp, "%s@%s %s\n",
440                  info->ctl->remotename, info->ctl->server.queryname,
441                  rec->id);
442     return rc < 0 ? -1 : 0;
443 }
444
445 void write_saved_lists(struct query *hostlist, const char *idfile)
446 {
447     long        idcount;
448     FILE        *tmpfp;
449     struct query *ctl;
450     struct idlist *idp;
451
452     /* if all lists are empty, nuke the file */
453     idcount = 0;
454     for (ctl = hostlist; ctl; ctl = ctl->next)
455         traverse_uid_db(&ctl->oldsaved, count_seen_deleted, &idcount);
456
457     /* either nuke the file or write updated last-seen IDs */
458     if (!idcount && !scratchlist)
459     {
460         if (outlevel >= O_DEBUG) {
461             if (access(idfile, F_OK) == 0)
462                     report(stdout, GT_("Deleting fetchids file.\n"));
463         }
464         if (unlink(idfile) && errno != ENOENT)
465             report(stderr, GT_("Error deleting %s: %s\n"), idfile, strerror(errno));
466     } else {
467         char *newnam = (char *)xmalloc(strlen(idfile) + 2);
468         strcpy(newnam, idfile);
469         strcat(newnam, "_");
470         if (outlevel >= O_DEBUG)
471             report(stdout, GT_("Writing fetchids file.\n"));
472         (void)unlink(newnam); /* remove file/link first */
473         if ((tmpfp = fopen(newnam, "w")) != (FILE *)NULL) {
474             struct write_saved_info info;
475             int errflg = 0;
476
477             info.fp = tmpfp;
478
479             for (ctl = hostlist; ctl; ctl = ctl->next) {
480                 info.ctl = ctl;
481
482                 if (traverse_uid_db(&ctl->oldsaved, write_uid_db_record, &info) < 0) {
483                     int e = errno;
484                     report(stderr, GT_("Write error on fetchids file %s: %s\n"), newnam, strerror(e));
485                     errflg = 1;
486                     goto bailout;
487                 }
488             }
489
490             for (idp = scratchlist; idp; idp = idp->next)
491                 if (EOF == fputs(idp->id, tmpfp)) {
492                             int e = errno;
493                             report(stderr, GT_("Write error on fetchids file %s: %s\n"), newnam, strerror(e));
494                             errflg = 1;
495                             goto bailout;
496                 }
497
498 bailout:
499             (void)fflush(tmpfp); /* return code ignored, we check ferror instead */
500             errflg |= ferror(tmpfp);
501             fclose(tmpfp);
502             /* if we could write successfully, move into place;
503              * otherwise, drop */
504             if (errflg) {
505                 report(stderr, GT_("Error writing to fetchids file %s, old file left in place.\n"), newnam);
506                 unlink(newnam);
507             } else {
508                 if (rename(newnam, idfile)) {
509                     report(stderr, GT_("Cannot rename fetchids file %s to %s: %s\n"), newnam, idfile, strerror(errno));
510                 }
511             }
512         } else {
513             report(stderr, GT_("Cannot open fetchids file %s for writing: %s\n"), newnam, strerror(errno));
514         }
515         free(newnam);
516     }
517 }
518 #endif /* POP3_ENABLE */
519
520 /* uid.c ends here */