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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: UNIX 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: 20 December 1989
  13.  * Last Edited: 4 August 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. /* DEDICATION
  36.  *
  37.  *  This file is dedicated to my dog, Unix, also known as Yun-chan and
  38.  * Unix J. Terwilliker Jehosophat Aloysius Monstrosity Animal Beast.  Unix
  39.  * passed away at the age of 11 1/2 on September 14, 1996, 12:18 PM PDT, after
  40.  * a two-month bout with cirrhosis of the liver.
  41.  *
  42.  *  He was a dear friend, and I miss him terribly.
  43.  *
  44.  *  Lift a leg, Yunie.  Luv ya forever!!!!
  45.  */
  46. /* Validate line
  47.  * Accepts: pointer to candidate string to validate as a From header
  48.  *     return pointer to end of date/time field
  49.  *     return pointer to offset from t of time (hours of ``mmm dd hh:mm'')
  50.  *     return pointer to offset from t of time zone (if non-zero)
  51.  * Returns: t,ti,zn set if valid From string, else ti is NIL
  52.  */
  53. #define VALID(s,x,ti,zn) {
  54.   ti = 0;
  55.   if ((*s == 'F') && (s[1] == 'r') && (s[2] == 'o') && (s[3] == 'm') &&
  56.       (s[4] == ' ')) {
  57.     for (x = s + 5; *x && *x != '12'; x++);
  58.     if (*x) {
  59.       if (x[-1] == '15') --x;
  60.       if (x - s >= 41) {
  61. for (zn = -1; x[zn] != ' '; zn--);
  62. if ((x[zn-1] == 'm') && (x[zn-2] == 'o') && (x[zn-3] == 'r') &&
  63.     (x[zn-4] == 'f') && (x[zn-5] == ' ') && (x[zn-6] == 'e') &&
  64.     (x[zn-7] == 't') && (x[zn-8] == 'o') && (x[zn-9] == 'm') &&
  65.     (x[zn-10] == 'e') && (x[zn-11] == 'r') && (x[zn-12] == ' '))
  66.   x += zn - 12;
  67.       }
  68.       if (x - s >= 27) {
  69. if (x[-5] == ' ') {
  70.   if (x[-8] == ':') zn = 0,ti = -5;
  71.   else if (x[-9] == ' ') ti = zn = -9;
  72.   else if ((x[-11] == ' ') && ((x[-10]=='+') || (x[-10]=='-')))
  73.     ti = zn = -11;
  74. }
  75. else if (x[-4] == ' ') {
  76.   if (x[-9] == ' ') zn = -4,ti = -9;
  77. }
  78. else if (x[-6] == ' ') {
  79.   if ((x[-11] == ' ') && ((x[-5] == '+') || (x[-5] == '-')))
  80.     zn = -6,ti = -11;
  81. }
  82. if (ti && !((x[ti - 3] == ':') &&
  83.     (x[ti -= ((x[ti - 6] == ':') ? 9 : 6)] == ' ') &&
  84.     (x[ti - 3] == ' ') && (x[ti - 7] == ' ') &&
  85.     (x[ti - 11] == ' '))) ti = 0;
  86.       }
  87.     }
  88.   }
  89. }
  90. /* You are not expected to understand this macro, but read the next page if
  91.  * you are not faint of heart.
  92.  *
  93.  * Known formats to the VALID macro are:
  94.  * From user Wed Dec  2 05:53 1992
  95.  * BSD From user Wed Dec  2 05:53:22 1992
  96.  * SysV From user Wed Dec  2 05:53 PST 1992
  97.  * rn From user Wed Dec  2 05:53:22 PST 1992
  98.  * From user Wed Dec  2 05:53 -0700 1992
  99.  * emacs From user Wed Dec  2 05:53:22 -0700 1992
  100.  * From user Wed Dec  2 05:53 1992 PST
  101.  * From user Wed Dec  2 05:53:22 1992 PST
  102.  * From user Wed Dec  2 05:53 1992 -0700
  103.  * Solaris From user Wed Dec  2 05:53:22 1992 -0700
  104.  *
  105.  * Plus all of the above with `` remote from xxx'' after it. Thank you very
  106.  * much, smail and Solaris, for making my life considerably more complicated.
  107.  */
  108. /*
  109.  * What?  You want to understand the VALID macro anyway?  Alright, since you
  110.  * insist.  Actually, it isn't really all that difficult, provided that you
  111.  * take it step by step.
  112.  *
  113.  * Line 1 Initializes the return ti value to failure (0);
  114.  * Lines 2-3 Validates that the 1st-5th characters are ``From ''.
  115.  * Lines 4-6 Validates that there is an end of line and points x at it.
  116.  * Lines 7-14 First checks to see if the line is at least 41 characters long.
  117.  * If so, it scans backwards to find the rightmost space.  From
  118.  * that point, it scans backwards to see if the string matches
  119.  * `` remote from''.  If so, it sets x to point to the space at
  120.  * the start of the string.
  121.  * Line 15 Makes sure that there are at least 27 characters in the line.
  122.  * Lines 16-21 Checks if the date/time ends with the year (there is a space
  123.  * five characters back).  If there is a colon three characters
  124.  * further back, there is no timezone field, so zn is set to 0
  125.  * and ti is set in front of the year.  Otherwise, there must
  126.  * either to be a space four characters back for a three-letter
  127.  * timezone, or a space six characters back followed by a + or -
  128.  * for a numeric timezone; in either case, zn and ti become the
  129.  * offset of the space immediately before it.
  130.  * Lines 22-24 Are the failure case for line 14.  If there is a space four
  131.  * characters back, it is a three-letter timezone; there must be a
  132.  * space for the year nine characters back.  zn is the zone
  133.  * offset; ti is the offset of the space.
  134.  * Lines 25-28 Are the failure case for line 20.  If there is a space six
  135.  * characters back, it is a numeric timezone; there must be a
  136.  * space eleven characters back and a + or - five characters back.
  137.  * zn is the zone offset; ti is the offset of the space.
  138.  * Line 29-32 If ti is valid, make sure that the string before ti is of the
  139.  * form www mmm dd hh:mm or www mmm dd hh:mm:ss, otherwise
  140.  * invalidate ti.  There must be a colon three characters back
  141.  * and a space six or nine characters back (depending upon
  142.  * whether or not the character six characters back is a colon).
  143.  * There must be a space three characters further back (in front
  144.  * of the day), one seven characters back (in front of the month),
  145.  * and one eleven characters back (in front of the day of week).
  146.  * ti is set to be the offset of the space before the time.
  147.  *
  148.  * Why a macro?  It gets invoked a *lot* in a tight loop.  On some of the
  149.  * newer pipelined machines it is faster being open-coded than it would be if
  150.  * subroutines are called.
  151.  *
  152.  * Why does it scan backwards from the end of the line, instead of doing the
  153.  * much easier forward scan?  There is no deterministic way to parse the
  154.  * ``user'' field, because it may contain unquoted spaces!  Yes, I tested it to
  155.  * see if unquoted spaces were possible.  They are, and I've encountered enough
  156.  * evil mail to be totally unwilling to trust that ``it will never happen''.
  157.  */
  158. /* Build parameters */
  159. #define KODRETRY 15 /* kiss-of-death retry in seconds */
  160. #define LOCKTIMEOUT 5 /* lock timeout in minutes */
  161. #define CHUNK 16384 /* read-in chunk size */
  162. /* UNIX I/O stream local data */
  163. typedef struct unix_local {
  164.   unsigned int dirty : 1; /* disk copy needs updating */
  165.   int fd; /* mailbox file descriptor */
  166.   int ld; /* lock file descriptor */
  167.   char *lname; /* lock file name */
  168.   off_t filesize; /* file size parsed */
  169.   time_t filetime; /* last file time */
  170.   time_t lastsnarf; /* last snarf time (for mbox driver) */
  171.   char *buf; /* temporary buffer */
  172.   unsigned long buflen; /* current size of temporary buffer */
  173.   char *line; /* returned line */
  174. } UNIXLOCAL;
  175. /* Convenient access to local data */
  176. #define LOCAL ((UNIXLOCAL *) stream->local)
  177. /* UNIX protected file structure */
  178. typedef struct unix_file {
  179.   MAILSTREAM *stream; /* current stream */
  180.   off_t curpos; /* current file position */
  181.   off_t protect; /* protected position */
  182.   off_t filepos; /* current last written file position */
  183.   char *buf; /* overflow buffer */
  184.   size_t buflen; /* current overflow buffer length */
  185.   char *bufpos; /* current buffer position */
  186. } UNIXFILE;
  187. /* Function prototypes */
  188. DRIVER *unix_valid (char *name);
  189. long unix_isvalid_fd (int fd);
  190. void *unix_parameters (long function,void *value);
  191. void unix_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents);
  192. void unix_list (MAILSTREAM *stream,char *ref,char *pat);
  193. void unix_lsub (MAILSTREAM *stream,char *ref,char *pat);
  194. long unix_create (MAILSTREAM *stream,char *mailbox);
  195. long unix_delete (MAILSTREAM *stream,char *mailbox);
  196. long unix_rename (MAILSTREAM *stream,char *old,char *newname);
  197. MAILSTREAM *unix_open (MAILSTREAM *stream);
  198. void unix_close (MAILSTREAM *stream,long options);
  199. char *unix_header (MAILSTREAM *stream,unsigned long msgno,
  200.    unsigned long *length,long flags);
  201. long unix_text (MAILSTREAM *stream,unsigned long msgno,STRING *bs,long flags);
  202. char *unix_text_work (MAILSTREAM *stream,MESSAGECACHE *elt,
  203.       unsigned long *length,long flags);
  204. void unix_flagmsg (MAILSTREAM *stream,MESSAGECACHE *elt);
  205. long unix_ping (MAILSTREAM *stream);
  206. void unix_check (MAILSTREAM *stream);
  207. void unix_check (MAILSTREAM *stream);
  208. void unix_expunge (MAILSTREAM *stream);
  209. long unix_copy (MAILSTREAM *stream,char *sequence,char *mailbox,long options);
  210. long unix_append (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  211.   STRING *message);
  212. long unix_append_putc (int fd,char *s,long *i,char c);
  213. void unix_abort (MAILSTREAM *stream);
  214. char *unix_file (char *dst,char *name);
  215. int unix_lock (char *file,int flags,int mode,DOTLOCK *lock,int op);
  216. void unix_unlock (int fd,MAILSTREAM *stream,DOTLOCK *lock);
  217. int unix_parse (MAILSTREAM *stream,DOTLOCK *lock,int op);
  218. char *unix_mbxline (MAILSTREAM *stream,STRING *bs,unsigned long *size);
  219. unsigned long unix_pseudo (MAILSTREAM *stream,char *hdr);
  220. unsigned long unix_xstatus (MAILSTREAM *stream,char *status,MESSAGECACHE *elt,
  221.     long flag);
  222. long unix_rewrite (MAILSTREAM *stream,unsigned long *nexp,DOTLOCK *lock);
  223. long unix_extend (MAILSTREAM *stream,unsigned long size);
  224. /* New algorithm */
  225. long unix_rewrite_new (MAILSTREAM *stream,unsigned long *nexp,
  226.        unsigned long *size,unsigned long *recent);
  227. void unix_write (UNIXFILE *f,char *s,unsigned long i);
  228. void unix_phys_write (UNIXFILE *f,char *buf,size_t size);
  229. /* Old algorithm */
  230. long unix_rewrite_old (MAILSTREAM *stream,unsigned long *nexp,
  231.        unsigned long *size,unsigned long *recent);
  232. long unix_write_message (FILE *f,MAILSTREAM *stream,MESSAGECACHE *elt,
  233.  unsigned long *size);
  234. long unix_fwrite (FILE *f,char *s,unsigned long i,unsigned long *size);
  235. long unix_punt_scratch (FILE *f);