1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Miscellaneous user commands, like `echo', `pwd', etc.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
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
36 #define n_FILE cmd_misc
38 #ifndef HAVE_AMALGAMATION
42 /* Expand the shell escape by expanding unescaped !'s into the last issued
43 * command where possible */
44 static char const *a_cmisc_bangexp(char const *cp
);
46 /* c_n?echo(), c_n?echoerr() */
47 static int a_cmisc_echo(void *vp
, FILE *fp
, bool_t donl
);
50 static bool_t
a_cmisc_read_set(char const *cp
, char const *value
);
53 static int a_cmisc_version_cmp(void const *s1
, void const *s2
);
56 a_cmisc_bangexp(char const *cp
){
57 static struct str last_bang
;
59 struct n_string xbang
, *bang
;
69 for(bang
= n_string_creat(&xbang
); (c
= *cp
++) != '\0';){
72 bang
= n_string_push_buf(bang
, last_bang
.s
, last_bang
.l
);
75 if(c
== '\\' && *cp
== '!'){
80 bang
= n_string_push_c(bang
, c
);
84 if(last_bang
.s
!= NULL
)
86 last_bang
.s
= n_string_cp(bang
);
87 last_bang
.l
= bang
->s_len
;
88 bang
= n_string_drop_ownership(bang
);
93 fprintf(n_stdout
, "!%s\n", cp
);
100 a_cmisc_echo(void *vp
, FILE *fp
, bool_t donl
){
101 char const **argv
, **ap
, *cp
;
107 doerr
= (fp
== n_stderr
&& (n_psonce
& n_PSO_INTERACTIVE
));
112 for(ap
= argv
= vp
; *ap
!= NULL
; ++ap
){
119 if((cp
= fexpand(*ap
, FEXP_NSHORTCUT
| FEXP_NVAR
)) == NULL
)
133 rv
= (fflush(fp
) == EOF
);
134 rv
|= ferror(fp
) ? 1 : 0;
140 a_cmisc_read_set(char const *cp
, char const *value
){
144 if(!n_shexp_is_valid_varname(cp
))
145 value
= N_("not a valid variable name");
146 else if(!n_var_is_user_writable(cp
))
147 value
= N_("variable is read-only");
148 else if(!n_var_vset(cp
, (uintptr_t)value
))
149 value
= N_("failed to update variable value");
154 n_err("`read': %s: %s\n", V_(value
), n_shexp_quote_cp(cp
, FAL0
));
162 a_cmisc_version_cmp(void const *s1
, void const *s2
){
163 char const * const *cp1
, * const *cp2
;
169 rv
= strcmp(&(*cp1
)[1], &(*cp2
)[1]);
182 if((n_idec_uiz_cp(&sec
, argv
[0], 0, NULL
) &
183 (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
184 ) != n_IDEC_STATE_CONSUMED
)
189 else if((n_idec_uiz_cp(&msec
, argv
[1], 0, NULL
) &
190 (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
191 ) != n_IDEC_STATE_CONSUMED
)
194 if(UIZ_MAX
/ n_DATE_MILLISSEC
< sec
)
196 sec
*= n_DATE_MILLISSEC
;
198 if(UIZ_MAX
- sec
< msec
)
202 n_pstate_err_no
= (n_msleep(msec
, (argv
[2] == NULL
)) > 0)
203 ? n_ERR_INTR
: n_ERR_NONE
;
206 return (argv
== NULL
);
208 n_err(_("`sleep': argument(s) overflow(s) datatype\n"));
209 n_pstate_err_no
= n_ERR_OVERFLOW
;
213 n_err(_("Synopsis: sleep: <seconds> [<milliseconds>] [uninterruptible]\n"));
214 n_pstate_err_no
= n_ERR_INVAL
;
225 char const **argv
, *varname
, *varres
, *cp
;
228 n_pstate_err_no
= n_ERR_NONE
;
230 varname
= (n_pstate
& n_PS_ARGMOD_VPUT
) ? *argv
++ : NULL
;
234 if(varname
!= NULL
&&
235 (fp
= Ftmp(NULL
, "shell", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)
237 n_pstate_err_no
= n_ERR_CANCELED
;
240 cp
= a_cmisc_bangexp(*argv
);
243 if(n_child_run(ok_vlook(SHELL
), &mask
,
244 n_CHILD_FD_PASS
, (fp
!= NULL
? fileno(fp
) : n_CHILD_FD_PASS
),
245 "-c", cp
, NULL
, NULL
, &rv
) < 0){
246 n_pstate_err_no
= n_err_no
;
249 rv
= WEXITSTATUS(rv
);
258 if(UICMP(64, l
, >=, UIZ_MAX
-42)){
259 n_pstate_err_no
= n_ERR_NOMEM
;
262 varres
= x
= n_autorec_alloc(l
+1);
264 for(; l
> 0 && (c
= getc(fp
)) != EOF
; --l
)
268 n_pstate_err_no
= n_err_no
;
269 varres
= n_empty
; /* xxx hmmm */
280 if(!n_var_vset(varname
, (uintptr_t)varres
)){
281 n_pstate_err_no
= n_ERR_NOTSUP
;
285 fprintf(n_stdout
, "!\n");
286 /* Line buffered fflush(n_stdout); */
299 if(n_child_run(ok_vlook(SHELL
), 0, n_CHILD_FD_PASS
, n_CHILD_FD_PASS
, NULL
,
300 NULL
, NULL
, NULL
, &rv
) < 0){
301 n_pstate_err_no
= n_err_no
;
304 putc('\n', n_stdout
);
305 /* Line buffered fflush(n_stdout); */
306 n_pstate_err_no
= n_ERR_NONE
;
307 rv
= WEXITSTATUS(rv
);
315 struct n_string s_b
, *sp
;
320 sp
= n_string_creat_auto(&s_b
);
321 varname
= (n_pstate
& n_PS_ARGMOD_VPUT
) ? *(char const**)v
: NULL
;
324 for(;; l
+= PATH_MAX
){
325 sp
= n_string_resize(n_string_trunc(sp
, 0), l
);
327 if(getcwd(sp
->s_dat
, sp
->s_len
) == NULL
){
333 n_perr(_("Failed to getcwd(3)"), e
);
339 if(!n_var_vset(varname
, (uintptr_t)sp
->s_dat
))
342 l
= strlen(sp
->s_dat
);
343 sp
= n_string_trunc(sp
, l
);
344 if(fwrite(sp
->s_dat
, 1, sp
->s_len
, n_stdout
) == sp
->s_len
&&
345 putc('\n', n_stdout
) == EOF
)
361 if (*arglist
== NULL
)
363 else if ((cp
= fexpand(*arglist
, FEXP_LOCAL
| FEXP_NOPROTO
)) == NULL
)
365 if (chdir(cp
) == -1) {
379 rv
= a_cmisc_echo(v
, n_stdout
, TRU1
);
389 rv
= a_cmisc_echo(v
, n_stderr
, TRU1
);
399 rv
= a_cmisc_echo(v
, n_stdout
, FAL0
);
409 rv
= a_cmisc_echo(v
, n_stderr
, FAL0
);
415 c_read(void * volatile vp
){
418 struct n_string s
, *sp
;
422 char const *ifs
, **argv
, *cp
;
425 sp
= n_string_creat_auto(&s
);
426 sp
= n_string_reserve(sp
, 64 -1);
434 n_SIGMAN_ENTER_SWITCH(&sm
, n_SIGMAN_ALL
){
438 n_pstate_err_no
= n_ERR_INTR
;
443 n_pstate_err_no
= n_ERR_NONE
;
444 rv
= n_go_input(((n_pstate
& n_PS_COMPOSE_MODE
445 ? n_GO_INPUT_CTX_COMPOSE
: n_GO_INPUT_CTX_DEFAULT
) |
446 n_GO_INPUT_FORCE_STDIN
| n_GO_INPUT_NL_ESC
|
447 n_GO_INPUT_PROMPT_NONE
/* XXX POSIX: PS2: yes! */),
448 NULL
, &linebuf
, &linesize
, NULL
, NULL
);
450 if(!n_go_input_is_eof())
451 n_pstate_err_no
= n_ERR_BADF
;
454 if(n_go_input_is_eof()){
462 for(; *argv
!= NULL
; ++argv
){
463 if(trim
.l
== 0 || n_str_trim_ifs(&trim
, FAL0
)->l
== 0)
466 /* The last variable gets the remaining line less trailing IFS-WS */
469 sp
= n_string_assign_buf(sp
, trim
.s
, trim
.l
);
471 }else for(cp
= trim
.s
, i
= 1;; ++cp
, ++i
){
472 if(strchr(ifs
, *cp
) != NULL
){
473 sp
= n_string_assign_buf(sp
, trim
.s
, i
- 1);
482 if(!a_cmisc_read_set(*argv
, n_string_cp(sp
))){
483 n_pstate_err_no
= n_ERR_NOTSUP
;
490 /* Set the remains to the empty string */
492 for(; *argv
!= NULL
; ++argv
)
493 if(!a_cmisc_read_set(*argv
, n_empty
)){
494 n_pstate_err_no
= n_ERR_NOTSUP
;
499 n_sigman_cleanup_ping(&sm
);
504 n_sigman_leave(&sm
, n_SIGMAN_VIPSIGS_NTTYOUT
);
512 char const *cp
, **arr
;
518 _("%s %s, %s (%s)\nFeatures included (+) or not (-)\n"),
519 n_uagent
, ok_vlook(version
), ok_vlook(version_date
),
520 ok_vlook(build_osenv
));
522 /* *features* starts with dummy byte to avoid + -> *folder* expansions */
523 i
= strlen(cp
= &ok_vlook(features
)[1]) +1;
524 iop
= n_autorec_alloc(i
);
527 arr
= n_autorec_alloc(sizeof(cp
) * VAL_FEATURES_CNT
);
528 for(longest
= 0, i
= 0; (cp
= n_strsep(&iop
, ',', TRU1
)) != NULL
; ++i
){
531 longest
= n_MAX(longest
, (int)i2
);
533 qsort(arr
, i
, sizeof(cp
), &a_cmisc_version_cmp
);
535 /* We use aligned columns, so don't use n_SCRNWIDTH_FOR_LISTS */
536 for(++longest
, i2
= 0; i
-- > 0;){
538 fprintf(n_stdout
, "%-*s ", longest
, cp
);
540 if(UICMP(z
, ++i2
+ longest
, >=, n_scrnwidth
) || i
== 0){
542 putc('\n', n_stdout
);
546 if((rv
= ferror(n_stdout
) != 0))