cmd2.c revision 1.1 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1980 Regents of the University of California.
3 1.1 cgd * All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.1 cgd #ifndef lint
35 1.1 cgd static char sccsid[] = "@(#)cmd2.c 5.14 (Berkeley) 6/25/90";
36 1.1 cgd #endif /* not lint */
37 1.1 cgd
38 1.1 cgd #include "rcv.h"
39 1.1 cgd #include <sys/wait.h>
40 1.1 cgd
41 1.1 cgd /*
42 1.1 cgd * Mail -- a mail program
43 1.1 cgd *
44 1.1 cgd * More user commands.
45 1.1 cgd */
46 1.1 cgd
47 1.1 cgd /*
48 1.1 cgd * If any arguments were given, go to the next applicable argument
49 1.1 cgd * following dot, otherwise, go to the next applicable message.
50 1.1 cgd * If given as first command with no arguments, print first message.
51 1.1 cgd */
52 1.1 cgd
53 1.1 cgd next(msgvec)
54 1.1 cgd int *msgvec;
55 1.1 cgd {
56 1.1 cgd register struct message *mp;
57 1.1 cgd register int *ip, *ip2;
58 1.1 cgd int list[2], mdot;
59 1.1 cgd
60 1.1 cgd if (*msgvec != NULL) {
61 1.1 cgd
62 1.1 cgd /*
63 1.1 cgd * If some messages were supplied, find the
64 1.1 cgd * first applicable one following dot using
65 1.1 cgd * wrap around.
66 1.1 cgd */
67 1.1 cgd
68 1.1 cgd mdot = dot - &message[0] + 1;
69 1.1 cgd
70 1.1 cgd /*
71 1.1 cgd * Find the first message in the supplied
72 1.1 cgd * message list which follows dot.
73 1.1 cgd */
74 1.1 cgd
75 1.1 cgd for (ip = msgvec; *ip != NULL; ip++)
76 1.1 cgd if (*ip > mdot)
77 1.1 cgd break;
78 1.1 cgd if (*ip == NULL)
79 1.1 cgd ip = msgvec;
80 1.1 cgd ip2 = ip;
81 1.1 cgd do {
82 1.1 cgd mp = &message[*ip2 - 1];
83 1.1 cgd if ((mp->m_flag & MDELETED) == 0) {
84 1.1 cgd dot = mp;
85 1.1 cgd goto hitit;
86 1.1 cgd }
87 1.1 cgd if (*ip2 != NULL)
88 1.1 cgd ip2++;
89 1.1 cgd if (*ip2 == NULL)
90 1.1 cgd ip2 = msgvec;
91 1.1 cgd } while (ip2 != ip);
92 1.1 cgd printf("No messages applicable\n");
93 1.1 cgd return(1);
94 1.1 cgd }
95 1.1 cgd
96 1.1 cgd /*
97 1.1 cgd * If this is the first command, select message 1.
98 1.1 cgd * Note that this must exist for us to get here at all.
99 1.1 cgd */
100 1.1 cgd
101 1.1 cgd if (!sawcom)
102 1.1 cgd goto hitit;
103 1.1 cgd
104 1.1 cgd /*
105 1.1 cgd * Just find the next good message after dot, no
106 1.1 cgd * wraparound.
107 1.1 cgd */
108 1.1 cgd
109 1.1 cgd for (mp = dot+1; mp < &message[msgCount]; mp++)
110 1.1 cgd if ((mp->m_flag & (MDELETED|MSAVED)) == 0)
111 1.1 cgd break;
112 1.1 cgd if (mp >= &message[msgCount]) {
113 1.1 cgd printf("At EOF\n");
114 1.1 cgd return(0);
115 1.1 cgd }
116 1.1 cgd dot = mp;
117 1.1 cgd hitit:
118 1.1 cgd /*
119 1.1 cgd * Print dot.
120 1.1 cgd */
121 1.1 cgd
122 1.1 cgd list[0] = dot - &message[0] + 1;
123 1.1 cgd list[1] = NULL;
124 1.1 cgd return(type(list));
125 1.1 cgd }
126 1.1 cgd
127 1.1 cgd /*
128 1.1 cgd * Save a message in a file. Mark the message as saved
129 1.1 cgd * so we can discard when the user quits.
130 1.1 cgd */
131 1.1 cgd save(str)
132 1.1 cgd char str[];
133 1.1 cgd {
134 1.1 cgd
135 1.1 cgd return save1(str, 1, "save", saveignore);
136 1.1 cgd }
137 1.1 cgd
138 1.1 cgd /*
139 1.1 cgd * Copy a message to a file without affected its saved-ness
140 1.1 cgd */
141 1.1 cgd copycmd(str)
142 1.1 cgd char str[];
143 1.1 cgd {
144 1.1 cgd
145 1.1 cgd return save1(str, 0, "copy", saveignore);
146 1.1 cgd }
147 1.1 cgd
148 1.1 cgd /*
149 1.1 cgd * Save/copy the indicated messages at the end of the passed file name.
150 1.1 cgd * If mark is true, mark the message "saved."
151 1.1 cgd */
152 1.1 cgd save1(str, mark, cmd, ignore)
153 1.1 cgd char str[];
154 1.1 cgd char *cmd;
155 1.1 cgd struct ignoretab *ignore;
156 1.1 cgd {
157 1.1 cgd register int *ip;
158 1.1 cgd register struct message *mp;
159 1.1 cgd char *file, *disp;
160 1.1 cgd int f, *msgvec;
161 1.1 cgd FILE *obuf;
162 1.1 cgd
163 1.1 cgd msgvec = (int *) salloc((msgCount + 2) * sizeof *msgvec);
164 1.1 cgd if ((file = snarf(str, &f)) == NOSTR)
165 1.1 cgd return(1);
166 1.1 cgd if (!f) {
167 1.1 cgd *msgvec = first(0, MMNORM);
168 1.1 cgd if (*msgvec == NULL) {
169 1.1 cgd printf("No messages to %s.\n", cmd);
170 1.1 cgd return(1);
171 1.1 cgd }
172 1.1 cgd msgvec[1] = NULL;
173 1.1 cgd }
174 1.1 cgd if (f && getmsglist(str, msgvec, 0) < 0)
175 1.1 cgd return(1);
176 1.1 cgd if ((file = expand(file)) == NOSTR)
177 1.1 cgd return(1);
178 1.1 cgd printf("\"%s\" ", file);
179 1.1 cgd fflush(stdout);
180 1.1 cgd if (access(file, 0) >= 0)
181 1.1 cgd disp = "[Appended]";
182 1.1 cgd else
183 1.1 cgd disp = "[New file]";
184 1.1 cgd if ((obuf = Fopen(file, "a")) == NULL) {
185 1.1 cgd perror(NOSTR);
186 1.1 cgd return(1);
187 1.1 cgd }
188 1.1 cgd for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
189 1.1 cgd mp = &message[*ip - 1];
190 1.1 cgd touch(mp);
191 1.1 cgd if (send(mp, obuf, ignore, NOSTR) < 0) {
192 1.1 cgd perror(file);
193 1.1 cgd Fclose(obuf);
194 1.1 cgd return(1);
195 1.1 cgd }
196 1.1 cgd if (mark)
197 1.1 cgd mp->m_flag |= MSAVED;
198 1.1 cgd }
199 1.1 cgd fflush(obuf);
200 1.1 cgd if (ferror(obuf))
201 1.1 cgd perror(file);
202 1.1 cgd Fclose(obuf);
203 1.1 cgd printf("%s\n", disp);
204 1.1 cgd return(0);
205 1.1 cgd }
206 1.1 cgd
207 1.1 cgd /*
208 1.1 cgd * Write the indicated messages at the end of the passed
209 1.1 cgd * file name, minus header and trailing blank line.
210 1.1 cgd */
211 1.1 cgd
212 1.1 cgd swrite(str)
213 1.1 cgd char str[];
214 1.1 cgd {
215 1.1 cgd
216 1.1 cgd return save1(str, 1, "write", ignoreall);
217 1.1 cgd }
218 1.1 cgd
219 1.1 cgd /*
220 1.1 cgd * Snarf the file from the end of the command line and
221 1.1 cgd * return a pointer to it. If there is no file attached,
222 1.1 cgd * just return NOSTR. Put a null in front of the file
223 1.1 cgd * name so that the message list processing won't see it,
224 1.1 cgd * unless the file name is the only thing on the line, in
225 1.1 cgd * which case, return 0 in the reference flag variable.
226 1.1 cgd */
227 1.1 cgd
228 1.1 cgd char *
229 1.1 cgd snarf(linebuf, flag)
230 1.1 cgd char linebuf[];
231 1.1 cgd int *flag;
232 1.1 cgd {
233 1.1 cgd register char *cp;
234 1.1 cgd
235 1.1 cgd *flag = 1;
236 1.1 cgd cp = strlen(linebuf) + linebuf - 1;
237 1.1 cgd
238 1.1 cgd /*
239 1.1 cgd * Strip away trailing blanks.
240 1.1 cgd */
241 1.1 cgd
242 1.1 cgd while (cp > linebuf && isspace(*cp))
243 1.1 cgd cp--;
244 1.1 cgd *++cp = 0;
245 1.1 cgd
246 1.1 cgd /*
247 1.1 cgd * Now search for the beginning of the file name.
248 1.1 cgd */
249 1.1 cgd
250 1.1 cgd while (cp > linebuf && !isspace(*cp))
251 1.1 cgd cp--;
252 1.1 cgd if (*cp == '\0') {
253 1.1 cgd printf("No file specified.\n");
254 1.1 cgd return(NOSTR);
255 1.1 cgd }
256 1.1 cgd if (isspace(*cp))
257 1.1 cgd *cp++ = 0;
258 1.1 cgd else
259 1.1 cgd *flag = 0;
260 1.1 cgd return(cp);
261 1.1 cgd }
262 1.1 cgd
263 1.1 cgd /*
264 1.1 cgd * Delete messages.
265 1.1 cgd */
266 1.1 cgd
267 1.1 cgd delete(msgvec)
268 1.1 cgd int msgvec[];
269 1.1 cgd {
270 1.1 cgd delm(msgvec);
271 1.1 cgd return 0;
272 1.1 cgd }
273 1.1 cgd
274 1.1 cgd /*
275 1.1 cgd * Delete messages, then type the new dot.
276 1.1 cgd */
277 1.1 cgd
278 1.1 cgd deltype(msgvec)
279 1.1 cgd int msgvec[];
280 1.1 cgd {
281 1.1 cgd int list[2];
282 1.1 cgd int lastdot;
283 1.1 cgd
284 1.1 cgd lastdot = dot - &message[0] + 1;
285 1.1 cgd if (delm(msgvec) >= 0) {
286 1.1 cgd list[0] = dot - &message[0] + 1;
287 1.1 cgd if (list[0] > lastdot) {
288 1.1 cgd touch(dot);
289 1.1 cgd list[1] = NULL;
290 1.1 cgd return(type(list));
291 1.1 cgd }
292 1.1 cgd printf("At EOF\n");
293 1.1 cgd } else
294 1.1 cgd printf("No more messages\n");
295 1.1 cgd return(0);
296 1.1 cgd }
297 1.1 cgd
298 1.1 cgd /*
299 1.1 cgd * Delete the indicated messages.
300 1.1 cgd * Set dot to some nice place afterwards.
301 1.1 cgd * Internal interface.
302 1.1 cgd */
303 1.1 cgd
304 1.1 cgd delm(msgvec)
305 1.1 cgd int *msgvec;
306 1.1 cgd {
307 1.1 cgd register struct message *mp;
308 1.1 cgd register *ip;
309 1.1 cgd int last;
310 1.1 cgd
311 1.1 cgd last = NULL;
312 1.1 cgd for (ip = msgvec; *ip != NULL; ip++) {
313 1.1 cgd mp = &message[*ip - 1];
314 1.1 cgd touch(mp);
315 1.1 cgd mp->m_flag |= MDELETED|MTOUCH;
316 1.1 cgd mp->m_flag &= ~(MPRESERVE|MSAVED|MBOX);
317 1.1 cgd last = *ip;
318 1.1 cgd }
319 1.1 cgd if (last != NULL) {
320 1.1 cgd dot = &message[last-1];
321 1.1 cgd last = first(0, MDELETED);
322 1.1 cgd if (last != NULL) {
323 1.1 cgd dot = &message[last-1];
324 1.1 cgd return(0);
325 1.1 cgd }
326 1.1 cgd else {
327 1.1 cgd dot = &message[0];
328 1.1 cgd return(-1);
329 1.1 cgd }
330 1.1 cgd }
331 1.1 cgd
332 1.1 cgd /*
333 1.1 cgd * Following can't happen -- it keeps lint happy
334 1.1 cgd */
335 1.1 cgd
336 1.1 cgd return(-1);
337 1.1 cgd }
338 1.1 cgd
339 1.1 cgd /*
340 1.1 cgd * Undelete the indicated messages.
341 1.1 cgd */
342 1.1 cgd
343 1.1 cgd undelete(msgvec)
344 1.1 cgd int *msgvec;
345 1.1 cgd {
346 1.1 cgd register struct message *mp;
347 1.1 cgd register *ip;
348 1.1 cgd
349 1.1 cgd for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
350 1.1 cgd mp = &message[*ip - 1];
351 1.1 cgd touch(mp);
352 1.1 cgd dot = mp;
353 1.1 cgd mp->m_flag &= ~MDELETED;
354 1.1 cgd }
355 1.1 cgd return 0;
356 1.1 cgd }
357 1.1 cgd
358 1.1 cgd /*
359 1.1 cgd * Interactively dump core on "core"
360 1.1 cgd */
361 1.1 cgd
362 1.1 cgd core()
363 1.1 cgd {
364 1.1 cgd int pid;
365 1.1 cgd extern union wait wait_status;
366 1.1 cgd
367 1.1 cgd switch (pid = vfork()) {
368 1.1 cgd case -1:
369 1.1 cgd perror("fork");
370 1.1 cgd return(1);
371 1.1 cgd case 0:
372 1.1 cgd abort();
373 1.1 cgd _exit(1);
374 1.1 cgd }
375 1.1 cgd printf("Okie dokie");
376 1.1 cgd fflush(stdout);
377 1.1 cgd wait_child(pid);
378 1.1 cgd if (wait_status.w_coredump)
379 1.1 cgd printf(" -- Core dumped.\n");
380 1.1 cgd else
381 1.1 cgd printf(" -- Can't dump core.\n");
382 1.1 cgd return 0;
383 1.1 cgd }
384 1.1 cgd
385 1.1 cgd /*
386 1.1 cgd * Clobber as many bytes of stack as the user requests.
387 1.1 cgd */
388 1.1 cgd clobber(argv)
389 1.1 cgd char **argv;
390 1.1 cgd {
391 1.1 cgd register int times;
392 1.1 cgd
393 1.1 cgd if (argv[0] == 0)
394 1.1 cgd times = 1;
395 1.1 cgd else
396 1.1 cgd times = (atoi(argv[0]) + 511) / 512;
397 1.1 cgd clob1(times);
398 1.1 cgd return 0;
399 1.1 cgd }
400 1.1 cgd
401 1.1 cgd /*
402 1.1 cgd * Clobber the stack.
403 1.1 cgd */
404 1.1 cgd clob1(n)
405 1.1 cgd {
406 1.1 cgd char buf[512];
407 1.1 cgd register char *cp;
408 1.1 cgd
409 1.1 cgd if (n <= 0)
410 1.1 cgd return;
411 1.1 cgd for (cp = buf; cp < &buf[512]; *cp++ = 0xFF)
412 1.1 cgd ;
413 1.1 cgd clob1(n - 1);
414 1.1 cgd }
415 1.1 cgd
416 1.1 cgd /*
417 1.1 cgd * Add the given header fields to the retained list.
418 1.1 cgd * If no arguments, print the current list of retained fields.
419 1.1 cgd */
420 1.1 cgd retfield(list)
421 1.1 cgd char *list[];
422 1.1 cgd {
423 1.1 cgd
424 1.1 cgd return ignore1(list, ignore + 1, "retained");
425 1.1 cgd }
426 1.1 cgd
427 1.1 cgd /*
428 1.1 cgd * Add the given header fields to the ignored list.
429 1.1 cgd * If no arguments, print the current list of ignored fields.
430 1.1 cgd */
431 1.1 cgd igfield(list)
432 1.1 cgd char *list[];
433 1.1 cgd {
434 1.1 cgd
435 1.1 cgd return ignore1(list, ignore, "ignored");
436 1.1 cgd }
437 1.1 cgd
438 1.1 cgd saveretfield(list)
439 1.1 cgd char *list[];
440 1.1 cgd {
441 1.1 cgd
442 1.1 cgd return ignore1(list, saveignore + 1, "retained");
443 1.1 cgd }
444 1.1 cgd
445 1.1 cgd saveigfield(list)
446 1.1 cgd char *list[];
447 1.1 cgd {
448 1.1 cgd
449 1.1 cgd return ignore1(list, saveignore, "ignored");
450 1.1 cgd }
451 1.1 cgd
452 1.1 cgd ignore1(list, tab, which)
453 1.1 cgd char *list[];
454 1.1 cgd struct ignoretab *tab;
455 1.1 cgd char *which;
456 1.1 cgd {
457 1.1 cgd char field[BUFSIZ];
458 1.1 cgd register int h;
459 1.1 cgd register struct ignore *igp;
460 1.1 cgd char **ap;
461 1.1 cgd
462 1.1 cgd if (*list == NOSTR)
463 1.1 cgd return igshow(tab, which);
464 1.1 cgd for (ap = list; *ap != 0; ap++) {
465 1.1 cgd istrcpy(field, *ap);
466 1.1 cgd if (member(field, tab))
467 1.1 cgd continue;
468 1.1 cgd h = hash(field);
469 1.1 cgd igp = (struct ignore *) calloc(1, sizeof (struct ignore));
470 1.1 cgd igp->i_field = calloc((unsigned) strlen(field) + 1,
471 1.1 cgd sizeof (char));
472 1.1 cgd strcpy(igp->i_field, field);
473 1.1 cgd igp->i_link = tab->i_head[h];
474 1.1 cgd tab->i_head[h] = igp;
475 1.1 cgd tab->i_count++;
476 1.1 cgd }
477 1.1 cgd return 0;
478 1.1 cgd }
479 1.1 cgd
480 1.1 cgd /*
481 1.1 cgd * Print out all currently retained fields.
482 1.1 cgd */
483 1.1 cgd igshow(tab, which)
484 1.1 cgd struct ignoretab *tab;
485 1.1 cgd char *which;
486 1.1 cgd {
487 1.1 cgd register int h;
488 1.1 cgd struct ignore *igp;
489 1.1 cgd char **ap, **ring;
490 1.1 cgd int igcomp();
491 1.1 cgd
492 1.1 cgd if (tab->i_count == 0) {
493 1.1 cgd printf("No fields currently being %s.\n", which);
494 1.1 cgd return 0;
495 1.1 cgd }
496 1.1 cgd ring = (char **) salloc((tab->i_count + 1) * sizeof (char *));
497 1.1 cgd ap = ring;
498 1.1 cgd for (h = 0; h < HSHSIZE; h++)
499 1.1 cgd for (igp = tab->i_head[h]; igp != 0; igp = igp->i_link)
500 1.1 cgd *ap++ = igp->i_field;
501 1.1 cgd *ap = 0;
502 1.1 cgd qsort((char *) ring, tab->i_count, sizeof (char *), igcomp);
503 1.1 cgd for (ap = ring; *ap != 0; ap++)
504 1.1 cgd printf("%s\n", *ap);
505 1.1 cgd return 0;
506 1.1 cgd }
507 1.1 cgd
508 1.1 cgd /*
509 1.1 cgd * Compare two names for sorting ignored field list.
510 1.1 cgd */
511 1.1 cgd igcomp(l, r)
512 1.1 cgd char **l, **r;
513 1.1 cgd {
514 1.1 cgd
515 1.1 cgd return strcmp(*l, *r);
516 1.1 cgd }
517