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

网络编程

开发平台:

Unix_Linux

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