iso9660fs: initialize buffer cache
[minix.git] / commands / mail / mail.c
blob54f64c331177ce32f6fbbfc8bf216b9c45472daa
1 /* mail - send/receive mail Author: Peter S. Housel */
2 /* Version 0.2 of September 1990: added -e, -t, * options - cwr */
4 /* 2003-07-18: added -s option - ASW */
6 #include <sys/types.h>
7 #include <sys/stat.h>
8 #include <errno.h>
9 #undef EOF /* temporary hack */
10 #include <signal.h>
11 #include <pwd.h>
12 #include <time.h>
13 #include <setjmp.h>
14 #include <string.h>
15 #include <stdlib.h>
16 #include <fcntl.h>
17 #include <unistd.h>
18 #include <sys/wait.h>
19 #include <stdio.h>
21 #ifdef DEBUG
22 #define D(Q) (Q)
23 #else
24 #define D(Q)
25 #endif
27 #define SHELL "/bin/sh"
29 #define DROPNAME "/usr/spool/mail/%s"
30 #define LOCKNAME "/usr/spool/mail/%s.lock"
31 #define LOCKWAIT 5 /* seconds to wait after collision */
32 #define LOCKTRIES 4 /* maximum number of collisions */
34 #define MBOX "mbox"
36 #define HELPFILE "/usr/lib/mail.help"
37 #define PROMPT "? "
38 #define PATHLEN 80
39 #define MAXRCPT 100 /* maximum number of recipients */
40 #define LINELEN 512
42 /* #define MAILER "/usr/bin/smail" */ /* smart mailer */
43 #define MAILERARGS /* (unused) */
45 #define UNREAD 1 /* 'not read yet' status */
46 #define DELETED 2 /* 'deleted' status */
47 #define READ 3 /* 'has been read' status */
49 struct letter {
50 struct letter *prev, *next; /* linked letter list */
51 int status; /* letter status */
52 off_t location; /* location within mailbox file */
55 struct letter *firstlet, *lastlet;
57 int usemailer = 1; /* use MAILER to deliver (if any) */
58 int printmode = 0; /* print-and-exit mode */
59 int quitmode = 0; /* take interrupts */
60 int reversemode = 0; /* print mailbox in reverse order */
61 int usedrop = 1; /* read the maildrop (no -f given) */
62 int verbose = 0; /* pass "-v" flag on to mailer */
63 int needupdate = 0; /* need to update mailbox */
64 int msgstatus = 0; /* return the mail status */
65 int distlist = 0; /* include distribution list */
66 char mailbox[PATHLEN]; /* user's mailbox/maildrop */
67 char tempname[PATHLEN] = "/tmp/mailXXXXXX"; /* temporary file */
68 char *subject = NULL;
69 FILE *boxfp = NULL; /* mailbox file */
70 jmp_buf printjump; /* for quitting out of letters */
71 unsigned oldmask; /* saved umask() */
73 extern int optind;
74 extern char *optarg;
76 int main(int argc, char **argv);
77 int deliver(int count, char *vec []);
78 FILE *makerewindable(void);
79 int copy(FILE *fromfp, FILE *tofp);
80 void readbox(void);
81 void printall(void);
82 void interact(void);
83 void onint(int dummy);
84 void savelet(struct letter *let, char *savefile);
85 void updatebox(void);
86 void printlet(struct letter *let, FILE *tofp);
87 void doshell(char *command);
88 void usage(void);
89 char *basename(char *name);
90 char *whoami(void);
91 void dohelp(void);
92 int filesize(char *name);
94 int main(argc, argv)
95 int argc;
96 char *argv[];
98 int c;
100 if ('l' == (basename(argv[0]))[0]) /* 'lmail' link? */
101 usemailer = 0; /* yes, let's deliver it */
103 (void) mktemp(tempname); /* name the temp file */
105 oldmask = umask(022); /* change umask for security */
107 while (EOF != (c = getopt(argc, argv, "epqrf:tdvs:"))) switch (c) {
108 case 'e': ++msgstatus; break;
110 case 't': ++distlist; break;
112 case 'p': ++printmode; break;
114 case 'q': ++quitmode; break;
116 case 'r': ++reversemode; break;
118 case 'f':
119 setuid(getuid()); /* won't need to lock */
120 usedrop = 0;
121 strncpy(mailbox, optarg, (size_t)(PATHLEN - 1));
122 break;
124 case 'd': usemailer = 0; break;
126 case 'v': ++verbose; break;
128 case 's': subject = optarg; break;
130 default:
131 usage();
132 exit(1);
135 if (optind < argc) {
136 if (deliver(argc - optind, argv + optind) < 0)
137 exit(1);
138 else
139 exit(0);
141 if (usedrop) sprintf(mailbox, DROPNAME, whoami());
143 D(printf("mailbox=%s\n", mailbox));
145 if (msgstatus) {
146 if (filesize(mailbox))
147 exit(0);
148 else
149 exit(1);
152 readbox();
154 if (printmode)
155 printall();
156 else
157 interact();
159 if (needupdate) updatebox();
161 return(0);
164 int deliver(count, vec)
165 int count;
166 char *vec[];
168 int i, j;
169 int errs = 0; /* count of errors */
170 int dropfd; /* file descriptor for user's drop */
171 int created = 0; /* true if we created the maildrop */
172 FILE *mailfp; /* fp for mail */
173 struct stat stb; /* for checking drop modes, owners */
174 #ifdef __STDC__
175 void (*sigint)(int), (*sighup)(int), (*sigquit)(int);/* saving signal state */
176 #else
177 void (*sigint) (), (*sighup) (), (*sigquit) (); /* saving signal state */
178 #endif
179 time_t now; /* for datestamping the postmark */
180 char sender[32]; /* sender's login name */
181 char lockname[PATHLEN]; /* maildrop lock */
182 int locktries; /* tries when box is locked */
183 struct passwd *pw; /* sender and recipent */
184 int to_console; /* deliver to console if everything fails */
186 if (count > MAXRCPT) {
187 fprintf(stderr, "mail: too many recipients\n");
188 return -1;
190 #ifdef MAILER
191 if (usemailer) {
192 char *argvec[MAXRCPT + 3];
193 char **argp;
195 setuid(getuid());
197 argp = argvec;
198 *argp++ = "send-mail";
199 if (verbose) *argp++ = "-v";
201 for (i = 0; i < count; ++i) *argp++ = vec[i];
203 *argp = NULL;
204 execv(MAILER, argvec);
205 fprintf(stderr, "mail: couldn't exec %s\n", MAILER);
206 return -1;
208 #endif /* MAILER */
210 if (NULL == (pw = getpwuid(getuid()))) {
211 fprintf(stderr, "mail: unknown sender\n");
212 return -1;
214 strcpy(sender, pw->pw_name);
216 /* If we need to rewind stdin and it isn't rewindable, make a copy */
217 if (isatty(0) || (count > 1 && lseek(0, 0L, 0) == (off_t) -1)) {
218 mailfp = makerewindable();
219 } else
220 mailfp = stdin;
222 /* Shut off signals during the delivery */
223 sigint = signal(SIGINT, SIG_IGN);
224 sighup = signal(SIGHUP, SIG_IGN);
225 sigquit = signal(SIGQUIT, SIG_IGN);
227 for (i = 0; i < count; ++i) {
228 if (count > 1) rewind(mailfp);
230 D(printf("deliver to %s\n", vec[i]));
232 if (NULL == (pw = getpwnam(vec[i]))) {
233 fprintf(stderr, "mail: user %s not known\n", vec[i]);
234 ++errs;
235 continue;
237 sprintf(mailbox, DROPNAME, pw->pw_name);
238 sprintf(lockname, LOCKNAME, pw->pw_name);
240 D(printf("maildrop='%s', lock='%s'\n", mailbox, lockname));
242 /* Lock the maildrop while we're messing with it. Races are
243 * possible (though not very likely) when we have to create
244 * the maildrop, but not otherwise. If the box is already
245 * locked, wait awhile and try again. */
246 locktries = created = to_console = 0;
247 trylock:
248 if (link(mailbox, lockname) != 0) {
249 if (ENOENT == errno) { /* user doesn't have a drop yet */
250 dropfd = creat(mailbox, 0600);
251 if (dropfd < 0 && errno == ENOENT) {
252 /* Probably missing spool dir; to console. */
253 boxfp = fopen("/dev/console", "w");
254 if (boxfp != NULL) {
255 to_console = 1;
256 goto nobox;
259 if (dropfd < 0) {
260 fprintf(stderr, "mail: couln't create a maildrop for user %s\n",
261 vec[i]);
262 ++errs;
263 continue;
265 ++created;
266 goto trylock;
267 } else { /* somebody else has it locked, it seems -
268 * wait */
269 if (++locktries >= LOCKTRIES) {
270 fprintf(stderr, "mail: couldn't lock maildrop for user %s\n",
271 vec[i]);
272 ++errs;
273 continue;
275 sleep(LOCKWAIT);
276 goto trylock;
279 if (created) {
280 (void) chown(mailbox, pw->pw_uid, pw->pw_gid);
281 boxfp = fdopen(dropfd, "a");
282 } else
283 boxfp = fopen(mailbox, "a");
285 if (NULL == boxfp || stat(mailbox, &stb) < 0) {
286 fprintf(stderr, "mail: serious maildrop problems for %s\n", vec[i]);
287 unlink(lockname);
288 ++errs;
289 continue;
291 if (stb.st_uid != pw->pw_uid || (stb.st_mode & S_IFMT) != S_IFREG) {
292 fprintf(stderr, "mail: mailbox for user %s is illegal\n", vec[i]);
293 unlink(lockname);
294 ++errs;
295 continue;
297 nobox:
298 if (to_console) {
299 fprintf(boxfp,
300 "-------------\n| Mail from %s to %s\n-------------\n",
301 sender, vec[i]);
302 } else {
303 (void) time(&now);
304 fprintf(boxfp, "From %s %24.24s\n", sender, ctime(&now));
307 /* Add the To: header line */
308 fprintf(boxfp, "To: %s\n", vec[i]);
310 if (distlist) {
311 fprintf(boxfp, "Dist: ");
312 for (j = 0; j < count; ++j)
313 if (getpwnam(vec[j]) != NULL && j != i)
314 fprintf(boxfp, "%s ", vec[j]) ;
315 fprintf(boxfp, "\n");
318 /* Add the Subject: header line */
319 if (subject != NULL) fprintf(boxfp, "Subject: %s\n", subject);
321 fprintf(boxfp, "\n");
323 if ((copy(mailfp, boxfp) < 0) || (fclose(boxfp) != 0)) {
324 fprintf(stderr, "mail: error delivering to user %s", vec[i]);
325 perror(" ");
326 ++errs;
328 unlink(lockname);
331 fclose(mailfp);
333 /* Put signals back the way they were */
334 signal(SIGINT, sigint);
335 signal(SIGHUP, sighup);
336 signal(SIGQUIT, sigquit);
338 return(0 == errs) ? 0 : -1;
341 /* 'stdin' isn't rewindable. Make a temp file that is.
342 * Note that if one wanted to catch SIGINT and write a '~/dead.letter'
343 * for interactive mails, this might be the place to do it (though the
344 * case where a MAILER is being used would also need to be handled).
346 FILE *makerewindable()
348 FILE *tempfp; /* temp file used for copy */
349 int c; /* character being copied */
350 int state; /* ".\n" detection state */
352 if (NULL == (tempfp = fopen(tempname, "w"))) {
353 fprintf(stderr, "mail: can't create temporary file\n");
354 return NULL;
357 /* Here we copy until we reach the end of the letter (end of file or
358 * a line containing only a '.'), painstakingly avoiding setting a
359 * line length limit. */
360 state = '\n';
361 while (EOF != (c = getc(stdin))) switch (state) {
362 case '\n':
363 if ('.' == c)
364 state = '.';
365 else {
366 if ('\n' != c) state = '\0';
367 putc(c, tempfp);
369 break;
370 case '.':
371 if ('\n' == c) goto done;
372 state = '\0';
373 putc('.', tempfp);
374 putc(c, tempfp);
375 break;
376 default:
377 state = ('\n' == c) ? '\n' : '\0';
378 putc(c, tempfp);
380 done:
381 if (ferror(tempfp) || fclose(tempfp)) {
382 fprintf(stderr, "mail: couldn't copy letter to temporary file\n");
383 return NULL;
385 tempfp = freopen(tempname, "r", stdin);
386 unlink(tempname); /* unlink name; file lingers on in limbo */
387 return tempfp;
390 int copy(fromfp, tofp)
391 FILE *fromfp, *tofp;
393 int c; /* character being copied */
394 int state; /* ".\n" and postmark detection state */
395 int blankline = 0; /* was most recent line completely blank? */
396 static char postmark[] = "From ";
397 char *p, *q;
399 /* Here we copy until we reach the end of the letter (end of file or
400 * a line containing only a '.'). Postmarks (lines beginning with
401 * "From ") are copied with a ">" prepended. Here we also complicate
402 * things by not setting a line limit. */
403 state = '\n';
404 p = postmark;
405 while (EOF != (c = getc(fromfp))) {
406 switch (state) {
407 case '\n':
408 if ('.' == c) /* '.' at BOL */
409 state = '.';
410 else if (*p == c) { /* start of postmark */
411 ++p;
412 state = 'P';
413 } else { /* anything else */
414 if ('\n' == c)
415 blankline = 1;
416 else {
417 state = '\0';
418 blankline = 0;
420 putc(c, tofp);
422 break;
423 case '.':
424 if ('\n' == c) goto done;
425 state = '\0';
426 putc('.', tofp);
427 putc(c, tofp);
428 break;
429 case 'P':
430 if (*p == c) {
431 if (*++p == '\0') { /* successfully reached end */
432 p = postmark;
433 putc('>', tofp);
434 fputs(postmark, tofp);
435 state = '\0';
436 break;
438 break; /* not there yet */
440 state = ('\n' == c) ? '\n' : '\0';
441 for (q = postmark; q < p; ++q) putc(*q, tofp);
442 putc(c, tofp);
443 blankline = 0;
444 p = postmark;
445 break;
446 default:
447 state = ('\n' == c) ? '\n' : '\0';
448 putc(c, tofp);
451 if ('\n' != state) putc('\n', tofp);
452 done:
453 if (!blankline) putc('\n', tofp);
454 if (ferror(tofp)) return -1;
455 return 0;
458 void readbox()
460 char linebuf[512];
461 struct letter *let;
462 off_t current;
464 firstlet = lastlet = NULL;
466 if (access(mailbox, 4) < 0 || NULL == (boxfp = fopen(mailbox, "r"))) {
467 if (usedrop && ENOENT == errno) return;
468 fprintf(stderr, "can't access mailbox ");
469 perror(mailbox);
470 exit(1);
472 current = 0L;
473 while (1) {
474 if (NULL == fgets(linebuf, sizeof linebuf, boxfp)) break;
476 if (!strncmp(linebuf, "From ", (size_t)5)) {
477 if (NULL == (let = (struct letter *) malloc(sizeof(struct letter)))) {
478 fprintf(stderr, "Out of memory.\n");
479 exit(1);
481 if (NULL == lastlet) {
482 firstlet = let;
483 let->prev = NULL;
484 } else {
485 let->prev = lastlet;
486 lastlet->next = let;
488 lastlet = let;
489 let->next = NULL;
491 let->status = UNREAD;
492 let->location = current;
493 D(printf("letter at %ld\n", current));
495 current += strlen(linebuf);
499 void printall()
501 struct letter *let;
503 let = reversemode ? firstlet : lastlet;
505 if (NULL == let) {
506 printf("No mail.\n");
507 return;
509 while (NULL != let) {
510 printlet(let, stdout);
511 let = reversemode ? let->next : let->prev;
515 void interact()
517 char linebuf[512]; /* user input line */
518 struct letter *let, *next; /* current and next letter */
519 int interrupted = 0; /* SIGINT hit during letter print */
520 int needprint = 1; /* need to print this letter */
521 char *savefile; /* filename to save into */
523 if (NULL == firstlet) {
524 printf("No mail.\n");
525 return;
527 let = reversemode ? firstlet : lastlet;
529 while (1) {
530 next = reversemode ? let->next : let->prev;
531 if (NULL == next) next = let;
533 if (!quitmode) {
534 interrupted = setjmp(printjump);
535 signal(SIGINT, onint);
537 if (!interrupted && needprint) {
538 if (DELETED != let->status) let->status = READ;
539 printlet(let, stdout);
541 if (interrupted) putchar('\n');
542 needprint = 0;
543 fputs(PROMPT, stdout);
544 fflush(stdout);
546 if (fgets(linebuf, sizeof linebuf, stdin) == NULL) break;
548 if (!quitmode) signal(SIGINT, SIG_IGN);
550 switch (linebuf[0]) {
551 case '\n':
552 let = next;
553 needprint = 1;
554 continue;
555 case 'd':
556 let->status = DELETED;
557 if (next != let)/* look into this */
558 needprint = 1;
559 needupdate = 1;
560 let = next;
561 continue;
562 case 'p':
563 needprint = 1;
564 continue;
565 case '-':
566 next = reversemode ? let->prev : let->next;
567 if (NULL == next) next = let;
568 let = next;
569 needprint = 1;
570 continue;
571 case 's':
572 for (savefile = strtok(linebuf + 1, " \t\n");
573 savefile != NULL;
574 savefile = strtok((char *) NULL, " \t\n")) {
575 savelet(let, savefile);
577 continue;
578 case '!':
579 doshell(linebuf + 1);
580 continue;
581 case '*':
582 dohelp();
583 continue;
584 case 'q':
585 return;
586 case 'x':
587 exit(0);
588 default:
589 fprintf(stderr, "Illegal command\n");
590 continue;
595 void onint(dummy)
596 int dummy; /* to satisfy ANSI compilers */
598 longjmp(printjump, 1);
601 void savelet(let, savefile)
602 struct letter *let;
603 char *savefile;
605 int waitstat, pid;
606 FILE *savefp;
608 if ((pid = fork()) < 0) {
609 perror("mail: couldn't fork");
610 return;
611 } else if (pid != 0) { /* parent */
612 wait(&waitstat);
613 return;
616 /* Child */
617 setgid(getgid());
618 setuid(getuid());
619 if ((savefp = fopen(savefile, "a")) == NULL) {
620 perror(savefile);
621 exit(0);
623 printlet(let, savefp);
624 if ((ferror(savefp) != 0) | (fclose(savefp) != 0)) {
625 fprintf(stderr, "savefile write error:");
626 perror(savefile);
628 exit(0);
631 void updatebox()
633 FILE *tempfp; /* fp for tempfile */
634 char lockname[PATHLEN]; /* maildrop lock */
635 int locktries = 0; /* tries when box is locked */
636 struct letter *let; /* current letter */
637 int c;
639 sprintf(lockname, LOCKNAME, whoami());
641 if (NULL == (tempfp = fopen(tempname, "w"))) {
642 perror("mail: can't create temporary file");
643 return;
645 for (let = firstlet; let != NULL; let = let->next) {
646 if (let->status != DELETED) {
647 printlet(let, tempfp);
648 D(printf("printed letter at %ld\n", let->location));
652 if (ferror(tempfp) || NULL == (tempfp = freopen(tempname, "r", tempfp))) {
653 perror("mail: temporary file write error");
654 unlink(tempname);
655 return;
658 /* Shut off signals during the update */
659 signal(SIGINT, SIG_IGN);
660 signal(SIGHUP, SIG_IGN);
661 signal(SIGQUIT, SIG_IGN);
663 if (usedrop) while (link(mailbox, lockname) != 0) {
664 if (++locktries >= LOCKTRIES) {
665 fprintf(stderr, "mail: couldn't lock maildrop for update\n");
666 return;
668 sleep(LOCKWAIT);
671 if (NULL == (boxfp = freopen(mailbox, "w", boxfp))) {
672 perror("mail: couldn't reopen maildrop");
673 fprintf(stderr, "mail may have been lost; look in %s\n", tempname);
674 if (usedrop) unlink(lockname);
675 return;
677 unlink(tempname);
679 while ((c = getc(tempfp)) != EOF) putc(c, boxfp);
681 fclose(boxfp);
683 if (usedrop) unlink(lockname);
686 void printlet(let, tofp)
687 struct letter *let;
688 FILE *tofp;
690 off_t current, limit;
691 int c;
693 fseek(boxfp, (current = let->location), 0);
694 limit = (NULL != let->next) ? let->next->location : -1;
696 while (current != limit && (c = getc(boxfp)) != EOF) {
697 putc(c, tofp);
698 ++current;
702 void doshell(command)
703 char *command;
705 int waitstat, pid;
706 char *shell;
708 if (NULL == (shell = getenv("SHELL"))) shell = SHELL;
710 if ((pid = fork()) < 0) {
711 perror("mail: couldn't fork");
712 return;
713 } else if (pid != 0) { /* parent */
714 wait(&waitstat);
715 return;
718 /* Child */
719 setgid(getgid());
720 setuid(getuid());
721 umask(oldmask);
723 execl(shell, shell, "-c", command, (char *) NULL);
724 fprintf(stderr, "can't exec shell\n");
725 exit(127);
728 void usage()
730 fprintf(stderr, "usage: mail [-epqr] [-f file]\n");
731 fprintf(stderr, " mail [-dtv] [-s subject] user [...]\n");
734 char *basename(name)
735 char *name;
737 char *p;
739 if (NULL == (p = rindex(name, '/')))
740 return name;
741 else
742 return p + 1;
745 char *whoami()
747 struct passwd *pw;
749 if (NULL != (pw = getpwuid(getuid())))
750 return pw->pw_name;
751 else
752 return "nobody";
755 void dohelp()
757 FILE *fp;
758 char buffer[80];
760 if ( (fp = fopen(HELPFILE, "r")) == NULL)
761 fprintf(stdout, "can't open helpfile %s\n", HELPFILE);
762 else
763 while (fgets(buffer, 80, fp))
764 fputs(buffer, stdout);
767 int filesize(name)
768 char *name ;
770 struct stat buf;
772 if (stat(name, &buf) == -1)
773 buf.st_size = 0L;
775 return (buf.st_size ? 1 : 0);