Use new vok_ interface
[s-mailx.git] / lex.c
blob915070e8a23fba76cfcd96042f019f74db9195b3
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ (Lexical processing of) Commands, and the event mainloop.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2013 Steffen "Daode" Nurpmeso <sdaoden@users.sf.net>.
6 */
7 /*
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
40 #ifndef HAVE_AMALGAMATION
41 # include "nail.h"
42 #endif
44 #include <fcntl.h>
46 struct cmd {
47 char const *name; /* Name of command */
48 int (*func)(void*); /* Implementor of command */
49 enum argtype argtype; /* Arglist type (see below) */
50 short msgflag; /* Required flags of msgs*/
51 short msgmask; /* Relevant flags of msgs */
52 #ifdef HAVE_DOCSTRINGS
53 int docid; /* Translation id of .doc */
54 char const *doc; /* One line doc for command */
55 #endif
57 /* Yechh, can't initialize unions */
58 #define minargs msgflag /* Minimum argcount for RAWLIST */
59 #define maxargs msgmask /* Max argcount for RAWLIST */
61 struct cmd_ghost {
62 struct cmd_ghost *next;
63 struct str cmd; /* Data follows after .name */
64 char name[VFIELD_SIZE(sizeof(size_t))];
67 static int *_msgvec;
68 static int _reset_on_stop; /* do a reset() if stopped */
69 static sighandler_type _oldpipe;
70 static struct cmd_ghost *_cmd_ghosts;
71 /* _cmd_tab[] after fun protos */
73 /* Update mailname (if name != NULL) and displayname, return wether displayname
74 * was large enough to swallow mailname */
75 static bool_t _update_mailname(char const *name);
76 #ifdef HAVE_C90AMEND1 /* TODO unite __narrow_{pre,suf}fix() into one fun! */
77 SINLINE size_t __narrow_prefix(char const *cp, size_t maxl);
78 SINLINE size_t __narrow_suffix(char const *cp, size_t cpl, size_t maxl);
79 #endif
81 /* Isolate the command from the arguments */
82 static char * _lex_isolate(char const *comm);
84 /* Get first-fit, or NULL */
85 static struct cmd const * _lex(char const *comm);
87 /* Command ghost handling */
88 static int _ghost(void *v);
89 static int _unghost(void *v);
91 /* Print a list of all commands */
92 static int _pcmdlist(void *v);
93 static int __pcmd_cmp(void const *s1, void const *s2);
95 /* Print the binaries compiled-in features */
96 static int _features(void *v);
98 /* Print the binaries version number */
99 static int _version(void *v);
101 static void stop(int s);
102 static void hangup(int s);
104 /* List of all commands */
105 static struct cmd const _cmd_tab[] = {
106 #include "cmd_tab.h"
109 #ifdef HAVE_C90AMEND1
110 SINLINE size_t
111 __narrow_prefix(char const *cp, size_t maxl)
113 int err;
114 size_t i, ok;
116 for (err = ok = i = 0; i < maxl;) {
117 int ml = mblen(cp, maxl - i);
118 if (ml < 0) { /* XXX _narrow_prefix(): mblen() error; action? */
119 (void)mblen(NULL, 0);
120 err = 1;
121 ml = 1;
122 } else {
123 if (! err)
124 ok = i;
125 err = 0;
126 if (ml == 0)
127 break;
129 cp += ml;
130 i += ml;
132 return ok;
135 SINLINE size_t
136 __narrow_suffix(char const *cp, size_t cpl, size_t maxl)
138 int err;
139 size_t i, ok;
141 for (err = ok = i = 0; cpl > maxl || err;) {
142 int ml = mblen(cp, cpl);
143 if (ml < 0) { /* XXX _narrow_suffix(): mblen() error; action? */
144 (void)mblen(NULL, 0);
145 err = 1;
146 ml = 1;
147 } else {
148 if (! err)
149 ok = i;
150 err = 0;
151 if (ml == 0)
152 break;
154 cp += ml;
155 i += ml;
156 cpl -= ml;
158 return ok;
160 #endif /* HAVE_C90AMEND1 */
162 static bool_t
163 _update_mailname(char const *name)
165 char tbuf[MAXPATHLEN], *mailp, *dispp;
166 size_t i, j;
167 bool_t rv;
169 /* Don't realpath(3) if it's only an update request */
170 if (name != NULL) {
171 #ifdef HAVE_REALPATH
172 enum protocol p = which_protocol(name);
173 if (p == PROTO_FILE || p == PROTO_MAILDIR) {
174 if (realpath(name, mailname) == NULL) {
175 fprintf(stderr, tr(151, "Can't canonicalize `%s'\n"), name);
176 rv = FAL0;
177 goto jleave;
179 } else
180 #endif
181 n_strlcpy(mailname, name, sizeof(mailname));
184 mailp = mailname;
185 dispp = displayname;
187 /* Don't display an absolute path but "+FOLDER" if under *folder* */
188 if (getfold(tbuf, sizeof tbuf)) {
189 i = strlen(tbuf);
190 if (i < sizeof(tbuf) - 1)
191 tbuf[i++] = '/';
192 if (strncmp(tbuf, mailp, i) == 0) {
193 mailp += i;
194 *dispp++ = '+';
198 /* We want to see the name of the folder .. on the screen */
199 i = strlen(mailp);
200 if ((rv = (i < sizeof(displayname) - 1)))
201 memcpy(dispp, mailp, i + 1);
202 else {
203 /* Avoid disrupting multibyte sequences (if possible) */
204 #ifndef HAVE_C90AMEND1
205 j = sizeof(displayname) / 3 - 1;
206 i -= sizeof(displayname) - (1/* + */ + 3) - j;
207 #else
208 j = __narrow_prefix(mailp, sizeof(displayname) / 3);
209 i = j + __narrow_suffix(mailp + j, i - j,
210 sizeof(displayname) - (1/* + */ + 3 + 1) - j);
211 #endif
212 snprintf(dispp, sizeof(displayname), "%.*s...%s",
213 (int)j, mailp, mailp + i);
215 #ifdef HAVE_REALPATH
216 jleave:
217 #endif
218 return rv;
221 static char *
222 _lex_isolate(char const *comm)
224 while (*comm && strchr(" \t0123456789$^.:/-+*'\",;(`", *comm) == NULL)
225 ++comm;
226 return UNCONST(comm);
229 static struct cmd const *
230 _lex(char const *comm)
232 struct cmd const *cp;
234 for (cp = _cmd_tab; cp->name != NULL; ++cp)
235 if (is_prefix(comm, cp->name))
236 goto jleave;
237 cp = NULL;
238 jleave:
239 return cp;
242 static int
243 _ghost(void *v)
245 char const **argv = (char const **)v;
246 struct cmd_ghost *lcg, *cg;
247 size_t nl, cl;
249 /* Show the list? */
250 if (*argv == NULL) {
251 printf(tr(144, "Command ghosts are:\n"));
252 for (nl = 0, cg = _cmd_ghosts; cg != NULL; cg = cg->next) {
253 cl = strlen(cg->name) + 5 + cg->cmd.l + 3;
254 if ((nl += cl) >= (size_t)scrnwidth) {
255 nl = cl;
256 printf("\n");
258 printf((cg->next != NULL ? "%s -> <%s>, " : "%s -> <%s>\n"),
259 cg->name, cg->cmd.s);
261 v = NULL;
262 goto jleave;
265 /* Request to add new ghost */
266 if (argv[1] == NULL || argv[1][0] == '\0' || argv[2] != NULL) {
267 fprintf(stderr, tr(159, "Usage: %s\n"),
268 tr(425, "Define a <ghost> of <command>, or list all ghosts"));
269 v = NULL;
270 goto jleave;
273 /* Check that we can deal with this one */
274 switch (argv[0][0]) {
275 case '|':
276 case '~':
277 case '?':
278 case '#':
279 /* FALLTHRU */
280 case '\0':
281 goto jecanon;
282 default:
283 if (argv[0] == _lex_isolate(argv[0])) {
284 jecanon:
285 fprintf(stderr, tr(151, "Can't canonicalize `%s'\n"), argv[0]);
286 v = NULL;
287 goto jleave;
289 break;
292 /* Always recreate */
293 for (lcg = NULL, cg = _cmd_ghosts; cg != NULL; lcg = cg, cg = cg->next)
294 if (strcmp(cg->name, argv[0]) == 0) {
295 if (lcg != NULL)
296 lcg->next = cg->next;
297 else
298 _cmd_ghosts = cg->next;
299 free(cg);
300 break;
303 /* Need a new one */
304 nl = strlen(argv[0]) + 1;
305 cl = strlen(argv[1]) + 1;
306 cg = smalloc(sizeof(*cg) - VFIELD_SIZEOF(struct cmd_ghost, name) + nl + cl);
307 cg->next = _cmd_ghosts;
308 memcpy(cg->name, argv[0], nl);
309 cg->cmd.s = cg->name + nl;
310 cg->cmd.l = cl - 1;
311 memcpy(cg->cmd.s, argv[1], cl);
313 _cmd_ghosts = cg;
314 jleave:
315 return (v == NULL);
318 static int
319 _unghost(void *v)
321 int rv = 0;
322 char const **argv = v, *cp;
323 struct cmd_ghost *lcg, *cg;
325 while ((cp = *argv++) != NULL) {
326 for (lcg = NULL, cg = _cmd_ghosts; cg != NULL; lcg = cg, cg = cg->next)
327 if (strcmp(cg->name, cp) == 0) {
328 if (lcg != NULL)
329 lcg->next = cg->next;
330 else
331 _cmd_ghosts = cg->next;
332 free(cg);
333 goto jouter;
335 fprintf(stderr, tr(91, "Unknown command: `%s'\n"), cp);
336 rv = 1;
337 jouter:
340 return rv;
343 static int
344 __pcmd_cmp(void const *s1, void const *s2)
346 struct cmd const * const *c1 = s1, * const *c2 = s2;
347 return (strcmp((*c1)->name, (*c2)->name));
350 static int
351 _pcmdlist(void *v)
353 struct cmd const **cpa, *cp, **cursor;
354 size_t i;
355 (void)v;
357 for (i = 0; _cmd_tab[i].name != NULL; ++i)
359 ++i;
360 cpa = ac_alloc(sizeof(cp) * i);
362 for (i = 0; (cp = _cmd_tab + i)->name != NULL; ++i)
363 cpa[i] = cp;
364 cpa[i] = NULL;
366 qsort(cpa, i, sizeof(cp), &__pcmd_cmp);
368 printf(tr(14, "Commands are:\n"));
369 for (i = 0, cursor = cpa; (cp = *cursor++) != NULL;) {
370 size_t j;
371 if (cp->func == &ccmdnotsupp)
372 continue;
373 j = strlen(cp->name) + 2;
374 if ((i += j) > 72) {
375 i = j;
376 printf("\n");
378 printf((*cursor != NULL ? "%s, " : "%s\n"), cp->name);
381 ac_free(cpa);
382 return 0;
385 static int
386 _features(void *v)
388 UNUSED(v);
389 printf(tr(523, "Features: %s\n"), features);
390 return 0;
393 static int
394 _version(void *v)
396 UNUSED(v);
397 printf(tr(111, "Version %s\n"), version);
398 return 0;
402 * Set up editing on the given file name.
403 * If the first character of name is %, we are considered to be
404 * editing the file, otherwise we are reading our mail which has
405 * signficance for mbox and so forth.
407 * nmail: Check for new mail in the current folder only.
409 FL int
410 setfile(char const *name, int nmail)
412 FILE *ibuf;
413 int i, compressed = 0;
414 struct stat stb;
415 bool_t isedit;
416 char const *who = name[1] ? name + 1 : myname;
417 static int shudclob;
418 size_t offset;
419 int omsgCount = 0;
420 struct shortcut *sh;
421 struct flock flp;
423 /* Note we don't 'userid(myname) != getuid()', preliminary steps are usually
424 * necessary to make a mailbox accessible by a different user, and if that
425 * has happened, let's just let the usual file perms decide */
426 isedit = (*name != '%' && ((sh = get_shortcut(name)) == NULL ||
427 *sh->sh_long != '%'));
428 if ((name = expand(name)) == NULL)
429 return (-1);
431 switch (which_protocol(name)) {
432 case PROTO_FILE:
433 break;
434 case PROTO_MAILDIR:
435 return (maildir_setfile(name, nmail, isedit));
436 #ifdef HAVE_POP3
437 case PROTO_POP3:
438 shudclob = 1;
439 return (pop3_setfile(name, nmail, isedit));
440 #endif
441 #ifdef HAVE_IMAP
442 case PROTO_IMAP:
443 shudclob = 1;
444 if (nmail) {
445 if (mb.mb_type == MB_CACHE)
446 return 1;
448 return imap_setfile(name, nmail, isedit);
449 #endif
450 default:
451 fprintf(stderr, tr(217, "Cannot handle protocol: %s\n"), name);
452 return (-1);
455 if ((ibuf = Zopen(name, "r", &compressed)) == NULL) {
456 if ((!isedit && errno == ENOENT) || nmail) {
457 if (nmail)
458 goto jnonmail;
459 goto nomail;
461 perror(name);
462 return(-1);
465 if (fstat(fileno(ibuf), &stb) < 0) {
466 Fclose(ibuf);
467 if (nmail)
468 goto jnonmail;
469 perror("fstat");
470 return (-1);
473 if (S_ISDIR(stb.st_mode)) {
474 Fclose(ibuf);
475 if (nmail)
476 goto jnonmail;
477 errno = EISDIR;
478 perror(name);
479 return (-1);
480 } else if (S_ISREG(stb.st_mode)) {
481 /*EMPTY*/
482 } else {
483 Fclose(ibuf);
484 if (nmail)
485 goto jnonmail;
486 errno = EINVAL;
487 perror(name);
488 return (-1);
492 * Looks like all will be well. We must now relinquish our
493 * hold on the current set of stuff. Must hold signals
494 * while we are reading the new file, else we will ruin
495 * the message[] data structure.
498 hold_sigs(); /* TODO note on this one in quit.c:quit() */
499 if (shudclob && !nmail)
500 quit();
501 #ifdef HAVE_SOCKETS
502 if (!nmail && mb.mb_sock.s_fd >= 0)
503 sclose(&mb.mb_sock);
504 #endif
507 * Copy the messages into /tmp
508 * and set pointers.
511 flp.l_type = F_RDLCK;
512 flp.l_start = 0;
513 flp.l_whence = SEEK_SET;
514 if (!nmail) {
515 mb.mb_type = MB_FILE;
516 mb.mb_perm = (options & OPT_R_FLAG) ? 0 : MB_DELE|MB_EDIT;
517 mb.mb_compressed = compressed;
518 if (compressed) {
519 if (compressed & 0200)
520 mb.mb_perm = 0;
521 } else {
522 if ((i = open(name, O_WRONLY)) < 0)
523 mb.mb_perm = 0;
524 else
525 close(i);
527 if (shudclob) {
528 if (mb.mb_itf) {
529 fclose(mb.mb_itf);
530 mb.mb_itf = NULL;
532 if (mb.mb_otf) {
533 fclose(mb.mb_otf);
534 mb.mb_otf = NULL;
537 shudclob = 1;
538 edit = isedit;
539 initbox(name);
540 offset = 0;
541 flp.l_len = 0;
542 if (!edit && fcntl(fileno(ibuf), F_SETLKW, &flp) < 0) {
543 perror("Unable to lock mailbox");
544 Fclose(ibuf);
545 return -1;
547 } else /* nmail */{
548 fseek(mb.mb_otf, 0L, SEEK_END);
549 fseek(ibuf, mailsize, SEEK_SET);
550 offset = mailsize;
551 omsgCount = msgCount;
552 flp.l_len = offset;
553 if (!edit && fcntl(fileno(ibuf), F_SETLKW, &flp) < 0)
554 goto jnonmail;
556 mailsize = fsize(ibuf);
557 if (nmail && (size_t)mailsize <= offset) {
558 rele_sigs();
559 goto jnonmail;
561 setptr(ibuf, offset);
562 setmsize(msgCount);
563 if (nmail && mb.mb_sorted) {
564 mb.mb_threaded = 0;
565 sort((void *)-1);
567 Fclose(ibuf);
568 rele_sigs();
569 if (!nmail)
570 sawcom = FAL0;
571 if ((!edit || nmail) && msgCount == 0) {
572 jnonmail:
573 if (!nmail) {
574 if (!ok_blook(emptystart))
575 nomail: fprintf(stderr, tr(88, "No mail for %s\n"),
576 who);
578 return 1;
580 if (nmail)
581 newmailinfo(omsgCount);
582 return 0;
585 FL int
586 newmailinfo(int omsgCount)
588 int mdot;
589 int i;
591 for (i = 0; i < omsgCount; i++)
592 message[i].m_flag &= ~MNEWEST;
593 if (msgCount > omsgCount) {
594 for (i = omsgCount; i < msgCount; i++)
595 message[i].m_flag |= MNEWEST;
596 printf(tr(158, "New mail has arrived.\n"));
597 if (msgCount - omsgCount == 1)
598 printf(tr(214, "Loaded 1 new message.\n"));
599 else
600 printf(tr(215, "Loaded %d new messages.\n"),
601 msgCount - omsgCount);
602 } else
603 printf(tr(224, "Loaded %d messages.\n"), msgCount);
604 callhook(mailname, 1);
605 mdot = getmdot(1);
606 if (ok_blook(header))
607 print_headers(omsgCount + 1, msgCount);
608 return mdot;
612 * Interpret user commands one by one. If standard input is not a tty,
613 * print no prompt.
615 FL void
616 commands(void)
618 int eofloop = 0, n;
619 char *linebuf = NULL, *av, *nv;
620 size_t linesize = 0;
621 #ifdef HAVE_IMAP
622 int x;
623 #endif
625 if (!sourcing) {
626 if (safe_signal(SIGINT, SIG_IGN) != SIG_IGN)
627 safe_signal(SIGINT, onintr);
628 if (safe_signal(SIGHUP, SIG_IGN) != SIG_IGN)
629 safe_signal(SIGHUP, hangup);
630 /* TODO We do a lot of redundant signal handling, especially
631 * TODO with the command line editor(s); try to merge this */
632 safe_signal(SIGTSTP, stop);
633 safe_signal(SIGTTOU, stop);
634 safe_signal(SIGTTIN, stop);
636 _oldpipe = safe_signal(SIGPIPE, SIG_IGN);
637 safe_signal(SIGPIPE, _oldpipe);
638 setexit();
640 for (;;) {
641 interrupts = 0;
642 handlerstacktop = NULL;
644 * Print the prompt, if needed. Clear out
645 * string space, and flush the output.
647 if (!sourcing && (options & OPT_INTERACTIVE)) {
648 if ((av = ok_vlook(autoinc)) != NULL)
649 av = savestr(av);
650 if ((nv = ok_vlook(newmail)) != NULL)
651 nv = savestr(nv);
652 if ((options & OPT_TTYIN) &&
653 (av != NULL || nv != NULL || mb.mb_type == MB_IMAP)) {
654 struct stat st;
656 n = (av && strcmp(av, "noimap") && strcmp(av, "nopoll")) |
657 (nv && strcmp(nv, "noimap") && strcmp(nv, "nopoll"));
658 #ifdef HAVE_IMAP
659 x = !(av || nv);
660 #endif
661 if ((mb.mb_type == MB_FILE &&
662 stat(mailname, &st) == 0 &&
663 st.st_size > mailsize) ||
664 #ifdef HAVE_IMAP
665 (mb.mb_type == MB_IMAP &&
666 imap_newmail(n) > x) ||
667 #endif
668 (mb.mb_type == MB_MAILDIR &&
669 n != 0)) {
670 int odot = dot - &message[0];
671 bool_t odid = did_print_dot;
673 setfile(mailname, 1);
674 if (mb.mb_type != MB_IMAP) {
675 dot = &message[odot];
676 did_print_dot = odid;
680 _reset_on_stop = 1;
681 exit_status = 0;
684 sreset(sourcing);
685 if (!sourcing) {
686 /* TODO Note: this buffer may contain a password
687 * TODO We should redefine the code flow which has
688 * TODO to do that */
689 if ((nv = termios_state.ts_linebuf) != NULL) {
690 termios_state.ts_linebuf = NULL;
691 termios_state.ts_linesize = 0;
692 free(nv); /* TODO pool give-back */
694 /* TODO Due to expand-on-tab of our line editor the
695 * TODO buffer may grow */
696 if (linesize > LINESIZE * 3) {
697 free(linebuf); /* TODO pool! but what? */
698 linebuf = NULL;
699 linesize = 0;
704 * Read a line of commands from the current input
705 * and handle end of file specially.
707 n = readline_input(LNED_LF_ESC | LNED_HIST_ADD, NULL,
708 &linebuf, &linesize);
709 _reset_on_stop = 0;
710 if (n < 0) {
711 /* eof */
712 if (loading)
713 break;
714 if (sourcing) {
715 unstack();
716 continue;
718 if ((options & OPT_INTERACTIVE) &&
719 ok_blook(ignoreeof) && ++eofloop < 25) {
720 printf(tr(89, "Use `quit' to quit.\n"));
721 continue;
723 break;
726 eofloop = 0;
727 inhook = 0;
728 if (execute(linebuf, 0, n))
729 break;
730 if (exit_status != EXIT_OK && (options & OPT_BATCH_FLAG) &&
731 ok_blook(batch_exit_on_error))
732 break;
735 if (linebuf != NULL)
736 free(linebuf);
737 if (sourcing)
738 sreset(FAL0);
742 * Execute a single command.
743 * Command functions return 0 for success, 1 for error, and -1
744 * for abort. A 1 or -1 aborts a load or source. A -1 aborts
745 * the interactive command loop.
746 * Contxt is non-zero if called while composing mail.
748 FL int
749 execute(char *linebuf, int contxt, size_t linesize)
751 char _wordbuf[2], *arglist[MAXARGC], *cp, *word;
752 struct cmd_ghost *cg = NULL;
753 struct cmd const *com = NULL;
754 int muvec[2], c, e = 1;
756 /* Command ghosts that refer to shell commands or macro expansion restart */
757 jrestart:
759 /* Strip the white space away from the beginning of the command */
760 for (cp = linebuf; whitechar(*cp); ++cp)
762 linesize -= (size_t)(cp - linebuf);
764 /* Ignore comments */
765 if (*cp == '#')
766 goto jleave0;
768 /* Handle ! differently to get the correct lexical conventions */
769 if (*cp == '!') {
770 if (sourcing) {
771 fprintf(stderr, tr(90, "Can't `!' while sourcing\n"));
772 goto jleave;
774 shell(++cp);
775 goto jleave0;
778 /* Isolate the actual command; since it may not necessarily be
779 * separated from the arguments (as in `p1') we need to duplicate it to
780 * be able to create a NUL terminated version.
781 * We must be aware of special one letter commands here */
782 arglist[0] = cp;
783 switch (*cp) {
784 case '|':
785 case '~':
786 case '?':
787 ++cp;
788 /* FALLTHRU */
789 case '\0':
790 break;
791 default:
792 cp = _lex_isolate(cp);
793 break;
795 c = (int)(cp - arglist[0]);
796 linesize -= c;
797 word = (c < (int)sizeof _wordbuf) ? _wordbuf : salloc(c + 1);
798 memcpy(word, arglist[0], c);
799 word[c] = '\0';
801 /* Look up the command; if not found, bitch.
802 * Normally, a blank command would map to the first command in the
803 * table; while sourcing, however, we ignore blank lines to eliminate
804 * confusion; act just the same for ghosts */
805 if ((sourcing || cg != NULL) && *word == '\0')
806 goto jleave0;
808 /* If this is the first evaluation, check command ghosts */
809 if (cg == NULL) {
810 /* TODO relink list head, so it's sort over time on usage? */
811 for (cg = _cmd_ghosts; cg != NULL; cg = cg->next)
812 if (strcmp(word, cg->name) == 0) {
813 if (linesize > 0) {
814 size_t i = cg->cmd.l;
815 linebuf = salloc(i + 1 + linesize);
816 memcpy(linebuf, cg->cmd.s, i);
817 linebuf[i++] = ' ';
818 memcpy(linebuf + i, cp, linesize);
819 linebuf[i += linesize] = '\0';
820 linesize = i;
821 } else {
822 linebuf = cg->cmd.s;
823 linesize = cg->cmd.l;
825 goto jrestart;
829 if (com == NULL)
830 com = _lex(word);
831 if (com == NULL || com->func == &ccmdnotsupp) {
832 fprintf(stderr, tr(91, "Unknown command: `%s'\n"), word);
833 if (com != NULL) {
834 ccmdnotsupp(NULL);
835 com = NULL;
837 goto jleave;
841 * See if we should execute the command -- if a conditional
842 * we always execute it, otherwise, check the state of cond.
844 if ((com->argtype & F) == 0) {
845 if ((cond == CRCV && (options & OPT_SENDMODE)) ||
846 (cond == CSEND && ! (options & OPT_SENDMODE)) ||
847 (cond == CTERM && ! (options & OPT_TTYIN)) ||
848 (cond == CNONTERM && (options & OPT_TTYIN)))
849 goto jleave0;
853 * Process the arguments to the command, depending
854 * on the type he expects. Default to an error.
855 * If we are sourcing an interactive command, it's
856 * an error.
858 if ((options & OPT_SENDMODE) && (com->argtype & M) == 0) {
859 fprintf(stderr, tr(92,
860 "May not execute `%s' while sending\n"),
861 com->name);
862 goto jleave;
864 if (sourcing && com->argtype & I) {
865 fprintf(stderr, tr(93,
866 "May not execute `%s' while sourcing\n"),
867 com->name);
868 goto jleave;
870 if ((mb.mb_perm & MB_DELE) == 0 && com->argtype & W) {
871 fprintf(stderr, tr(94, "May not execute `%s' -- "
872 "message file is read only\n"),
873 com->name);
874 goto jleave;
876 if (contxt && com->argtype & R) {
877 fprintf(stderr, tr(95,
878 "Cannot recursively invoke `%s'\n"), com->name);
879 goto jleave;
881 if (mb.mb_type == MB_VOID && com->argtype & A) {
882 fprintf(stderr, tr(257,
883 "Cannot execute `%s' without active mailbox\n"),
884 com->name);
885 goto jleave;
888 switch (com->argtype & ~(F|P|I|M|T|W|R|A)) {
889 case MSGLIST:
890 /* Message list defaulting to nearest forward legal message */
891 if (_msgvec == 0)
892 goto je96;
893 if ((c = getmsglist(cp, _msgvec, com->msgflag)) < 0)
894 break;
895 if (c == 0) {
896 *_msgvec = first(com->msgflag, com->msgmask);
897 if (*_msgvec != 0)
898 _msgvec[1] = 0;
900 if (*_msgvec == 0) {
901 if (! inhook)
902 printf(tr(97, "No applicable messages\n"));
903 break;
905 e = (*com->func)(_msgvec);
906 break;
908 case NDMLIST:
909 /* Message list with no defaults, but no error if none exist */
910 if (_msgvec == 0) {
911 je96:
912 fprintf(stderr, tr(96,
913 "Illegal use of `message list'\n"));
914 break;
916 if ((c = getmsglist(cp, _msgvec, com->msgflag)) < 0)
917 break;
918 e = (*com->func)(_msgvec);
919 break;
921 case STRLIST:
922 /* Just the straight string, with leading blanks removed */
923 while (whitechar(*cp))
924 cp++;
925 e = (*com->func)(cp);
926 break;
928 case RAWLIST:
929 case ECHOLIST:
930 /* A vector of strings, in shell style */
931 if ((c = getrawlist(cp, linesize, arglist,
932 sizeof arglist / sizeof *arglist,
933 (com->argtype&~(F|P|I|M|T|W|R|A)) == ECHOLIST)
934 ) < 0)
935 break;
936 if (c < com->minargs) {
937 fprintf(stderr, tr(99,
938 "`%s' requires at least %d arg(s)\n"),
939 com->name, com->minargs);
940 break;
942 if (c > com->maxargs) {
943 fprintf(stderr, tr(100,
944 "`%s' takes no more than %d arg(s)\n"),
945 com->name, com->maxargs);
946 break;
948 e = (*com->func)(arglist);
949 break;
951 case NOLIST:
952 /* Just the constant zero, for exiting, eg. */
953 e = (*com->func)(0);
954 break;
956 default:
957 panic(tr(101, "Unknown argument type"));
960 jleave:
961 /* Exit the current source file on error */
962 if ((exec_last_comm_error = (e != 0))) {
963 if (e < 0)
964 return 1;
965 if (loading)
966 return 1;
967 if (sourcing)
968 unstack();
969 return 0;
971 if (com == (struct cmd*)NULL)
972 return 0;
973 if (com->argtype & P && ok_blook(autoprint))
974 if (visible(dot)) {
975 muvec[0] = dot - &message[0] + 1;
976 muvec[1] = 0;
977 type(muvec);
979 if (!sourcing && !inhook && (com->argtype & T) == 0)
980 sawcom = TRU1;
981 jleave0:
982 return 0;
986 * Set the size of the message vector used to construct argument
987 * lists to message list functions.
989 FL void
990 setmsize(int sz)
993 if (_msgvec != 0)
994 free(_msgvec);
995 _msgvec = (int*)scalloc(sz + 1, sizeof *_msgvec);
999 * The following gets called on receipt of an interrupt. This is
1000 * to abort printout of a command, mainly.
1001 * Dispatching here when command() is inactive crashes rcv.
1002 * Close all open files except 0, 1, 2, and the temporary.
1003 * Also, unstack all source files.
1006 static int inithdr; /* am printing startup headers */
1008 /*ARGSUSED*/
1009 FL void
1010 onintr(int s)
1012 if (handlerstacktop != NULL) {
1013 handlerstacktop(s);
1014 return;
1016 safe_signal(SIGINT, onintr);
1017 noreset = 0;
1018 if (!inithdr)
1019 sawcom = TRU1;
1020 inithdr = 0;
1021 while (sourcing)
1022 unstack();
1024 termios_state_reset();
1025 close_all_files();
1027 if (image >= 0) {
1028 close(image);
1029 image = -1;
1031 if (interrupts != 1)
1032 fprintf(stderr, tr(102, "Interrupt\n"));
1033 safe_signal(SIGPIPE, _oldpipe);
1034 reset(0);
1038 * When we wake up after ^Z, reprint the prompt.
1040 static void
1041 stop(int s)
1043 sighandler_type old_action = safe_signal(s, SIG_DFL);
1044 sigset_t nset;
1046 sigemptyset(&nset);
1047 sigaddset(&nset, s);
1048 sigprocmask(SIG_UNBLOCK, &nset, (sigset_t *)NULL);
1049 kill(0, s);
1050 sigprocmask(SIG_BLOCK, &nset, (sigset_t *)NULL);
1051 safe_signal(s, old_action);
1052 if (_reset_on_stop) {
1053 _reset_on_stop = 0;
1054 reset(0);
1059 * Branch here on hangup signal and simulate "exit".
1061 /*ARGSUSED*/
1062 static void
1063 hangup(int s)
1065 (void)s;
1066 /* nothing to do? */
1067 exit(1);
1071 * Announce the presence of the current Mail version,
1072 * give the message count, and print a header listing.
1074 FL void
1075 announce(int printheaders)
1077 int vec[2], mdot;
1079 mdot = newfileinfo();
1080 vec[0] = mdot;
1081 vec[1] = 0;
1082 dot = &message[mdot - 1];
1083 if (printheaders && msgCount > 0 && ok_blook(header)) {
1084 inithdr++;
1085 headers(vec);
1086 inithdr = 0;
1091 * Announce information about the file we are editing.
1092 * Return a likely place to set dot.
1094 FL int
1095 newfileinfo(void)
1097 struct message *mp;
1098 int u, n, mdot, d, s, hidden, moved;
1100 if (mb.mb_type == MB_VOID)
1101 return 1;
1102 mdot = getmdot(0);
1103 s = d = hidden = moved =0;
1104 for (mp = &message[0], n = 0, u = 0; mp < &message[msgCount]; mp++) {
1105 if (mp->m_flag & MNEW)
1106 n++;
1107 if ((mp->m_flag & MREAD) == 0)
1108 u++;
1109 if ((mp->m_flag & (MDELETED|MSAVED)) == (MDELETED|MSAVED))
1110 moved++;
1111 if ((mp->m_flag & (MDELETED|MSAVED)) == MDELETED)
1112 d++;
1113 if ((mp->m_flag & (MDELETED|MSAVED)) == MSAVED)
1114 s++;
1115 if (mp->m_flag & MHIDDEN)
1116 hidden++;
1119 /* If displayname gets truncated the user effectively has no option to see
1120 * the full pathname of the mailbox, so print it at least for '? fi' */
1121 printf(tr(103, "\"%s\": "),
1122 (_update_mailname(NULL) ? displayname : mailname));
1123 if (msgCount == 1)
1124 printf(tr(104, "1 message"));
1125 else
1126 printf(tr(105, "%d messages"), msgCount);
1127 if (n > 0)
1128 printf(tr(106, " %d new"), n);
1129 if (u-n > 0)
1130 printf(tr(107, " %d unread"), u);
1131 if (d > 0)
1132 printf(tr(108, " %d deleted"), d);
1133 if (s > 0)
1134 printf(tr(109, " %d saved"), s);
1135 if (moved > 0)
1136 printf(tr(136, " %d moved"), moved);
1137 if (hidden > 0)
1138 printf(tr(139, " %d hidden"), hidden);
1139 if (mb.mb_type == MB_CACHE)
1140 printf(" [Disconnected]");
1141 else if (mb.mb_perm == 0)
1142 printf(tr(110, " [Read only]"));
1143 printf("\n");
1144 return(mdot);
1147 FL int
1148 getmdot(int nmail)
1150 struct message *mp;
1151 char *cp;
1152 int mdot;
1153 enum mflag avoid = MHIDDEN|MDELETED;
1155 if (!nmail) {
1156 if (ok_blook(autothread))
1157 thread(NULL);
1158 else if ((cp = ok_vlook(autosort)) != NULL) {
1159 free(mb.mb_sorted);
1160 mb.mb_sorted = sstrdup(cp);
1161 sort(NULL);
1164 if (mb.mb_type == MB_VOID)
1165 return 1;
1166 if (nmail)
1167 for (mp = &message[0]; mp < &message[msgCount]; mp++)
1168 if ((mp->m_flag & (MNEWEST|avoid)) == MNEWEST)
1169 break;
1170 if (!nmail || mp >= &message[msgCount]) {
1171 for (mp = mb.mb_threaded ? threadroot : &message[0];
1172 mb.mb_threaded ?
1173 mp != NULL : mp < &message[msgCount];
1174 mb.mb_threaded ?
1175 mp = next_in_thread(mp) : mp++)
1176 if ((mp->m_flag & (MNEW|avoid)) == MNEW)
1177 break;
1179 if (mb.mb_threaded ? mp == NULL : mp >= &message[msgCount])
1180 for (mp = mb.mb_threaded ? threadroot : &message[0];
1181 mb.mb_threaded ? mp != NULL:
1182 mp < &message[msgCount];
1183 mb.mb_threaded ? mp = next_in_thread(mp) : mp++)
1184 if (mp->m_flag & MFLAGGED)
1185 break;
1186 if (mb.mb_threaded ? mp == NULL : mp >= &message[msgCount])
1187 for (mp = mb.mb_threaded ? threadroot : &message[0];
1188 mb.mb_threaded ? mp != NULL:
1189 mp < &message[msgCount];
1190 mb.mb_threaded ? mp = next_in_thread(mp) : mp++)
1191 if ((mp->m_flag & (MREAD|avoid)) == 0)
1192 break;
1193 if (mb.mb_threaded ? mp != NULL : mp < &message[msgCount])
1194 mdot = mp - &message[0] + 1;
1195 else if (ok_blook(showlast)) {
1196 if (mb.mb_threaded) {
1197 for (mp = this_in_thread(threadroot, -1); mp;
1198 mp = prev_in_thread(mp))
1199 if ((mp->m_flag & avoid) == 0)
1200 break;
1201 mdot = mp ? mp - &message[0] + 1 : msgCount;
1202 } else {
1203 for (mp = &message[msgCount-1]; mp >= &message[0]; mp--)
1204 if ((mp->m_flag & avoid) == 0)
1205 break;
1206 mdot = mp >= &message[0] ? mp-&message[0]+1 : msgCount;
1208 } else if (mb.mb_threaded) {
1209 for (mp = threadroot; mp; mp = next_in_thread(mp))
1210 if ((mp->m_flag & avoid) == 0)
1211 break;
1212 mdot = mp ? mp - &message[0] + 1 : 1;
1213 } else {
1214 for (mp = &message[0]; mp < &message[msgCount]; mp++)
1215 if ((mp->m_flag & avoid) == 0)
1216 break;
1217 mdot = mp < &message[msgCount] ? mp-&message[0]+1 : 1;
1219 return mdot;
1222 FL void
1223 initbox(const char *name)
1225 char *tempMesg;
1226 int dummy;
1228 if (mb.mb_type != MB_VOID)
1229 (void)n_strlcpy(prevfile, mailname, MAXPATHLEN);
1230 _update_mailname(name != mailname ? name : NULL);
1231 if ((mb.mb_otf = Ftemp(&tempMesg, "tmpbox", "w", 0600, 0)) == NULL) {
1232 perror(tr(87, "temporary mail message file"));
1233 exit(1);
1235 (void)fcntl(fileno(mb.mb_otf), F_SETFD, FD_CLOEXEC);
1236 if ((mb.mb_itf = safe_fopen(tempMesg, "r", &dummy)) == NULL) {
1237 perror(tr(87, "temporary mail message file"));
1238 exit(1);
1240 (void)fcntl(fileno(mb.mb_itf), F_SETFD, FD_CLOEXEC);
1241 rm(tempMesg);
1242 Ftfree(&tempMesg);
1243 msgCount = 0;
1244 if (message) {
1245 free(message);
1246 message = NULL;
1247 msgspace = 0;
1249 mb.mb_threaded = 0;
1250 if (mb.mb_sorted != NULL) {
1251 free(mb.mb_sorted);
1252 mb.mb_sorted = NULL;
1254 #ifdef HAVE_IMAP
1255 mb.mb_flags = MB_NOFLAGS;
1256 #endif
1257 prevdot = NULL;
1258 dot = NULL;
1259 did_print_dot = FAL0;
1262 #ifdef HAVE_DOCSTRINGS
1263 FL bool_t
1264 print_comm_docstr(char const *comm)
1266 bool_t rv = FAL0;
1267 struct cmd_ghost *cg;
1268 struct cmd const *cp;
1270 /* Ghosts take precedence */
1271 for (cg = _cmd_ghosts; cg != NULL; cg = cg->next)
1272 if (strcmp(comm, cg->name) == 0) {
1273 printf("%s -> <%s>\n", comm, cg->cmd.s);
1274 rv = TRU1;
1275 goto jleave;
1278 for (cp = _cmd_tab; cp->name != NULL; ++cp) {
1279 if (cp->func == &ccmdnotsupp)
1280 continue;
1281 if (strcmp(comm, cp->name) == 0)
1282 printf("%s: %s\n", comm, tr(cp->docid, cp->doc));
1283 else if (is_prefix(comm, cp->name))
1284 printf("%s (%s): %s\n", comm, cp->name, tr(cp->docid, cp->doc));
1285 else
1286 continue;
1287 rv = TRU1;
1288 break;
1290 jleave:
1291 return rv;
1293 #endif
1295 /* vim:set fenc=utf-8:s-it-mode (TODO only partial true) */