8fd836430b4d6ef07ae9914236e95acf285e2aaa
[mmh] / sbr / m_getfld.c
1 /*
2 ** m_getfld.c -- read/parse a message
3 **
4 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 #include <h/mh.h>
10 #include <h/mts.h>
11 #include <h/utils.h>
12
13 /*
14 ** This module has a long and checkered history.  First, it didn't burst
15 ** maildrops correctly because it considered two CTRL-A:s in a row to be
16 ** an inter-message delimiter.  It really is four CTRL-A:s followed by a
17 ** newline.  Unfortunately, MMDF will convert this delimiter *inside* a
18 ** message to a CTRL-B followed by three CTRL-A:s and a newline.  This
19 ** caused the old version of m_getfld() to declare eom prematurely.  The
20 ** fix was a lot slower than
21 **
22 **              c == '\001' && peekc (iob) == '\001'
23 **
24 ** but it worked, and to increase generality, MBOX style maildrops could
25 ** be parsed as well.  Unfortunately the speed issue finally caught up with
26 ** us since this routine is at the very heart of MH.
27 **
28 ** To speed things up considerably, the routine Eom() was made an auxilary
29 ** function called by the macro eom().  Unless we are bursting a maildrop,
30 ** the eom() macro returns FALSE saying we aren't at the end of the
31 ** message.
32 **
33 ** The next thing to do is to read the mts.conf file and initialize
34 ** delimiter[] and delimlen accordingly...
35 **
36 ** After mhl was made a built-in in msh, m_getfld() worked just fine
37 ** (using m_unknown() at startup).  Until one day: a message which was
38 ** the result of a bursting was shown. Then, since the burst boundaries
39 ** aren't CTRL-A:s, m_getfld() would blinding plunge on past the boundary.
40 ** Very sad.  The solution: introduce m_eomsbr().  This hook gets called
41 ** after the end of each line (since testing for eom involves an fseek()).
42 ** This worked fine, until one day: a message with no body portion arrived.
43 ** Then the
44 **
45 **                 while (eom(c = getc(iob), iob))
46 **                      continue;
47 **
48 ** loop caused m_getfld() to return FMTERR.  So, that logic was changed to
49 ** check for (*eom_action) and act accordingly.
50 **
51 ** [ Note by meillo 2011-10:
52 **   as msh was removed from mmh, m_eomsbr() became irrelevant. ]
53 **
54 ** This worked fine, until one day: someone didn't use four CTRL:A's as
55 ** their delimiters.  So, the bullet got bit and we read mts.h and
56 ** continue to struggle on.  It's not that bad though, since the only time
57 ** the code gets executed is when inc (or msh) calls it, and both of these
58 ** have already called mts_init().
59 **
60 ** ------------------------
61 ** (Written by Van Jacobson for the mh6 m_getfld, January, 1986):
62 **
63 ** This routine was accounting for 60% of the cpu time used by most mh
64 ** programs.  I spent a bit of time tuning and it now accounts for <10%
65 ** of the time used.  Like any heavily tuned routine, it's a bit
66 ** complex and you want to be sure you understand everything that it's
67 ** doing before you start hacking on it.  Let me try to emphasize
68 ** that:  every line in this atrocity depends on every other line,
69 ** sometimes in subtle ways.  You should understand it all, in detail,
70 ** before trying to change any part.  If you do change it, test the
71 ** result thoroughly (I use a hand-constructed test file that exercises
72 ** all the ways a header name, header body, header continuation,
73 ** header-body separator, body line and body eom can align themselves
74 ** with respect to a buffer boundary).  "Minor" bugs in this routine
75 ** result in garbaged or lost mail.
76 **
77 ** If you hack on this and slow it down, I, my children and my
78 ** children's children will curse you.
79 **
80 ** This routine gets used on three different types of files: normal,
81 ** single msg files, "packed" unix or mmdf mailboxs (when used by inc)
82 ** and packed, directoried bulletin board files (when used by msh).
83 ** The biggest impact of different file types is in "eom" testing.  The
84 ** code has been carefully organized to test for eom at appropriate
85 ** times and at no other times (since the check is quite expensive).
86 ** I have tried to arrange things so that the eom check need only be
87 ** done on entry to this routine.  Since an eom can only occur after a
88 ** newline, this is easy to manage for header fields.  For the msg
89 ** body, we try to efficiently search the input buffer to see if
90 ** contains the eom delimiter.  If it does, we take up to the
91 ** delimiter, otherwise we take everything in the buffer.  (The change
92 ** to the body eom/copy processing produced the most noticeable
93 ** performance difference, particularly for "inc" and "show".)
94 **
95 ** There are three qualitatively different things this routine busts
96 ** out of a message: field names, field text and msg bodies.  Field
97 ** names are typically short (~8 char) and the loop that extracts them
98 ** might terminate on a colon, newline or max width.  I considered
99 ** using a Vax "scanc" to locate the end of the field followed by a
100 ** "bcopy" but the routine call overhead on a Vax is too large for this
101 ** to work on short names.  If Berkeley ever makes "inline" part of the
102 ** C optimiser (so things like "scanc" turn into inline instructions) a
103 ** change here would be worthwhile.
104 **
105 ** Field text is typically 60 - 100 characters so there's (barely)
106 ** a win in doing a routine call to something that does a "locc"
107 ** followed by a "bmove".  About 30% of the fields have continuations
108 ** (usually the 822 "received:" lines) and each continuation generates
109 ** another routine call.  "Inline" would be a big win here, as well.
110 **
111 ** Messages, as of this writing, seem to come in two flavors: small
112 ** (~1K) and long (>2K).  Most messages have 400 - 600 bytes of headers
113 ** so message bodies average at least a few hundred characters.
114 ** Assuming your system uses reasonably sized stdio buffers (1K or
115 ** more), this routine should be able to remove the body in large
116 ** (>500 byte) chunks.  The makes the cost of a call to "bcopy"
117 ** small but there is a premium on checking for the eom in packed
118 ** maildrops.  The eom pattern is always a simple string so we can
119 ** construct an efficient pattern matcher for it (e.g., a Vax "matchc"
120 ** instruction).  Some thought went into recognizing the start of
121 ** an eom that has been split across two buffers.
122 **
123 ** This routine wants to deal with large chunks of data so, rather
124 ** than "getc" into a local buffer, it uses stdio's buffer.  If
125 ** you try to use it on a non-buffered file, you'll get what you
126 ** deserve.  This routine "knows" that struct FILEs have a _ptr
127 ** and a _cnt to describe the current state of the buffer and
128 ** it knows that _filbuf ignores the _ptr & _cnt and simply fills
129 ** the buffer.  If stdio on your system doesn't work this way, you
130 ** may have to make small changes in this routine.
131 **
132 ** This routine also "knows" that an EOF indication on a stream is
133 ** "sticky" (i.e., you will keep getting EOF until you reposition the
134 ** stream).  If your system doesn't work this way it is broken and you
135 ** should complain to the vendor.  As a consequence of the sticky
136 ** EOF, this routine will never return any kind of EOF status when
137 ** there is data in "name" or "buf").
138 */
139
140
141 /*
142 ** static prototypes
143 */
144 static int m_Eom(int, FILE *);
145 static unsigned char *matchc(int, char *, int, char *);
146 static unsigned char *locc(int, unsigned char *, unsigned char);
147
148 #define eom(c,iob)  (msg_style != MS_DEFAULT && \
149         (((c) == *msg_delim && m_Eom(c,iob)) ||\
150         (eom_action && (*eom_action)(c))))
151
152 static unsigned char **pat_map;
153
154 /*
155 ** defined in sbr/m_msgdef.c = 0
156 ** This is a disgusting hack for "inc" so it can know how many
157 ** characters were stuffed in the buffer on the last call
158 ** (see comments in uip/scansbr.c).
159 */
160 extern int msg_count;
161
162 /*
163 ** defined in sbr/m_msgdef.c = MS_DEFAULT
164 */
165 extern int msg_style;
166
167 /*
168 ** The "full" delimiter string for a packed maildrop consists
169 ** of a newline followed by the actual delimiter.  E.g., the
170 ** full string for a Unix maildrop would be: "\n\nFrom ".
171 ** "Fdelim" points to the start of the full string and is used
172 ** in the BODY case of the main routine to search the buffer for
173 ** a possible eom.  Msg_delim points to the first character of
174 ** the actual delim. string (i.e., fdelim+1).  Edelim
175 ** points to the 2nd character of actual delimiter string.  It
176 ** is used in m_Eom because the first character of the string
177 ** has been read and matched before m_Eom is called.
178 */
179 extern char *msg_delim;  /* defined in sbr/m_msgdef.c = "" */
180 static unsigned char *fdelim;
181 static unsigned char *delimend;
182 static int fdelimlen;
183 static unsigned char *edelim;
184 static int edelimlen;
185
186 static int (*eom_action)(int) = NULL;
187
188 #ifdef _FSTDIO
189 # define _ptr _p  /* Gag   */
190 # define _cnt _r  /* Retch */
191 # define _filbuf __srget  /* Puke  */
192 # define DEFINED__FILBUF_TO_SOMETHING_SPECIFIC
193 #endif
194
195 #ifdef SCO_5_STDIO
196 # define _ptr  __ptr
197 # define _cnt  __cnt
198 # define _base __base
199 # define _filbuf(fp)  ((fp)->__cnt = 0, __filbuf(fp))
200 # define DEFINED__FILBUF_TO_SOMETHING_SPECIFIC
201 #endif
202
203 #ifndef DEFINED__FILBUF_TO_SOMETHING_SPECIFIC
204 extern int  _filbuf(FILE*);
205 #endif
206
207
208 int
209 m_getfld(int state, unsigned char *name, unsigned char *buf,
210         int bufsz, FILE *iob)
211 {
212         register unsigned char  *bp, *cp, *ep, *sp;
213         register int cnt, c, i, j;
214
215         if ((c = getc(iob)) < 0) {
216                 msg_count = 0;
217                 *buf = 0;
218                 return FILEEOF;
219         }
220         if (eom(c, iob)) {
221                 if (! eom_action) {
222                         /* flush null messages */
223                         while ((c = getc(iob)) >= 0 && eom(c, iob))
224                                 ;
225                         if (c >= 0)
226                                 ungetc(c, iob);
227                 }
228                 msg_count = 0;
229                 *buf = 0;
230                 return FILEEOF;
231         }
232
233         switch (state) {
234         case FLDEOF:
235         case BODYEOF:
236         case FLD:
237                 if (c == '\n' || c == '-') {
238                         /* we hit the header/body separator */
239                         while (c != '\n' && (c = getc(iob)) >= 0)
240                                 ;
241
242                         if (c < 0 || (c = getc(iob)) < 0 || eom(c, iob)) {
243                                 if (! eom_action) {
244                                         /* flush null messages */
245                                         while ((c = getc(iob)) >= 0 && eom(c, iob))
246                                                 ;
247                                         if (c >= 0)
248                                                 ungetc(c, iob);
249                                 }
250                                 msg_count = 0;
251                                 *buf = 0;
252                                 return FILEEOF;
253                         }
254                         state = BODY;
255                         goto body;
256                 }
257                 /*
258                 ** get the name of this component.  take characters up
259                 ** to a ':', a newline or NAMESZ-1 characters,
260                 ** whichever comes first.
261                 */
262                 cp = name;
263                 i = NAMESZ - 1;
264                 for (;;) {
265 #ifdef LINUX_STDIO
266                         bp = sp = (unsigned char *) iob->_IO_read_ptr - 1;
267                         j = (cnt = ((long) iob->_IO_read_end -
268                                 (long) iob->_IO_read_ptr)  + 1) < i ? cnt : i;
269 #elif defined(__DragonFly__)
270                         bp = sp = (unsigned char *) ((struct __FILE_public *)iob)->_p - 1;
271                         j = (cnt = ((struct __FILE_public *)iob)->_r+1) < i ? cnt : i;
272 #else
273                         bp = sp = (unsigned char *) iob->_ptr - 1;
274                         j = (cnt = iob->_cnt+1) < i ? cnt : i;
275 #endif
276                         while (--j >= 0 && (c = *bp++) != ':' && c != '\n')
277                                 *cp++ = c;
278
279                         j = bp - sp;
280                         if ((cnt -= j) <= 0) {
281 #ifdef LINUX_STDIO
282                                 iob->_IO_read_ptr = iob->_IO_read_end;
283                                 if (__underflow(iob) == EOF) {
284 #elif defined(__DragonFly__)
285                                 if (__srget(iob) == EOF) {
286 #else
287                                 if (_filbuf(iob) == EOF) {
288 #endif
289                                         *cp = *buf = 0;
290                                         advise(NULL, "eof encountered in field \"%s\"", name);
291                                         return FMTERR;
292                                 }
293 #ifdef LINUX_STDIO
294                                 iob->_IO_read_ptr++; /* NOT automatic in __underflow()! */
295 #endif
296                         } else {
297 #ifdef LINUX_STDIO
298                                 iob->_IO_read_ptr = bp + 1;
299 #elif defined(__DragonFly__)
300                                 ((struct __FILE_public *)iob)->_p = bp + 1;
301                                 ((struct __FILE_public *)iob)->_r = cnt - 1;
302 #else
303                                 iob->_ptr = bp + 1;
304                                 iob->_cnt = cnt - 1;
305 #endif
306                         }
307                         if (c == ':')
308                                 break;
309
310                         /*
311                         ** something went wrong.  possibilities are:
312                         **  . hit a newline (error)
313                         **  . got more than namesz chars. (error)
314                         **  . hit the end of the buffer. (loop)
315                         */
316                         if (c == '\n') {
317                                 /*
318                                 ** We hit the end of the line without
319                                 ** seeing ':' to terminate the field name.
320                                 ** This is usually (always?)  spam.  But,
321                                 ** blowing up is lame, especially when
322                                 ** scan(1)ing a folder with such messages.
323                                 ** Pretend such lines are the first of
324                                 ** the body (at least mutt also handles
325                                 ** it this way).
326                                 */
327
328                                 /*
329                                 ** See if buf can hold this line, since we
330                                 ** were assuming we had a buffer of NAMESZ,
331                                 ** not bufsz.
332                                 */
333                                 /* + 1 for the newline */
334                                 if (bufsz < j + 1) {
335                                         /*
336                                         ** No, it can't.  Oh well,
337                                         ** guess we'll blow up.
338                                         */
339                                         *cp = *buf = 0;
340                                         advise(NULL, "eol encountered in field \"%s\"", name);
341                                         state = FMTERR;
342                                         goto finish;
343                                 }
344                                 memcpy(buf, name, j - 1);
345                                 buf[j - 1] = '\n';
346                                 buf[j] = '\0';
347                                 /*
348                                 ** mhparse.c:get_content wants to find
349                                 ** the position of the body start, but
350                                 ** it thinks there's a blank line between
351                                 ** the header and the body (naturally!),
352                                 ** so seek back so that things line up
353                                 ** even though we don't have that blank
354                                 ** line in this case.  Simpler parsers
355                                 ** (e.g. mhl) get extra newlines, but
356                                 ** that should be harmless enough, right?
357                                 ** This is a corrupt message anyway.
358                                 */
359                                 fseek(iob, ftell(iob) - 2, SEEK_SET);
360                                 return BODY;
361                         }
362                         if ((i -= j) <= 0) {
363                                 *cp = *buf = 0;
364                                 advise(NULL, "field name \"%s\" exceeds %d bytes", name, NAMESZ - 2);
365                                 state = LENERR;
366                                 goto finish;
367                         }
368                 }
369
370                 while (isspace(*--cp) && cp >= name)
371                         ;
372                 *++cp = 0;
373                 /* fall through */
374
375         case FLDPLUS:
376                 /*
377                 ** get (more of) the text of a field.  take
378                 ** characters up to the end of this field (newline
379                 ** followed by non-blank) or bufsz-1 characters.
380                 */
381                 cp = buf; i = bufsz-1;
382                 for (;;) {
383 #ifdef LINUX_STDIO
384                         cnt = (long) iob->_IO_read_end - (long) iob->_IO_read_ptr;
385                         bp = (unsigned char *) --iob->_IO_read_ptr;
386 #elif defined(__DragonFly__)
387                         cnt = ((struct __FILE_public *)iob)->_r++;
388                         bp = (unsigned char *) --((struct __FILE_public *)iob)->_p;
389 #else
390                         cnt = iob->_cnt++;
391                         bp = (unsigned char *) --iob->_ptr;
392 #endif
393                         c = cnt < i ? cnt : i;
394                         while ((ep = locc( c, bp, '\n' ))) {
395                                 /*
396                                 ** if we hit the end of this field,
397                                 ** return.
398                                 */
399                                 if ((j = *++ep) != ' ' && j != '\t') {
400 #ifdef LINUX_STDIO
401                                         j = ep - (unsigned char *) iob->_IO_read_ptr;
402                                         memcpy(cp, iob->_IO_read_ptr, j);
403                                         iob->_IO_read_ptr = ep;
404 #elif defined(__DragonFly__)
405                                         j = ep - (unsigned char *) ((struct __FILE_public *)iob)->_p;
406                                         memcpy(cp, ((struct __FILE_public *)iob)->_p, j);
407                                         ((struct __FILE_public *)iob)->_p = ep;
408                                         ((struct __FILE_public *)iob)->_r -= j;
409 #else
410                                         j = ep - (unsigned char *) iob->_ptr;
411                                         memcpy(cp, iob->_ptr, j);
412                                         iob->_ptr = ep;
413                                         iob->_cnt -= j;
414 #endif
415                                         cp += j;
416                                         state = FLD;
417                                         goto finish;
418                                 }
419                                 c -= ep - bp;
420                                 bp = ep;
421                         }
422                         /*
423                         ** end of input or dest buffer - copy what
424                         ** we've found.
425                         */
426 #ifdef LINUX_STDIO
427                         c += bp - (unsigned char *) iob->_IO_read_ptr;
428                         memcpy(cp, iob->_IO_read_ptr, c);
429 #elif defined(__DragonFly__)
430                         c += bp - (unsigned char *) ((struct __FILE_public *)iob)->_p;
431                         memcpy(cp, ((struct __FILE_public *)iob)->_p, c);
432 #else
433                         c += bp - (unsigned char *) iob->_ptr;
434                         memcpy(cp, iob->_ptr, c);
435 #endif
436                         i -= c;
437                         cp += c;
438                         if (i <= 0) {
439                                 /* the dest buffer is full */
440 #ifdef LINUX_STDIO
441                                 iob->_IO_read_ptr += c;
442 #elif defined(__DragonFly__)
443                                 ((struct __FILE_public *)iob)->_r -= c;
444                                 ((struct __FILE_public *)iob)->_p += c;
445 #else
446                                 iob->_cnt -= c;
447                                 iob->_ptr += c;
448 #endif
449                                 state = FLDPLUS;
450                                 break;
451                         }
452                         /*
453                         ** There's one character left in the input
454                         ** buffer.  Copy it & fill the buffer.
455                         ** If the last char was a newline and the
456                         ** next char is not whitespace, this is
457                         ** the end of the field.  Otherwise loop.
458                         */
459                         --i;
460 #ifdef LINUX_STDIO
461                         *cp++ = j = *(iob->_IO_read_ptr + c);
462                         iob->_IO_read_ptr = iob->_IO_read_end;
463                         c = __underflow(iob);
464                         iob->_IO_read_ptr++;  /* NOT automatic! */
465 #elif defined(__DragonFly__)
466                         *cp++ =j = *(((struct __FILE_public *)iob)->_p + c);
467                         c = __srget(iob);
468 #else
469                         *cp++ = j = *(iob->_ptr + c);
470                         c = _filbuf(iob);
471 #endif
472                         if (c == EOF ||
473                           ((j == '\0' || j == '\n') && c != ' ' && c != '\t')) {
474                                 if (c != EOF) {
475 #ifdef LINUX_STDIO
476                                         --iob->_IO_read_ptr;
477 #elif defined(__DragonFly__)
478                                         --((struct __FILE_public *)iob)->_p;
479                                         ++((struct __FILE_public *)iob)->_r;
480 #else
481                                         --iob->_ptr;
482                                         ++iob->_cnt;
483 #endif
484                                 }
485                                 state = FLD;
486                                 break;
487                         }
488                 }
489                 break;
490
491         case BODY:
492         body:
493                 /*
494                 ** get the message body up to bufsz characters or
495                 ** the end of the message.  Sleazy hack: if bufsz
496                 ** is negative we assume that we were called to
497                 ** copy directly into the output buffer and we
498                 ** don't add an eos.
499                 */
500                 i = (bufsz < 0) ? -bufsz : bufsz-1;
501 #ifdef LINUX_STDIO
502                 bp = (unsigned char *) --iob->_IO_read_ptr;
503                 cnt = (long) iob->_IO_read_end - (long) iob->_IO_read_ptr;
504 #elif defined(__DragonFly__)
505                 bp = (unsigned char *) --((struct __FILE_public *)iob)->_p;
506                 cnt = ++((struct __FILE_public *)iob)->_r;
507 #else
508                 bp = (unsigned char *) --iob->_ptr;
509                 cnt = ++iob->_cnt;
510 #endif
511                 c = (cnt < i ? cnt : i);
512                 if (msg_style != MS_DEFAULT && c > 1) {
513                         /*
514                         ** packed maildrop - only take up to the (possible)
515                         ** start of the next message.  This "matchc" should
516                         ** probably be a Boyer-Moore matcher for non-vaxen,
517                         ** particularly since we have the alignment table
518                         ** all built for the end-of-buffer test (next).
519                         ** But our vax timings indicate that the "matchc"
520                         ** instruction is 50% faster than a carefully coded
521                         ** B.M. matcher for most strings.  (So much for
522                         ** elegant algorithms vs. brute force.)  Since I
523                         ** (currently) run MH on a vax, we use the matchc
524                         ** instruction. --vj
525                         */
526                         if ((ep = matchc( fdelimlen, fdelim, c, bp )))
527                                 c = ep - bp + 1;
528                         else {
529                                 /*
530                                 ** There's no delim in the buffer but
531                                 ** there may be a partial one at the end.
532                                 ** If so, we want to leave it so the "eom"
533                                 ** check on the next call picks it up.  Use a
534                                 ** modified Boyer-Moore matcher to make this
535                                 ** check relatively cheap.  The first "if"
536                                 ** figures out what position in the pattern
537                                 ** matches the last character in the buffer.
538                                 ** The inner "while" matches the pattern
539                                 ** against the buffer, backwards starting
540                                 ** at that position.  Note that unless the
541                                 ** buffer ends with one of the characters
542                                 ** in the pattern (excluding the first
543                                 ** and last), we do only one test.
544                                 */
545                                 ep = bp + c - 1;
546                                 if ((sp = pat_map[*ep])) {
547                                         do {
548                                                 /*
549                                                 ** This if() is true unless
550                                                 ** (a) the buffer is too
551                                                 ** small to contain this
552                                                 ** delimiter prefix,
553                                                 ** or (b) it contains
554                                                 ** exactly enough chars for
555                                                 ** the delimiter prefix.
556                                                 ** For case (a) obviously we
557                                                 ** aren't going to match.
558                                                 ** For case (b), if the
559                                                 ** buffer really contained
560                                                 ** exactly a delim prefix,
561                                                 ** then the m_eom call
562                                                 ** at entry should have
563                                                 ** found it.  Thus it's
564                                                 ** not a delim and we know
565                                                 ** we won't get a match.
566                                                 */
567                                                 if (((sp - fdelim) + 2) <= c) {
568                                                         cp = sp;
569                                                         /*
570                                                         ** Unfortunately although fdelim has a preceding NUL
571                                                         ** we can't use this as a sentinel in case the buffer
572                                                         ** contains a NUL in exactly the wrong place (this
573                                                         ** would cause us to run off the front of fdelim).
574                                                         */
575                                                         while (*--ep == *--cp)
576                                                                 if (cp < fdelim)
577                                                                         break;
578                                                         if (cp < fdelim) {
579                                                                 /* we matched the entire delim prefix,
580                                                                 ** so only take the buffer up to there.
581                                                                 ** we know ep >= bp -- check above prevents underrun
582                                                                 */
583                                                                 c = (ep - bp) + 2;
584                                                                 break;
585                                                         }
586                                                 }
587                                                 /* try matching one less char of delim string */
588                                                 ep = bp + c - 1;
589                                         } while (--sp > fdelim);
590                                 }
591                         }
592                 }
593                 memcpy( buf, bp, c );
594 #ifdef LINUX_STDIO
595                 iob->_IO_read_ptr += c;
596 #elif defined(__DragonFly__)
597                 ((struct __FILE_public *)iob)->_r -= c;
598                 ((struct __FILE_public *)iob)->_p += c;
599 #else
600                 iob->_cnt -= c;
601                 iob->_ptr += c;
602 #endif
603                 if (bufsz < 0) {
604                         msg_count = c;
605                         return (state);
606                 }
607                 cp = buf + c;
608                 break;
609
610         default:
611                 adios(NULL, "m_getfld() called with bogus state of %d", state);
612         }
613 finish:
614         *cp = 0;
615         msg_count = cp - buf;
616         return (state);
617 }
618
619
620 #ifdef RPATHS
621 static char unixbuf[BUFSIZ] = "";
622 #endif /* RPATHS */
623
624 void
625 m_unknown(FILE *iob)
626 {
627         register int c;
628         register long pos;
629         char text[10];
630         register char *cp;
631         register char *delimstr;
632
633 /*
634 ** Figure out what the message delimitter string is for this
635 ** maildrop.  (This used to be part of m_Eom but I didn't like
636 ** the idea of an "if" statement that could only succeed on the
637 ** first call to m_Eom getting executed on each call, i.e., at
638 ** every newline in the message).
639 **
640 ** If the first line of the maildrop is a Unix "From " line, we
641 ** say the style is MBOX and eat the rest of the line.  Otherwise
642 ** we say the style is MMDF and look for the delimiter string
643 ** specified when nmh was built (or from the mts.conf file).
644 */
645
646         msg_style = MS_UNKNOWN;
647
648         pos = ftell(iob);
649         if (fread(text, sizeof(*text), 5, iob) == 5
650                 && strncmp(text, "From ", 5) == 0) {
651                 msg_style = MS_MBOX;
652                 delimstr = "\nFrom ";
653 #ifndef RPATHS
654                 while ((c = getc(iob)) != '\n' && c >= 0)
655                         ;
656 #else /* RPATHS */
657                 cp = unixbuf;
658                 while ((c = getc(iob)) != '\n' && cp - unixbuf < BUFSIZ - 1)
659                         *cp++ = c;
660                 *cp = 0;
661 #endif /* RPATHS */
662         } else {
663                 /* not a Unix style maildrop */
664                 fseek(iob, pos, SEEK_SET);
665                 if (mmdlm2 == NULL || *mmdlm2 == 0)
666                         mmdlm2 = "\001\001\001\001\n";
667                 delimstr = mmdlm2;
668                 msg_style = MS_MMDF;
669         }
670         c = strlen(delimstr);
671         fdelim = (unsigned char *) mh_xmalloc((size_t) (c + 3));
672         *fdelim++ = '\0';
673         *fdelim = '\n';
674         msg_delim = (char *)fdelim+1;
675         edelim = (unsigned char *)msg_delim+1;
676         fdelimlen = c + 1;
677         edelimlen = c - 1;
678         strcpy(msg_delim, delimstr);
679         delimend = (unsigned char *)msg_delim + edelimlen;
680         if (edelimlen <= 1)
681                 adios(NULL, "maildrop delimiter must be at least 2 bytes");
682         /*
683         ** build a Boyer-Moore end-position map for the matcher in m_getfld.
684         ** N.B. - we don't match just the first char (since it's the newline
685         ** separator) or the last char (since the matchc would have found it
686         ** if it was a real delim).
687         */
688         pat_map = (unsigned char **) calloc(256, sizeof(unsigned char *));
689
690         for (cp = (char *) fdelim + 1; cp < (char *) delimend; cp++ )
691                 pat_map[(unsigned char)*cp] = (unsigned char *) cp;
692
693         if (msg_style == MS_MMDF) {
694                 /* flush extra msg hdrs */
695                 while ((c = getc(iob)) >= 0 && eom(c, iob))
696                         ;
697                 if (c >= 0)
698                         ungetc(c, iob);
699         }
700 }
701
702
703 /*
704 ** test for msg delimiter string
705 */
706
707 static int
708 m_Eom(int c, FILE *iob)
709 {
710         register long pos = 0L;
711         register int i;
712         char text[10];
713 #ifdef RPATHS
714         register char *cp;
715 #endif /* RPATHS */
716
717         pos = ftell(iob);
718         if ((i = fread(text, sizeof *text, edelimlen, iob)) != edelimlen
719                 || (strncmp(text, (char *)edelim, edelimlen)!=0)) {
720                 if (i == 0 && msg_style == MS_MBOX)
721                         /*
722                         ** the final newline in the (brain damaged) unix-format
723                         ** maildrop is part of the delimitter - delete it.
724                         */
725                         return 1;
726
727                 fseek(iob, (long)(pos-1), SEEK_SET);
728                 getc(iob);  /* should be OK */
729                 return 0;
730         }
731
732         if (msg_style == MS_MBOX) {
733 #ifndef RPATHS
734                 while ((c = getc(iob)) != '\n')
735                         if (c < 0)
736                                 break;
737 #else /* RPATHS */
738                 cp = unixbuf;
739                 while ((c = getc(iob)) != '\n' && c >= 0 && cp - unixbuf < BUFSIZ - 1)
740                         *cp++ = c;
741                 *cp = 0;
742 #endif /* RPATHS */
743         }
744
745         return 1;
746 }
747
748
749 #ifdef RPATHS
750 /*
751 ** Return the Return-Path and Delivery-Date
752 ** header information.
753 **
754 ** Currently, I'm assuming that the "From " line
755 ** takes one of the following forms.
756 **
757 ** From sender date remote from host   (for UUCP delivery)
758 ** From sender@host  date              (for sendmail delivery)
759 */
760
761 int
762 get_returnpath(char *rp, int rplen, char *dd, int ddlen)
763 {
764         char *ap, *bp, *cp, *dp;
765
766         ap = unixbuf;
767         if (!(bp = cp = strchr(ap, ' ')))
768                 return 0;
769
770         /*
771         ** Check for "remote from" in envelope to see
772         ** if this message uses UUCP style addressing
773         */
774         while ((cp = strchr(++cp, 'r'))) {
775                 if (strncmp(cp, "remote from", 11) == 0) {
776                         cp = strrchr(cp, ' ');
777                         break;
778                 }
779         }
780
781         /*
782         ** Get the Return-Path information from
783         ** the "From " envelope.
784         */
785         if (cp) {
786                 /* return path for UUCP style addressing */
787                 dp = strchr(++cp, '\n');
788                 snprintf(rp, rplen, "%.*s!%.*s\n", (int)(dp - cp), cp, (int)(bp - ap), ap);
789         } else {
790                 /* return path for standard domain addressing */
791                 snprintf(rp, rplen, "%.*s\n", (int)(bp - ap), ap);
792         }
793
794         /*
795         ** advance over the spaces to get to
796         ** delivery date on envelope
797         */
798         while (*bp == ' ')
799                 bp++;
800
801         /* Now get delivery date from envelope */
802         snprintf(dd, ddlen, "%.*s\n", 24, bp);
803
804         unixbuf[0] = 0;
805         return 1;
806 }
807 #endif /* RPATHS */
808
809
810 static unsigned char *
811 matchc(int patln, char *pat, int strln, char *str)
812 {
813         register char *es = str + strln - patln;
814         register char *sp;
815         register char *pp;
816         register char *ep = pat + patln;
817         register char pc = *pat++;
818
819         for(;;) {
820                 while (pc != *str++)
821                         if (str > es)
822                                 return 0;
823                 if (str > es+1)
824                         return 0;
825                 sp = str; pp = pat;
826                 while (pp < ep && *sp++ == *pp)
827                         pp++;
828                 if (pp >= ep)
829                         return ((unsigned char *)--str);
830         }
831 }
832
833
834 /*
835 ** Locate character "term" in the next "cnt" characters of "src".
836 ** If found, return its address, otherwise return 0.
837 */
838
839 static unsigned char *
840 locc(int cnt, unsigned char *src, unsigned char term)
841 {
842         while (*src++ != term && --cnt > 0)
843                 ;
844
845         return (cnt > 0 ? --src : (unsigned char *)0);
846 }