mtx.c
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:41k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: MTX mail routines
  3.  *
  4.  * Author: Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 22 May 1990
  13.  * Last Edited: 21 September 1999
  14.  *
  15.  * Copyright 1999 by the University of Washington
  16.  *
  17.  *  Permission to use, copy, modify, and distribute this software and its
  18.  * documentation for any purpose and without fee is hereby granted, provided
  19.  * that the above copyright notice appears in all copies and that both the
  20.  * above copyright notice and this permission notice appear in supporting
  21.  * documentation, and that the name of the University of Washington not be
  22.  * used in advertising or publicity pertaining to distribution of the software
  23.  * without specific, written prior permission.  This software is made
  24.  * available "as is", and
  25.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  26.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  27.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  28.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  29.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  30.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  31.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  32.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  33.  *
  34.  */
  35. #include <stdio.h>
  36. #include <ctype.h>
  37. #include <errno.h>
  38. extern int errno; /* just in case */
  39. #include "mail.h"
  40. #include "osdep.h"
  41. #include <pwd.h>
  42. #include <sys/stat.h>
  43. #include <sys/time.h>
  44. #include "mtx.h"
  45. #include "misc.h"
  46. #include "dummy.h"
  47. /* MTX mail routines */
  48. /* Driver dispatch used by MAIL */
  49. DRIVER mtxdriver = {
  50.   "mtx", /* driver name */
  51. /* driver flags */
  52.   DR_LOCAL|DR_MAIL|DR_CRLF|DR_NOSTICKY,
  53.   (DRIVER *) NIL, /* next driver */
  54.   mtx_valid, /* mailbox is valid for us */
  55.   mtx_parameters, /* manipulate parameters */
  56.   mtx_scan, /* scan mailboxes */
  57.   mtx_list, /* list mailboxes */
  58.   mtx_lsub, /* list subscribed mailboxes */
  59.   NIL, /* subscribe to mailbox */
  60.   NIL, /* unsubscribe from mailbox */
  61.   dummy_create, /* create mailbox */
  62.   mtx_delete, /* delete mailbox */
  63.   mtx_rename, /* rename mailbox */
  64.   mtx_status, /* status of mailbox */
  65.   mtx_open, /* open mailbox */
  66.   mtx_close, /* close mailbox */
  67.   mtx_flags, /* fetch message "fast" attributes */
  68.   mtx_flags, /* fetch message flags */
  69.   NIL, /* fetch overview */
  70.   NIL, /* fetch message envelopes */
  71.   mtx_header, /* fetch message header */
  72.   mtx_text, /* fetch message body */
  73.   NIL, /* fetch partial message text */
  74.   NIL, /* unique identifier */
  75.   NIL, /* message number */
  76.   mtx_flag, /* modify flags */
  77.   mtx_flagmsg, /* per-message modify flags */
  78.   NIL, /* search for message based on criteria */
  79.   NIL, /* sort messages */
  80.   NIL, /* thread messages */
  81.   mtx_ping, /* ping mailbox to see if still alive */
  82.   mtx_check, /* check for new messages */
  83.   mtx_expunge, /* expunge deleted messages */
  84.   mtx_copy, /* copy messages to another mailbox */
  85.   mtx_append, /* append string message to mailbox */
  86.   NIL /* garbage collect stream */
  87. };
  88. /* prototype stream */
  89. MAILSTREAM mtxproto = {&mtxdriver};
  90. /* MTX mail validate mailbox
  91.  * Accepts: mailbox name
  92.  * Returns: our driver if name is valid, NIL otherwise
  93.  */
  94. DRIVER *mtx_valid (char *name)
  95. {
  96.   char tmp[MAILTMPLEN];
  97.   return mtx_isvalid (name,tmp) ? &mtxdriver : NIL;
  98. }
  99. /* MTX mail test for valid mailbox
  100.  * Accepts: mailbox name
  101.  * Returns: T if valid, NIL otherwise
  102.  */
  103. int mtx_isvalid (char *name,char *tmp)
  104. {
  105.   int fd;
  106.   int ret = NIL;
  107.   char *s,file[MAILTMPLEN];
  108.   struct stat sbuf;
  109.   time_t tp[2];
  110.   errno = EINVAL; /* assume invalid argument */
  111. /* if file, get its status */
  112.   if ((s = mtx_file (file,name)) && !stat (s,&sbuf)) {
  113.     if (!sbuf.st_size) { /* allow empty file if INBOX */
  114.       if ((s = mailboxfile (tmp,name)) && !*s) ret = T;
  115.       else errno = 0; /* empty file */
  116.     }
  117.     else if ((fd = open (file,O_RDONLY,NIL)) >= 0) {
  118.       memset (tmp,'',MAILTMPLEN);
  119.       if ((read (fd,tmp,64) >= 0) && (s = strchr (tmp,'15')) &&
  120.   (s[1] == '12')) { /* valid format? */
  121. *s = ''; /* tie off header */
  122. /* must begin with dd-mmm-yy" */
  123. ret = (((tmp[2] == '-' && tmp[6] == '-') ||
  124. (tmp[1] == '-' && tmp[5] == '-')) &&
  125.        (s = strchr (tmp+20,',')) && strchr (s+2,';')) ? T : NIL;
  126.       }
  127.       else errno = -1; /* bogus format */
  128.       close (fd); /* close the file */
  129.       tp[0] = sbuf.st_atime; /* preserve atime and mtime */
  130.       tp[1] = sbuf.st_mtime;
  131.       utime (file,tp); /* set the times */
  132.     }
  133.   }
  134. /* in case INBOX but not mtx format */
  135.   else if ((errno == ENOENT) && ((name[0] == 'I') || (name[0] == 'i')) &&
  136.    ((name[1] == 'N') || (name[1] == 'n')) &&
  137.    ((name[2] == 'B') || (name[2] == 'b')) &&
  138.    ((name[3] == 'O') || (name[3] == 'o')) &&
  139.    ((name[4] == 'X') || (name[4] == 'x')) && !name[5]) errno = -1;
  140.   return ret; /* return what we should */
  141. }
  142. /* MTX manipulate driver parameters
  143.  * Accepts: function code
  144.  *     function-dependent value
  145.  * Returns: function-dependent return value
  146.  */
  147. void *mtx_parameters (long function,void *value)
  148. {
  149.   return NIL;
  150. }
  151. /* MTX mail scan mailboxes
  152.  * Accepts: mail stream
  153.  *     reference
  154.  *     pattern to search
  155.  *     string to scan
  156.  */
  157. void mtx_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents)
  158. {
  159.   if (stream) dummy_scan (NIL,ref,pat,contents);
  160. }
  161. /* MTX mail list mailboxes
  162.  * Accepts: mail stream
  163.  *     reference
  164.  *     pattern to search
  165.  */
  166. void mtx_list (MAILSTREAM *stream,char *ref,char *pat)
  167. {
  168.   if (stream) dummy_list (NIL,ref,pat);
  169. }
  170. /* MTX mail list subscribed mailboxes
  171.  * Accepts: mail stream
  172.  *     reference
  173.  *     pattern to search
  174.  */
  175. void mtx_lsub (MAILSTREAM *stream,char *ref,char *pat)
  176. {
  177.   if (stream) dummy_lsub (NIL,ref,pat);
  178. }
  179. /* MTX mail delete mailbox
  180.  * Accepts: MAIL stream
  181.  *     mailbox name to delete
  182.  * Returns: T on success, NIL on failure
  183.  */
  184. long mtx_delete (MAILSTREAM *stream,char *mailbox)
  185. {
  186.   return mtx_rename (stream,mailbox,NIL);
  187. }
  188. /* MTX mail rename mailbox
  189.  * Accepts: MAIL stream
  190.  *     old mailbox name
  191.  *     new mailbox name (or NIL for delete)
  192.  * Returns: T on success, NIL on failure
  193.  */
  194. long mtx_rename (MAILSTREAM *stream,char *old,char *newname)
  195. {
  196.   long ret = T;
  197.   char c,*s,tmp[MAILTMPLEN],file[MAILTMPLEN],lock[MAILTMPLEN];
  198.   int ld;
  199.   int fd = open (mtx_file (file,old),O_RDWR,NIL);
  200.   struct stat sbuf;
  201.   if (fd < 0) { /* open mailbox */
  202.     sprintf (tmp,"Can't open mailbox %.80s: %s",old,strerror (errno));
  203.     mm_log (tmp,ERROR);
  204.     return NIL;
  205.   }
  206. /* get exclusive parse/append permission */
  207.   if ((ld = lockfd (fd,lock,LOCK_EX)) < 0) {
  208.     mm_log ("Unable to lock rename mailbox",ERROR);
  209.     return NIL;
  210.   }
  211. /* lock out other users */
  212.   if (flock (fd,LOCK_EX|LOCK_NB)) {
  213.     close (fd); /* couldn't lock, give up on it then */
  214.     sprintf (tmp,"Mailbox %.80s is in use by another process",old);
  215.     mm_log (tmp,ERROR);
  216.     unlockfd (ld,lock); /* release exclusive parse/append permission */
  217.     return NIL;
  218.   }
  219.   if (newname) { /* want rename? */
  220.     if (!((s = mtx_file (tmp,newname)) && *s)) {
  221.       sprintf (tmp,"Can't rename mailbox %.80s to %.80s: invalid name",
  222.        old,newname);
  223.       mm_log (tmp,ERROR);
  224.       ret = NIL; /* set failure */
  225.     }
  226.     if (s = strrchr (s,'/')) { /* found superior to destination name? */
  227.       c = *++s; /* remember first character of inferior */
  228.       *s = ''; /* tie off to get just superior */
  229. /* name doesn't exist, create it */
  230.       if ((stat (tmp,&sbuf) || ((sbuf.st_mode & S_IFMT) != S_IFDIR)) &&
  231.   !dummy_create (stream,tmp)) ret = NIL;
  232.       else *s = c; /* restore full name */
  233.     }
  234. /* rename the file */
  235.     if (ret && rename (file,tmp)) {
  236.       sprintf (tmp,"Can't rename mailbox %.80s to %.80s: %s",old,newname,
  237.        strerror (errno));
  238.       mm_log (tmp,ERROR);
  239.       ret = NIL; /* set failure */
  240.     }
  241.   }
  242.   else if (unlink (file)) {
  243.     sprintf (tmp,"Can't delete mailbox %.80s: %s",old,strerror (errno));
  244.     mm_log (tmp,ERROR);
  245.     ret = NIL; /* set failure */
  246.   }
  247.   flock (fd,LOCK_UN); /* release lock on the file */
  248.   close (fd); /* close the file */
  249.   unlockfd (ld,lock); /* release exclusive parse/append permission */
  250. /* recreate file if renamed INBOX */
  251.   if (ret && !strcmp (ucase (strcpy (tmp,old)),"INBOX"))
  252.     dummy_create (NIL,"INBOX.MTX");
  253.   return ret; /* return success */
  254. }
  255. /* Mtx Mail status
  256.  * Accepts: mail stream
  257.  *     mailbox name
  258.  *     status flags
  259.  * Returns: T on success, NIL on failure
  260.  */
  261. long mtx_status (MAILSTREAM *stream,char *mbx,long flags)
  262. {
  263.   MAILSTATUS status;
  264.   unsigned long i;
  265.   MAILSTREAM *tstream = NIL;
  266.   MAILSTREAM *systream = NIL;
  267. /* make temporary stream (unless this mbx) */
  268.   if (!stream && !(stream = tstream =
  269.    mail_open (NIL,mbx,OP_READONLY|OP_SILENT))) return NIL;
  270.   status.flags = flags; /* return status values */
  271.   status.messages = stream->nmsgs;
  272.   status.recent = stream->recent;
  273.   if (flags & SA_UNSEEN) /* must search to get unseen messages */
  274.     for (i = 1,status.unseen = 0; i <= stream->nmsgs; i++)
  275.       if (!mail_elt (stream,i)->seen) status.unseen++;
  276.   status.uidnext = stream->uid_last + 1;
  277.   status.uidvalidity = stream->uid_validity;
  278. /* calculate post-snarf results */
  279.   if (!status.recent && stream->inbox &&
  280.       (systream = mail_open (NIL,sysinbox (),OP_READONLY|OP_SILENT))) {
  281.     status.messages += systream->nmsgs;
  282.     status.recent += systream->recent;
  283.     if (flags & SA_UNSEEN) /* must search to get unseen messages */
  284.       for (i = 1; i <= systream->nmsgs; i++)
  285. if (!mail_elt (systream,i)->seen) status.unseen++;
  286. /* kludge but probably good enough */
  287.     status.uidnext += systream->nmsgs;
  288.   }
  289. /* pass status to main program */
  290.   mm_status (stream,mbx,&status);
  291.   if (tstream) mail_close (tstream);
  292.   if (systream) mail_close (systream);
  293.   return T; /* success */
  294. }
  295. /* MTX mail open
  296.  * Accepts: stream to open
  297.  * Returns: stream on success, NIL on failure
  298.  */
  299. MAILSTREAM *mtx_open (MAILSTREAM *stream)
  300. {
  301.   int fd,ld;
  302.   char tmp[MAILTMPLEN];
  303.   blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);
  304. /* return prototype for OP_PROTOTYPE call */
  305.   if (!stream) return user_flags (&mtxproto);
  306.   if (stream->local) fatal ("mtx recycle stream");
  307.   user_flags (stream); /* set up user flags */
  308.   if (stream->rdonly ||
  309.       (fd = open (mtx_file (tmp,stream->mailbox),O_RDWR,NIL)) < 0) {
  310.     if ((fd = open (mtx_file (tmp,stream->mailbox),O_RDONLY,NIL)) < 0) {
  311.       sprintf (tmp,"Can't open mailbox: %.80s",strerror (errno));
  312.       mm_log (tmp,ERROR);
  313.       return NIL;
  314.     }
  315.     else if (!stream->rdonly) { /* got it, but readonly */
  316.       mm_log ("Can't get write access to mailbox, access is readonly",WARN);
  317.       stream->rdonly = T;
  318.     }
  319.   }
  320.   stream->local = fs_get (sizeof (MTXLOCAL));
  321.   LOCAL->buf = (char *) fs_get (MAXMESSAGESIZE + 1);
  322.   LOCAL->buflen = MAXMESSAGESIZE;
  323. /* note if an INBOX or not */
  324.   stream->inbox = !strcmp(ucase (strcpy (LOCAL->buf,stream->mailbox)),"INBOX");
  325.   fs_give ((void **) &stream->mailbox);
  326.   stream->mailbox = cpystr (tmp);
  327. /* get shared parse permission */
  328.   if ((ld = lockfd (fd,tmp,LOCK_SH)) < 0) {
  329.     mm_log ("Unable to lock open mailbox",ERROR);
  330.     return NIL;
  331.   }
  332.   (*bn) (BLOCK_FILELOCK,NIL);
  333.   flock(LOCAL->fd = fd,LOCK_SH);/* bind and lock the file */
  334.   (*bn) (BLOCK_NONE,NIL);
  335.   unlockfd (ld,tmp); /* release shared parse permission */
  336.   LOCAL->filesize = 0; /* initialize parsed file size */
  337. /* time not set up yet */
  338.   LOCAL->lastsnarf = LOCAL->filetime = 0;
  339.   LOCAL->mustcheck = LOCAL->shouldcheck = NIL;
  340.   stream->sequence++; /* bump sequence number */
  341. /* parse mailbox */
  342.   stream->nmsgs = stream->recent = 0;
  343.   if (mtx_ping (stream) && !stream->nmsgs)
  344.     mm_log ("Mailbox is empty",(long) NIL);
  345.   if (!LOCAL) return NIL; /* failure if stream died */
  346.   stream->perm_seen = stream->perm_deleted =
  347.     stream->perm_flagged = stream->perm_answered = stream->perm_draft =
  348.       stream->rdonly ? NIL : T;
  349.   stream->perm_user_flags = stream->rdonly ? NIL : 0xffffffff;
  350.   return stream; /* return stream to caller */
  351. }
  352. /* MTX mail close
  353.  * Accepts: MAIL stream
  354.  *     close options
  355.  */
  356. void mtx_close (MAILSTREAM *stream,long options)
  357. {
  358.   if (stream && LOCAL) { /* only if a file is open */
  359.     int silent = stream->silent;
  360.     stream->silent = T; /* note this stream is dying */
  361.     if (options & CL_EXPUNGE) mtx_expunge (stream);
  362.     stream->silent = silent; /* restore previous status */
  363.     flock (LOCAL->fd,LOCK_UN); /* unlock local file */
  364.     close (LOCAL->fd); /* close the local file */
  365. /* free local text buffer */
  366.     if (LOCAL->buf) fs_give ((void **) &LOCAL->buf);
  367. /* nuke the local data */
  368.     fs_give ((void **) &stream->local);
  369.     stream->dtb = NIL; /* log out the DTB */
  370.   }
  371. }
  372. /* MTX mail fetch flags
  373.  * Accepts: MAIL stream
  374.  *     sequence
  375.  *     option flags
  376.  * Sniffs at file to see if some other process changed the flags
  377.  */
  378. void mtx_flags (MAILSTREAM *stream,char *sequence,long flags)
  379. {
  380.   unsigned long i;
  381.   if (mtx_ping (stream) &&  /* ping mailbox, get new status for messages */
  382.       ((flags & FT_UID) ? mail_uid_sequence (stream,sequence) :
  383.        mail_sequence (stream,sequence)))
  384.     for (i = 1; i <= stream->nmsgs; i++) 
  385.       if (mail_elt (stream,i)->sequence) mtx_elt (stream,i);
  386. }
  387. /* MTX mail fetch message header
  388.  * Accepts: MAIL stream
  389.  *     message # to fetch
  390.  *     pointer to returned header text length
  391.  *     option flags
  392.  * Returns: message header in RFC822 format
  393.  */
  394. char *mtx_header (MAILSTREAM *stream,unsigned long msgno,unsigned long *length,
  395.   long flags)
  396. {
  397.   *length = 0; /* default to empty */
  398.   if (flags & FT_UID) return "";/* UID call "impossible" */
  399. /* get to header position */
  400.   lseek (LOCAL->fd,mtx_hdrpos (stream,msgno,length),L_SET);
  401. /* is buffer big enough? */
  402.   if (*length > LOCAL->buflen) {
  403.     fs_give ((void **) &LOCAL->buf);
  404.     LOCAL->buf = (char *) fs_get ((LOCAL->buflen = *length) + 1);
  405.   }
  406.   LOCAL->buf[*length] = ''; /* tie off string */
  407. /* slurp the data */
  408.   read (LOCAL->fd,LOCAL->buf,*length);
  409.   return LOCAL->buf;
  410. }
  411. /* MTX mail fetch message text (body only)
  412.  * Accepts: MAIL stream
  413.  *     message # to fetch
  414.  *     pointer to returned header text length
  415.  *     option flags
  416.  * Returns: T, always
  417.  */
  418. long mtx_text (MAILSTREAM *stream,unsigned long msgno,STRING *bs,long flags)
  419. {
  420.   unsigned long i,j;
  421.   MESSAGECACHE *elt;
  422. /* UID call "impossible" */
  423.   if (flags & FT_UID) return NIL;
  424.   elt = mtx_elt (stream,msgno); /* get message status */
  425. /* if message not seen */
  426.   if (!(flags & FT_PEEK) && !elt->seen) {
  427.     elt->seen = T; /* mark message as seen */
  428. /* recalculate status */
  429.     mtx_update_status (stream,msgno,T);
  430.     mm_flags (stream,msgno);
  431.   }
  432. /* find header position */
  433.   i = mtx_hdrpos (stream,msgno,&j);
  434. /* go to text position */
  435.   lseek (LOCAL->fd,i + j,L_SET);
  436. /* is buffer big enough? */
  437.   if ((i = elt->rfc822_size - j) > LOCAL->buflen) {
  438.     fs_give ((void **) &LOCAL->buf);
  439.     LOCAL->buf = (char *) fs_get ((LOCAL->buflen = i) + 1);
  440.   }
  441.   read (LOCAL->fd,LOCAL->buf,i);/* slurp the data */
  442.   LOCAL->buf[i] = ''; /* tie off string */
  443. /* set up stringstruct */
  444.   INIT (bs,mail_string,LOCAL->buf,i);
  445.   return T; /* success */
  446. }
  447. /* MTX mail modify flags
  448.  * Accepts: MAIL stream
  449.  *     sequence
  450.  *     flag(s)
  451.  *     option flags
  452.  */
  453. void mtx_flag (MAILSTREAM *stream,char *sequence,char *flag,long flags)
  454. {
  455.   struct stat sbuf;
  456.   if (!stream->rdonly) { /* make sure the update takes */
  457.     fsync (LOCAL->fd);
  458.     fstat (LOCAL->fd,&sbuf); /* get current write time */
  459.     LOCAL->filetime = sbuf.st_mtime;
  460.   }
  461. }
  462. /* MTX mail per-message modify flags
  463.  * Accepts: MAIL stream
  464.  *     message cache element
  465.  */
  466. void mtx_flagmsg (MAILSTREAM *stream,MESSAGECACHE *elt)
  467. {
  468.   struct stat sbuf;
  469. /* maybe need to do a checkpoint? */
  470.   if (LOCAL->filetime && !LOCAL->shouldcheck) {
  471.     fstat (LOCAL->fd,&sbuf); /* get current write time */
  472.     if (LOCAL->filetime < sbuf.st_mtime) LOCAL->shouldcheck = T;
  473.     LOCAL->filetime = 0; /* don't do this test for any other messages */
  474.   }
  475. /* recalculate status */
  476.   mtx_update_status (stream,elt->msgno,NIL);
  477. }
  478. /* MTX mail ping mailbox
  479.  * Accepts: MAIL stream
  480.  * Returns: T if stream still alive, NIL if not
  481.  */
  482. long mtx_ping (MAILSTREAM *stream)
  483. {
  484.   unsigned long i = 1;
  485.   long r = T;
  486.   int ld;
  487.   char lock[MAILTMPLEN];
  488.   struct stat sbuf;
  489.   if (stream && LOCAL) { /* only if stream already open */
  490.     fstat (LOCAL->fd,&sbuf); /* get current file poop */
  491.     if (LOCAL->filetime && !(LOCAL->mustcheck || LOCAL->shouldcheck) &&
  492. (LOCAL->filetime < sbuf.st_mtime)) LOCAL->shouldcheck = T;
  493. /* check for changed message status */
  494.     if (LOCAL->mustcheck || LOCAL->shouldcheck) {
  495.       if (LOCAL->shouldcheck) /* babble when we do this unilaterally */
  496. mm_notify (stream,"[CHECK] Checking for flag updates",NIL);
  497.       while (i <= stream->nmsgs) mtx_elt (stream,i++);
  498.       LOCAL->mustcheck = LOCAL->shouldcheck = NIL;
  499.     }
  500. /* get shared parse/append permission */
  501.     if ((sbuf.st_size != LOCAL->filesize) &&
  502. ((ld = lockfd (LOCAL->fd,lock,LOCK_SH)) >= 0)) {
  503. /* parse resulting mailbox */
  504.       r = (mtx_parse (stream)) ? T : NIL;
  505.       unlockfd (ld,lock); /* release shared parse/append permission */
  506.     }
  507.     if (LOCAL) { /* stream must still be alive */
  508. /* snarf if this is a read-write inbox */
  509.       if (stream->inbox && !stream->rdonly) {
  510. mtx_snarf (stream);
  511. fstat (LOCAL->fd,&sbuf);/* see if file changed now */
  512. if ((sbuf.st_size != LOCAL->filesize) &&
  513.     ((ld = lockfd (LOCAL->fd,lock,LOCK_SH)) >= 0)) {
  514. /* parse resulting mailbox */
  515.   r = (mtx_parse (stream)) ? T : NIL;
  516.   unlockfd (ld,lock); /* release shared parse/append permission */
  517. }
  518.       }
  519.       else if ((sbuf.st_ctime > sbuf.st_atime) ||
  520.        (sbuf.st_ctime > sbuf.st_mtime)) {
  521. time_t tp[2]; /* whack the times if necessary */
  522. LOCAL->filetime = tp[0] = tp[1] = time (0);
  523. utime (stream->mailbox,tp);
  524.       }
  525.     }
  526.   }
  527.   return r; /* return result of the parse */
  528. }
  529. /* MTX mail check mailbox (reparses status too)
  530.  * Accepts: MAIL stream
  531.  */
  532. void mtx_check (MAILSTREAM *stream)
  533. {
  534. /* mark that a check is desired */
  535.   if (LOCAL) LOCAL->mustcheck = T;
  536.   if (mtx_ping (stream)) mm_log ("Check completed",(long) NIL);
  537. }
  538. /* MTX mail snarf messages from system inbox
  539.  * Accepts: MAIL stream
  540.  */
  541. void mtx_snarf (MAILSTREAM *stream)
  542. {
  543.   unsigned long i = 0;
  544.   unsigned long j,r,hdrlen,txtlen;
  545.   struct stat sbuf;
  546.   char *hdr,*txt,lock[MAILTMPLEN],tmp[MAILTMPLEN];
  547.   MESSAGECACHE *elt;
  548.   MAILSTREAM *sysibx = NIL;
  549.   int ld;
  550. /* give up if can't get exclusive permission */
  551.   if ((time (0) < (LOCAL->lastsnarf + 30)) ||
  552.       (!strcmp (sysinbox (),stream->mailbox)) ||
  553.       ((ld = lockfd (LOCAL->fd,lock,LOCK_EX)) < 0)) return;
  554.   mm_critical (stream); /* go critical */
  555. /* see if anything there */
  556.   if (!stat (sysinbox (),&sbuf) && sbuf.st_size) {
  557.     fstat (LOCAL->fd,&sbuf); /* yes, get current file size */
  558. /* sizes match and can get sysibx mailbox? */
  559.     if ((sbuf.st_size == LOCAL->filesize) && 
  560. (sysibx = mail_open (sysibx,sysinbox (),OP_SILENT)) &&
  561. (!sysibx->rdonly) && (r = sysibx->nmsgs)) {
  562. /* yes, go to end of file in our mailbox */
  563.       lseek (LOCAL->fd,sbuf.st_size,L_SET);
  564. /* for each message in sysibx mailbox */
  565.       while (r && (++i <= sysibx->nmsgs)) {
  566. /* snarf message from system INBOX */
  567. hdr = cpystr (mail_fetchheader_full (sysibx,i,NIL,&hdrlen,NIL));
  568. txt = mail_fetchtext_full (sysibx,i,&txtlen,FT_PEEK);
  569. if (j = hdrlen + txtlen) {
  570. /* calculate header line */
  571.   mail_date (LOCAL->buf,elt = mail_elt (sysibx,i));
  572.   sprintf (LOCAL->buf + strlen (LOCAL->buf),
  573.    ",%lu;0000000000%02o1512",j,(unsigned)
  574.    ((fSEEN * elt->seen) + (fDELETED * elt->deleted) +
  575.     (fFLAGGED * elt->flagged) + (fANSWERED * elt->answered) +
  576.     (fDRAFT * elt->draft)));
  577. /* copy message */
  578.   if ((write (LOCAL->fd,LOCAL->buf,strlen (LOCAL->buf)) < 0) ||
  579.       (write (LOCAL->fd,hdr,hdrlen) < 0) ||
  580.       (write (LOCAL->fd,txt,txtlen) < 0)) r = 0;
  581. }
  582. fs_give ((void **) &hdr);
  583.       }
  584. /* make sure all the updates take */
  585.       if (fsync (LOCAL->fd)) r = 0;
  586.       if (r) { /* delete all the messages we copied */
  587. if (r == 1) strcpy (tmp,"1");
  588. else sprintf (tmp,"1:%lu",r);
  589. mail_flag (sysibx,tmp,"\Deleted",ST_SET);
  590. mail_expunge (sysibx); /* now expunge all those messages */
  591.       }
  592.       else {
  593. sprintf (LOCAL->buf,"Can't copy new mail: %s",strerror (errno));
  594. mm_log (LOCAL->buf,ERROR);
  595. ftruncate (LOCAL->fd,sbuf.st_size);
  596.       }
  597.       fstat (LOCAL->fd,&sbuf); /* yes, get current file size */
  598.       LOCAL->filetime = sbuf.st_mtime;
  599.     }
  600.     if (sysibx) mail_close (sysibx);
  601.   }
  602.   mm_nocritical (stream); /* release critical */
  603.   unlockfd (ld,lock); /* release exclusive parse/append permission */
  604.   LOCAL->lastsnarf = time (0); /* note time of last snarf */
  605. }
  606. /* MTX mail expunge mailbox
  607.  * Accepts: MAIL stream
  608.  */
  609. void mtx_expunge (MAILSTREAM *stream)
  610. {
  611.   struct stat sbuf;
  612.   off_t pos = 0;
  613.   int ld;
  614.   unsigned long i = 1;
  615.   unsigned long j,k,m,recent;
  616.   unsigned long n = 0;
  617.   unsigned long delta = 0;
  618.   char lock[MAILTMPLEN];
  619.   MESSAGECACHE *elt;
  620.   blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);
  621. /* do nothing if stream dead */
  622.   if (!mtx_ping (stream)) return;
  623.   if (stream->rdonly) { /* won't do on readonly files! */
  624.     mm_log ("Expunge ignored on readonly mailbox",WARN);
  625.     return;
  626.   }
  627.   if (LOCAL->filetime && !LOCAL->shouldcheck) {
  628.     fstat (LOCAL->fd,&sbuf); /* get current write time */
  629.     if (LOCAL->filetime < sbuf.st_mtime) LOCAL->shouldcheck = T;
  630.   }
  631.   /* The cretins who designed flock() created a window of vulnerability in
  632.    * upgrading locks from shared to exclusive or downgrading from exclusive
  633.    * to shared.  Rather than maintain the lock at shared status at a minimum,
  634.    * flock() actually *releases* the former lock.  Obviously they never talked
  635.    * to any database guys.  Fortunately, we have the parse/append permission
  636.    * lock.  If we require this lock before going exclusive on the mailbox,
  637.    * another process can not sneak in and steal the exclusive mailbox lock on
  638.    * us, because it will block on trying to get parse/append permission first.
  639.    */
  640. /* get exclusive parse/append permission */
  641.   if ((ld = lockfd (LOCAL->fd,lock,LOCK_EX)) < 0) {
  642.     mm_log ("Unable to lock expunge mailbox",ERROR);
  643.     return;
  644.   }
  645. /* get exclusive access */
  646.   if (flock (LOCAL->fd,LOCK_EX|LOCK_NB)) {
  647.     (*bn) (BLOCK_FILELOCK,NIL);
  648.     flock (LOCAL->fd,LOCK_SH); /* recover previous lock */
  649.     (*bn) (BLOCK_NONE,NIL);
  650.     mm_log("Can't expunge because mailbox is in use by another process",ERROR);
  651.     unlockfd (ld,lock); /* release exclusive parse/append permission */
  652.     return;
  653.   }
  654.   mm_critical (stream); /* go critical */
  655.   recent = stream->recent; /* get recent now that pinged and locked */
  656.   while (i <= stream->nmsgs) { /* for each message */
  657.     elt = mtx_elt (stream,i); /* get cache element */
  658. /* number of bytes to smash or preserve */
  659.     k = elt->private.special.text.size + elt->rfc822_size;
  660.     if (elt->deleted) { /* if deleted */
  661.       if (elt->recent) --recent;/* if recent, note one less recent message */
  662.       delta += k; /* number of bytes to delete */
  663.       mail_expunged (stream,i); /* notify upper levels */
  664.       n++; /* count up one more expunged message */
  665.     }
  666.     else if (i++ && delta) { /* preserved message */
  667. /* first byte to preserve */
  668.       j = elt->private.special.offset;
  669.       do { /* read from source position */
  670. m = min (k,LOCAL->buflen);
  671. lseek (LOCAL->fd,j,L_SET);
  672. read (LOCAL->fd,LOCAL->buf,m);
  673. pos = j - delta; /* write to destination position */
  674. lseek (LOCAL->fd,pos,L_SET);
  675. while (T) {
  676.   lseek (LOCAL->fd,pos,L_SET);
  677.   if (write (LOCAL->fd,LOCAL->buf,m) > 0) break;
  678.   mm_notify (stream,strerror (errno),WARN);
  679.   mm_diskerror (stream,errno,T);
  680. }
  681. pos += m; /* new position */
  682. j += m; /* next chunk, perhaps */
  683.       } while (k -= m); /* until done */
  684. /* note the new address of this text */
  685.       elt->private.special.offset -= delta;
  686.     }
  687. /* preserved but no deleted messages */
  688.     else pos = elt->private.special.offset + k;
  689.   }
  690.   if (n) { /* truncate file after last message */
  691.     if (pos != (LOCAL->filesize -= delta)) {
  692.       sprintf (LOCAL->buf,"Calculated size mismatch %lu != %lu, delta = %lu",
  693.        (unsigned long) pos,(unsigned long) LOCAL->filesize,delta);
  694.       mm_log (LOCAL->buf,WARN);
  695.       LOCAL->filesize = pos; /* fix it then */
  696.     }
  697.     ftruncate (LOCAL->fd,LOCAL->filesize);
  698.     sprintf (LOCAL->buf,"Expunged %lu messages",n);
  699. /* output the news */
  700.     mm_log (LOCAL->buf,(long) NIL);
  701.   }
  702.   else mm_log ("No messages deleted, so no update needed",(long) NIL);
  703.   fsync (LOCAL->fd); /* force disk update */
  704.   fstat (LOCAL->fd,&sbuf); /* get new write time */
  705.   LOCAL->filetime = sbuf.st_mtime;
  706.   mm_nocritical (stream); /* release critical */
  707. /* notify upper level of new mailbox size */
  708.   mail_exists (stream,stream->nmsgs);
  709.   mail_recent (stream,recent);
  710.   (*bn) (BLOCK_FILELOCK,NIL);
  711.   flock (LOCAL->fd,LOCK_SH); /* allow sharers again */
  712.   (*bn) (BLOCK_NONE,NIL);
  713.   unlockfd (ld,lock); /* release exclusive parse/append permission */
  714. }
  715. /* MTX mail copy message(s)
  716.  * Accepts: MAIL stream
  717.  *     sequence
  718.  *     destination mailbox
  719.  *     copy options
  720.  * Returns: T if success, NIL if failed
  721.  */
  722. long mtx_copy (MAILSTREAM *stream,char *sequence,char *mailbox,long options)
  723. {
  724.   struct stat sbuf;
  725.   time_t tp[2];
  726.   MESSAGECACHE *elt;
  727.   unsigned long i,j,k;
  728.   long ret = LONGT;
  729.   int fd,ld;
  730.   char file[MAILTMPLEN],lock[MAILTMPLEN];
  731.   mailproxycopy_t pc =
  732.     (mailproxycopy_t) mail_parameters (stream,GET_MAILPROXYCOPY,NIL);
  733. /* make sure valid mailbox */
  734.   if (!mtx_isvalid (mailbox,LOCAL->buf)) switch (errno) {
  735.   case ENOENT: /* no such file? */
  736.     mm_notify (stream,"[TRYCREATE] Must create mailbox before copy",NIL);
  737.     return NIL;
  738.   case 0: /* merely empty file? */
  739.     break;
  740.   case EINVAL:
  741.     if (pc) return (*pc) (stream,sequence,mailbox,options);
  742.     sprintf (LOCAL->buf,"Invalid MTX-format mailbox name: %.80s",mailbox);
  743.     mm_log (LOCAL->buf,ERROR);
  744.     return NIL;
  745.   default:
  746.     if (pc) return (*pc) (stream,sequence,mailbox,options);
  747.     sprintf (LOCAL->buf,"Not a MTX-format mailbox: %.80s",mailbox);
  748.     mm_log (LOCAL->buf,ERROR);
  749.     return NIL;
  750.   }
  751.   if (!((options & CP_UID) ? mail_uid_sequence (stream,sequence) :
  752. mail_sequence (stream,sequence))) return NIL;
  753. /* got file? */  
  754.   if ((fd=  open (mtx_file (file,mailbox),O_RDWR|O_CREAT,S_IREAD|S_IWRITE))<0){
  755.     sprintf (LOCAL->buf,"Unable to open copy mailbox: %s",strerror (errno));
  756.     mm_log (LOCAL->buf,ERROR);
  757.     return NIL;
  758.   }
  759.   mm_critical (stream); /* go critical */
  760. /* get exclusive parse/append permission */
  761.   if ((ld = lockfd (fd,lock,LOCK_EX)) < 0) {
  762.     mm_log ("Unable to lock copy mailbox",ERROR);
  763.     return NIL;
  764.   }
  765.   fstat (fd,&sbuf); /* get current file size */
  766.   lseek (fd,sbuf.st_size,L_SET);/* move to end of file */
  767. /* for each requested message */
  768.   for (i = 1; ret && (i <= stream->nmsgs); i++) 
  769.     if ((elt = mail_elt (stream,i))->sequence) {
  770.       lseek (LOCAL->fd,elt->private.special.offset,L_SET);
  771. /* number of bytes to copy */
  772.       k = elt->private.special.text.size + elt->rfc822_size;
  773.       do { /* read from source position */
  774. j = min (k,LOCAL->buflen);
  775. read (LOCAL->fd,LOCAL->buf,j);
  776. if (write (fd,LOCAL->buf,j) < 0) ret = NIL;
  777.       } while (ret && (k -= j));/* until done */
  778.     }
  779. /* make sure all the updates take */
  780.   if (!(ret && (ret = !fsync (fd)))) {
  781.     sprintf (LOCAL->buf,"Unable to write message: %s",strerror (errno));
  782.     mm_log (LOCAL->buf,ERROR);
  783.     ftruncate (fd,sbuf.st_size);
  784.   }
  785.   tp[0] = sbuf.st_atime; /* preserve atime and mtime */
  786.   tp[1] = sbuf.st_mtime;
  787.   utime (file,tp); /* set the times */
  788.   close (fd); /* close the file */
  789.   unlockfd (ld,lock); /* release exclusive parse/append permission */
  790.   mm_nocritical (stream); /* release critical */
  791. /* delete all requested messages */
  792.   if (ret && (options & CP_MOVE)) {
  793.     for (i = 1; i <= stream->nmsgs; i++)
  794.       if ((elt = mtx_elt (stream,i))->sequence) {
  795. elt->deleted = T; /* mark message deleted */
  796. /* recalculate status */
  797. mtx_update_status (stream,i,NIL);
  798.       }
  799.     if (!stream->rdonly) { /* make sure the update takes */
  800.       fsync (LOCAL->fd);
  801.       fstat (LOCAL->fd,&sbuf); /* get current write time */
  802.       LOCAL->filetime = sbuf.st_mtime;
  803.     }
  804.   }
  805.   return ret;
  806. }
  807. /* MTX mail append message from stringstruct
  808.  * Accepts: MAIL stream
  809.  *     destination mailbox
  810.  *     stringstruct of messages to append
  811.  * Returns: T if append successful, else NIL
  812.  */
  813. long mtx_append (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  814.  STRING *message)
  815. {
  816.   struct stat sbuf;
  817.   int fd,ld;
  818.   char *s,tmp[MAILTMPLEN],file[MAILTMPLEN],lock[MAILTMPLEN];
  819.   time_t tp[2];
  820.   MESSAGECACHE elt;
  821.   long i = 0;
  822.   long size = SIZE (message);
  823.   long ret = LONGT;
  824.   unsigned long uf = 0,j;
  825.   long f = mail_parse_flags (stream ? stream : user_flags (&mtxproto),
  826.      flags,&j);
  827. /* reverse bits (dontcha wish we had CIRC?) */
  828.   while (j) uf |= 1 << (29 - find_rightmost_bit (&j));
  829.   if (date) { /* want to preserve date? */
  830. /* yes, parse date into an elt */
  831.     if (!mail_parse_date (&elt,date)) {
  832.       sprintf (tmp,"Bad date in append: %.80s",date);
  833.       mm_log (tmp,ERROR);
  834.       return NIL;
  835.     }
  836.   }
  837. /* N.B.: can't use LOCAL->buf for tmp */
  838. /* make sure valid mailbox */
  839.   if (!mtx_isvalid (mailbox,tmp)) switch (errno) {
  840.   case ENOENT: /* no such file? */
  841.     if (((mailbox[0] == 'I') || (mailbox[0] == 'i')) &&
  842. ((mailbox[1] == 'N') || (mailbox[1] == 'n')) &&
  843. ((mailbox[2] == 'B') || (mailbox[2] == 'b')) &&
  844. ((mailbox[3] == 'O') || (mailbox[3] == 'o')) &&
  845. ((mailbox[4] == 'X') || (mailbox[4] == 'x')) && !mailbox[5])
  846.       dummy_create (NIL,"INBOX.MTX");
  847.     else {
  848.       mm_notify (stream,"[TRYCREATE] Must create mailbox before append",NIL);
  849.       return NIL;
  850.     }
  851. /* falls through */
  852.   case 0: /* merely empty file? */
  853.     break;
  854.   case EINVAL:
  855.     sprintf (tmp,"Invalid MTX-format mailbox name: %.80s",mailbox);
  856.     mm_log (tmp,ERROR);
  857.     return NIL;
  858.   default:
  859.     sprintf (tmp,"Not a MTX-format mailbox: %.80s",mailbox);
  860.     mm_log (tmp,ERROR);
  861.     return NIL;
  862.   }
  863.   if ((fd = open (mtx_file (file,mailbox),O_RDWR|O_CREAT,
  864.   S_IREAD|S_IWRITE)) < 0) {
  865.     sprintf (tmp,"Can't open append mailbox: %s",strerror (errno));
  866.     mm_log (tmp,ERROR);
  867.     return NIL;
  868.   }
  869. /* get exclusive parse/append permission */
  870.   if ((ld = lockfd (fd,lock,LOCK_EX)) < 0) {
  871.     mm_log ("Unable to lock append mailbox",ERROR);
  872.     return NIL;
  873.   }
  874.   mm_critical (stream); /* go critical */
  875.   fstat (fd,&sbuf); /* get current file size */
  876.   lseek (fd,sbuf.st_size,L_SET);/* move to end of file */
  877.   if (date) mail_date(tmp,&elt);/* write preseved date */
  878.   else internal_date (tmp); /* get current date in IMAP format */
  879. /* add remainder of header */
  880.   sprintf (tmp+26,",%ld;%010lo%02o1512",size,uf,(unsigned) f);
  881.   size += (i = strlen (tmp)); /* size of buffer */
  882.   s = (char *) fs_get (size); /* get buffer for message */
  883.   strncpy (s,tmp,i); /* copy message */
  884.   while (i < size) s[i++] = SNX (message);
  885. /* write message */
  886.   if ((write (fd,s,size) < 0) || fsync (fd)) {
  887.     sprintf (tmp,"Message append failed: %s",strerror (errno));
  888.     mm_log (tmp,ERROR);
  889.     ftruncate (fd,sbuf.st_size);
  890.     ret = NIL;
  891.   }
  892.   tp[0] = sbuf.st_atime; /* preserve atime and mtime */
  893.   tp[1] = sbuf.st_mtime;
  894.   utime (file,tp); /* set the times */
  895.   close (fd); /* close the file */
  896.   unlockfd (ld,lock); /* release exclusive parse/append permission */
  897.   mm_nocritical (stream); /* release critical */
  898.   fs_give ((void **) &s); /* flush the buffer */
  899.   return ret;
  900. }
  901. /* Internal routines */
  902. /* MTX mail generate file string
  903.  * Accepts: temporary buffer to write into
  904.  *     mailbox name string
  905.  * Returns: local file string or NIL if failure
  906.  */
  907. char *mtx_file (char *dst,char *name)
  908. {
  909.   char tmp[MAILTMPLEN];
  910.   char *s = mailboxfile (dst,name);
  911. /* return our standard inbox */
  912.   return (s && !*s) ? mailboxfile (dst,mtx_isvalid ("~/INBOX",tmp) ?
  913.    "~/INBOX" : "INBOX.MTX") : s;
  914. }
  915. /* MTX mail parse mailbox
  916.  * Accepts: MAIL stream
  917.  * Returns: T if parse OK
  918.  *     NIL if failure, stream aborted
  919.  */
  920. long mtx_parse (MAILSTREAM *stream)
  921. {
  922.   struct stat sbuf;
  923.   MESSAGECACHE *elt = NIL;
  924.   char c,*s,*t,*x;
  925.   char tmp[MAILTMPLEN];
  926.   unsigned long i,j;
  927.   long curpos = LOCAL->filesize;
  928.   long nmsgs = stream->nmsgs;
  929.   long recent = stream->recent;
  930.   short silent = stream->silent;
  931.   fstat (LOCAL->fd,&sbuf); /* get status */
  932.   if (sbuf.st_size < curpos) { /* sanity check */
  933.     sprintf (tmp,"Mailbox shrank from %ld to %ld!",curpos,sbuf.st_size);
  934.     mm_log (tmp,ERROR);
  935.     mtx_close (stream,NIL);
  936.     return NIL;
  937.   }
  938.   stream->silent = T; /* don't pass up mm_exists() events yet */
  939.   while (sbuf.st_size - curpos){/* while there is stuff to parse */
  940. /* get to that position in the file */
  941.     lseek (LOCAL->fd,curpos,L_SET);
  942.     if ((i = read (LOCAL->fd,LOCAL->buf,64)) <= 0) {
  943.       sprintf (tmp,"Unable to read internal header at %lu, size = %lu: %s",
  944.        (unsigned long) curpos,(unsigned long) sbuf.st_size,
  945.        i ? strerror (errno) : "no data read");
  946.       mm_log (tmp,ERROR);
  947.       mtx_close (stream,NIL);
  948.       return NIL;
  949.     }
  950.     LOCAL->buf[i] = ''; /* tie off buffer just in case */
  951.     if (!((s = strchr (LOCAL->buf,'15')) && (s[1] == '12'))) {
  952.       sprintf (tmp,"Unable to find CRLF at %lu in %lu bytes, text: %s",
  953.        (unsigned long) curpos,i,LOCAL->buf);
  954.       mm_log (tmp,ERROR);
  955.       mtx_close (stream,NIL);
  956.       return NIL;
  957.     }
  958.     *s = ''; /* tie off header line */
  959.     i = (s + 2) - LOCAL->buf; /* note start of text offset */
  960.     if (!((s = strchr (LOCAL->buf,',')) && (t = strchr (s+1,';')))) {
  961.       sprintf (tmp,"Unable to parse internal header at %lu: %s",
  962.        (unsigned long) curpos,LOCAL->buf);
  963.       mm_log (tmp,ERROR);
  964.       mtx_close (stream,NIL);
  965.       return NIL;
  966.     }
  967.     *s++ = ''; *t++ = ''; /* tie off fields */
  968. /* swell the cache */
  969.     mail_exists (stream,++nmsgs);
  970. /* instantiate an elt for this message */
  971.     (elt = mail_elt (stream,nmsgs))->valid = T;
  972.     elt->private.uid = ++stream->uid_last;
  973. /* note file offset of header */
  974.     elt->private.special.offset = curpos;
  975. /* in case error */
  976.     elt->private.special.text.size = 0;
  977. /* header size not known yet */
  978.     elt->private.msg.header.text.size = 0;
  979.     x = s; /* parse the header components */
  980.     if (mail_parse_date (elt,LOCAL->buf) &&
  981. (elt->rfc822_size = strtoul (s,&s,10)) && (!(s && *s)) &&
  982. isdigit (t[0]) && isdigit (t[1]) && isdigit (t[2]) &&
  983. isdigit (t[3]) && isdigit (t[4]) && isdigit (t[5]) &&
  984. isdigit (t[6]) && isdigit (t[7]) && isdigit (t[8]) &&
  985. isdigit (t[9]) && isdigit (t[10]) && isdigit (t[11]) && !t[12])
  986.       elt->private.special.text.size = i;
  987.     if (elt->private.special.text.size) elt->private.msg.header.offset =
  988.       elt->private.msg.text.offset = 
  989. elt->private.special.offset + elt->private.special.text.size;
  990.     else { /* oops */
  991.       sprintf (tmp,"Unable to parse internal header elements at %ld: %s,%s;%s",
  992.        curpos,LOCAL->buf,x,t);
  993.       mm_log (tmp,ERROR);
  994.       mtx_close (stream,NIL);
  995.       return NIL;
  996.     }
  997. /* make sure didn't run off end of file */
  998.     if ((curpos += (elt->rfc822_size + i)) > sbuf.st_size) {
  999.       sprintf (tmp,"Last message (at %lu) runs past end of file (%lu > %lu)",
  1000.        elt->private.special.offset,(unsigned long) curpos,
  1001.        (unsigned long) sbuf.st_size);
  1002.       mm_log (tmp,ERROR);
  1003.       mtx_close (stream,NIL);
  1004.       return NIL;
  1005.     }
  1006.     c = t[10]; /* remember first system flags byte */
  1007.     t[10] = ''; /* tie off flags */
  1008.     j = strtoul (t,NIL,8); /* get user flags value */
  1009.     t[10] = c; /* restore first system flags byte */
  1010. /* set up all valid user flags (reversed!) */
  1011.     while (j) if (((i = 29 - find_rightmost_bit (&j)) < NUSERFLAGS) &&
  1012.   stream->user_flags[i]) elt->user_flags |= 1 << i;
  1013. /* calculate system flags */
  1014.     if ((j = ((t[10]-'0') * 8) + t[11]-'0') & fSEEN) elt->seen = T;
  1015.     if (j & fDELETED) elt->deleted = T;
  1016.     if (j & fFLAGGED) elt->flagged = T;
  1017.     if (j & fANSWERED) elt->answered = T;
  1018.     if (j & fDRAFT) elt->draft = T;
  1019.     if (!(j & fOLD)) { /* newly arrived message? */
  1020.       elt->recent = T;
  1021.       recent++; /* count up a new recent message */
  1022. /* mark it as old */
  1023.       mtx_update_status (stream,nmsgs,NIL);
  1024.     }
  1025.   }
  1026.   fsync (LOCAL->fd); /* make sure all the fOLD flags take */
  1027. /* update parsed file size and time */
  1028.   LOCAL->filesize = sbuf.st_size;
  1029.   fstat (LOCAL->fd,&sbuf); /* get status again to ensure time is right */
  1030.   LOCAL->filetime = sbuf.st_mtime;
  1031.   stream->silent = silent; /* can pass up events now */
  1032.   mail_exists (stream,nmsgs); /* notify upper level of new mailbox size */
  1033.   mail_recent (stream,recent); /* and of change in recent messages */
  1034.   return LONGT; /* return the winnage */
  1035. }
  1036. /* MTX get cache element with status updating from file
  1037.  * Accepts: MAIL stream
  1038.  *     message number
  1039.  * Returns: cache element
  1040.  */
  1041. MESSAGECACHE *mtx_elt (MAILSTREAM *stream,unsigned long msgno)
  1042. {
  1043.   MESSAGECACHE *elt = mail_elt (stream,msgno);
  1044.   struct { /* old flags */
  1045.     unsigned int seen : 1;
  1046.     unsigned int deleted : 1;
  1047.     unsigned int flagged : 1;
  1048.     unsigned int answered : 1;
  1049.     unsigned int draft : 1;
  1050.     unsigned long user_flags;
  1051.   } old;
  1052.   old.seen = elt->seen; old.deleted = elt->deleted; old.flagged = elt->flagged;
  1053.   old.answered = elt->answered; old.draft = elt->draft;
  1054.   old.user_flags = elt->user_flags;
  1055.   mtx_read_flags (stream,elt);
  1056.   if ((old.seen != elt->seen) || (old.deleted != elt->deleted) ||
  1057.       (old.flagged != elt->flagged) || (old.answered != elt->answered) ||
  1058.       (old.draft != elt->draft) || (old.user_flags != elt->user_flags))
  1059.     mm_flags (stream,msgno); /* let top level know */
  1060.   return elt;
  1061. }
  1062. /* MTX read flags from file
  1063.  * Accepts: MAIL stream
  1064.  * Returns: cache element
  1065.  */
  1066. void mtx_read_flags (MAILSTREAM *stream,MESSAGECACHE *elt)
  1067. {
  1068.   unsigned long i,j;
  1069. /* noop if readonly and have valid flags */
  1070.   if (stream->rdonly && elt->valid) return;
  1071. /* set the seek pointer */
  1072.   lseek (LOCAL->fd,(off_t) elt->private.special.offset +
  1073.  elt->private.special.text.size - 14,L_SET);
  1074. /* read the new flags */
  1075.   if (read (LOCAL->fd,LOCAL->buf,12) < 0) {
  1076.     sprintf (LOCAL->buf,"Unable to read new status: %s",strerror (errno));
  1077.     fatal (LOCAL->buf);
  1078.   }
  1079. /* calculate system flags */
  1080.   i = (((LOCAL->buf[10]-'0') * 8) + LOCAL->buf[11]-'0');
  1081.   elt->seen = i & fSEEN ? T : NIL; elt->deleted = i & fDELETED ? T : NIL;
  1082.   elt->flagged = i & fFLAGGED ? T : NIL;
  1083.   elt->answered = i & fANSWERED ? T : NIL; elt->draft = i & fDRAFT ? T : NIL;
  1084.   LOCAL->buf[10] = ''; /* tie off flags */
  1085.   j = strtoul(LOCAL->buf,NIL,8);/* get user flags value */
  1086. /* set up all valid user flags (reversed!) */
  1087.   while (j) if (((i = 29 - find_rightmost_bit (&j)) < NUSERFLAGS) &&
  1088. stream->user_flags[i]) elt->user_flags |= 1 << i;
  1089.   elt->valid = T; /* have valid flags now */
  1090. }
  1091. /* MTX update status string
  1092.  * Accepts: MAIL stream
  1093.  *     message number
  1094.  *     flag saying whether or not to sync
  1095.  */
  1096. void mtx_update_status (MAILSTREAM *stream,unsigned long msgno,long syncflag)
  1097. {
  1098.   MESSAGECACHE *elt = mail_elt (stream,msgno);
  1099.   struct stat sbuf;
  1100.   unsigned long j,k = 0;
  1101. /* readonly */
  1102.   if (stream->rdonly || !elt->valid) mtx_read_flags (stream,elt);
  1103.   else { /* readwrite */
  1104.     j = elt->user_flags; /* get user flags */
  1105. /* reverse bits (dontcha wish we had CIRC?) */
  1106.     while (j) k |= 1 << (29 - find_rightmost_bit (&j));
  1107. /* print new flag string */
  1108.     sprintf (LOCAL->buf,"%010lo%02o",k,(unsigned)
  1109.      (fOLD + (fSEEN * elt->seen) + (fDELETED * elt->deleted) +
  1110.       (fFLAGGED * elt->flagged) + (fANSWERED * elt->answered) +
  1111.       (fDRAFT * elt->draft)));
  1112. /* get to that place in the file */
  1113.     lseek (LOCAL->fd,(off_t) elt->private.special.offset +
  1114.    elt->private.special.text.size - 14,L_SET);
  1115. /* write new flags */
  1116.     write (LOCAL->fd,LOCAL->buf,12);
  1117.     if (syncflag) { /* sync if requested */
  1118.       fsync (LOCAL->fd);
  1119.       fstat (LOCAL->fd,&sbuf); /* get new write time */
  1120.       LOCAL->filetime = sbuf.st_mtime;
  1121.     }
  1122.   }
  1123. }
  1124. /* MTX locate header for a message
  1125.  * Accepts: MAIL stream
  1126.  *     message number
  1127.  *     pointer to returned header size
  1128.  * Returns: position of header in file
  1129.  */
  1130. unsigned long mtx_hdrpos (MAILSTREAM *stream,unsigned long msgno,
  1131.   unsigned long *size)
  1132. {
  1133.   unsigned long siz;
  1134.   long i = 0;
  1135.   int q = 0;
  1136.   char *s,tmp[MAILTMPLEN];
  1137.   MESSAGECACHE *elt = mtx_elt (stream,msgno);
  1138. /* is header size known? */
  1139.   if (!(*size = elt->private.msg.header.text.size)) {
  1140. /* get to header position */
  1141.     lseek (LOCAL->fd,elt->private.msg.header.offset,L_SET);
  1142. /* search message for CRLF CRLF */
  1143.     for (siz = 1,s = tmp; siz <= elt->rfc822_size; siz++) {
  1144. /* read another buffer as necessary */
  1145.       if (--i <= 0) /* buffer empty? */
  1146. if (read (LOCAL->fd,s = tmp,
  1147.   i = min (elt->rfc822_size - siz,(long) MAILTMPLEN)) < 0)
  1148. /* I/O error? */
  1149.   return elt->private.msg.header.offset;
  1150.       switch (q) { /* sniff at buffer */
  1151.       case 0: /* first character */
  1152. q = (*s++ == '15') ? 1 : 0;
  1153. break;
  1154.       case 1: /* second character */
  1155. q = (*s++ == '12') ? 2 : 0;
  1156. break;
  1157.       case 2: /* third character */
  1158. q = (*s++ == '15') ? 3 : 0;
  1159. break;
  1160.       case 3: /* fourth character */
  1161. if (*s++ == '12') { /* have the sequence? */
  1162. /* yes, note for later */
  1163.   elt->private.msg.header.text.size = *size = siz;
  1164.   return elt->private.msg.header.offset;
  1165. }
  1166. q = 0; /* lost... */
  1167. break;
  1168.       }
  1169.     }
  1170. /* header consumes entire message */
  1171.     elt->private.msg.header.text.size = *size = elt->rfc822_size;
  1172.   }
  1173.   return elt->private.msg.header.offset;
  1174. }