blob: 9960448ec16994ef2f56c9f4c0448516d5df8254 [file] [log] [blame]
Erik Andersenc7c634b2000-03-19 05:28:55 +00001/* vi: set sw=4 ts=4: */
Erik Andersen13456d12000-03-16 08:09:57 +00002/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02003 * Command line editing.
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Eric Andersen81fe1232003-07-29 06:38:40 +00005 * Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license.
Eric Andersen7467c8d2001-07-12 20:26:32 +00006 * Written by: Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersen5f2c79d2001-02-16 18:36:04 +00007 *
8 * Used ideas:
9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995
Eric Andersen81fe1232003-07-29 06:38:40 +000012 * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000013 *
Erik Andersen13456d12000-03-16 08:09:57 +000014 * This code is 'as is' with no warranty.
Erik Andersen13456d12000-03-16 08:09:57 +000015 */
Erik Andersen13456d12000-03-16 08:09:57 +000016/*
Denis Vlasenko78ff8192008-06-28 21:03:43 +000017 * Usage and known bugs:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010018 * Terminal key codes are not extensive, more needs to be added.
19 * This version was created on Debian GNU/Linux 2.x.
Denis Vlasenko78ff8192008-06-28 21:03:43 +000020 * Delete, Backspace, Home, End, and the arrow keys were tested
21 * to work in an Xterm and console. Ctrl-A also works as Home.
22 * Ctrl-E also works as End.
23 *
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010024 * The following readline-like commands are not implemented:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010025 * CTL-t -- Transpose two characters
26 *
Denis Vlasenko78ff8192008-06-28 21:03:43 +000027 * lineedit does not know that the terminal escape sequences do not
28 * take up space on the screen. The redisplay code assumes, unless
29 * told otherwise, that each character in the prompt is a printable
30 * character that takes up one character position on the screen.
31 * You need to tell lineedit that some sequences of characters
32 * in the prompt take up no screen space. Compatibly with readline,
33 * use the \[ escape to begin a sequence of non-printing characters,
34 * and the \] escape to signal the end of such a sequence. Example:
35 *
36 * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +020037 *
38 * Unicode in PS1 is not fully supported: prompt length calulation is wrong,
39 * resulting in line wrap problems with long (multi-line) input.
Erik Andersen13456d12000-03-16 08:09:57 +000040 */
Ron Yorstonf23264b2015-05-29 11:31:40 +010041#include "busybox.h"
42#include "NUM_APPLETS.h"
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020043#include "unicode.h"
Alexey Fomenko232ebaa2011-05-20 04:26:29 +020044#ifndef _POSIX_VDISABLE
45# define _POSIX_VDISABLE '\0'
46#endif
47
Glenn L McGrath475820c2004-01-22 12:42:23 +000048
Glenn L McGrath3b251852004-01-03 12:07:32 +000049#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020050# define ENABLE_FEATURE_EDITING 0
51# define ENABLE_FEATURE_TAB_COMPLETION 0
52# define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020053#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000054
Eric Andersen5165fbe2001-02-20 06:42:29 +000055
Denis Vlasenko82b39e82007-01-21 19:18:19 +000056/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000057#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000058
Denis Vlasenko82b39e82007-01-21 19:18:19 +000059
Denys Vlasenkoa97a7952020-12-16 11:14:08 +010060#if !ENABLE_SHELL_ASH && !ENABLE_SHELL_HUSH
61/* so far only shells use these features */
62# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
63# undef ENABLE_FEATURE_TAB_COMPLETION
64# undef ENABLE_FEATURE_USERNAME_COMPLETION
65# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
66# define ENABLE_FEATURE_TAB_COMPLETION 0
67# define ENABLE_FEATURE_USERNAME_COMPLETION 0
68#endif
69
70
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020071#define ENABLE_USERNAME_OR_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000072 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020073#if ENABLE_USERNAME_OR_HOMEDIR
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020074# define IF_USERNAME_OR_HOMEDIR(...) __VA_ARGS__
Denys Vlasenkoa97a7952020-12-16 11:14:08 +010075#else
76# define IF_USERNAME_OR_HOMEDIR(...) /*nothing*/
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000077#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000078
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020079
80#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010081#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020082# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020083# define CHAR_T wchar_t
Denys Vlasenko8c317f02019-05-14 17:26:47 +020084static bool BB_isspace(CHAR_T c)
85{
86 return ((unsigned)c < 256 && isspace(c));
87}
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010088# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenko8c317f02019-05-14 17:26:47 +020089static bool BB_isalnum_or_underscore(CHAR_T c)
90{
Natanael Copa7e6f9312016-08-14 23:30:29 +020091 return ((unsigned)c < 256 && isalnum(c)) || c == '_';
92}
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010093# endif
Denys Vlasenko8c317f02019-05-14 17:26:47 +020094static bool BB_ispunct(CHAR_T c)
95{
96 return ((unsigned)c < 256 && ispunct(c));
97}
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020098# undef isspace
99# undef isalnum
100# undef ispunct
101# undef isprint
102# define isspace isspace_must_not_be_used
103# define isalnum isalnum_must_not_be_used
104# define ispunct ispunct_must_not_be_used
105# define isprint isprint_must_not_be_used
106#else
107# define BB_NUL '\0'
108# define CHAR_T char
109# define BB_isspace(c) isspace(c)
Natanael Copa7e6f9312016-08-14 23:30:29 +0200110# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +0100111static bool BB_isalnum_or_underscore(CHAR_T c)
112{
Denys Vlasenkod5314e72020-06-24 09:31:30 +0200113 return isalnum(c) || c == '_';
Natanael Copa7e6f9312016-08-14 23:30:29 +0200114}
115# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200116# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200117#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200118#if ENABLE_UNICODE_PRESERVE_BROKEN
119# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
120# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
121#else
122# define unicode_is_raw_byte(wc) 0
123#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200124
125
Marek Polacek7b181072010-10-28 21:34:56 +0200126#define ESC "\033"
127
128#define SEQ_CLEAR_TILL_END_OF_SCREEN ESC"[J"
129//#define SEQ_CLEAR_TILL_END_OF_LINE ESC"[K"
Tomas Heinricha659b812010-04-29 13:43:39 +0200130
131
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000132enum {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000133 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000134 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000135 : 0x7ff0
136};
Robert Griebl350d26b2002-12-03 22:45:46 +0000137
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200138#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000139static const char null_str[] ALIGN1 = "";
140#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000141
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000142/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000143struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000144 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000145
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100146 unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
Mark Whitley4e338752001-01-26 20:42:23 +0000147
Denys Vlasenko020f4062009-05-17 16:44:54 +0200148 unsigned cmdedit_x; /* real x (col) terminal position */
149 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200150 unsigned cmdedit_prmt_len; /* on-screen length of last/sole prompt line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000151
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000152 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200153 int command_len; /* must be signed */
154 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200155 * to _not_ be promoted to unsigned */
156 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200157 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000158
159 const char *cmdedit_prompt;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200160 const char *prompt_last_line; /* last/sole prompt line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000161
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200162#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000163 char *user_buf;
164 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000165#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000166
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000167#if ENABLE_FEATURE_TAB_COMPLETION
168 char **matches;
169 unsigned num_matches;
170#endif
171
Ron Yorston23286902018-02-25 20:09:54 +0100172#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100173 unsigned SIGWINCH_saved;
174 volatile unsigned SIGWINCH_count;
175 volatile smallint ok_to_redraw;
Ron Yorston23286902018-02-25 20:09:54 +0100176#endif
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100177
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000178#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200179# define DELBUFSIZ 128
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000180 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100181 CHAR_T *delptr;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200182 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000183#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100184#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100185 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100186#endif
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100187
Ron Yorston23286902018-02-25 20:09:54 +0100188#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100189 /* Largish struct, keeping it last results in smaller code */
190 struct sigaction SIGWINCH_handler;
Ron Yorston23286902018-02-25 20:09:54 +0100191#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000192};
193
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000194/* See lineedit_ptr_hack.c */
YU Jincheng1f925032021-09-29 17:37:26 +0800195extern struct lineedit_statics *BB_GLOBAL_CONST lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000196
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000197#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000198#define state (S.state )
199#define cmdedit_termw (S.cmdedit_termw )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000200#define cmdedit_x (S.cmdedit_x )
201#define cmdedit_y (S.cmdedit_y )
202#define cmdedit_prmt_len (S.cmdedit_prmt_len)
203#define cursor (S.cursor )
204#define command_len (S.command_len )
205#define command_ps (S.command_ps )
206#define cmdedit_prompt (S.cmdedit_prompt )
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200207#define prompt_last_line (S.prompt_last_line)
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000208#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000209#define home_pwd_buf (S.home_pwd_buf )
210#define matches (S.matches )
211#define num_matches (S.num_matches )
212#define delptr (S.delptr )
213#define newdelflag (S.newdelflag )
214#define delbuf (S.delbuf )
215
216#define INIT_S() do { \
YU Jincheng5156b242021-10-10 02:19:51 +0800217 XZALLOC_CONST_PTR(&lineedit_ptr_to_statics, sizeof(S)); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000218} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200219
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000220static void deinit_S(void)
221{
222#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000223 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200224 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000225 free((char*)cmdedit_prompt);
226#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200227#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000228 free(user_buf);
229 if (home_pwd_buf != null_str)
230 free(home_pwd_buf);
231#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000232 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000233}
234#define DEINIT_S() deinit_S()
235
Denis Vlasenko2c844952008-04-25 18:44:35 +0000236
Denys Vlasenko19158a82010-03-26 14:06:56 +0100237#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200238static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200239{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100240 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200241 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100242 if (len < 0)
243 len = 0;
244 command_ps[len] = BB_NUL;
245 return len;
246 } else {
247 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200248 while (src[i] && i < S.maxsize - 1) {
249 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100250 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200251 }
252 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100253 return i;
254 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200255}
Tomas Heinricha659b812010-04-29 13:43:39 +0200256static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200257{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100258 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200259# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100260 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
261 if (len < 0)
262 len = 0;
263 dst[len] = '\0';
264 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200265# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100266 unsigned dstpos = 0;
267 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200268
Denys Vlasenko353680a2011-03-27 01:18:07 +0100269 maxsize--;
270 while (dstpos < maxsize) {
271 wchar_t wc;
272 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200273
Denys Vlasenko353680a2011-03-27 01:18:07 +0100274 /* Convert up to 1st invalid byte (or up to end) */
275 while ((wc = command_ps[srcpos]) != BB_NUL
276 && !unicode_is_raw_byte(wc)
277 ) {
278 srcpos++;
279 }
280 command_ps[srcpos] = BB_NUL;
281 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
282 if (n < 0) /* should not happen */
283 break;
284 dstpos += n;
285 if (wc == BB_NUL) /* usually is */
286 break;
287
288 /* We do have invalid byte here! */
289 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200290 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100291 if (dstpos == maxsize)
292 break;
293 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200294 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100295 dst[dstpos] = '\0';
296 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200297# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100298 } else {
299 unsigned i = 0;
300 while ((dst[i] = command_ps[i]) != 0)
301 i++;
302 return i;
303 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200304}
305/* I thought just fputwc(c, stdout) would work. But no... */
306static void BB_PUTCHAR(wchar_t c)
307{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100308 if (unicode_status == UNICODE_ON) {
309 char buf[MB_CUR_MAX + 1];
310 mbstate_t mbst = { 0 };
311 ssize_t len = wcrtomb(buf, c, &mbst);
312 if (len > 0) {
313 buf[len] = '\0';
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100314 fputs_stdout(buf);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100315 }
316 } else {
317 /* In this case, c is always one byte */
318 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200319 }
320}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200321# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
322static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
323# else
324static wchar_t adjust_width_and_validate_wc(wchar_t wc)
325# define adjust_width_and_validate_wc(width_adj, wc) \
326 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
327# endif
328{
329 int w = 1;
330
331 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200332 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
333 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200334 goto subst;
335 }
336 w = wcwidth(wc);
337 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
338 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
339 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
340 ) {
341 subst:
342 w = 1;
343 wc = CONFIG_SUBST_WCHAR;
344 }
345 }
346
347# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
348 *width_adj += w;
349#endif
350 return wc;
351}
352#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200353static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200354{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200355 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200356 return strlen(command_ps);
357}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200358# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200359static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200360{
361 safe_strncpy(dst, command_ps, maxsize);
362}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200363# endif
364# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200365/* Should never be called: */
366int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200367#endif
368
369
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000370/* Put 'command_ps[cursor]', cursor++.
371 * Advance cursor on screen. If we reached right margin, scroll text up
372 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000373#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200374static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000375{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200376 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200377 unsigned width = 0;
378 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000379
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200380 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000381 /* erase character after end of input string */
382 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200383 } else {
384 /* advance cursor only if we aren't at the end yet */
385 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200386 if (unicode_status == UNICODE_ON) {
387 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
388 c = adjust_width_and_validate_wc(&cmdedit_x, c);
389 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
390 } else {
391 cmdedit_x++;
392 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000393 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200394
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200395 ofs_to_right = cmdedit_x - cmdedit_termw;
396 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
397 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200398 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000399 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200400
401 if (ofs_to_right >= 0) {
402 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000403#if HACK_FOR_WRONG_WIDTH
404 /* This works better if our idea of term width is wrong
405 * and it is actually wider (often happens on serial lines).
406 * Printing CR,LF *forces* cursor to next line.
407 * OTOH if terminal width is correct AND terminal does NOT
408 * have automargin (IOW: it is moving cursor to next line
409 * by itself (which is wrong for VT-10x terminals)),
410 * this will break things: there will be one extra empty line */
411 puts("\r"); /* + implicit '\n' */
412#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200413 /* VT-10x terminals don't wrap cursor to next line when last char
414 * on the line is printed - cursor stays "over" this char.
415 * Need to print _next_ char too (first one to appear on next line)
416 * to make cursor move down to next line.
417 */
418 /* Works ok only if cmdedit_termw is correct. */
419 c = command_ps[cursor];
420 if (c == BB_NUL)
421 c = ' ';
422 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000423 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000424#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200425 cmdedit_y++;
426 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
427 width = 0;
428 } else { /* ofs_to_right > 0 */
429 /* wide char c didn't fit on prev line */
430 BB_PUTCHAR(c);
431 }
432 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000433 }
Erik Andersen13456d12000-03-16 08:09:57 +0000434}
435
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000436/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200437static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000438{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000439 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200440 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000441}
442
443/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000444static void goto_new_line(void)
445{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200446 put_till_end_and_adv_cursor();
Denys Vlasenkof5018da2018-04-06 17:58:21 +0200447 /* "cursor == 0" is only if prompt is "" and user input is empty */
448 if (cursor == 0 || cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000449 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000450}
451
Rob Landley88621d72006-08-29 19:41:06 +0000452static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000453{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000454 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000455}
456
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200457/* Full or last/sole prompt line, reset edit cursor, calculate terminal cursor.
458 * cmdedit_y is always calculated for the last/sole prompt line.
459 */
460static void put_prompt_custom(bool is_full)
Denys Vlasenko248c3242010-05-17 00:45:44 +0200461{
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100462 fputs_stdout((is_full ? cmdedit_prompt : prompt_last_line));
Denys Vlasenko248c3242010-05-17 00:45:44 +0200463 cursor = 0;
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100464 cmdedit_y = cmdedit_prmt_len / cmdedit_termw; /* new quasireal y */
465 cmdedit_x = cmdedit_prmt_len % cmdedit_termw;
Denys Vlasenko248c3242010-05-17 00:45:44 +0200466}
467
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200468#define put_prompt_last_line() put_prompt_custom(0)
469#define put_prompt() put_prompt_custom(1)
470
Eric Andersenaff114c2004-04-14 17:51:38 +0000471/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000472/* (optimized for slow terminals) */
473static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000474{
475 if (num > cursor)
476 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200477 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000478 return;
479 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000480
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200481 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
482 && unicode_status == UNICODE_ON
483 ) {
484 /* correct NUM to be equal to _screen_ width */
485 int n = num;
486 num = 0;
487 while (--n >= 0)
488 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
489 if (num == 0)
490 return;
491 }
492
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000493 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000494 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000495 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000496 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000497 * Also gets miscompiled for ARM users
498 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000499 * printf(("\b\b\b\b" + 4) - num);
500 * return;
501 */
502 do {
503 bb_putchar('\b');
504 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000505 return;
506 }
Marek Polacek7b181072010-10-28 21:34:56 +0200507 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000508 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000509 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000510
511 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200512 if (ENABLE_UNICODE_WIDE_WCHARS) {
513 /* With wide chars, it is hard to "backtrack"
514 * and reliably figure out where to put cursor.
515 * Example (<> is a wide char; # is an ordinary char, _ cursor):
516 * |prompt: <><> |
517 * |<><><><><><> |
518 * |_ |
519 * and user presses left arrow. num = 1, cmdedit_x = 0,
520 * We need to go up one line, and then - how do we know that
521 * we need to go *10* positions to the right? Because
522 * |prompt: <>#<>|
523 * |<><><>#<><><>|
524 * |_ |
525 * in this situation we need to go *11* positions to the right.
526 *
527 * A simpler thing to do is to redraw everything from the start
528 * up to new cursor position (which is already known):
529 */
530 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200531 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200532 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200533 cmdedit_y = 0;
534 sv_cursor = cursor;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200535 put_prompt_last_line(); /* sets cursor to 0 */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200536 while (cursor < sv_cursor)
537 put_cur_glyph_and_inc_cursor();
538 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200539 int lines_up;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200540 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200541 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200542 /* num=1...w: one line up, w+1...2w: two, etc: */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100543 lines_up = 1 + (num - 1) / cmdedit_termw;
544 cmdedit_x = (cmdedit_termw * cmdedit_y - num) % cmdedit_termw;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200545 cmdedit_y -= lines_up;
546 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200547 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200548 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200549 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
550 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200551 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200552 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000553 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000554}
555
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200556/* See redraw and draw_full below */
557static void draw_custom(int y, int back_cursor, bool is_full)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000558{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200559 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200560 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000561 bb_putchar('\r');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200562 put_prompt_custom(is_full);
Denys Vlasenko94043e82010-05-11 14:49:13 +0200563 put_till_end_and_adv_cursor();
564 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000565 input_backward(back_cursor);
566}
567
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200568/* Move y lines up, draw last/sole prompt line, editor line[s], and clear tail.
569 * goal: redraw the prompt+input+cursor in-place, overwriting the previous */
570#define redraw(y, back_cursor) draw_custom((y), (back_cursor), 0)
571
572/* Like above, but without moving up, and while using all the prompt lines.
573 * goal: draw a full prompt+input+cursor unrelated to a previous position.
574 * note: cmdedit_y always ends up relating to the last/sole prompt line */
575#define draw_full(back_cursor) draw_custom(0, (back_cursor), 1)
576
Paul Fox3f11b1b2005-08-04 19:04:46 +0000577/* Delete the char in front of the cursor, optionally saving it
578 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000579#if !ENABLE_FEATURE_EDITING_VI
580static void input_delete(void)
581#define input_delete(save) input_delete()
582#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000583static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000584#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000585{
Mark Whitley4e338752001-01-26 20:42:23 +0000586 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000587
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000588 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000589 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000590
Denis Vlasenko38f63192007-01-22 09:03:07 +0000591#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000592 if (save) {
593 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000594 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000595 newdelflag = 0;
596 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000597 if ((delptr - delbuf) < DELBUFSIZ)
598 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000599 }
600#endif
601
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200602 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200603 /* (command_len + 1 [because of NUL]) - (j + 1)
604 * simplified into (command_len - j) */
605 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000606 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200607 put_till_end_and_adv_cursor();
608 /* Last char is still visible, erase it (and more) */
609 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000610 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000611}
612
Denis Vlasenko38f63192007-01-22 09:03:07 +0000613#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000614static void put(void)
615{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000616 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000617 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000618
Paul Fox3f11b1b2005-08-04 19:04:46 +0000619 if (j == 0)
620 return;
621 ocursor = cursor;
622 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200623 memmove(command_ps + cursor + j, command_ps + cursor,
624 (command_len - cursor + 1) * sizeof(command_ps[0]));
625 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000626 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200627 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000628 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000629}
630#endif
631
Mark Whitley4e338752001-01-26 20:42:23 +0000632/* Delete the char in back of the cursor */
633static void input_backspace(void)
634{
635 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000636 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000637 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000638 }
639}
640
Eric Andersenaff114c2004-04-14 17:51:38 +0000641/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000642static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000643{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000644 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200645 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000646}
647
Denis Vlasenko38f63192007-01-22 09:03:07 +0000648#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000649
Mike Shalf3763032010-11-22 03:49:18 +0100650//FIXME:
651//needs to be more clever: currently it thinks that "foo\ b<TAB>
652//matches the file named "foo bar", which is untrue.
653//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
654//not "foo bar <cursor>...
655
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000656static void free_tab_completion_data(void)
657{
658 if (matches) {
659 while (num_matches)
660 free(matches[--num_matches]);
661 free(matches);
662 matches = NULL;
663 }
664}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000665
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000666static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000667{
Denys Vlasenkoc3797d42017-11-07 18:09:29 +0100668 unsigned char *p = (unsigned char*)matched;
669 while (*p) {
670 /* ESC attack fix: drop any string with control chars */
671 if (*p < ' '
672 || (!ENABLE_UNICODE_SUPPORT && *p >= 0x7f)
673 || (ENABLE_UNICODE_SUPPORT && *p == 0x7f)
674 ) {
675 free(matched);
676 return;
677 }
678 p++;
679 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000680 matches = xrealloc_vector(matches, 4, num_matches);
681 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000682 num_matches++;
683}
684
Mike Shalf3763032010-11-22 03:49:18 +0100685# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200686/* Replace "~user/..." with "/homedir/...".
687 * The parameter is malloced, free it or return it
688 * unchanged if no user is matched.
689 */
690static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000691{
692 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200693 char *tilde_name = ud;
694 char *home = NULL;
695
696 ud++; /* skip ~ */
697 if (*ud == '/') { /* "~/..." */
698 home = home_pwd_buf;
699 } else {
700 /* "~user/..." */
701 ud = strchr(ud, '/');
702 *ud = '\0'; /* "~user" */
703 entry = getpwnam(tilde_name + 1);
704 *ud = '/'; /* restore "~user/..." */
705 if (entry)
706 home = entry->pw_dir;
707 }
708 if (home) {
709 ud = concat_path_file(home, ud);
710 free(tilde_name);
711 tilde_name = ud;
712 }
713 return tilde_name;
714}
715
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200716/* ~use<tab> - find all users with this prefix.
717 * Return the length of the prefix used for matching.
718 */
719static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200720{
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100721 struct passwd *pw;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200722 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000723
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200724 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000725 userlen = strlen(ud);
726
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200727 setpwent();
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100728 while ((pw = getpwent()) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200729 /* Null usernames should result in all users as possible completions. */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100730 if (/* !ud[0] || */ is_prefixed_with(pw->pw_name, ud)) {
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100731 add_match(xasprintf("~%s/", pw->pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000732 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000733 }
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100734 endpwent(); /* don't keep password file open */
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200735
736 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000737}
Mike Shalf3763032010-11-22 03:49:18 +0100738# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000739
740enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000741 FIND_EXE_ONLY = 0,
742 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000743 FIND_FILE_ONLY = 2,
744};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000745
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100746static unsigned path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000747{
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100748 unsigned npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000749 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000750 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000751 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000752
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100753# if EDITING_HAS_path_lookup
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000754 if (state->flags & WITH_PATH_LOOKUP)
755 pth = state->path_lookup;
756 else
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100757# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000758 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200759
760 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000761 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
762 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000763
Denis Vlasenko253ce002007-01-22 08:34:44 +0000764 tmp = (char*)pth;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100765 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000766 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000767 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000768 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000769 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200770 tmp++;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000771 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000772 }
773
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100774 *p = res = xzalloc((npth + 1) * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000775 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000776 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000777 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000778 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000779 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000780 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000781 *tmp++ = '\0'; /* ':' -> '\0' */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000782 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000783 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100784 /* special case: "match subdirectories of the current directory" */
785 /*res[npth++] = NULL; - filled by xzalloc() */
Mark Whitley4e338752001-01-26 20:42:23 +0000786 return npth;
787}
788
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200789/* Complete command, directory or file name.
790 * Return the length of the prefix used for matching.
791 */
792static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000793{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000794 char *path1[1];
795 char **paths = path1;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100796 unsigned npaths;
797 unsigned i;
798 unsigned baselen;
799 const char *basecmd;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200800 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000801
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000802 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000803 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000804
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100805 basecmd = strrchr(command, '/');
806 if (!basecmd) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200807 if (type == FIND_EXE_ONLY)
808 npaths = path_parse(&paths);
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100809 basecmd = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000810 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000811 /* point to 'l' in "..../last_component" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100812 basecmd++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200813 /* dirbuf = ".../.../.../" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100814 dirbuf = xstrndup(command, basecmd - command);
Mike Shalf3763032010-11-22 03:49:18 +0100815# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200816 if (dirbuf[0] == '~') /* ~/... or ~user/... */
817 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100818# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200819 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000820 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100821 baselen = strlen(basecmd);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000822
Denys Vlasenko13360522016-10-24 01:25:05 +0200823 if (type == FIND_EXE_ONLY && !dirbuf) {
Ron Yorston9e2a5662020-01-21 16:01:58 +0000824# if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
Ron Yorston37788982018-11-17 17:48:14 +0000825 const char *p = applet_names;
Ron Yorston2b919582016-04-08 11:57:20 +0100826 while (*p) {
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100827 if (strncmp(basecmd, p, baselen) == 0)
Ron Yorstonf23264b2015-05-29 11:31:40 +0100828 add_match(xstrdup(p));
Ron Yorston37788982018-11-17 17:48:14 +0000829 while (*p++ != '\0')
Ron Yorston2b919582016-04-08 11:57:20 +0100830 continue;
Ron Yorstonf23264b2015-05-29 11:31:40 +0100831 }
Denys Vlasenkof128bdb2017-07-29 00:59:24 +0200832# endif
Ron Yorston9e2a5662020-01-21 16:01:58 +0000833# if EDITING_HAS_get_exe_name
834 if (state->get_exe_name) {
835 i = 0;
836 for (;;) {
837 const char *b = state->get_exe_name(i++);
838 if (!b)
839 break;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100840 if (strncmp(basecmd, b, baselen) == 0)
Ron Yorston9e2a5662020-01-21 16:01:58 +0000841 add_match(xstrdup(b));
842 }
843 }
844# endif
845 }
Ron Yorstonf23264b2015-05-29 11:31:40 +0100846
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000847 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200848 DIR *dir;
849 struct dirent *next;
850 struct stat st;
851 char *found;
Ron Yorston760b6272021-02-18 09:50:29 +0000852 const char *lpath;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200853
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100854 if (paths[i] == NULL) { /* path_parse()'s last component? */
855 /* in PATH completion, current dir's subdir names
856 * can be completions (but only subdirs, not files).
857 */
Ron Yorston8baa6432020-12-11 12:34:21 +0000858 type = FIND_DIR_ONLY;
859 paths[i] = (char *)".";
860 }
861
Ron Yorston760b6272021-02-18 09:50:29 +0000862 lpath = *paths[i] ? paths[i] : ".";
863 dir = opendir(lpath);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000864 if (!dir)
865 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000866
867 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200868 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200869 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000870
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200871 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100872 if (!basecmd[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000873 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200874 /* match? */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100875 if (strncmp(basecmd, name_found, baselen) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200876 continue; /* no */
877
Ron Yorston760b6272021-02-18 09:50:29 +0000878 found = concat_path_file(lpath, name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000879 /* NB: stat() first so that we see is it a directory;
880 * but if that fails, use lstat() so that
881 * we still match dangling links */
882 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200883 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000884
Denys Vlasenko39263632010-09-03 14:11:08 +0200885 /* Save only name */
886 len = strlen(name_found);
887 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
888 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000889
Mark Whitley4e338752001-01-26 20:42:23 +0000890 if (S_ISDIR(st.st_mode)) {
Ron Yorston8506dd62020-12-10 14:44:57 +0000891 /* skip directories if searching PATH */
892 if (type == FIND_EXE_ONLY && !dirbuf)
893 goto cont;
Denys Vlasenko39263632010-09-03 14:11:08 +0200894 /* name is a directory, add slash */
895 found[len] = '/';
896 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000897 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200898 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000899 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000900 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000901 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200902 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000903 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000904 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000905 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000906 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000907 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000908 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200909 } /* for every path */
910
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000911 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000912 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000913 free(paths);
914 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200915 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200916
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100917 return baselen;
Erik Andersen6273f652000-03-17 01:12:41 +0000918}
Erik Andersenf0657d32000-04-12 17:49:52 +0000919
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200920/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200921 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200922 * was pressed. This function looks at it, figures out what part of it
923 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200924 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200925 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200926#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200927/* Helpers: */
928/* QUOT is used on elements of int_buf[], which are bytes,
929 * not Unicode chars. Therefore it works correctly even in Unicode mode.
930 */
931#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200932static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200933{
934 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200935 if (beg == end)
936 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200937
938 while ((int_buf[beg] = int_buf[end]) != 0)
939 beg++, end++;
940
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200941 if (dbg_bmp) {
942 int i;
943 for (i = 0; int_buf[i]; i++)
944 bb_putchar((unsigned char)int_buf[i]);
945 bb_putchar('\n');
946 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200947}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200948/* Caller ensures that match_buf points to a malloced buffer
949 * big enough to hold strlen(match_buf)*2 + 2
950 */
951static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000952{
953 int i, j;
954 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200955 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000956
Denys Vlasenko76939e72010-09-03 14:09:24 +0200957 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200958
Denys Vlasenko76939e72010-09-03 14:09:24 +0200959 /* Copy in reverse order, since they overlap */
960 i = strlen(match_buf);
961 do {
962 int_buf[i] = (unsigned char)match_buf[i];
963 i--;
964 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000965
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200966 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200967 for (i = 0; int_buf[i]; i++) {
968 if (int_buf[i] == '\\') {
969 remove_chunk(int_buf, i, i + 1);
970 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000971 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200972 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200973 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200974 {
975 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200976 i = 0;
977 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200978 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200979 if (!cur)
980 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200981 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200982 if (!in_quote || (cur == in_quote)) {
983 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200984 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200985 continue;
986 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000987 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200988 if (in_quote)
989 int_buf[i] = cur | QUOT;
990 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200991 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000992 }
993
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200994 /* Remove everything up to command delimiters:
995 * ';' ';;' '&' '|' '&&' '||',
996 * but careful with '>&' '<&' '>|'
997 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000998 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200999 int cur = int_buf[i];
1000 if (cur == ';' || cur == '&' || cur == '|') {
1001 int prev = i ? int_buf[i - 1] : 0;
1002 if (cur == '&' && (prev == '>' || prev == '<')) {
1003 continue;
1004 } else if (cur == '|' && prev == '>') {
1005 continue;
1006 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001007 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001008 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001009 }
1010 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001011 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001012 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001013 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001014 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001015 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001016 /* `cmd` should count as a word:
1017 * `cmd` c<tab> should search for files c*,
1018 * not commands c*. Therefore we don't drop
1019 * `cmd` entirely, we replace it with single `.
1020 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001021 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001022 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001023 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001024 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001025 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001026 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001027 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001028 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001029 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001030 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001031
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001032 /* Remove "cmd (" and "cmd {"
1033 * Example: "if { c<tab>"
1034 * In this example, c should be matched as command pfx.
1035 */
1036 for (i = 0; int_buf[i]; i++) {
1037 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001038 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001039 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001040 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001041 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001042
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001043 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001044 for (i = 0; int_buf[i]; i++)
1045 if (int_buf[i] != ' ')
1046 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001047 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001048
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001049 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001050 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001051 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001052 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001053 if (int_buf[i] == ' '
1054 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001055 && (char)int_buf[0] == 'c'
1056 && (char)int_buf[1] == 'd'
1057 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001058 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001059 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001060 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001061 command_mode = FIND_FILE_ONLY;
1062 break;
1063 }
1064 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001065 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001066 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001067
1068 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001069 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
1070 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001071 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001072 int cur = int_buf[i];
Natanael Copa7323bca2021-04-09 17:02:00 +02001073 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&' || cur == '=') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001074 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001075 break;
1076 }
1077 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001078
Denys Vlasenko76939e72010-09-03 14:09:24 +02001079 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001080 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001081 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001082 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001083
Denys Vlasenko76939e72010-09-03 14:09:24 +02001084 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001085
1086 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001087}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001088
Glenn L McGrath4d001292003-01-06 01:11:50 +00001089/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001090 * Display by column (original idea from ls applet,
1091 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001092 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001093static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001094{
1095 int ncols, row;
1096 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001097 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001098 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001099 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001100
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001101 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001102 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001103 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001104 if (column_width < l)
1105 column_width = l;
1106 }
1107 column_width += 2; /* min space for columns */
1108 ncols = cmdedit_termw / column_width;
1109
1110 if (ncols > 1) {
1111 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001112 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001113 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001114 } else {
1115 ncols = 1;
1116 }
1117 for (row = 0; row < nrows; row++) {
1118 int n = row;
1119 int nc;
1120
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001121 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001122 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001123 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001124 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001125 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001126 if (ENABLE_UNICODE_SUPPORT)
Denys Vlasenko349d72c2018-09-30 16:56:56 +02001127 puts(printable_string(matches[n]));
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001128 else
1129 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001130 }
1131}
1132
Mike Shalf3763032010-11-22 03:49:18 +01001133static const char *is_special_char(char c)
1134{
Denys Vlasenko6d2463a2021-09-17 17:32:30 +02001135 // {: It's mandatory to escape { only if entire name is "{"
1136 // (otherwise it's not special. Example: file named "{ "
1137 // can be escaped simply as "{\ "; "{a" or "a{" need no escaping),
1138 // or if shell supports brace expansion
1139 // (ash doesn't, hush optionally does).
1140 // (): unlike {, shell treats () specially even in contexts
1141 // where they clearly are not valid (e.g. "echo )" is an error).
1142 // #: needs escaping to not start a shell comment.
1143 return strchr(" `'\"\\#$~?*[{()&;|<>", c);
1144 // Used to also have %^=+}]: but not necessary to escape?
Mike Shalf3763032010-11-22 03:49:18 +01001145}
1146
1147static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001148{
1149 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001150 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001151
1152 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001153 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001154 s[l++] = '\\';
1155 s[l++] = *found++;
1156 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001157 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001158 return s;
1159}
1160
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001161/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001162static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001163{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001164 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001165 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001166 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001167 /* Length of string used for matching */
1168 unsigned match_pfx_len = match_pfx_len;
1169 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001170# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001171 /* cursor pos in command converted to multibyte form */
1172 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001173# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001174 if (!(state->flags & TAB_COMPLETION))
1175 return;
1176
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001177 if (*lastWasTab) {
1178 /* The last char was a TAB too.
1179 * Print a list of all the available choices.
1180 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001181 if (num_matches > 0) {
1182 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001183 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001184 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001185 showfiles();
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001186 draw_full(command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001187 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001188 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001189 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001190
1191 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001192 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001193
Denys Vlasenko76939e72010-09-03 14:09:24 +02001194 /* Make a local copy of the string up to the position of the cursor.
1195 * build_match_prefix will expand it into int16_t's, need to allocate
1196 * twice as much as the string_len+1.
1197 * (we then also (ab)use this extra space later - see (**))
1198 */
1199 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001200# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001201 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001202# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001203 {
1204 CHAR_T wc = command_ps[cursor];
1205 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001206 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001207 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001208 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001209 }
Mike Shalf3763032010-11-22 03:49:18 +01001210# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001211 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001212
1213 /* Free up any memory already allocated */
1214 free_tab_completion_data();
1215
Mike Shalf3763032010-11-22 03:49:18 +01001216# if ENABLE_FEATURE_USERNAME_COMPLETION
1217 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001218 * then try completing this word as a username. */
1219 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001220 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1221 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001222# endif
1223 /* If complete_username() did not match,
1224 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001225 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001226 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001227
1228 /* Account for backslashes which will be inserted
1229 * by quote_special_chars() later */
1230 {
1231 const char *e = match_buf + strlen(match_buf);
1232 const char *s = e - match_pfx_len;
1233 while (s < e)
1234 if (is_special_char(*s++))
1235 match_pfx_len++;
1236 }
1237
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001238 /* Remove duplicates */
1239 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001240 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001241 qsort_string_vector(matches, num_matches);
1242 for (i = 0; i < num_matches - 1; ++i) {
1243 //if (matches[i] && matches[i+1]) { /* paranoia */
1244 if (strcmp(matches[i], matches[i+1]) == 0) {
1245 free(matches[i]);
1246 //matches[i] = NULL; /* paranoia */
1247 } else {
1248 matches[n++] = matches[i];
1249 }
1250 //}
1251 }
1252 matches[n++] = matches[i];
1253 num_matches = n;
1254 }
Mike Shalf3763032010-11-22 03:49:18 +01001255
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001256 /* Did we find exactly one match? */
1257 if (num_matches != 1) { /* no */
1258 char *cp;
1259 beep();
1260 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001261 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001262 /* Find common prefix */
1263 chosen_match = xstrdup(matches[0]);
1264 for (cp = chosen_match; *cp; cp++) {
1265 unsigned n;
1266 for (n = 1; n < num_matches; n++) {
1267 if (matches[n][cp - chosen_match] != *cp) {
1268 goto stop;
1269 }
1270 }
1271 }
1272 stop:
1273 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001274 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001275 }
1276 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001277 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001278 free(chosen_match);
1279 chosen_match = cp;
1280 len_found = strlen(chosen_match);
1281 } else { /* exactly one match */
1282 /* Next <tab> is not a double-tab */
1283 *lastWasTab = 0;
1284
Mike Shalf3763032010-11-22 03:49:18 +01001285 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001286 len_found = strlen(chosen_match);
1287 if (chosen_match[len_found-1] != '/') {
1288 chosen_match[len_found] = ' ';
1289 chosen_match[++len_found] = '\0';
1290 }
1291 }
1292
Mike Shalf3763032010-11-22 03:49:18 +01001293# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001294 /* Have space to place the match? */
1295 /* The result consists of three parts with these lengths: */
1296 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1297 /* it simplifies into: */
1298 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1299 int pos;
1300 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001301 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001302 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001303 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001304 command_len = strlen(command_ps);
1305 /* new pos */
1306 pos = cursor + len_found - match_pfx_len;
1307 /* write out the matched command */
1308 redraw(cmdedit_y, command_len - pos);
1309 }
Mike Shalf3763032010-11-22 03:49:18 +01001310# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001311 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001312 /* Use 2nd half of match_buf as scratch space - see (**) */
1313 char *command = match_buf + MAX_LINELEN;
1314 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001315 /* Have space to place the match? */
1316 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1317 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1318 int pos;
1319 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001320 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001321 /* where do we want to have cursor after all? */
1322 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001323 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001324 /* add match and tail */
Denys Vlasenkofe2d8062021-04-14 17:52:18 +02001325 stpcpy(stpcpy(&command[cursor_mb], chosen_match + match_pfx_len), match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001326 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001327 /* write out the matched command */
1328 /* paranoia: load_string can return 0 on conv error,
1329 * prevent passing pos = (0 - 12) to redraw */
1330 pos = command_len - len;
1331 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1332 }
1333 }
Mike Shalf3763032010-11-22 03:49:18 +01001334# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001335 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001336 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001337 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001338}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001339
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001340#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001341
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001342
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001343line_input_t* FAST_FUNC new_line_input_t(int flags)
1344{
1345 line_input_t *n = xzalloc(sizeof(*n));
1346 n->flags = flags;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02001347 n->timeout = -1;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001348#if MAX_HISTORY > 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001349 n->max_history = MAX_HISTORY;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001350#endif
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001351 return n;
1352}
1353
1354
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001355#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001356
Flemming Madsend96ffda2013-04-07 18:47:24 +02001357unsigned FAST_FUNC size_from_HISTFILESIZE(const char *hp)
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001358{
1359 int size = MAX_HISTORY;
1360 if (hp) {
1361 size = atoi(hp);
1362 if (size <= 0)
1363 return 1;
1364 if (size > MAX_HISTORY)
1365 return MAX_HISTORY;
1366 }
1367 return size;
1368}
1369
Denis Vlasenko682ad302008-09-27 01:28:56 +00001370static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001371{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001372 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001373 int cur = state->cur_history;
1374 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001375
Denys Vlasenko19158a82010-03-26 14:06:56 +01001376# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001377 {
1378 char tbuf[MAX_LINELEN];
1379 save_string(tbuf, sizeof(tbuf));
1380 state->history[cur] = xstrdup(tbuf);
1381 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001382# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001383 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001384# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001385 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001386}
1387
1388/* state->flags is already checked to be nonzero */
1389static int get_previous_history(void)
1390{
1391 if ((state->flags & DO_HISTORY) && state->cur_history) {
1392 save_command_ps_at_cur_history();
1393 state->cur_history--;
1394 return 1;
1395 }
1396 beep();
1397 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001398}
1399
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001400static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001401{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001402 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001403 if (state->cur_history < state->cnt_history) {
1404 save_command_ps_at_cur_history(); /* save the current history line */
1405 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001406 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001407 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001408 beep();
1409 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001410}
Robert Griebl350d26b2002-12-03 22:45:46 +00001411
Flemming Madsend96ffda2013-04-07 18:47:24 +02001412/* Lists command history. Used by shell 'history' builtins */
1413void FAST_FUNC show_history(const line_input_t *st)
1414{
1415 int i;
1416
1417 if (!st)
1418 return;
1419 for (i = 0; i < st->cnt_history; i++)
1420 printf("%4d %s\n", i, st->history[i]);
1421}
1422
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001423# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001424void FAST_FUNC free_line_input_t(line_input_t *n)
1425{
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001426 if (n) {
1427 int i = n->cnt_history;
1428 while (i > 0)
1429 free(n->history[--i]);
1430 free(n);
1431 }
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001432}
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001433# else
1434/* #defined to free() in libbb.h */
1435# endif
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001436
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001437# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001438/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001439 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001440 * Otherwise shell users get unhappy.
1441 *
1442 * History file is trimmed lazily, when it grows several times longer
1443 * than configured MAX_HISTORY lines.
1444 */
1445
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001446/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001447static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001448{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001449 char *temp_h[MAX_HISTORY];
1450 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001451 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001452 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001453
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001454 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001455
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001456 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001457 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001458 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001459 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001460 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001461 free(st_parm->history[idx]);
1462 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001463 }
1464
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001465 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1466 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001467 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001468 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001469 while ((line = xmalloc_fgetline(fp)) != NULL) {
1470 if (line[0] == '\0') {
1471 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001472 continue;
1473 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001474 free(temp_h[idx]);
1475 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001476 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001477 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001478 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001479 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001480 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001481 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001482
1483 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001484 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001485 while (temp_h[idx] == NULL) {
1486 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001487 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001488 idx = 0;
1489 }
1490 }
1491
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001492 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001493 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001494 line = temp_h[idx];
1495 if (!line)
1496 break;
1497 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001498 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001499 idx = 0;
1500 line_len = strlen(line);
1501 if (line_len >= MAX_LINELEN)
1502 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001503 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001504 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001505 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001506 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1507 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001508 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001509}
1510
Denys Vlasenkobede2152011-09-04 16:12:33 +02001511# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1512void save_history(line_input_t *st)
1513{
1514 FILE *fp;
1515
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001516 if (!st || !st->hist_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001517 return;
1518 if (st->cnt_history <= st->cnt_history_in_file)
1519 return;
1520
1521 fp = fopen(st->hist_file, "a");
1522 if (fp) {
1523 int i, fd;
1524 char *new_name;
1525 line_input_t *st_temp;
1526
1527 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1528 fprintf(fp, "%s\n", st->history[i]);
1529 fclose(fp);
1530
1531 /* we may have concurrently written entries from others.
1532 * load them */
1533 st_temp = new_line_input_t(st->flags);
1534 st_temp->hist_file = st->hist_file;
1535 st_temp->max_history = st->max_history;
1536 load_history(st_temp);
1537
1538 /* write out temp file and replace hist_file atomically */
1539 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1540 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1541 if (fd >= 0) {
1542 fp = xfdopen_for_write(fd);
1543 for (i = 0; i < st_temp->cnt_history; i++)
1544 fprintf(fp, "%s\n", st_temp->history[i]);
1545 fclose(fp);
1546 if (rename(new_name, st->hist_file) == 0)
1547 st->cnt_history_in_file = st_temp->cnt_history;
1548 }
1549 free(new_name);
1550 free_line_input_t(st_temp);
1551 }
1552}
1553# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001554static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001555{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001556 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001557 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001558
Denys Vlasenkobede2152011-09-04 16:12:33 +02001559 if (!state->hist_file)
1560 return;
1561
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001562 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001563 if (fd < 0)
1564 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001565 xlseek(fd, 0, SEEK_END); /* paranoia */
1566 len = strlen(str);
1567 str[len] = '\n'; /* we (try to) do atomic write */
1568 len2 = full_write(fd, str, len + 1);
1569 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001570 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001571 if (len2 != len + 1)
1572 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001573
1574 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001575 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001576 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001577 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001578 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001579
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001580 /* we may have concurrently written entries from others.
1581 * load them */
1582 st_temp = new_line_input_t(state->flags);
1583 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001584 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001585 load_history(st_temp);
1586
1587 /* write out temp file and replace hist_file atomically */
1588 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001589 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001590 if (fd >= 0) {
1591 FILE *fp;
1592 int i;
1593
1594 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001595 for (i = 0; i < st_temp->cnt_history; i++)
1596 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001597 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001598 if (rename(new_name, state->hist_file) == 0)
1599 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001600 }
1601 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001602 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001603 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001604}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001605# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001606# else
1607# define load_history(a) ((void)0)
1608# define save_history(a) ((void)0)
1609# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001610
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001611static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001612{
1613 int i;
1614
1615 if (!(state->flags & DO_HISTORY))
1616 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001617 if (str[0] == '\0')
1618 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001619 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001620 /* Don't save dupes */
1621 if (i && strcmp(state->history[i-1], str) == 0)
1622 return;
1623
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001624 free(state->history[state->max_history]); /* redundant, paranoia */
1625 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001626
1627 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001628 /* we need to keep history[state->max_history] empty, hence >=, not > */
1629 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001630 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001631 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001632 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001633 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001634# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1635 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001636 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001637# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001638 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001639 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001640 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001641 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001642 state->cur_history = i;
1643 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001644# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1645 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001646# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001647}
1648
1649#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001650# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001651#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001652
1653
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001654#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001655/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001656 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001657 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001658static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001659vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001660{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001661 CHAR_T *command = command_ps;
1662
1663 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001664 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001665 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001666 input_forward();
1667}
1668
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001669static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001670vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001671{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001672 CHAR_T *command = command_ps;
1673
Natanael Copa7e6f9312016-08-14 23:30:29 +02001674 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001675 while (cursor < command_len
Natanael Copa7e6f9312016-08-14 23:30:29 +02001676 && (BB_isalnum_or_underscore(command[cursor+1]))
Denys Vlasenko13028922009-07-12 00:51:15 +02001677 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001678 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001679 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001680 } else if (BB_ispunct(command[cursor])) {
1681 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001682 input_forward();
1683 }
1684
Denis Vlasenko253ce002007-01-22 08:34:44 +00001685 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001686 input_forward();
1687
Denys Vlasenko13028922009-07-12 00:51:15 +02001688 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001689 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001690 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001691 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001692}
1693
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001694static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001695vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001696{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001697 CHAR_T *command = command_ps;
1698
Paul Fox3f11b1b2005-08-04 19:04:46 +00001699 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001700 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001701 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001702 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001703 input_forward();
1704}
1705
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001706static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001707vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001708{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001709 CHAR_T *command = command_ps;
1710
Denis Vlasenko253ce002007-01-22 08:34:44 +00001711 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001712 return;
1713 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001714 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001715 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001716 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001717 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001718 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001719 while (cursor < command_len-1
Natanael Copa7e6f9312016-08-14 23:30:29 +02001720 && (BB_isalnum_or_underscore(command[cursor+1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001721 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001722 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001723 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001724 } else if (BB_ispunct(command[cursor])) {
1725 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001726 input_forward();
1727 }
1728}
1729
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001730static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001731vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001732{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001733 CHAR_T *command = command_ps;
1734
1735 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001736 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001737 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001738 input_backward(1);
1739}
1740
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001741static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001742vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001743{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001744 CHAR_T *command = command_ps;
1745
Paul Fox3f11b1b2005-08-04 19:04:46 +00001746 if (cursor <= 0)
1747 return;
1748 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001749 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001750 input_backward(1);
1751 if (cursor <= 0)
1752 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001753 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001754 while (cursor > 0
Natanael Copa7e6f9312016-08-14 23:30:29 +02001755 && (BB_isalnum_or_underscore(command[cursor-1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001756 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001757 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001758 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001759 } else if (BB_ispunct(command[cursor])) {
1760 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001761 input_backward(1);
1762 }
1763}
Denys Vlasenko627821e2021-09-25 19:36:35 +02001764#endif /* ENABLE_FEATURE_EDITING_VI */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001765
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001766/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1767static void ctrl_left(void)
1768{
1769 CHAR_T *command = command_ps;
1770
1771 while (1) {
1772 CHAR_T c;
1773
1774 input_backward(1);
1775 if (cursor == 0)
1776 break;
1777 c = command[cursor];
1778 if (c != ' ' && !BB_ispunct(c)) {
1779 /* we reached a "word" delimited by spaces/punct.
1780 * go to its beginning */
1781 while (1) {
1782 c = command[cursor - 1];
1783 if (c == ' ' || BB_ispunct(c))
1784 break;
1785 input_backward(1);
1786 if (cursor == 0)
1787 break;
1788 }
1789 break;
1790 }
1791 }
1792}
1793static void ctrl_right(void)
1794{
1795 CHAR_T *command = command_ps;
1796
1797 while (1) {
1798 CHAR_T c;
1799
1800 c = command[cursor];
1801 if (c == BB_NUL)
1802 break;
1803 if (c != ' ' && !BB_ispunct(c)) {
1804 /* we reached a "word" delimited by spaces/punct.
1805 * go to its end + 1 */
1806 while (1) {
1807 input_forward();
1808 c = command[cursor];
1809 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1810 break;
1811 }
1812 break;
1813 }
1814 input_forward();
1815 }
1816}
1817
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001818
1819/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001820 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001821 */
1822
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001823#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1824static void ask_terminal(void)
1825{
1826 /* Ask terminal where is the cursor now.
1827 * lineedit_read_key handles response and corrects
1828 * our idea of current cursor position.
1829 * Testcase: run "echo -n long_line_long_line_long_line",
1830 * then type in a long, wrapping command and try to
1831 * delete it using backspace key.
1832 * Note: we print it _after_ prompt, because
1833 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1834 */
1835 /* Problem: if there is buffered input on stdin,
1836 * the response will be delivered later,
1837 * possibly to an unsuspecting application.
1838 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1839 * Result:
1840 * ~/srcdevel/bbox/fix/busybox.t4 #
1841 * ~/srcdevel/bbox/fix/busybox.t4 #
1842 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1843 * ~/srcdevel/bbox/fix/busybox.t4 #
1844 *
1845 * Checking for input with poll only makes the race narrower,
1846 * I still can trigger it. Strace:
1847 *
1848 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1849 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1850 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001851 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001852 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1853 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001854 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001855
Denys Vlasenko451add42010-07-25 00:06:41 +02001856 pfd.fd = STDIN_FILENO;
1857 pfd.events = POLLIN;
1858 if (safe_poll(&pfd, 1, 0) == 0) {
1859 S.sent_ESC_br6n = 1;
Ron Yorstoncad3fc72021-02-03 20:47:14 +01001860 fputs_stdout(ESC"[6n");
Denys Vlasenko451add42010-07-25 00:06:41 +02001861 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001862 }
1863}
1864#else
Denys Vlasenko627821e2021-09-25 19:36:35 +02001865# define ask_terminal() ((void)0)
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001866#endif
1867
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001868/* Note about multi-line PS1 (e.g. "\n\w \u@\h\n> ") and prompt redrawing:
1869 *
1870 * If the prompt has any newlines, after we print it once we use only its last
1871 * line to redraw in-place, which makes it simpler to calculate how many lines
1872 * we should move the cursor up to align the redraw (cmdedit_y). The earlier
1873 * prompt lines just stay on screen and we redraw below them.
1874 *
1875 * Use cases for all prompt lines beyond the initial draw:
1876 * - After clear-screen (^L) or after displaying tab-completion choices, we
1877 * print the full prompt, as it isn't redrawn in-place.
1878 * - During terminal resize we could try to redraw all lines, but we don't,
1879 * because it requires delicate alignment, it's good enough with only the
1880 * last line, and doing it wrong is arguably worse than not doing it at all.
1881 *
1882 * Terminology wise, if it doesn't mention "full", then it means the last/sole
1883 * prompt line. We use the prompt (last/sole line) while redrawing in-place,
1884 * and the full where we need a fresh one unrelated to an earlier position.
1885 *
1886 * If PS1 is not multiline, the last/sole line and the full are the same string.
1887 */
1888
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001889/* Called just once at read_line_input() init time */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001890#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001891static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001892{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001893 const char *p;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001894 cmdedit_prompt = prompt_last_line = prmt_ptr;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001895 p = strrchr(prmt_ptr, '\n');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001896 if (p)
1897 prompt_last_line = p + 1;
1898 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001899 put_prompt();
1900}
1901#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001902static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001903{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001904 int prmt_size = 0;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001905 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001906 char *cwd_buf = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001907 char flg_not_length = '[';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001908 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001909
Denys Vlasenko7a180432013-08-19 16:44:05 +02001910 /*cmdedit_prmt_len = 0; - already is */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001911
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001912 cbuf[1] = '\0'; /* never changes */
1913
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001914 while (*prmt_ptr) {
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001915 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001916 char *free_me = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001917 char *pbuf;
1918 char c;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001919
1920 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001921 c = *prmt_ptr++;
1922 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001923 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001924 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001925/*
1926 * Supported via bb_process_escape_sequence:
1927 * \a ASCII bell character (07)
1928 * \e ASCII escape character (033)
1929 * \n newline
1930 * \r carriage return
1931 * \\ backslash
1932 * \nnn char with octal code nnn
1933 * Supported:
1934 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001935 * \w current working directory, with $HOME abbreviated with a tilde
1936 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001937 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001938 * \h hostname up to the first '.'
1939 * \H hostname
1940 * \u username
1941 * \[ begin a sequence of non-printing characters
1942 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001943 * \T current time in 12-hour HH:MM:SS format
1944 * \@ current time in 12-hour am/pm format
1945 * \A current time in 24-hour HH:MM format
1946 * \t current time in 24-hour HH:MM:SS format
1947 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001948 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001949 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001950 * \# command number of this command
1951 * \j number of jobs currently managed by the shell
1952 * \l basename of the shell's terminal device name
1953 * \s name of the shell, the basename of $0 (the portion following the final slash)
1954 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001955 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1956 * \D{format}
1957 * format is passed to strftime(3).
1958 * An empty format results in a locale-specific time representation.
1959 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001960 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001961 * \v version of bash (e.g., 2.00)
1962 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01001963 cp = prmt_ptr;
1964 c = *cp;
1965 if (c != 't') /* don't treat \t as tab */
1966 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001967 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001968 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001969 break;
1970 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001971
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001972 switch (c) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001973 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001974 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001975 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001976 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001977 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001978 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001979 if (c == 'h')
1980 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001981 break;
1982 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001983 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001984 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001985 case 'T': /* 12-hour HH:MM:SS format */
1986 case '@': /* 12-hour am/pm format */
1987 case 'A': /* 24-hour HH:MM format */
1988 case 't': /* 24-hour HH:MM:SS format */
1989 /* We show all of them as 24-hour HH:MM */
1990 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
1991 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001992 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001993 case 'w': /* current dir */
1994 case 'W': /* basename of cur dir */
1995 if (!cwd_buf) {
1996 cwd_buf = xrealloc_getcwd_or_warn(NULL);
1997 if (!cwd_buf)
1998 cwd_buf = (char *)bb_msg_unknown;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001999 else if (home_pwd_buf[0]) {
2000 char *after_home_user;
2001
Denys Vlasenko1d145692013-03-29 13:09:05 +01002002 /* /home/user[/something] -> ~[/something] */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002003 after_home_user = is_prefixed_with(cwd_buf, home_pwd_buf);
2004 if (after_home_user
2005 && (*after_home_user == '/' || *after_home_user == '\0')
Denys Vlasenko1d145692013-03-29 13:09:05 +01002006 ) {
2007 cwd_buf[0] = '~';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002008 overlapping_strcpy(cwd_buf + 1, after_home_user);
Denys Vlasenko1d145692013-03-29 13:09:05 +01002009 }
2010 }
2011 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002012 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002013 if (c == 'w')
2014 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00002015 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01002016 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01002017 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002018 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002019// bb_process_escape_sequence does this now:
2020// case 'e': case 'E': /* \e \E = \033 */
2021// c = '\033';
2022// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002023 case 'x': case 'X': {
2024 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002025 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002026 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002027 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002028 buf2[l] = '\0';
2029 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002030 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002031 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002032 break;
2033 }
2034 prmt_ptr++;
2035 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002036 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002037 if (c == 0)
2038 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002039 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002040 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002041 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002042 case '[': case ']':
2043 if (c == flg_not_length) {
Denys Vlasenko7a180432013-08-19 16:44:05 +02002044 /* Toggle '['/']' hex 5b/5d */
2045 flg_not_length ^= 6;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002046 continue;
2047 }
2048 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002049 } /* switch */
2050 } /* if */
2051 } /* if */
2052 cbuf[0] = c;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002053 {
2054 int n = strlen(pbuf);
2055 prmt_size += n;
2056 if (c == '\n')
2057 cmdedit_prmt_len = 0;
2058 else if (flg_not_length != ']') {
Denys Vlasenko627821e2021-09-25 19:36:35 +02002059# if ENABLE_UNICODE_SUPPORT
Audun-Marius Gangstø9bf44992020-11-21 12:26:39 +01002060 if (n == 1) {
2061 /* Only count single-byte characters and the first of multi-byte characters */
2062 if ((unsigned char)*pbuf < 0x80 /* single byte character */
2063 || (unsigned char)*pbuf >= 0xc0 /* first of multi-byte characters */
2064 ) {
2065 cmdedit_prmt_len += n;
2066 }
2067 } else {
2068 cmdedit_prmt_len += unicode_strwidth(pbuf);
2069 }
Denys Vlasenko627821e2021-09-25 19:36:35 +02002070# else
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002071 cmdedit_prmt_len += n;
Denys Vlasenko627821e2021-09-25 19:36:35 +02002072# endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002073 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002074 }
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002075 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_size+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002076 free(free_me);
2077 } /* while */
2078
2079 if (cwd_buf != (char *)bb_msg_unknown)
2080 free(cwd_buf);
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002081 /* see comment (above this function) about multiline prompt redrawing */
2082 cmdedit_prompt = prompt_last_line = prmt_mem_ptr;
2083 prmt_ptr = strrchr(cmdedit_prompt, '\n');
2084 if (prmt_ptr)
2085 prompt_last_line = prmt_ptr + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002086 put_prompt();
2087}
Denys Vlasenkoa97a7952020-12-16 11:14:08 +01002088#endif /* FEATURE_EDITING_FANCY_PROMPT */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002089
Ron Yorston23286902018-02-25 20:09:54 +01002090#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko038a9772016-11-28 01:10:16 +01002091static void cmdedit_setwidth(void)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002092{
Denys Vlasenko038a9772016-11-28 01:10:16 +01002093 int new_y;
2094
2095 cmdedit_termw = get_terminal_width(STDIN_FILENO);
2096 /* new y for current cursor */
2097 new_y = (cursor + cmdedit_prmt_len) / cmdedit_termw;
2098 /* redraw */
2099 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002100}
2101
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002102static void win_changed(int nsig UNUSED_PARAM)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002103{
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002104 if (S.ok_to_redraw) {
2105 /* We are in read_key(), safe to redraw immediately */
2106 int sv_errno = errno;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002107 cmdedit_setwidth();
2108 fflush_all();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002109 errno = sv_errno;
2110 } else {
2111 /* Signal main loop that redraw is necessary */
2112 S.SIGWINCH_count++;
2113 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002114}
Ron Yorston23286902018-02-25 20:09:54 +01002115#endif
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002116
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002117static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002118{
Denys Vlasenko020f4062009-05-17 16:44:54 +02002119 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002120#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002121 char unicode_buf[MB_CUR_MAX + 1];
2122 int unicode_idx = 0;
2123#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02002124
Denys Vlasenko038a9772016-11-28 01:10:16 +01002125 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002126 while (1) {
2127 /* Wait for input. TIMEOUT = -1 makes read_key wait even
2128 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
2129 * insist on full MB_CUR_MAX buffer to declare input like
2130 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
2131 *
2132 * Note: read_key sets errno to 0 on success.
2133 */
Ron Yorston23286902018-02-25 20:09:54 +01002134 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 1;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002135 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
Ron Yorston23286902018-02-25 20:09:54 +01002136 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 0;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002137 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01002138#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002139 if (errno == EAGAIN && unicode_idx != 0)
2140 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01002141#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002142 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02002143 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002144
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002145#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2146 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002147 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02002148 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002149 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002150 if (cursor == 0) { /* otherwise it may be bogus */
2151 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002152 /*
2153 * Is col > cmdedit_prmt_len?
2154 * If yes (terminal says cursor is farther to the right
2155 * of where we think it should be),
2156 * the prompt wasn't printed starting at col 1,
2157 * there was additional text before it.
2158 */
2159 if ((int)(col - cmdedit_prmt_len) > 0) {
2160 /* Fix our understanding of current x position */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002161 cmdedit_x += (col - cmdedit_prmt_len);
2162 while (cmdedit_x >= cmdedit_termw) {
2163 cmdedit_x -= cmdedit_termw;
2164 cmdedit_y++;
2165 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02002166 }
2167 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002168 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02002169 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002170#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002171
Denys Vlasenko19158a82010-03-26 14:06:56 +01002172#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002173 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002174 wchar_t wc;
2175
2176 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002177 break;
2178 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002179
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002180 unicode_buf[unicode_idx++] = ic;
2181 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002182 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2183 /* Not (yet?) a valid unicode char */
2184 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002185 timeout = 50;
2186 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002187 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002188 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002189 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002190 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002191# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002192 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002193# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002194 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002195# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002196 } else {
2197 /* Valid unicode char, return its code */
2198 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002199 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002200 }
2201#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002202 break;
2203 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002204
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002205 return ic;
2206}
2207
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002208#if ENABLE_UNICODE_BIDI_SUPPORT
2209static int isrtl_str(void)
2210{
2211 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002212
2213 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002214 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002215 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002216}
2217#else
2218# define isrtl_str() 0
2219#endif
2220
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002221/* leave out the "vi-mode"-only case labels if vi editing isn't
2222 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002223#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002224
2225/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002226#undef CTRL
2227#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002228
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002229enum {
2230 VI_CMDMODE_BIT = 0x40000000,
2231 /* 0x80000000 bit flags KEYCODE_xxx */
2232};
2233
2234#if ENABLE_FEATURE_REVERSE_SEARCH
2235/* Mimic readline Ctrl-R reverse history search.
2236 * When invoked, it shows the following prompt:
2237 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2238 * and typing results in search being performed:
2239 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2240 * Search is performed by looking at progressively older lines in history.
2241 * Ctrl-R again searches for the next match in history.
2242 * Backspace deletes last matched char.
2243 * Control keys exit search and return to normal editing (at current history line).
2244 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002245static int32_t reverse_i_search(int timeout)
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002246{
2247 char match_buf[128]; /* for user input */
2248 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2249 const char *matched_history_line;
2250 const char *saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002251 unsigned saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002252 int32_t ic;
2253
2254 matched_history_line = NULL;
2255 read_key_buffer[0] = 0;
2256 match_buf[0] = '\0';
2257
2258 /* Save and replace the prompt */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002259 saved_prompt = prompt_last_line;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002260 saved_prmt_len = cmdedit_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002261 goto set_prompt;
2262
2263 while (1) {
2264 int h;
2265 unsigned match_buf_len = strlen(match_buf);
2266
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002267//FIXME: correct timeout? (i.e. count it down?)
2268 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002269
2270 switch (ic) {
2271 case CTRL('R'): /* searching for the next match */
2272 break;
2273
2274 case '\b':
2275 case '\x7f':
2276 /* Backspace */
2277 if (unicode_status == UNICODE_ON) {
2278 while (match_buf_len != 0) {
2279 uint8_t c = match_buf[--match_buf_len];
2280 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2281 break; /* yes */
2282 }
2283 } else {
2284 if (match_buf_len != 0)
2285 match_buf_len--;
2286 }
2287 match_buf[match_buf_len] = '\0';
2288 break;
2289
2290 default:
2291 if (ic < ' '
2292 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2293 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2294 ) {
2295 goto ret;
2296 }
2297
2298 /* Append this char */
Denys Vlasenko627821e2021-09-25 19:36:35 +02002299# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002300 if (unicode_status == UNICODE_ON) {
2301 mbstate_t mbstate = { 0 };
2302 char buf[MB_CUR_MAX + 1];
2303 int len = wcrtomb(buf, ic, &mbstate);
2304 if (len > 0) {
2305 buf[len] = '\0';
2306 if (match_buf_len + len < sizeof(match_buf))
2307 strcpy(match_buf + match_buf_len, buf);
2308 }
2309 } else
Denys Vlasenko627821e2021-09-25 19:36:35 +02002310# endif
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002311 if (match_buf_len < sizeof(match_buf) - 1) {
2312 match_buf[match_buf_len] = ic;
2313 match_buf[match_buf_len + 1] = '\0';
2314 }
2315 break;
2316 } /* switch (ic) */
2317
2318 /* Search in history for match_buf */
2319 h = state->cur_history;
2320 if (ic == CTRL('R'))
2321 h--;
2322 while (h >= 0) {
2323 if (state->history[h]) {
2324 char *match = strstr(state->history[h], match_buf);
2325 if (match) {
2326 state->cur_history = h;
2327 matched_history_line = state->history[h];
2328 command_len = load_string(matched_history_line);
2329 cursor = match - matched_history_line;
2330//FIXME: cursor position for Unicode case
2331
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002332 free((char*)prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002333 set_prompt:
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002334 prompt_last_line = xasprintf("(reverse-i-search)'%s': ", match_buf);
2335 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002336 goto do_redraw;
2337 }
2338 }
2339 h--;
2340 }
2341
2342 /* Not found */
2343 match_buf[match_buf_len] = '\0';
2344 beep();
2345 continue;
2346
2347 do_redraw:
2348 redraw(cmdedit_y, command_len - cursor);
2349 } /* while (1) */
2350
2351 ret:
2352 if (matched_history_line)
2353 command_len = load_string(matched_history_line);
2354
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002355 free((char*)prompt_last_line);
2356 prompt_last_line = saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002357 cmdedit_prmt_len = saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002358 redraw(cmdedit_y, command_len - cursor);
2359
2360 return ic;
2361}
Denys Vlasenko627821e2021-09-25 19:36:35 +02002362#endif /* ENABLE_FEATURE_REVERSE_SEARCH */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002363
Denys Vlasenko23427a62018-12-08 15:45:46 +01002364#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002365static void sigaction2(int sig, struct sigaction *act)
2366{
2367 // Grr... gcc 8.1.1:
2368 // "passing argument 3 to restrict-qualified parameter aliases with argument 2"
2369 // dance around that...
2370 struct sigaction *oact FIX_ALIASING;
2371 oact = act;
2372 sigaction(sig, act, oact);
2373}
Denys Vlasenko23427a62018-12-08 15:45:46 +01002374#endif
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002375
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002376/* maxsize must be >= 2.
2377 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002378 * -1 on read errors or EOF, or on bare Ctrl-D,
2379 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002380 * (in both cases the cursor remains on the input line, '\n' is not printed)
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002381 * >0 length of input string, including terminating '\n'
2382 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002383int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize)
Erik Andersen13456d12000-03-16 08:09:57 +00002384{
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002385 int len, n;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002386 int timeout;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002387#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002388 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002389#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002390 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002391#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002392 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002393#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002394 struct termios initial_settings;
2395 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002396 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002397
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002398 INIT_S();
Denys Vlasenko96717d92020-12-21 22:50:23 +01002399 //command_len = 0; - done by INIT_S()
2400 //cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
2401 cmdedit_termw = 80;
2402 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;)
2403 IF_FEATURE_EDITING_VI(delptr = delbuf;)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002404
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002405 n = get_termios_and_make_raw(STDIN_FILENO, &new_settings, &initial_settings, 0
2406 | TERMIOS_CLEAR_ISIG /* turn off INTR (ctrl-C), QUIT, SUSP */
2407 );
2408 if (n != 0 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON) {
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002409 /* Happens when e.g. stty -echo was run before.
2410 * But if ICANON is not set, we don't come here.
2411 * (example: interactive python ^Z-backgrounded,
2412 * tty is still in "raw mode").
2413 */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002414 parse_and_put_prompt(prompt);
Denys Vlasenko038a9772016-11-28 01:10:16 +01002415 fflush_all();
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002416 if (fgets(command, maxsize, stdin) == NULL)
2417 len = -1; /* EOF or error */
2418 else
2419 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002420 DEINIT_S();
2421 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002422 }
2423
Denys Vlasenko28055022010-01-04 20:49:58 +01002424 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002425
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002426// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002427 if (maxsize > MAX_LINELEN)
2428 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002429 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002430
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002431 timeout = -1;
2432 /* Make state->flags == 0 if st is NULL.
2433 * With zeroed flags, no other fields are ever referenced.
2434 */
2435 state = (line_input_t*) &const_int_0;
2436 if (st) {
2437 state = st;
2438 timeout = st->timeout;
2439 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002440#if MAX_HISTORY > 0
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002441 if (state->flags & DO_HISTORY) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002442# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002443 if (state->hist_file)
2444 if (state->cnt_history == 0)
2445 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002446# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002447 state->cur_history = state->cnt_history;
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002448 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002449#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002450
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002451 /* prepare before init handlers */
Denys Vlasenko19158a82010-03-26 14:06:56 +01002452#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002453 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2454#else
Mark Whitley4e338752001-01-26 20:42:23 +00002455 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002456 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002457#endif
2458#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002459
Denis Vlasenko202ac502008-11-05 13:20:58 +00002460 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002461
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002462#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002463 {
2464 struct passwd *entry;
2465
2466 entry = getpwuid(geteuid());
2467 if (entry) {
2468 user_buf = xstrdup(entry->pw_name);
2469 home_pwd_buf = xstrdup(entry->pw_dir);
2470 }
2471 }
2472#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002473
2474#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002475 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002476 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002477 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2478#endif
2479
Denys Vlasenko0a677222017-11-08 13:38:12 +01002480 /* Get width (before printing prompt) */
2481 cmdedit_termw = get_terminal_width(STDIN_FILENO);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002482 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002483 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002484 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002485
Ron Yorston23286902018-02-25 20:09:54 +01002486#if ENABLE_FEATURE_EDITING_WINCH
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002487 /* Install window resize handler (NB: after *all* init is complete) */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002488 S.SIGWINCH_handler.sa_handler = win_changed;
2489 S.SIGWINCH_handler.sa_flags = SA_RESTART;
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002490 sigaction2(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002491#endif
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002492 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002493 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002494 /*
2495 * The emacs and vi modes share much of the code in the big
2496 * command loop. Commands entered when in vi's command mode
2497 * (aka "escape mode") get an extra bit added to distinguish
2498 * them - this keeps them from being self-inserted. This
2499 * clutters the big switch a bit, but keeps all the code
2500 * in one place.
2501 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002502 int32_t ic, ic_raw;
Ron Yorston23286902018-02-25 20:09:54 +01002503#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002504 unsigned count;
2505
2506 count = S.SIGWINCH_count;
2507 if (S.SIGWINCH_saved != count) {
2508 S.SIGWINCH_saved = count;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002509 cmdedit_setwidth();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002510 }
Ron Yorston23286902018-02-25 20:09:54 +01002511#endif
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002512 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002513
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002514#if ENABLE_FEATURE_REVERSE_SEARCH
2515 again:
2516#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002517#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002518 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002519 if (vi_cmdmode) {
2520 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2521 * change ic if it contains one of them: */
2522 ic |= VI_CMDMODE_BIT;
2523 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002524#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002525
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002526 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002527 case '\n':
2528 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002529 vi_case('\n'|VI_CMDMODE_BIT:)
2530 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002531 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002532 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002533 break_out = 1;
2534 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002535 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002536 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002537 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002538 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002539 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002540 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002541 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002542 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002543 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002544 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002545 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002546 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002547 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002548 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002549 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002550 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002551 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002552 vi_case('l'|VI_CMDMODE_BIT:)
2553 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002554 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002555 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002556 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002557 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002558 if (!isrtl_str())
2559 input_backspace();
2560 else
2561 input_delete(0);
2562 break;
2563 case KEYCODE_DELETE:
2564 if (!isrtl_str())
2565 input_delete(0);
2566 else
2567 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002568 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002569#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002570 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002571 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002572 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002573#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002574 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002575 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002576 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002577 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002578 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002579 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002580 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002581 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002582 /* Control-l -- clear screen */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002583 /* cursor to top,left; clear to the end of screen */
2584 printf(ESC"[H" ESC"[J");
2585 draw_full(command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002586 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002587#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002588 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002589 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2590 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002591 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002592 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002593 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002594 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002595 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002596 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2597 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002598 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002599 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002600 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002601 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002602#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002603 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002604 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002605 /* Control-U -- Clear line before cursor */
2606 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002607 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002608 memmove(command_ps, command_ps + cursor,
2609 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002610 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002611 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002612 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002613 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002614 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002615 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002616 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002617 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002618 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002619 input_backspace();
2620 break;
Rostislav Skudnov2e4ef382016-11-24 15:04:00 +01002621 case KEYCODE_ALT_D: {
2622 /* Delete word forward */
2623 int nc, sc = cursor;
2624 ctrl_right();
2625 nc = cursor - sc;
2626 input_backward(nc);
2627 while (--nc >= 0)
2628 input_delete(1);
2629 break;
2630 }
2631 case KEYCODE_ALT_BACKSPACE: {
2632 /* Delete word backward */
2633 int sc = cursor;
2634 ctrl_left();
2635 while (sc-- > cursor)
2636 input_delete(1);
2637 break;
2638 }
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002639#if ENABLE_FEATURE_REVERSE_SEARCH
2640 case CTRL('R'):
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002641 ic = ic_raw = reverse_i_search(timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002642 goto again;
2643#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002644
Denis Vlasenko38f63192007-01-22 09:03:07 +00002645#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002646 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002647 vi_cmdmode = 0;
2648 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002649 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002650 input_backward(cursor);
2651 vi_cmdmode = 0;
2652 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002653 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002654 input_forward();
2655 vi_cmdmode = 0;
2656 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002657 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002658 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002659 vi_cmdmode = 0;
2660 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002661 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002662 input_delete(1);
2663 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002664 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002665 if (cursor > 0) {
2666 input_backward(1);
2667 input_delete(1);
2668 }
2669 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002670 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002671 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002672 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002673 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002674 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002675 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002676 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002677 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002678 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002679 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002680 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002681 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002682 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002683 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002684 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002685 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002686 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002687 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002688 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002689 vi_cmdmode = 0;
2690 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002691 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002692 goto clear_to_eol;
2693
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002694 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002695 vi_cmdmode = 0;
2696 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002697 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002698 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002699
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002700 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002701 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002702 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002703 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002704 input_backward(cursor);
2705 goto clear_to_eol;
2706 break;
2707 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002708
2709 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002710 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002711 case 'w':
2712 case 'W':
2713 case 'e':
2714 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002715 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002716 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002717 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002718 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002719 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002720 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002721 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002722 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002723 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002724 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002725 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002726 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002727 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002728 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002729 break;
2730 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002731 nc = cursor;
2732 input_backward(cursor - sc);
2733 while (nc-- > cursor)
2734 input_delete(1);
2735 break;
2736 case 'b': /* "db", "cb" */
2737 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002738 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002739 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002740 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002741 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002742 while (sc-- > cursor)
2743 input_delete(1);
2744 break;
2745 case ' ': /* "d ", "c " */
2746 input_delete(1);
2747 break;
2748 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002749 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002750 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002751 input_delete(1);
2752 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002753 }
2754 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002755 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002756 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002757 input_forward();
2758 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002759 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002760 put();
2761 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002762 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002763//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002764 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002765 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002766 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002767 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002768 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002769 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002770 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002771 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002772 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002773 }
2774 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002775 case '\x1b': /* ESC */
2776 if (state->flags & VI_MODE) {
2777 /* insert mode --> command mode */
2778 vi_cmdmode = 1;
2779 input_backward(1);
2780 }
2781 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002782#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002783
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002784#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002785 case KEYCODE_UP:
2786 if (get_previous_history())
2787 goto rewrite_line;
2788 beep();
2789 break;
2790 case KEYCODE_DOWN:
2791 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002792 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002793 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002794 /* Rewrite the line with the selected history item */
2795 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002796 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002797 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002798 /* redraw and go to eol (bol, in vi) */
2799 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2800 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002801#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002802 case KEYCODE_RIGHT:
2803 input_forward();
2804 break;
2805 case KEYCODE_LEFT:
2806 input_backward(1);
2807 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002808 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002809 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002810 ctrl_left();
2811 break;
2812 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002813 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002814 ctrl_right();
2815 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002816 case KEYCODE_HOME:
2817 input_backward(cursor);
2818 break;
2819 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002820 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002821 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002822
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002823 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002824 if (initial_settings.c_cc[VINTR] != 0
2825 && ic_raw == initial_settings.c_cc[VINTR]
2826 ) {
2827 /* Ctrl-C (usually) - stop gathering input */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002828 command_len = 0;
2829 break_out = -1; /* "do not append '\n'" */
2830 break;
2831 }
2832 if (initial_settings.c_cc[VEOF] != 0
2833 && ic_raw == initial_settings.c_cc[VEOF]
2834 ) {
2835 /* Ctrl-D (usually) - delete one character,
2836 * or exit if len=0 and no chars to delete */
2837 if (command_len == 0) {
2838 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002839
2840 case -1: /* error (e.g. EIO when tty is destroyed) */
2841 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002842 break_out = command_len = -1;
2843 break;
2844 }
2845 input_delete(0);
2846 break;
2847 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002848// /* Control-V -- force insert of next char */
2849// if (c == CTRL('V')) {
2850// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002851// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002852// if (c == 0) {
2853// beep();
2854// break;
2855// }
2856// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002857 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002858 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2859 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002860 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002861 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002862 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002863 * Otherwise, we are here if ic is a
2864 * control char or an unhandled ESC sequence,
2865 * which is also ignored.
2866 */
2867 break;
2868 }
2869 if ((int)command_len >= (maxsize - 2)) {
2870 /* Not enough space for the char and EOL */
2871 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002872 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002873
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002874 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002875 if (cursor == (command_len - 1)) {
2876 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002877 command_ps[cursor] = ic;
2878 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002879 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002880 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002881 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002882 } else {
2883 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002884 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002885
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002886 memmove(command_ps + sc + 1, command_ps + sc,
2887 (command_len - sc) * sizeof(command_ps[0]));
2888 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002889 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2890 if (!isrtl_str())
2891 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002892 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002893 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002894 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002895 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002896 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002897 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002898
2899 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002900 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002901
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002902#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002903 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002904 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002905#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002906 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002907
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002908#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002909 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002910 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2911 * We sent "ESC [ 6 n", but got '\n' first, and
2912 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2913 * It's bad already and not much can be done with it
2914 * (it _will_ be visible for the next process to read stdin),
2915 * but without this delay it even shows up on the screen
2916 * as garbage because we restore echo settings with tcsetattr
2917 * before it comes in. UGLY!
2918 */
2919 usleep(20*1000);
Denys Vlasenkofae73322020-12-21 21:55:03 +01002920// MAYBE? tcflush(STDIN_FILENO, TCIFLUSH); /* flushes data received but not read */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002921 }
2922#endif
2923
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002924/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002925#undef command
2926
Denys Vlasenko19158a82010-03-26 14:06:56 +01002927#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002928 command[0] = '\0';
2929 if (command_len > 0)
2930 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002931 free(command_ps);
2932#endif
2933
Flemming Madsend96ffda2013-04-07 18:47:24 +02002934 if (command_len > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002935 remember_in_history(command);
Flemming Madsend96ffda2013-04-07 18:47:24 +02002936 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002937
Eric Andersen27bb7902003-12-23 20:24:51 +00002938 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002939 command[command_len++] = '\n';
2940 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002941 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002942
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002943#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002944 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002945#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002946
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002947 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002948 tcsetattr_stdin_TCSANOW(&initial_settings);
Ron Yorston23286902018-02-25 20:09:54 +01002949#if ENABLE_FEATURE_EDITING_WINCH
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002950 /* restore SIGWINCH handler */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002951 sigaction_set(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002952#endif
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002953 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002954
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002955 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002956 DEINIT_S();
2957
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002958 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002959}
2960
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002961#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002962
2963#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002964int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002965{
Ron Yorstoncad3fc72021-02-03 20:47:14 +01002966 fputs_stdout(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002967 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002968 if (!fgets(command, maxsize, stdin))
2969 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002970 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002971}
2972
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002973#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002974
2975
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002976/*
2977 * Testing
2978 */
2979
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002980#ifdef TEST
2981
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002982#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002983
2984const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002985
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002986int main(int argc, char **argv)
2987{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002988 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002989 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002990#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002991 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2992 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
Denys Vlasenko8187e012017-09-13 22:48:30 +02002993 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002994#else
2995 "% ";
2996#endif
2997
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002998 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002999 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003000 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00003001 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00003002 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02003003 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003004 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00003005 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003006 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003007 return 0;
3008}
3009
Eric Andersenc470f442003-07-28 09:56:35 +00003010#endif /* TEST */