head.c revision 1.11 1 1.11 wiz /* $NetBSD: head.c,v 1.11 2002/03/04 03:07:26 wiz Exp $ */
2 1.5 christos
3 1.1 cgd /*
4 1.3 deraadt * Copyright (c) 1980, 1993
5 1.3 deraadt * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.7 lukem #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.5 christos #if 0
39 1.6 tls static char sccsid[] = "@(#)head.c 8.2 (Berkeley) 4/20/95";
40 1.5 christos #else
41 1.11 wiz __RCSID("$NetBSD: head.c,v 1.11 2002/03/04 03:07:26 wiz Exp $");
42 1.5 christos #endif
43 1.1 cgd #endif /* not lint */
44 1.1 cgd
45 1.1 cgd #include "rcv.h"
46 1.3 deraadt #include "extern.h"
47 1.1 cgd
48 1.1 cgd /*
49 1.1 cgd * Mail -- a mail program
50 1.1 cgd *
51 1.1 cgd * Routines for processing and detecting headlines.
52 1.1 cgd */
53 1.1 cgd
54 1.1 cgd /*
55 1.1 cgd * See if the passed line buffer is a mail header.
56 1.1 cgd * Return true if yes. Note the extreme pains to
57 1.1 cgd * accomodate all funny formats.
58 1.1 cgd */
59 1.3 deraadt int
60 1.9 wiz ishead(char linebuf[])
61 1.1 cgd {
62 1.7 lukem char *cp;
63 1.1 cgd struct headline hl;
64 1.1 cgd char parbuf[BUFSIZ];
65 1.1 cgd
66 1.1 cgd cp = linebuf;
67 1.1 cgd if (*cp++ != 'F' || *cp++ != 'r' || *cp++ != 'o' || *cp++ != 'm' ||
68 1.1 cgd *cp++ != ' ')
69 1.1 cgd return (0);
70 1.1 cgd parse(linebuf, &hl, parbuf);
71 1.11 wiz if (hl.l_from == NULL || hl.l_date == NULL) {
72 1.1 cgd fail(linebuf, "No from or date field");
73 1.1 cgd return (0);
74 1.1 cgd }
75 1.1 cgd if (!isdate(hl.l_date)) {
76 1.1 cgd fail(linebuf, "Date field not legal date");
77 1.1 cgd return (0);
78 1.1 cgd }
79 1.1 cgd /*
80 1.1 cgd * I guess we got it!
81 1.1 cgd */
82 1.1 cgd return (1);
83 1.1 cgd }
84 1.1 cgd
85 1.1 cgd /*ARGSUSED*/
86 1.3 deraadt void
87 1.9 wiz fail(char linebuf[], char reason[])
88 1.1 cgd {
89 1.1 cgd
90 1.1 cgd /*
91 1.11 wiz if (value("debug") == NULL)
92 1.1 cgd return;
93 1.1 cgd fprintf(stderr, "\"%s\"\nnot a header because %s\n", linebuf, reason);
94 1.1 cgd */
95 1.1 cgd }
96 1.1 cgd
97 1.1 cgd /*
98 1.1 cgd * Split a headline into its useful components.
99 1.1 cgd * Copy the line into dynamic string space, then set
100 1.1 cgd * pointers into the copied line in the passed headline
101 1.1 cgd * structure. Actually, it scans.
102 1.1 cgd */
103 1.3 deraadt void
104 1.9 wiz parse(char line[], struct headline *hl, char pbuf[])
105 1.1 cgd {
106 1.7 lukem char *cp;
107 1.1 cgd char *sp;
108 1.1 cgd char word[LINESIZE];
109 1.1 cgd
110 1.11 wiz hl->l_from = NULL;
111 1.11 wiz hl->l_tty = NULL;
112 1.11 wiz hl->l_date = NULL;
113 1.1 cgd cp = line;
114 1.1 cgd sp = pbuf;
115 1.1 cgd /*
116 1.1 cgd * Skip over "From" first.
117 1.1 cgd */
118 1.1 cgd cp = nextword(cp, word);
119 1.1 cgd cp = nextword(cp, word);
120 1.1 cgd if (*word)
121 1.1 cgd hl->l_from = copyin(word, &sp);
122 1.11 wiz if (cp != NULL && cp[0] == 't' && cp[1] == 't' && cp[2] == 'y') {
123 1.1 cgd cp = nextword(cp, word);
124 1.1 cgd hl->l_tty = copyin(word, &sp);
125 1.1 cgd }
126 1.11 wiz if (cp != NULL)
127 1.1 cgd hl->l_date = copyin(cp, &sp);
128 1.1 cgd }
129 1.1 cgd
130 1.1 cgd /*
131 1.1 cgd * Copy the string on the left into the string on the right
132 1.1 cgd * and bump the right (reference) string pointer by the length.
133 1.1 cgd * Thus, dynamically allocate space in the right string, copying
134 1.1 cgd * the left string into it.
135 1.1 cgd */
136 1.1 cgd char *
137 1.9 wiz copyin(char *src, char **space)
138 1.1 cgd {
139 1.7 lukem char *cp;
140 1.10 wiz char *begin;
141 1.1 cgd
142 1.10 wiz begin = cp = *space;
143 1.5 christos while ((*cp++ = *src++) != '\0')
144 1.1 cgd ;
145 1.1 cgd *space = cp;
146 1.10 wiz return (begin);
147 1.1 cgd }
148 1.1 cgd
149 1.1 cgd /*
150 1.1 cgd * Test to see if the passed string is a ctime(3) generated
151 1.1 cgd * date string as documented in the manual. The template
152 1.1 cgd * below is used as the criterion of correctness.
153 1.1 cgd * Also, we check for a possible trailing time zone using
154 1.1 cgd * the tmztype template.
155 1.1 cgd */
156 1.1 cgd
157 1.1 cgd /*
158 1.1 cgd * 'A' An upper case char
159 1.1 cgd * 'a' A lower case char
160 1.1 cgd * ' ' A space
161 1.1 cgd * '0' A digit
162 1.1 cgd * 'O' An optional digit or space
163 1.1 cgd * ':' A colon
164 1.1 cgd * 'N' A new line
165 1.1 cgd */
166 1.1 cgd char ctype[] = "Aaa Aaa O0 00:00:00 0000";
167 1.6 tls char SysV_ctype[] = "Aaa Aaa O0 00:00 0000";
168 1.1 cgd char tmztype[] = "Aaa Aaa O0 00:00:00 AAA 0000";
169 1.6 tls char SysV_tmztype[] = "Aaa Aaa O0 00:00 AAA 0000";
170 1.1 cgd
171 1.3 deraadt int
172 1.9 wiz isdate(char date[])
173 1.1 cgd {
174 1.1 cgd
175 1.6 tls return cmatch(date, ctype) ||
176 1.6 tls cmatch(date, tmztype) ||
177 1.6 tls cmatch(date, SysV_tmztype) || cmatch(date, SysV_ctype);
178 1.1 cgd }
179 1.1 cgd
180 1.1 cgd /*
181 1.1 cgd * Match the given string (cp) against the given template (tp).
182 1.1 cgd * Return 1 if they match, 0 if they don't
183 1.1 cgd */
184 1.3 deraadt int
185 1.9 wiz cmatch(char *cp, char *tp)
186 1.1 cgd {
187 1.1 cgd
188 1.1 cgd while (*cp && *tp)
189 1.1 cgd switch (*tp++) {
190 1.1 cgd case 'a':
191 1.8 christos if (!islower((unsigned char)*cp++))
192 1.1 cgd return 0;
193 1.1 cgd break;
194 1.1 cgd case 'A':
195 1.8 christos if (!isupper((unsigned char)*cp++))
196 1.1 cgd return 0;
197 1.1 cgd break;
198 1.1 cgd case ' ':
199 1.1 cgd if (*cp++ != ' ')
200 1.1 cgd return 0;
201 1.1 cgd break;
202 1.1 cgd case '0':
203 1.8 christos if (!isdigit((unsigned char)*cp++))
204 1.1 cgd return 0;
205 1.1 cgd break;
206 1.1 cgd case 'O':
207 1.8 christos if (*cp != ' ' && !isdigit((unsigned char)*cp))
208 1.1 cgd return 0;
209 1.1 cgd cp++;
210 1.1 cgd break;
211 1.1 cgd case ':':
212 1.1 cgd if (*cp++ != ':')
213 1.1 cgd return 0;
214 1.1 cgd break;
215 1.1 cgd case 'N':
216 1.1 cgd if (*cp++ != '\n')
217 1.1 cgd return 0;
218 1.1 cgd break;
219 1.1 cgd }
220 1.1 cgd if (*cp || *tp)
221 1.1 cgd return 0;
222 1.1 cgd return (1);
223 1.1 cgd }
224 1.1 cgd
225 1.1 cgd /*
226 1.1 cgd * Collect a liberal (space, tab delimited) word into the word buffer
227 1.1 cgd * passed. Also, return a pointer to the next word following that,
228 1.11 wiz * or NULL if none follow.
229 1.1 cgd */
230 1.1 cgd char *
231 1.9 wiz nextword(char *wp, char *wbuf)
232 1.1 cgd {
233 1.7 lukem int c;
234 1.1 cgd
235 1.11 wiz if (wp == NULL) {
236 1.1 cgd *wbuf = 0;
237 1.11 wiz return (NULL);
238 1.1 cgd }
239 1.1 cgd while ((c = *wp++) && c != ' ' && c != '\t') {
240 1.1 cgd *wbuf++ = c;
241 1.1 cgd if (c == '"') {
242 1.1 cgd while ((c = *wp++) && c != '"')
243 1.1 cgd *wbuf++ = c;
244 1.1 cgd if (c == '"')
245 1.1 cgd *wbuf++ = c;
246 1.1 cgd else
247 1.1 cgd wp--;
248 1.1 cgd }
249 1.1 cgd }
250 1.1 cgd *wbuf = '\0';
251 1.1 cgd for (; c == ' ' || c == '\t'; c = *wp++)
252 1.1 cgd ;
253 1.1 cgd if (c == 0)
254 1.11 wiz return (NULL);
255 1.1 cgd return (wp - 1);
256 1.1 cgd }
257