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 - 2018 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 #include <sys/utsname.h>
44 /* Expand the shell escape by expanding unescaped !'s into the last issued
45 * command where possible */
46 static char const *a_cmisc_bangexp(char const *cp
);
48 /* c_n?echo(), c_n?echoerr() */
49 static int a_cmisc_echo(void *vp
, FILE *fp
, bool_t donl
);
52 static bool_t
a_cmisc_read_set(char const *cp
, char const *value
);
55 static int a_cmisc_version_cmp(void const *s1
, void const *s2
);
58 a_cmisc_bangexp(char const *cp
){
59 static struct str last_bang
;
61 struct n_string xbang
, *bang
;
71 for(bang
= n_string_creat(&xbang
); (c
= *cp
++) != '\0';){
74 bang
= n_string_push_buf(bang
, last_bang
.s
, last_bang
.l
);
77 if(c
== '\\' && *cp
== '!'){
82 bang
= n_string_push_c(bang
, c
);
86 if(last_bang
.s
!= NULL
)
88 last_bang
.s
= n_string_cp(bang
);
89 last_bang
.l
= bang
->s_len
;
90 bang
= n_string_drop_ownership(bang
);
95 fprintf(n_stdout
, "!%s\n", cp
);
102 a_cmisc_echo(void *vp
, FILE *fp
, bool_t donl
){
103 struct n_string s
, *sp
;
106 char const **argv
, *varname
, **ap
, *cp
;
110 varname
= (n_pstate
& n_PS_ARGMOD_VPUT
) ? *argv
++ : NULL
;
111 sp
= n_string_reserve(n_string_creat_auto(&s
), 121/* XXX */);
113 doerr
= (fp
== n_stderr
&& (n_psonce
& n_PSO_INTERACTIVE
));
118 for(ap
= argv
; *ap
!= NULL
; ++ap
){
120 sp
= n_string_push_c(sp
, ' ');
121 if((cp
= fexpand(*ap
, FEXP_NSHORTCUT
| FEXP_NVAR
)) == NULL
)
123 sp
= n_string_push_cp(sp
, cp
);
126 sp
= n_string_push_c(sp
, '\n');
127 cp
= n_string_cp(sp
);
135 else if(fputs(cp
, fp
) == EOF
)
137 if((rv
= (fflush(fp
) == EOF
)))
139 rv
|= ferror(fp
) ? 1 : 0;
141 }else if(!n_var_vset(varname
, (uintptr_t)cp
)){
142 n_pstate_err_no
= n_ERR_NOTSUP
;
145 n_pstate_err_no
= n_ERR_NONE
;
153 a_cmisc_read_set(char const *cp
, char const *value
){
157 if(!n_shexp_is_valid_varname(cp
))
158 value
= N_("not a valid variable name");
159 else if(!n_var_is_user_writable(cp
))
160 value
= N_("variable is read-only");
161 else if(!n_var_vset(cp
, (uintptr_t)value
))
162 value
= N_("failed to update variable value");
167 n_err("`read': %s: %s\n", V_(value
), n_shexp_quote_cp(cp
, FAL0
));
175 a_cmisc_version_cmp(void const *s1
, void const *s2
){
176 char const * const *cp1
, * const *cp2
;
182 rv
= strcmp(&(*cp1
)[1], &(*cp2
)[1]);
195 if((n_idec_uiz_cp(&sec
, argv
[0], 0, NULL
) &
196 (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
197 ) != n_IDEC_STATE_CONSUMED
)
202 else if((n_idec_uiz_cp(&msec
, argv
[1], 0, NULL
) &
203 (n_IDEC_STATE_EMASK
| n_IDEC_STATE_CONSUMED
)
204 ) != n_IDEC_STATE_CONSUMED
)
207 if(UIZ_MAX
/ n_DATE_MILLISSEC
< sec
)
209 sec
*= n_DATE_MILLISSEC
;
211 if(UIZ_MAX
- sec
< msec
)
215 n_pstate_err_no
= (n_msleep(msec
, (argv
[2] == NULL
)) > 0)
216 ? n_ERR_INTR
: n_ERR_NONE
;
219 return (argv
== NULL
);
221 n_err(_("`sleep': argument(s) overflow(s) datatype\n"));
222 n_pstate_err_no
= n_ERR_OVERFLOW
;
226 n_err(_("Synopsis: sleep: <seconds> [<milliseconds>] [uninterruptible]\n"));
227 n_pstate_err_no
= n_ERR_INVAL
;
238 char const **argv
, *varname
, *varres
, *cp
;
241 n_pstate_err_no
= n_ERR_NONE
;
243 varname
= (n_pstate
& n_PS_ARGMOD_VPUT
) ? *argv
++ : NULL
;
247 if(varname
!= NULL
&&
248 (fp
= Ftmp(NULL
, "shell", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)
250 n_pstate_err_no
= n_ERR_CANCELED
;
253 cp
= a_cmisc_bangexp(*argv
);
256 if(n_child_run(ok_vlook(SHELL
), &mask
,
257 n_CHILD_FD_PASS
, (fp
!= NULL
? fileno(fp
) : n_CHILD_FD_PASS
),
258 "-c", cp
, NULL
, NULL
, &rv
) < 0){
259 n_pstate_err_no
= n_err_no
;
262 rv
= WEXITSTATUS(rv
);
271 if(UICMP(64, l
, >=, UIZ_MAX
-42)){
272 n_pstate_err_no
= n_ERR_NOMEM
;
275 varres
= x
= n_autorec_alloc(l
+1);
277 for(; l
> 0 && (c
= getc(fp
)) != EOF
; --l
)
281 n_pstate_err_no
= n_err_no
;
282 varres
= n_empty
; /* xxx hmmm */
293 if(!n_var_vset(varname
, (uintptr_t)varres
)){
294 n_pstate_err_no
= n_ERR_NOTSUP
;
297 }else if(rv
>= 0 && (n_psonce
& n_PSO_INTERACTIVE
)){
298 fprintf(n_stdout
, "!\n");
299 /* Line buffered fflush(n_stdout); */
312 if(n_child_run(ok_vlook(SHELL
), 0, n_CHILD_FD_PASS
, n_CHILD_FD_PASS
, NULL
,
313 NULL
, NULL
, NULL
, &rv
) < 0){
314 n_pstate_err_no
= n_err_no
;
317 putc('\n', n_stdout
);
318 /* Line buffered fflush(n_stdout); */
319 n_pstate_err_no
= n_ERR_NONE
;
320 rv
= WEXITSTATUS(rv
);
328 struct n_string s_b
, *sp
;
333 sp
= n_string_creat_auto(&s_b
);
334 varname
= (n_pstate
& n_PS_ARGMOD_VPUT
) ? *(char const**)v
: NULL
;
337 for(;; l
+= PATH_MAX
){
338 sp
= n_string_resize(n_string_trunc(sp
, 0), l
);
340 if(getcwd(sp
->s_dat
, sp
->s_len
) == NULL
){
346 n_perr(_("Failed to getcwd(3)"), e
);
352 if(!n_var_vset(varname
, (uintptr_t)sp
->s_dat
))
355 l
= strlen(sp
->s_dat
);
356 sp
= n_string_trunc(sp
, l
);
357 if(fwrite(sp
->s_dat
, 1, sp
->s_len
, n_stdout
) == sp
->s_len
&&
358 putc('\n', n_stdout
) == EOF
)
374 if (*arglist
== NULL
)
376 else if ((cp
= fexpand(*arglist
, FEXP_LOCAL
| FEXP_NOPROTO
)) == NULL
)
378 if (chdir(cp
) == -1) {
392 rv
= a_cmisc_echo(v
, n_stdout
, TRU1
);
402 rv
= a_cmisc_echo(v
, n_stderr
, TRU1
);
412 rv
= a_cmisc_echo(v
, n_stdout
, FAL0
);
422 rv
= a_cmisc_echo(v
, n_stderr
, FAL0
);
428 c_read(void * volatile vp
){
431 struct n_string s
, *sp
;
435 char const *ifs
, **argv
, *cp
;
438 sp
= n_string_creat_auto(&s
);
439 sp
= n_string_reserve(sp
, 64 -1);
446 n_SIGMAN_ENTER_SWITCH(&sm
, n_SIGMAN_ALL
){
450 n_pstate_err_no
= n_ERR_INTR
;
455 n_pstate_err_no
= n_ERR_NONE
;
456 rv
= n_go_input(((n_pstate
& n_PS_COMPOSE_MODE
457 ? n_GO_INPUT_CTX_COMPOSE
: n_GO_INPUT_CTX_DEFAULT
) |
458 n_GO_INPUT_FORCE_STDIN
| n_GO_INPUT_NL_ESC
|
459 n_GO_INPUT_PROMPT_NONE
/* XXX POSIX: PS2: yes! */),
460 NULL
, &linebuf
, &linesize
, NULL
, NULL
);
462 if(!n_go_input_is_eof())
463 n_pstate_err_no
= n_ERR_BADF
;
466 if(n_go_input_is_eof()){
474 for(; *argv
!= NULL
; ++argv
){
475 if(trim
.l
== 0 || n_str_trim_ifs(&trim
, FAL0
)->l
== 0)
478 /* The last variable gets the remaining line less trailing IFS-WS */
481 sp
= n_string_assign_buf(sp
, trim
.s
, trim
.l
);
483 }else for(cp
= trim
.s
, i
= 1;; ++cp
, ++i
){
484 if(strchr(ifs
, *cp
) != NULL
){
485 sp
= n_string_assign_buf(sp
, trim
.s
, i
- 1);
494 if(!a_cmisc_read_set(*argv
, n_string_cp(sp
))){
495 n_pstate_err_no
= n_ERR_NOTSUP
;
502 /* Set the remains to the empty string */
503 for(; *argv
!= NULL
; ++argv
)
504 if(!a_cmisc_read_set(*argv
, n_empty
)){
505 n_pstate_err_no
= n_ERR_NOTSUP
;
510 n_sigman_cleanup_ping(&sm
);
515 n_sigman_leave(&sm
, n_SIGMAN_VIPSIGS_NTTYOUT
);
520 c_readall(void * vp
){ /* TODO 64-bit retval */
522 struct n_string s
, *sp
;
529 sp
= n_string_creat_auto(&s
);
530 sp
= n_string_reserve(sp
, 64 -1);
536 n_SIGMAN_ENTER_SWITCH(&sm
, n_SIGMAN_ALL
){
540 n_pstate_err_no
= n_ERR_INTR
;
545 n_pstate_err_no
= n_ERR_NONE
;
548 rv
= n_go_input(((n_pstate
& n_PS_COMPOSE_MODE
549 ? n_GO_INPUT_CTX_COMPOSE
: n_GO_INPUT_CTX_DEFAULT
) |
550 n_GO_INPUT_FORCE_STDIN
| /*n_GO_INPUT_NL_ESC |*/
551 n_GO_INPUT_PROMPT_NONE
),
552 NULL
, &linebuf
, &linesize
, NULL
, NULL
);
554 if(!n_go_input_is_eof()){
555 n_pstate_err_no
= n_ERR_BADF
;
561 }else if(rv
== 0){ /* xxx will not get*/
562 if(n_go_input_is_eof()){
569 }else if(UICMP(32, SI32_MAX
- sp
->s_len
, <=, rv
)){
570 n_pstate_err_no
= n_ERR_OVERFLOW
;
574 sp
= n_string_push_buf(sp
, linebuf
, rv
);
575 if(n_pstate
& n_PS_READLINE_NL
)
576 sp
= n_string_push_c(sp
, '\n');
580 if(!a_cmisc_read_set(argv
[0], n_string_cp(sp
))){
581 n_pstate_err_no
= n_ERR_NOTSUP
;
587 n_sigman_cleanup_ping(&sm
);
592 n_sigman_leave(&sm
, n_SIGMAN_VIPSIGS_NTTYOUT
);
599 struct n_string s
, *sp
= &s
;
602 char const *cp
, **arr
;
606 sp
= n_string_creat_auto(sp
);
607 sp
= n_string_book(sp
, 1024);
610 sp
= n_string_push_cp(sp
, n_uagent
);
611 sp
= n_string_push_c(sp
, ' ');
612 sp
= n_string_push_cp(sp
, ok_vlook(version
));
613 sp
= n_string_push_c(sp
, ',');
614 sp
= n_string_push_c(sp
, ' ');
615 sp
= n_string_push_cp(sp
, ok_vlook(version_date
));
616 sp
= n_string_push_c(sp
, ' ');
617 sp
= n_string_push_c(sp
, '(');
618 sp
= n_string_push_cp(sp
, _("build on "));
619 sp
= n_string_push_cp(sp
, ok_vlook(build_osenv
));
620 sp
= n_string_push_c(sp
, ')');
621 sp
= n_string_push_cp(sp
, _("\nFeatures included (+) or not (-)\n"));
623 /* Some lines with the features.
624 * *features* starts with dummy byte to avoid + -> *folder* expansions */
625 i
= strlen(cp
= &ok_vlook(features
)[1]) +1;
626 iop
= n_autorec_alloc(i
);
629 arr
= n_autorec_alloc(sizeof(cp
) * VAL_FEATURES_CNT
);
630 for(i
= 0; (cp
= n_strsep(&iop
, ',', TRU1
)) != NULL
; ++i
)
632 qsort(arr
, i
, sizeof(cp
), &a_cmisc_version_cmp
);
634 for(lnlen
= 0; i
-- > 0;){
638 if((lnlen
+= j
+ 1) > 72){
639 sp
= n_string_push_c(sp
, '\n');
642 sp
= n_string_push_c(sp
, ' ');
643 sp
= n_string_push_buf(sp
, cp
, j
);
645 sp
= n_string_push_c(sp
, '\n');
647 /* Trailing line with info of running machine */
649 sp
= n_string_push_c(sp
, '@');
650 sp
= n_string_push_cp(sp
, ut
.sysname
);
651 sp
= n_string_push_c(sp
, ' ');
652 sp
= n_string_push_cp(sp
, ut
.release
);
653 sp
= n_string_push_c(sp
, ' ');
654 sp
= n_string_push_cp(sp
, ut
.version
);
655 sp
= n_string_push_c(sp
, ' ');
656 sp
= n_string_push_cp(sp
, ut
.machine
);
657 sp
= n_string_push_c(sp
, '\n');
660 cp
= n_string_cp(sp
);
662 if(n_pstate
& n_PS_ARGMOD_VPUT
){
663 if(n_var_vset(*(char const**)vp
, (uintptr_t)cp
))
668 if(fputs(cp
, n_stdout
) != EOF
)