Extend `if' conditionals ('[01]' and '$COND( [!=]= VAL)?')
[s-mailx.git] / lex.c
blob3da7e242c1cf1e6e0fe2f8199bcd5effd542b657
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 #ifdef HAVE_COLOUR
685 colour_table = NULL; /* XXX intermediate hack */
686 #endif
687 sreset(sourcing);
688 if (!sourcing) {
689 /* TODO Note: this buffer may contain a password
690 * TODO We should redefine the code flow which has
691 * TODO to do that */
692 if ((nv = termios_state.ts_linebuf) != NULL) {
693 termios_state.ts_linebuf = NULL;
694 termios_state.ts_linesize = 0;
695 free(nv); /* TODO pool give-back */
697 /* TODO Due to expand-on-tab of our line editor the
698 * TODO buffer may grow */
699 if (linesize > LINESIZE * 3) {
700 free(linebuf); /* TODO pool! but what? */
701 linebuf = NULL;
702 linesize = 0;
707 * Read a line of commands from the current input
708 * and handle end of file specially.
710 n = readline_input(LNED_LF_ESC | LNED_HIST_ADD, NULL,
711 &linebuf, &linesize);
712 _reset_on_stop = 0;
713 if (n < 0) {
714 /* eof */
715 if (loading)
716 break;
717 if (sourcing) {
718 unstack();
719 continue;
721 if ((options & OPT_INTERACTIVE) &&
722 ok_blook(ignoreeof) && ++eofloop < 25) {
723 printf(tr(89, "Use `quit' to quit.\n"));
724 continue;
726 break;
729 eofloop = 0;
730 inhook = 0;
731 if (execute(linebuf, 0, n))
732 break;
733 if (exit_status != EXIT_OK && (options & OPT_BATCH_FLAG) &&
734 ok_blook(batch_exit_on_error))
735 break;
738 if (linebuf != NULL)
739 free(linebuf);
740 if (sourcing)
741 sreset(FAL0);
745 * Execute a single command.
746 * Command functions return 0 for success, 1 for error, and -1
747 * for abort. A 1 or -1 aborts a load or source. A -1 aborts
748 * the interactive command loop.
749 * Contxt is non-zero if called while composing mail.
751 FL int
752 execute(char *linebuf, int contxt, size_t linesize)
754 char _wordbuf[2], *arglist[MAXARGC], *cp, *word;
755 struct cmd_ghost *cg = NULL;
756 struct cmd const *com = NULL;
757 int muvec[2], c, e = 1;
759 /* Command ghosts that refer to shell commands or macro expansion restart */
760 jrestart:
762 /* Strip the white space away from the beginning of the command */
763 for (cp = linebuf; whitechar(*cp); ++cp)
765 linesize -= (size_t)(cp - linebuf);
767 /* Ignore comments */
768 if (*cp == '#')
769 goto jleave0;
771 /* Handle ! differently to get the correct lexical conventions */
772 if (*cp == '!') {
773 if (sourcing) {
774 fprintf(stderr, tr(90, "Can't `!' while sourcing\n"));
775 goto jleave;
777 shell(++cp);
778 goto jleave0;
781 /* Isolate the actual command; since it may not necessarily be
782 * separated from the arguments (as in `p1') we need to duplicate it to
783 * be able to create a NUL terminated version.
784 * We must be aware of special one letter commands here */
785 arglist[0] = cp;
786 switch (*cp) {
787 case '|':
788 case '~':
789 case '?':
790 ++cp;
791 /* FALLTHRU */
792 case '\0':
793 break;
794 default:
795 cp = _lex_isolate(cp);
796 break;
798 c = (int)(cp - arglist[0]);
799 linesize -= c;
800 word = (c < (int)sizeof _wordbuf) ? _wordbuf : salloc(c + 1);
801 memcpy(word, arglist[0], c);
802 word[c] = '\0';
804 /* Look up the command; if not found, bitch.
805 * Normally, a blank command would map to the first command in the
806 * table; while sourcing, however, we ignore blank lines to eliminate
807 * confusion; act just the same for ghosts */
808 if ((sourcing || cg != NULL) && *word == '\0')
809 goto jleave0;
811 /* If this is the first evaluation, check command ghosts */
812 if (cg == NULL) {
813 /* TODO relink list head, so it's sort over time on usage? */
814 for (cg = _cmd_ghosts; cg != NULL; cg = cg->next)
815 if (strcmp(word, cg->name) == 0) {
816 if (linesize > 0) {
817 size_t i = cg->cmd.l;
818 linebuf = salloc(i + 1 + linesize);
819 memcpy(linebuf, cg->cmd.s, i);
820 linebuf[i++] = ' ';
821 memcpy(linebuf + i, cp, linesize);
822 linebuf[i += linesize] = '\0';
823 linesize = i;
824 } else {
825 linebuf = cg->cmd.s;
826 linesize = cg->cmd.l;
828 goto jrestart;
832 if (com == NULL)
833 com = _lex(word);
834 if (com == NULL || com->func == &ccmdnotsupp) {
835 fprintf(stderr, tr(91, "Unknown command: `%s'\n"), word);
836 if (com != NULL) {
837 ccmdnotsupp(NULL);
838 com = NULL;
840 goto jleave;
843 /* See if we should execute the command -- if a conditional we always
844 * execute it, otherwise, check the state of cond */
845 if ((com->argtype & F) == 0) {
846 switch (cond_state) {
847 case COND_RCV:
848 if (options & OPT_SENDMODE)
849 goto jleave0;
850 break;
851 case COND_SEND:
852 if (!(options & OPT_SENDMODE))
853 goto jleave0;
854 break;
855 case COND_TERM:
856 if (!(options & OPT_TTYIN))
857 goto jleave0;
858 break;
859 case COND_NOTERM:
860 if (options & OPT_TTYIN)
861 goto jleave0;
862 break;
863 case COND_ANY:
864 case COND_EXEC:
865 break;
866 case COND_NOEXEC:
867 goto jleave0;
872 * Process the arguments to the command, depending
873 * on the type he expects. Default to an error.
874 * If we are sourcing an interactive command, it's
875 * an error.
877 if ((options & OPT_SENDMODE) && (com->argtype & M) == 0) {
878 fprintf(stderr, tr(92,
879 "May not execute `%s' while sending\n"),
880 com->name);
881 goto jleave;
883 if (sourcing && com->argtype & I) {
884 fprintf(stderr, tr(93,
885 "May not execute `%s' while sourcing\n"),
886 com->name);
887 goto jleave;
889 if ((mb.mb_perm & MB_DELE) == 0 && com->argtype & W) {
890 fprintf(stderr, tr(94, "May not execute `%s' -- "
891 "message file is read only\n"),
892 com->name);
893 goto jleave;
895 if (contxt && com->argtype & R) {
896 fprintf(stderr, tr(95,
897 "Cannot recursively invoke `%s'\n"), com->name);
898 goto jleave;
900 if (mb.mb_type == MB_VOID && com->argtype & A) {
901 fprintf(stderr, tr(257,
902 "Cannot execute `%s' without active mailbox\n"),
903 com->name);
904 goto jleave;
907 switch (com->argtype & ~(F|P|I|M|T|W|R|A)) {
908 case MSGLIST:
909 /* Message list defaulting to nearest forward legal message */
910 if (_msgvec == 0)
911 goto je96;
912 if ((c = getmsglist(cp, _msgvec, com->msgflag)) < 0)
913 break;
914 if (c == 0) {
915 *_msgvec = first(com->msgflag, com->msgmask);
916 if (*_msgvec != 0)
917 _msgvec[1] = 0;
919 if (*_msgvec == 0) {
920 if (! inhook)
921 printf(tr(97, "No applicable messages\n"));
922 break;
924 e = (*com->func)(_msgvec);
925 break;
927 case NDMLIST:
928 /* Message list with no defaults, but no error if none exist */
929 if (_msgvec == 0) {
930 je96:
931 fprintf(stderr, tr(96,
932 "Illegal use of `message list'\n"));
933 break;
935 if ((c = getmsglist(cp, _msgvec, com->msgflag)) < 0)
936 break;
937 e = (*com->func)(_msgvec);
938 break;
940 case STRLIST:
941 /* Just the straight string, with leading blanks removed */
942 while (whitechar(*cp))
943 cp++;
944 e = (*com->func)(cp);
945 break;
947 case RAWLIST:
948 case ECHOLIST:
949 /* A vector of strings, in shell style */
950 if ((c = getrawlist(cp, linesize, arglist,
951 sizeof arglist / sizeof *arglist,
952 (com->argtype&~(F|P|I|M|T|W|R|A)) == ECHOLIST)
953 ) < 0)
954 break;
955 if (c < com->minargs) {
956 fprintf(stderr, tr(99,
957 "`%s' requires at least %d arg(s)\n"),
958 com->name, com->minargs);
959 break;
961 if (c > com->maxargs) {
962 fprintf(stderr, tr(100,
963 "`%s' takes no more than %d arg(s)\n"),
964 com->name, com->maxargs);
965 break;
967 e = (*com->func)(arglist);
968 break;
970 case NOLIST:
971 /* Just the constant zero, for exiting, eg. */
972 e = (*com->func)(0);
973 break;
975 default:
976 panic(tr(101, "Unknown argument type"));
979 jleave:
980 /* Exit the current source file on error */
981 if ((exec_last_comm_error = (e != 0))) {
982 if (e < 0)
983 return 1;
984 if (loading)
985 return 1;
986 if (sourcing)
987 unstack();
988 return 0;
990 if (com == (struct cmd*)NULL)
991 return 0;
992 if (com->argtype & P && ok_blook(autoprint))
993 if (visible(dot)) {
994 muvec[0] = dot - &message[0] + 1;
995 muvec[1] = 0;
996 type(muvec);
998 if (!sourcing && !inhook && (com->argtype & T) == 0)
999 sawcom = TRU1;
1000 jleave0:
1001 return 0;
1005 * Set the size of the message vector used to construct argument
1006 * lists to message list functions.
1008 FL void
1009 setmsize(int sz)
1012 if (_msgvec != 0)
1013 free(_msgvec);
1014 _msgvec = (int*)scalloc(sz + 1, sizeof *_msgvec);
1018 * The following gets called on receipt of an interrupt. This is
1019 * to abort printout of a command, mainly.
1020 * Dispatching here when command() is inactive crashes rcv.
1021 * Close all open files except 0, 1, 2, and the temporary.
1022 * Also, unstack all source files.
1025 static int inithdr; /* am printing startup headers */
1027 /*ARGSUSED*/
1028 FL void
1029 onintr(int s)
1031 if (handlerstacktop != NULL) {
1032 handlerstacktop(s);
1033 return;
1035 safe_signal(SIGINT, onintr);
1036 noreset = 0;
1037 if (!inithdr)
1038 sawcom = TRU1;
1039 inithdr = 0;
1040 while (sourcing)
1041 unstack();
1043 termios_state_reset();
1044 close_all_files();
1046 if (image >= 0) {
1047 close(image);
1048 image = -1;
1050 if (interrupts != 1)
1051 fprintf(stderr, tr(102, "Interrupt\n"));
1052 safe_signal(SIGPIPE, _oldpipe);
1053 reset(0);
1057 * When we wake up after ^Z, reprint the prompt.
1059 static void
1060 stop(int s)
1062 sighandler_type old_action = safe_signal(s, SIG_DFL);
1063 sigset_t nset;
1065 sigemptyset(&nset);
1066 sigaddset(&nset, s);
1067 sigprocmask(SIG_UNBLOCK, &nset, (sigset_t *)NULL);
1068 kill(0, s);
1069 sigprocmask(SIG_BLOCK, &nset, (sigset_t *)NULL);
1070 safe_signal(s, old_action);
1071 if (_reset_on_stop) {
1072 _reset_on_stop = 0;
1073 reset(0);
1078 * Branch here on hangup signal and simulate "exit".
1080 /*ARGSUSED*/
1081 static void
1082 hangup(int s)
1084 (void)s;
1085 /* nothing to do? */
1086 exit(1);
1090 * Announce the presence of the current Mail version,
1091 * give the message count, and print a header listing.
1093 FL void
1094 announce(int printheaders)
1096 int vec[2], mdot;
1098 mdot = newfileinfo();
1099 vec[0] = mdot;
1100 vec[1] = 0;
1101 dot = &message[mdot - 1];
1102 if (printheaders && msgCount > 0 && ok_blook(header)) {
1103 inithdr++;
1104 headers(vec);
1105 inithdr = 0;
1110 * Announce information about the file we are editing.
1111 * Return a likely place to set dot.
1113 FL int
1114 newfileinfo(void)
1116 struct message *mp;
1117 int u, n, mdot, d, s, hidden, moved;
1119 if (mb.mb_type == MB_VOID)
1120 return 1;
1121 mdot = getmdot(0);
1122 s = d = hidden = moved =0;
1123 for (mp = &message[0], n = 0, u = 0; mp < &message[msgCount]; mp++) {
1124 if (mp->m_flag & MNEW)
1125 n++;
1126 if ((mp->m_flag & MREAD) == 0)
1127 u++;
1128 if ((mp->m_flag & (MDELETED|MSAVED)) == (MDELETED|MSAVED))
1129 moved++;
1130 if ((mp->m_flag & (MDELETED|MSAVED)) == MDELETED)
1131 d++;
1132 if ((mp->m_flag & (MDELETED|MSAVED)) == MSAVED)
1133 s++;
1134 if (mp->m_flag & MHIDDEN)
1135 hidden++;
1138 /* If displayname gets truncated the user effectively has no option to see
1139 * the full pathname of the mailbox, so print it at least for '? fi' */
1140 printf(tr(103, "\"%s\": "),
1141 (_update_mailname(NULL) ? displayname : mailname));
1142 if (msgCount == 1)
1143 printf(tr(104, "1 message"));
1144 else
1145 printf(tr(105, "%d messages"), msgCount);
1146 if (n > 0)
1147 printf(tr(106, " %d new"), n);
1148 if (u-n > 0)
1149 printf(tr(107, " %d unread"), u);
1150 if (d > 0)
1151 printf(tr(108, " %d deleted"), d);
1152 if (s > 0)
1153 printf(tr(109, " %d saved"), s);
1154 if (moved > 0)
1155 printf(tr(136, " %d moved"), moved);
1156 if (hidden > 0)
1157 printf(tr(139, " %d hidden"), hidden);
1158 if (mb.mb_type == MB_CACHE)
1159 printf(" [Disconnected]");
1160 else if (mb.mb_perm == 0)
1161 printf(tr(110, " [Read only]"));
1162 printf("\n");
1163 return(mdot);
1166 FL int
1167 getmdot(int nmail)
1169 struct message *mp;
1170 char *cp;
1171 int mdot;
1172 enum mflag avoid = MHIDDEN|MDELETED;
1174 if (!nmail) {
1175 if (ok_blook(autothread))
1176 thread(NULL);
1177 else if ((cp = ok_vlook(autosort)) != NULL) {
1178 free(mb.mb_sorted);
1179 mb.mb_sorted = sstrdup(cp);
1180 sort(NULL);
1183 if (mb.mb_type == MB_VOID)
1184 return 1;
1185 if (nmail)
1186 for (mp = &message[0]; mp < &message[msgCount]; mp++)
1187 if ((mp->m_flag & (MNEWEST|avoid)) == MNEWEST)
1188 break;
1189 if (!nmail || mp >= &message[msgCount]) {
1190 for (mp = mb.mb_threaded ? threadroot : &message[0];
1191 mb.mb_threaded ?
1192 mp != NULL : mp < &message[msgCount];
1193 mb.mb_threaded ?
1194 mp = next_in_thread(mp) : mp++)
1195 if ((mp->m_flag & (MNEW|avoid)) == MNEW)
1196 break;
1198 if (mb.mb_threaded ? mp == NULL : mp >= &message[msgCount])
1199 for (mp = mb.mb_threaded ? threadroot : &message[0];
1200 mb.mb_threaded ? mp != NULL:
1201 mp < &message[msgCount];
1202 mb.mb_threaded ? mp = next_in_thread(mp) : mp++)
1203 if (mp->m_flag & MFLAGGED)
1204 break;
1205 if (mb.mb_threaded ? mp == NULL : mp >= &message[msgCount])
1206 for (mp = mb.mb_threaded ? threadroot : &message[0];
1207 mb.mb_threaded ? mp != NULL:
1208 mp < &message[msgCount];
1209 mb.mb_threaded ? mp = next_in_thread(mp) : mp++)
1210 if ((mp->m_flag & (MREAD|avoid)) == 0)
1211 break;
1212 if (mb.mb_threaded ? mp != NULL : mp < &message[msgCount])
1213 mdot = mp - &message[0] + 1;
1214 else if (ok_blook(showlast)) {
1215 if (mb.mb_threaded) {
1216 for (mp = this_in_thread(threadroot, -1); mp;
1217 mp = prev_in_thread(mp))
1218 if ((mp->m_flag & avoid) == 0)
1219 break;
1220 mdot = mp ? mp - &message[0] + 1 : msgCount;
1221 } else {
1222 for (mp = &message[msgCount-1]; mp >= &message[0]; mp--)
1223 if ((mp->m_flag & avoid) == 0)
1224 break;
1225 mdot = mp >= &message[0] ? mp-&message[0]+1 : msgCount;
1227 } else if (mb.mb_threaded) {
1228 for (mp = threadroot; mp; mp = next_in_thread(mp))
1229 if ((mp->m_flag & avoid) == 0)
1230 break;
1231 mdot = mp ? mp - &message[0] + 1 : 1;
1232 } else {
1233 for (mp = &message[0]; mp < &message[msgCount]; mp++)
1234 if ((mp->m_flag & avoid) == 0)
1235 break;
1236 mdot = mp < &message[msgCount] ? mp-&message[0]+1 : 1;
1238 return mdot;
1241 FL void
1242 initbox(const char *name)
1244 char *tempMesg;
1245 int dummy;
1247 if (mb.mb_type != MB_VOID)
1248 (void)n_strlcpy(prevfile, mailname, MAXPATHLEN);
1249 _update_mailname(name != mailname ? name : NULL);
1250 if ((mb.mb_otf = Ftemp(&tempMesg, "tmpbox", "w", 0600, 0)) == NULL) {
1251 perror(tr(87, "temporary mail message file"));
1252 exit(1);
1254 (void)fcntl(fileno(mb.mb_otf), F_SETFD, FD_CLOEXEC);
1255 if ((mb.mb_itf = safe_fopen(tempMesg, "r", &dummy)) == NULL) {
1256 perror(tr(87, "temporary mail message file"));
1257 exit(1);
1259 (void)fcntl(fileno(mb.mb_itf), F_SETFD, FD_CLOEXEC);
1260 rm(tempMesg);
1261 Ftfree(&tempMesg);
1262 msgCount = 0;
1263 if (message) {
1264 free(message);
1265 message = NULL;
1266 msgspace = 0;
1268 mb.mb_threaded = 0;
1269 if (mb.mb_sorted != NULL) {
1270 free(mb.mb_sorted);
1271 mb.mb_sorted = NULL;
1273 #ifdef HAVE_IMAP
1274 mb.mb_flags = MB_NOFLAGS;
1275 #endif
1276 prevdot = NULL;
1277 dot = NULL;
1278 did_print_dot = FAL0;
1281 #ifdef HAVE_DOCSTRINGS
1282 FL bool_t
1283 print_comm_docstr(char const *comm)
1285 bool_t rv = FAL0;
1286 struct cmd_ghost *cg;
1287 struct cmd const *cp;
1289 /* Ghosts take precedence */
1290 for (cg = _cmd_ghosts; cg != NULL; cg = cg->next)
1291 if (strcmp(comm, cg->name) == 0) {
1292 printf("%s -> <%s>\n", comm, cg->cmd.s);
1293 rv = TRU1;
1294 goto jleave;
1297 for (cp = _cmd_tab; cp->name != NULL; ++cp) {
1298 if (cp->func == &ccmdnotsupp)
1299 continue;
1300 if (strcmp(comm, cp->name) == 0)
1301 printf("%s: %s\n", comm, tr(cp->docid, cp->doc));
1302 else if (is_prefix(comm, cp->name))
1303 printf("%s (%s): %s\n", comm, cp->name, tr(cp->docid, cp->doc));
1304 else
1305 continue;
1306 rv = TRU1;
1307 break;
1309 jleave:
1310 return rv;
1312 #endif
1314 /* vim:set fenc=utf-8:s-it-mode (TODO only partial true) */