1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ (Lexical processing of) Commands, and the (blocking) "event mainloop".
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2015 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
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
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. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 #ifndef HAVE_AMALGAMATION
43 char const *name
; /* Name of command */
44 int (*func
)(void*); /* Implementor of command */
45 enum argtype argtype
; /* Arglist type (see below) */
46 short msgflag
; /* Required flags of msgs */
47 short msgmask
; /* Relevant flags of msgs */
48 #ifdef HAVE_DOCSTRINGS
49 char const *doc
; /* One line doc for command */
52 /* Yechh, can't initialize unions */
53 #define minargs msgflag /* Minimum argcount for RAWLIST */
54 #define maxargs msgmask /* Max argcount for RAWLIST */
57 struct cmd_ghost
*next
;
58 struct str cmd
; /* Data follows after .name */
59 char name
[VFIELD_SIZE(0)];
63 static int _reset_on_stop
; /* do a reset() if stopped */
64 static sighandler_type _oldpipe
;
65 static struct cmd_ghost
*_cmd_ghosts
;
66 /* _cmd_tab[] after fun protos */
67 static int _lex_inithdr
; /* am printing startup headers */
69 /* Update mailname (if name != NULL) and displayname, return wether displayname
70 * was large enough to swallow mailname */
71 static bool_t
_update_mailname(char const *name
);
72 #ifdef HAVE_C90AMEND1 /* TODO unite __narrow_suffix() into one fun! */
73 SINLINE
size_t __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
);
76 /* Isolate the command from the arguments */
77 static char * _lex_isolate(char const *comm
);
79 /* Get first-fit, or NULL */
80 static struct cmd
const * _lex(char const *comm
);
82 /* Command ghost handling */
83 static int _c_ghost(void *v
);
84 static int _c_unghost(void *v
);
86 /* Print a list of all commands */
87 static int _c_pcmdlist(void *v
);
89 static int __pcmd_cmp(void const *s1
, void const *s2
);
92 static int _c_quit(void *v
);
94 /* Print the binaries compiled-in features */
95 static int _c_features(void *v
);
97 /* Print the binaries version number */
98 static int _c_version(void *v
);
100 /* When we wake up after ^Z, reprint the prompt */
101 static void stop(int s
);
103 /* Branch here on hangup signal and simulate "exit" */
104 static void hangup(int s
);
106 /* List of all commands */
107 static struct cmd
const _cmd_tab
[] = {
111 #ifdef HAVE_C90AMEND1
113 __narrow_suffix(char const *cp
, size_t cpl
, size_t maxl
)
119 for (err
= ok
= i
= 0; cpl
> maxl
|| err
;) {
120 int ml
= mblen(cp
, cpl
);
121 if (ml
< 0) { /* XXX _narrow_suffix(): mblen() error; action? */
122 (void)mblen(NULL
, 0);
139 #endif /* HAVE_C90AMEND1 */
142 _update_mailname(char const *name
)
144 char tbuf
[PATH_MAX
], *mailp
, *dispp
;
149 /* Don't realpath(3) if it's only an update request */
152 enum protocol p
= which_protocol(name
);
153 if (p
== PROTO_FILE
|| p
== PROTO_MAILDIR
) {
154 if (realpath(name
, mailname
) == NULL
) {
155 n_err(_("Can't canonicalize \"%s\"\n"), name
);
162 n_strlcpy(mailname
, name
, sizeof(mailname
));
168 /* Don't display an absolute path but "+FOLDER" if under *folder* */
169 if (getfold(tbuf
, sizeof tbuf
)) {
171 if (!strncmp(tbuf
, mailp
, i
)) {
177 /* We want to see the name of the folder .. on the screen */
179 if (i
< sizeof(displayname
) -1)
180 memcpy(dispp
, mailp
, i
+1);
183 /* Avoid disrupting multibyte sequences (if possible) */
184 #ifndef HAVE_C90AMEND1
185 j
= sizeof(displayname
) / 3 - 1;
186 i
-= sizeof(displayname
) - (1/* + */ + 3) - j
;
188 j
= field_detect_clip(sizeof(displayname
) / 3, mailp
, i
);
189 i
= j
+ __narrow_suffix(mailp
+ j
, i
- j
,
190 sizeof(displayname
) - (1/* + */ + 3 + 1) - j
);
192 snprintf(dispp
, sizeof(displayname
), "%.*s...%s",
193 (int)j
, mailp
, mailp
+ i
);
200 _lex_isolate(char const *comm
)
203 while (*comm
!= '\0' &&
204 strchr("~|? \t0123456789&%@$^.:/-+*'\",;(`", *comm
) == NULL
)
207 return UNCONST(comm
);
210 static struct cmd
const *
211 _lex(char const *comm
) /* TODO **command hashtable**! linear list search!!! */
213 struct cmd
const *cp
;
216 for (cp
= _cmd_tab
; cp
->name
!= NULL
; ++cp
)
217 if (*comm
== *cp
->name
&& is_prefix(comm
, cp
->name
))
228 char const **argv
= v
;
229 struct cmd_ghost
*lcg
, *cg
;
238 if ((fp
= Ftmp(NULL
, "ghost", OF_RDWR
| OF_UNLINK
| OF_REGISTER
, 0600)) ==
241 for (i
= 0, cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
242 fprintf(fp
, "ghost %s \"%s\"\n", cg
->name
, string_quote(cg
->cmd
.s
));
244 page_or_print(fp
, i
);
250 /* Verify the ghost name is a valid one */
251 if (*argv
[0] == '\0' || *_lex_isolate(argv
[0]) != '\0') {
252 n_err(_("`ghost': can't canonicalize \"%s\"\n"), argv
[0]);
257 /* Show command of single ghost? */
258 if (argv
[1] == NULL
) {
259 for (cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
260 if (!strcmp(argv
[0], cg
->name
)) {
261 printf("ghost %s \"%s\"\n", cg
->name
, string_quote(cg
->cmd
.s
));
264 n_err(_("`ghost': no such alias: \"%s\"\n"), argv
[0]);
269 /* Define command for ghost: verify command content */
270 for (cl
= 0, i
= 1; (cp
= UNCONST(argv
[i
])) != NULL
; ++i
)
272 cl
+= strlen(cp
) + 1; /* SP or NUL */
274 n_err(_("`ghost': empty command arguments after \"%s\"\n"), argv
[0]);
279 /* If the ghost already exists, recreate */
280 for (lcg
= NULL
, cg
= _cmd_ghosts
; cg
!= NULL
; lcg
= cg
, cg
= cg
->next
)
281 if (!strcmp(cg
->name
, argv
[0])) {
283 lcg
->next
= cg
->next
;
285 _cmd_ghosts
= cg
->next
;
290 nl
= strlen(argv
[0]) +1;
291 cg
= smalloc(sizeof(*cg
) - VFIELD_SIZEOF(struct cmd_ghost
, name
) + nl
+ cl
);
292 cg
->next
= _cmd_ghosts
;
294 memcpy(cg
->name
, argv
[0], nl
);
295 cp
= cg
->cmd
.s
= cg
->name
+ nl
;
297 while (*++argv
!= NULL
) {
300 memcpy(cp
, *argv
, i
);
315 char const **argv
= v
, *cp
;
316 struct cmd_ghost
*lcg
, *cg
;
319 while ((cp
= *argv
++) != NULL
) {
320 if (cp
[0] == '*' && cp
[1] == '\0') {
321 while ((cg
= _cmd_ghosts
) != NULL
) {
322 _cmd_ghosts
= cg
->next
;
326 for (lcg
= NULL
, cg
= _cmd_ghosts
; cg
!= NULL
; lcg
= cg
, cg
= cg
->next
)
327 if (!strcmp(cg
->name
, cp
)) {
329 lcg
->next
= cg
->next
;
331 _cmd_ghosts
= cg
->next
;
335 n_err(_("`unghost': no such alias: \"%s\"\n"), cp
);
346 __pcmd_cmp(void const *s1
, void const *s2
)
348 struct cmd
const * const *c1
= s1
, * const *c2
= s2
;
352 rv
= strcmp((*c1
)->name
, (*c2
)->name
);
360 struct cmd
const **cpa
, *cp
, **cursor
;
365 for (i
= 0; _cmd_tab
[i
].name
!= NULL
; ++i
)
368 cpa
= ac_alloc(sizeof(cp
) * i
);
370 for (i
= 0; (cp
= _cmd_tab
+ i
)->name
!= NULL
; ++i
)
374 qsort(cpa
, i
, sizeof(cp
), &__pcmd_cmp
);
376 printf(_("Commands are:\n"));
377 for (i
= 0, cursor
= cpa
; (cp
= *cursor
++) != NULL
;) {
379 if (cp
->func
== &c_cmdnotsupp
)
381 j
= strlen(cp
->name
) + 2;
386 printf((*cursor
!= NULL
? "%s, " : "%s\n"), cp
->name
);
401 /* If we are PS_SOURCING, then return 1 so evaluate() can handle it.
402 * Otherwise return -1 to abort command loop */
403 rv
= (pstate
& PS_SOURCING
) ? 1 : -1;
413 printf(_("Features: %s\n"), ok_vlook(features
));
423 printf(_("Version %s\n"), ok_vlook(version
));
431 sighandler_type old_action
;
433 NYD_X
; /* Signal handler */
435 old_action
= safe_signal(s
, SIG_DFL
);
439 sigprocmask(SIG_UNBLOCK
, &nset
, NULL
);
441 sigprocmask(SIG_BLOCK
, &nset
, NULL
);
442 safe_signal(s
, old_action
);
443 if (_reset_on_stop
) {
452 NYD_X
; /* Signal handler */
459 setfile(char const *name
, enum fedit_mode fm
) /* TODO oh my god */
466 int rv
, omsgCount
= 0;
467 FILE *ibuf
= NULL
, *lckfp
= NULL
;
468 bool_t isdevnull
= FAL0
;
471 /* Note we don't 'userid(myname) != getuid()', preliminary steps are usually
472 * necessary to make a mailbox accessible by a different user, and if that
473 * has happened, let's just let the usual file perms decide */
475 if (name
[0] == '%' || ((who
= shortcut_expand(name
)) != NULL
&& *who
== '%'))
476 fm
|= FEDIT_SYSBOX
; /* TODO fexpand() needs to tell is-valid-user! */
478 who
= (name
[1] != '\0') ? name
+ 1 : myname
;
480 if ((name
= expand(name
)) == NULL
)
483 /* For at least substdate() users */
484 time_current_update(&time_current
, FAL0
);
486 switch (which_protocol(name
)) {
488 if (temporary_protocol_ext
!= NULL
)
489 name
= savecat(name
, temporary_protocol_ext
);
490 isdevnull
= ((options
& OPT_BATCH_FLAG
) && !strcmp(name
, "/dev/null"));
492 do { /* TODO we need objects, goes away then */
494 if (realpath(name
, ebuf
) != NULL
)
495 name
= savestr(ebuf
);
501 rv
= maildir_setfile(name
, fm
);
506 rv
= pop3_setfile(name
, fm
);
512 if ((fm
& FEDIT_NEWMAIL
) && mb
.mb_type
== MB_CACHE
)
515 rv
= imap_setfile(name
, fm
);
519 n_err(_("Cannot handle protocol: %s\n"), name
);
523 if ((ibuf
= Zopen(name
, "r")) == NULL
) {
524 if (((fm
& FEDIT_SYSBOX
) && errno
== ENOENT
) || (fm
& FEDIT_NEWMAIL
)) {
525 if (fm
& FEDIT_NEWMAIL
)
533 if (fstat(fileno(ibuf
), &stb
) == -1) {
534 if (fm
& FEDIT_NEWMAIL
)
536 n_perr(_("fstat"), 0);
540 if (S_ISREG(stb
.st_mode
) || isdevnull
) {
543 if (fm
& FEDIT_NEWMAIL
)
545 errno
= S_ISDIR(stb
.st_mode
) ? EISDIR
: EINVAL
;
550 /* Looks like all will be well. We must now relinquish our hold on the
551 * current set of stuff. Must hold signals while we are reading the new
552 * file, else we will ruin the message[] data structure */
554 hold_sigs(); /* TODO note on this one in quit.c:quit() */
555 if (shudclob
&& !(fm
& FEDIT_NEWMAIL
))
558 if (!(fm
& FEDIT_NEWMAIL
) && mb
.mb_sock
.s_fd
>= 0)
559 sclose(&mb
.mb_sock
); /* TODO sorry? VMAILFS->close(), thank you */
562 /* TODO There is no intermediate VOID box we've switched to: name may
563 * TODO point to the same box that we just have written, so any updates
564 * TODO we won't see! Reopen again in this case. RACY! Goes with VOID! */
565 /* TODO In addition: in case of compressed/hook boxes we lock a temporary! */
566 /* TODO We may uselessly open twice but quit() doesn't say wether we were
567 * TODO modified so we can't tell: Mailbox::is_modified() :-(( */
568 if (/*shudclob && !(fm & FEDIT_NEWMAIL) &&*/ !strcmp(name
, mailname
)) {
572 if ((ibuf
= Zopen(name
, "r")) == NULL
||
573 fstat(fileno(ibuf
), &stb
) == -1 ||
574 (!S_ISREG(stb
.st_mode
) && !isdevnull
)) {
581 /* Copy the messages into /tmp and set pointers */
582 if (!(fm
& FEDIT_NEWMAIL
)) {
583 mb
.mb_type
= MB_FILE
;
584 mb
.mb_perm
= (((options
& OPT_R_FLAG
) || (fm
& FEDIT_RDONLY
) ||
585 access(name
, W_OK
) < 0) ? 0 : MB_DELE
| MB_EDIT
);
597 if (fm
& FEDIT_SYSBOX
)
604 fseek(mb
.mb_otf
, 0L, SEEK_END
);
605 /* TODO Doing this without holding a lock is.. And not err checking.. */
606 fseek(ibuf
, mailsize
, SEEK_SET
);
608 omsgCount
= msgCount
;
613 else if (!(pstate
& PS_EDIT
))
614 lckfp
= dot_lock(name
, fileno(ibuf
), FLT_READ
, offset
,0,
615 (fm
& FEDIT_NEWMAIL
? 0 : 1));
616 else if (file_lock(fileno(ibuf
), FLT_READ
, offset
,0,
617 (fm
& FEDIT_NEWMAIL
? 0 : 1)))
621 if (!(fm
& FEDIT_NEWMAIL
)) {
622 char const *emsg
= (pstate
& PS_EDIT
)
623 ? N_("Unable to lock mailbox, aborting operation")
624 : N_("Unable to (dot) lock mailbox, aborting operation");
628 if (!(fm
& FEDIT_NEWMAIL
))
633 mailsize
= fsize(ibuf
);
635 /* TODO This is too simple minded? We should regenerate an index file
636 * TODO to be able to truly tell wether *anything* has changed! */
637 if ((fm
& FEDIT_NEWMAIL
) && UICMP(z
, mailsize
, <=, offset
)) {
641 setptr(ibuf
, offset
);
643 if ((fm
& FEDIT_NEWMAIL
) && mb
.mb_sorted
) {
650 if (lckfp
!= NULL
&& lckfp
!= (FILE*)-1) {
656 if (!(fm
& FEDIT_NEWMAIL
))
657 pstate
&= ~PS_SAW_COMMAND
;
659 if (options
& OPT_EXISTONLY
) {
660 rv
= (msgCount
== 0);
664 if ((!(pstate
& PS_EDIT
) || (fm
& FEDIT_NEWMAIL
)) && msgCount
== 0) {
665 if (!(fm
& FEDIT_NEWMAIL
)) {
667 if (!ok_blook(emptystart
))
668 n_err(_("No mail for %s\n"), who
);
674 if (fm
& FEDIT_NEWMAIL
)
675 newmailinfo(omsgCount
);
681 if (lckfp
!= NULL
&& lckfp
!= (FILE*)-1)
687 mb
.mb_type
= MB_VOID
;
694 newmailinfo(int omsgCount
)
699 for (i
= 0; i
< omsgCount
; ++i
)
700 message
[i
].m_flag
&= ~MNEWEST
;
702 if (msgCount
> omsgCount
) {
703 for (i
= omsgCount
; i
< msgCount
; ++i
)
704 message
[i
].m_flag
|= MNEWEST
;
705 printf(_("New mail has arrived.\n"));
706 if ((i
= msgCount
- omsgCount
) == 1)
707 printf(_("Loaded 1 new message.\n"));
709 printf(_("Loaded %d new messages.\n"), i
);
711 printf(_("Loaded %d messages.\n"), msgCount
);
713 check_folder_hook(TRU1
);
717 if (ok_blook(header
))
718 print_headers(omsgCount
+ 1, msgCount
, FAL0
);
728 bool_t
volatile rv
= TRU1
;
731 if (!(pstate
& PS_SOURCING
)) {
732 if (safe_signal(SIGINT
, SIG_IGN
) != SIG_IGN
)
733 safe_signal(SIGINT
, onintr
);
734 if (safe_signal(SIGHUP
, SIG_IGN
) != SIG_IGN
)
735 safe_signal(SIGHUP
, hangup
);
736 /* TODO We do a lot of redundant signal handling, especially
737 * TODO with the command line editor(s); try to merge this */
738 safe_signal(SIGTSTP
, stop
);
739 safe_signal(SIGTTOU
, stop
);
740 safe_signal(SIGTTIN
, stop
);
742 _oldpipe
= safe_signal(SIGPIPE
, SIG_IGN
);
743 safe_signal(SIGPIPE
, _oldpipe
);
745 memset(&ev
, 0, sizeof ev
);
749 char *temporary_orig_line
; /* XXX eval_ctx.ev_line not yet constant */
751 /* TODO Unless we have our signal manager (or however we do it) child
752 * TODO processes may have time slots where their execution isn't
753 * TODO protected by signal handlers (in between start and setup
754 * TODO completed). close_all_files() is only called from onintr()
755 * TODO so those may linger possibly forever */
756 if (!(pstate
& PS_SOURCING
))
760 handlerstacktop
= NULL
;
763 colour_table
= NULL
; /* XXX intermediate hack */
765 if (temporary_localopts_store
!= NULL
) /* XXX intermediate hack */
766 temporary_localopts_free(); /* XXX intermediate hack */
767 sreset((pstate
& PS_SOURCING
) != 0);
768 if (!(pstate
& PS_SOURCING
)) {
771 /* TODO Note: this buffer may contain a password. We should redefine
772 * TODO the code flow which has to do that */
773 if ((cp
= termios_state
.ts_linebuf
) != NULL
) {
774 termios_state
.ts_linebuf
= NULL
;
775 termios_state
.ts_linesize
= 0;
776 free(cp
); /* TODO pool give-back */
778 /* TODO Due to expand-on-tab of NCL the buffer may grow */
779 if (ev
.ev_line
.l
> LINESIZE
* 3) {
780 free(ev
.ev_line
.s
); /* TODO pool! but what? */
782 ev
.ev_line
.l
= ev
.ev_line_size
= 0;
786 if (!(pstate
& PS_SOURCING
) && (options
& OPT_INTERACTIVE
)) {
789 cp
= ok_vlook(newmail
);
790 if ((options
& OPT_TTYIN
) && (cp
!= NULL
|| mb
.mb_type
== MB_IMAP
)) {
793 n
= (cp
!= NULL
&& strcmp(cp
, "noimap") && strcmp(cp
, "nopoll"));
794 if ((mb
.mb_type
== MB_FILE
&& !stat(mailname
, &st
) &&
795 st
.st_size
> mailsize
) ||
797 (mb
.mb_type
== MB_IMAP
&& imap_newmail(n
) > (cp
== NULL
)) ||
799 (mb
.mb_type
== MB_MAILDIR
&& n
!= 0)) {
800 size_t odot
= PTR2SIZE(dot
- message
);
801 ui32_t odid
= (pstate
& PS_DID_PRINT_DOT
);
803 if (setfile(mailname
,
805 ((mb
.mb_perm
& MB_DELE
) ? 0 : FEDIT_RDONLY
)) < 0) {
806 exit_status
|= EXIT_ERR
;
810 if (mb
.mb_type
!= MB_IMAP
) {
811 dot
= message
+ odot
;
818 exit_status
= EXIT_OK
;
821 /* Read a line of commands and handle end of file specially */
823 ev
.ev_line
.l
= ev
.ev_line_size
;
824 n
= readline_input(NULL
, TRU1
, &ev
.ev_line
.s
, &ev
.ev_line
.l
,
826 ev
.ev_line_size
= (ui32_t
)ev
.ev_line
.l
;
827 ev
.ev_line
.l
= (ui32_t
)n
;
831 if (pstate
& PS_LOADING
)
833 if (pstate
& PS_SOURCING
) {
837 if ((options
& OPT_INTERACTIVE
) && ok_blook(ignoreeof
)) {
838 printf(_("*ignoreeof* set, use `quit' to quit.\n"));
844 temporary_orig_line
= ((pstate
& PS_SOURCING
) ||
845 !(options
& OPT_INTERACTIVE
)) ? NULL
846 : savestrbuf(ev
.ev_line
.s
, ev
.ev_line
.l
);
847 pstate
&= ~PS_HOOK_MASK
;
849 if (pstate
& PS_LOADING
) /* TODO mess; join PS_EVAL_ERROR.. */
853 if ((options
& OPT_BATCH_FLAG
) && ok_blook(batch_exit_on_error
)) {
854 if (exit_status
!= EXIT_OK
)
856 if ((pstate
& (PS_IN_LOAD
| PS_EVAL_ERROR
)) == PS_EVAL_ERROR
) {
857 exit_status
= EXIT_ERR
;
861 if (!(pstate
& PS_SOURCING
) && (options
& OPT_INTERACTIVE
)) {
862 if (ev
.ev_new_content
!= NULL
)
864 /* That *can* happen since evaluate() unstack()s on error! */
865 if (temporary_orig_line
!= NULL
)
866 tty_addhist(temporary_orig_line
, !ev
.ev_add_history
);
870 if (ev
.ev_line
.s
!= NULL
)
872 if (pstate
& PS_SOURCING
)
879 execute(char *linebuf
, size_t linesize
) /* XXX LEGACY */
883 struct colour_table
*ct_save
;
888 /* TODO Maybe recursion from within collect.c! As long as we don't have
889 * TODO a value carrier that transports the entire state of a recursion
890 * TODO we need to save away also the colour table */
892 ct_save
= colour_table
;
896 memset(&ev
, 0, sizeof ev
);
897 ev
.ev_line
.s
= linebuf
;
898 ev
.ev_line
.l
= linesize
;
899 ev
.ev_is_recursive
= TRU1
;
903 colour_table
= ct_save
;
910 evaluate(struct eval_ctx
*evp
)
913 char _wordbuf
[2], *arglist
[MAXARGC
], *cp
, *word
;
914 struct cmd_ghost
*cg
= NULL
;
915 struct cmd
const *com
= NULL
;
916 int muvec
[2], c
, e
= 1;
919 line
= evp
->ev_line
; /* XXX don't change original (buffer pointer) */
920 evp
->ev_add_history
= FAL0
;
921 evp
->ev_new_content
= NULL
;
923 /* Command ghosts that refer to shell commands or macro expansion restart */
926 /* Strip the white space away from the beginning of the command */
927 for (cp
= line
.s
; whitechar(*cp
); ++cp
)
929 line
.l
-= PTR2SIZE(cp
- line
.s
);
931 /* Ignore comments */
935 /* Handle ! differently to get the correct lexical conventions */
937 if (pstate
& PS_SOURCING
) {
938 n_err(_("Can't `!' while `source'ing\n"));
942 evp
->ev_add_history
= TRU1
;
946 /* Isolate the actual command; since it may not necessarily be
947 * separated from the arguments (as in `p1') we need to duplicate it to
948 * be able to create a NUL terminated version.
949 * We must be aware of several special one letter commands here */
951 if ((cp
= _lex_isolate(cp
)) == arglist
[0] &&
952 (*cp
== '|' || *cp
== '~' || *cp
== '?'))
954 c
= (int)PTR2SIZE(cp
- arglist
[0]);
956 word
= UICMP(z
, c
, <, sizeof _wordbuf
) ? _wordbuf
: salloc(c
+1);
957 memcpy(word
, arglist
[0], c
);
960 /* Look up the command; if not found, bitch.
961 * Normally, a blank command would map to the first command in the
962 * table; while PS_SOURCING, however, we ignore blank lines to eliminate
963 * confusion; act just the same for ghosts */
965 if ((pstate
& PS_SOURCING
) || cg
!= NULL
)
971 /* If this is the first evaluation, check command ghosts */
973 /* TODO relink list head, so it's sorted on usage over time?
974 * TODO in fact, there should be one hashmap over all commands and ghosts
975 * TODO so that the lookup could be made much more efficient than it is
976 * TODO now (two adjacent list searches! */
977 for (cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
978 if (!strcmp(word
, cg
->name
)) {
980 size_t i
= cg
->cmd
.l
;
981 line
.s
= salloc(i
+ line
.l
+1);
982 memcpy(line
.s
, cg
->cmd
.s
, i
);
983 memcpy(line
.s
+ i
, cp
, line
.l
);
984 line
.s
[i
+= line
.l
] = '\0';
994 if ((com
= _lex(word
)) == NULL
|| com
->func
== &c_cmdnotsupp
) {
995 bool_t s
= condstack_isskip();
996 if (!s
|| (options
& OPT_D_V
))
997 n_err(_("Unknown command%s: `%s'\n"),
998 (s
? _(" (conditionally ignored)") : ""), word
);
1008 /* See if we should execute the command -- if a conditional we always
1009 * execute it, otherwise, check the state of cond */
1011 if (!(com
->argtype
& ARG_F
) && condstack_isskip())
1014 /* Process the arguments to the command, depending on the type it expects,
1015 * default to error. If we're PS_SOURCING an interactive command: error */
1016 if ((options
& OPT_SENDMODE
) && !(com
->argtype
& ARG_M
)) {
1017 n_err(_("May not execute `%s' while sending\n"), com
->name
);
1020 if ((pstate
& PS_SOURCING
) && (com
->argtype
& ARG_I
)) {
1021 n_err(_("May not execute `%s' while `source'ing\n"), com
->name
);
1024 if (!(mb
.mb_perm
& MB_DELE
) && (com
->argtype
& ARG_W
)) {
1025 n_err(_("May not execute `%s' -- message file is read only\n"),
1029 if (evp
->ev_is_recursive
&& (com
->argtype
& ARG_R
)) {
1030 n_err(_("Cannot recursively invoke `%s'\n"), com
->name
);
1033 if (mb
.mb_type
== MB_VOID
&& (com
->argtype
& ARG_A
)) {
1034 n_err(_("Cannot execute `%s' without active mailbox\n"), com
->name
);
1037 if (com
->argtype
& ARG_O
)
1038 OBSOLETE2(_("this command will be removed"), com
->name
);
1040 if (com
->argtype
& ARG_V
)
1041 temporary_arg_v_store
= NULL
;
1043 switch (com
->argtype
& ARG_ARGMASK
) {
1045 /* Message list defaulting to nearest forward legal message */
1046 if (_msgvec
== NULL
)
1048 if ((c
= getmsglist(cp
, _msgvec
, com
->msgflag
)) < 0)
1051 *_msgvec
= first(com
->msgflag
, com
->msgmask
);
1055 if (*_msgvec
== 0) {
1056 if (!(pstate
& PS_HOOK_MASK
))
1057 printf(_("No applicable messages\n"));
1060 e
= (*com
->func
)(_msgvec
);
1064 /* Message list with no defaults, but no error if none exist */
1065 if (_msgvec
== NULL
) {
1067 n_err(_("Invalid use of \"message list\"\n"));
1070 if ((c
= getmsglist(cp
, _msgvec
, com
->msgflag
)) < 0)
1072 e
= (*com
->func
)(_msgvec
);
1076 /* Just the straight string, with leading blanks removed */
1077 while (whitechar(*cp
))
1079 e
= (*com
->func
)(cp
);
1084 /* A vector of strings, in shell style */
1085 if ((c
= getrawlist(cp
, line
.l
, arglist
, NELEM(arglist
),
1086 ((com
->argtype
& ARG_ARGMASK
) == ARG_ECHOLIST
))) < 0)
1088 if (c
< com
->minargs
) {
1089 n_err(_("`%s' requires at least %d arg(s)\n"),
1090 com
->name
, com
->minargs
);
1093 if (c
> com
->maxargs
) {
1094 n_err(_("`%s' takes no more than %d arg(s)\n"),
1095 com
->name
, com
->maxargs
);
1098 e
= (*com
->func
)(arglist
);
1102 /* Just the constant zero, for exiting, eg. */
1103 e
= (*com
->func
)(0);
1107 n_panic(_("Unknown argument type"));
1110 if (e
== 0 && (com
->argtype
& ARG_V
) &&
1111 (cp
= temporary_arg_v_store
) != NULL
) {
1112 temporary_arg_v_store
= NULL
;
1113 evp
->ev_new_content
= cp
;
1116 if (!(com
->argtype
& ARG_H
) && !(pstate
& PS_MSGLIST_SAW_NO
))
1117 evp
->ev_add_history
= TRU1
;
1120 /* Exit the current source file on error TODO what a mess! */
1122 pstate
&= ~PS_EVAL_ERROR
;
1124 pstate
|= PS_EVAL_ERROR
;
1125 if (e
< 0 || (pstate
& PS_LOADING
)) {
1129 if (pstate
& PS_SOURCING
)
1135 if ((com
->argtype
& ARG_P
) && ok_blook(autoprint
))
1137 muvec
[0] = (int)PTR2SIZE(dot
- message
+ 1);
1139 c_type(muvec
); /* TODO what if error? re-eval! */
1141 if (!(pstate
& (PS_SOURCING
| PS_HOOK_MASK
)) && !(com
->argtype
& ARG_T
))
1142 pstate
|= PS_SAW_COMMAND
;
1144 pstate
&= ~PS_EVAL_ERROR
;
1156 if (_msgvec
!= NULL
)
1158 _msgvec
= scalloc(sz
+ 1, sizeof *_msgvec
);
1163 print_header_summary(char const *Larg
)
1165 size_t bot
, top
, i
, j
;
1169 /* Avoid any messages XXX add a make_mua_silent() and use it? */
1170 if ((options
& (OPT_VERB
| OPT_HEADERSONLY
)) == OPT_HEADERSONLY
) {
1171 freopen("/dev/null", "w", stdout
);
1172 freopen("/dev/null", "w", stderr
);
1174 assert(_msgvec
!= NULL
);
1175 i
= (getmsglist(/*TODO make arg const */UNCONST(Larg
), _msgvec
, 0) <= 0);
1176 if (options
& OPT_HEADERSONLY
) {
1177 exit_status
= (int)i
;
1182 for (bot
= msgCount
, top
= 0, i
= 0; (j
= _msgvec
[i
]) != 0; ++i
) {
1189 bot
= 1, top
= msgCount
;
1190 print_headers(bot
, top
, (Larg
!= NULL
)); /* TODO should take iterator!! */
1198 NYD_X
; /* Signal handler */
1200 if (handlerstacktop
!= NULL
) {
1204 safe_signal(SIGINT
, onintr
);
1207 pstate
|= PS_SAW_COMMAND
;
1209 while (pstate
& PS_SOURCING
)
1212 termios_state_reset();
1219 if (interrupts
!= 1)
1220 n_err_sighdl(_("Interrupt\n"));
1221 safe_signal(SIGPIPE
, _oldpipe
);
1226 announce(int printheaders
)
1231 mdot
= newfileinfo();
1234 dot
= message
+ mdot
- 1;
1235 if (printheaders
&& msgCount
> 0 && ok_blook(header
)) {
1237 print_header_group(vec
); /* XXX errors? */
1247 int u
, n
, mdot
, d
, s
, hidden
, moved
;
1250 if (mb
.mb_type
== MB_VOID
) {
1256 s
= d
= hidden
= moved
=0;
1257 for (mp
= message
, n
= 0, u
= 0; PTRCMP(mp
, <, message
+ msgCount
); ++mp
) {
1258 if (mp
->m_flag
& MNEW
)
1260 if ((mp
->m_flag
& MREAD
) == 0)
1262 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == (MDELETED
| MSAVED
))
1264 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MDELETED
)
1266 if ((mp
->m_flag
& (MDELETED
| MSAVED
)) == MSAVED
)
1268 if (mp
->m_flag
& MHIDDEN
)
1272 /* If displayname gets truncated the user effectively has no option to see
1273 * the full pathname of the mailbox, so print it at least for '? fi' */
1274 printf(_("\"%s\": "),
1275 (_update_mailname(NULL
) ? displayname
: mailname
));
1277 printf(_("1 message"));
1279 printf(_("%d messages"), msgCount
);
1281 printf(_(" %d new"), n
);
1283 printf(_(" %d unread"), u
);
1285 printf(_(" %d deleted"), d
);
1287 printf(_(" %d saved"), s
);
1289 printf(_(" %d moved"), moved
);
1291 printf(_(" %d hidden"), hidden
);
1292 if (mb
.mb_type
== MB_CACHE
)
1293 printf(" [Disconnected]");
1294 else if (mb
.mb_perm
== 0)
1295 printf(_(" [Read only]"));
1308 enum mflag avoid
= MHIDDEN
| MDELETED
;
1312 if (ok_blook(autothread
)) {
1313 OBSOLETE(_("please use *autosort=thread* instead of *autothread*"));
1315 } else if ((cp
= ok_vlook(autosort
)) != NULL
) {
1316 if (mb
.mb_sorted
!= NULL
)
1318 mb
.mb_sorted
= sstrdup(cp
);
1322 if (mb
.mb_type
== MB_VOID
) {
1328 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1329 if ((mp
->m_flag
& (MNEWEST
| avoid
)) == MNEWEST
)
1332 if (!nmail
|| PTRCMP(mp
, >=, message
+ msgCount
)) {
1333 if (mb
.mb_threaded
) {
1334 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
1335 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
1338 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1339 if ((mp
->m_flag
& (MNEW
| avoid
)) == MNEW
)
1344 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
1345 if (mb
.mb_threaded
) {
1346 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
1347 if (mp
->m_flag
& MFLAGGED
)
1350 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1351 if (mp
->m_flag
& MFLAGGED
)
1356 if ((mb
.mb_threaded
? (mp
== NULL
) : PTRCMP(mp
, >=, message
+ msgCount
))) {
1357 if (mb
.mb_threaded
) {
1358 for (mp
= threadroot
; mp
!= NULL
; mp
= next_in_thread(mp
))
1359 if (!(mp
->m_flag
& (MREAD
| avoid
)))
1362 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1363 if (!(mp
->m_flag
& (MREAD
| avoid
)))
1369 (mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
1370 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
1371 else if (ok_blook(showlast
)) {
1372 if (mb
.mb_threaded
) {
1373 for (mp
= this_in_thread(threadroot
, -1); mp
;
1374 mp
= prev_in_thread(mp
))
1375 if (!(mp
->m_flag
& avoid
))
1377 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
1379 for (mp
= message
+ msgCount
- 1; mp
>= message
; --mp
)
1380 if (!(mp
->m_flag
& avoid
))
1382 mdot
= (mp
>= message
) ? (int)PTR2SIZE(mp
- message
+ 1) : msgCount
;
1384 } else if (!nmail
&&
1385 (mb
.mb_threaded
? (mp
!= NULL
) : PTRCMP(mp
, <, message
+ msgCount
)))
1386 mdot
= (int)PTR2SIZE(mp
- message
+ 1);
1387 else if (mb
.mb_threaded
) {
1388 for (mp
= threadroot
; mp
; mp
= next_in_thread(mp
))
1389 if (!(mp
->m_flag
& avoid
))
1391 mdot
= (mp
!= NULL
) ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
1393 for (mp
= message
; PTRCMP(mp
, <, message
+ msgCount
); ++mp
)
1394 if (!(mp
->m_flag
& avoid
))
1396 mdot
= PTRCMP(mp
, <, message
+ msgCount
)
1397 ? (int)PTR2SIZE(mp
- message
+ 1) : 1;
1405 initbox(char const *name
)
1410 if (mb
.mb_type
!= MB_VOID
)
1411 n_strlcpy(prevfile
, mailname
, PATH_MAX
);
1413 /* TODO name always NE mailname (but goes away for objects anyway)
1414 * TODO Well, not true no more except that in parens */
1415 _update_mailname((name
!= mailname
) ? name
: NULL
);
1417 if ((mb
.mb_otf
= Ftmp(&tempMesg
, "tmpbox", OF_WRONLY
| OF_HOLDSIGS
, 0600)) ==
1419 n_perr(_("temporary mail message file"), 0);
1422 if ((mb
.mb_itf
= safe_fopen(tempMesg
, "r", NULL
)) == NULL
) {
1423 n_perr(_("temporary mail message file"), 0);
1426 Ftmp_release(&tempMesg
);
1429 mb
.mb_active
= MB_NONE
;
1431 if (mb
.mb_sorted
!= NULL
) {
1433 mb
.mb_sorted
= NULL
;
1436 mb
.mb_flags
= MB_NOFLAGS
;
1438 dot
= prevdot
= threadroot
= NULL
;
1439 pstate
&= ~PS_DID_PRINT_DOT
;
1443 #ifdef HAVE_DOCSTRINGS
1445 print_comm_docstr(char const *comm
)
1447 struct cmd_ghost
const *cg
;
1448 struct cmd
const *cp
;
1452 /* Ghosts take precedence */
1453 for (cg
= _cmd_ghosts
; cg
!= NULL
; cg
= cg
->next
)
1454 if (!strcmp(comm
, cg
->name
)) {
1455 printf("%s -> ", comm
);
1460 for (cp
= _cmd_tab
; cp
->name
!= NULL
; ++cp
) {
1461 if (cp
->func
== &c_cmdnotsupp
)
1463 if (!strcmp(comm
, cp
->name
))
1464 printf("%s: %s\n", comm
, V_(cp
->doc
));
1465 else if (is_prefix(comm
, cp
->name
))
1466 printf("%s (%s): %s\n", comm
, cp
->name
, V_(cp
->doc
));
1473 if (!rv
&& cg
!= NULL
) {
1474 printf("\"%s\"\n", comm
);