blob: e8d721e612a5d7acb29fba8232561c73ce1413c6 [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 */
195extern struct lineedit_statics *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 { \
Denys Vlasenkoaf7169b2019-10-25 12:12:22 +0200217 (*(struct lineedit_statics**)not_const_pp(&lineedit_ptr_to_statics)) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000218 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000219} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200220
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000221static void deinit_S(void)
222{
223#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000224 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200225 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000226 free((char*)cmdedit_prompt);
227#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200228#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000229 free(user_buf);
230 if (home_pwd_buf != null_str)
231 free(home_pwd_buf);
232#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000233 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000234}
235#define DEINIT_S() deinit_S()
236
Denis Vlasenko2c844952008-04-25 18:44:35 +0000237
Denys Vlasenko19158a82010-03-26 14:06:56 +0100238#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200239static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200240{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100241 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200242 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100243 if (len < 0)
244 len = 0;
245 command_ps[len] = BB_NUL;
246 return len;
247 } else {
248 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200249 while (src[i] && i < S.maxsize - 1) {
250 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100251 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200252 }
253 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100254 return i;
255 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200256}
Tomas Heinricha659b812010-04-29 13:43:39 +0200257static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200258{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100259 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200260# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100261 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
262 if (len < 0)
263 len = 0;
264 dst[len] = '\0';
265 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200266# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100267 unsigned dstpos = 0;
268 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200269
Denys Vlasenko353680a2011-03-27 01:18:07 +0100270 maxsize--;
271 while (dstpos < maxsize) {
272 wchar_t wc;
273 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200274
Denys Vlasenko353680a2011-03-27 01:18:07 +0100275 /* Convert up to 1st invalid byte (or up to end) */
276 while ((wc = command_ps[srcpos]) != BB_NUL
277 && !unicode_is_raw_byte(wc)
278 ) {
279 srcpos++;
280 }
281 command_ps[srcpos] = BB_NUL;
282 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
283 if (n < 0) /* should not happen */
284 break;
285 dstpos += n;
286 if (wc == BB_NUL) /* usually is */
287 break;
288
289 /* We do have invalid byte here! */
290 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200291 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100292 if (dstpos == maxsize)
293 break;
294 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200295 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100296 dst[dstpos] = '\0';
297 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200298# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100299 } else {
300 unsigned i = 0;
301 while ((dst[i] = command_ps[i]) != 0)
302 i++;
303 return i;
304 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200305}
306/* I thought just fputwc(c, stdout) would work. But no... */
307static void BB_PUTCHAR(wchar_t c)
308{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100309 if (unicode_status == UNICODE_ON) {
310 char buf[MB_CUR_MAX + 1];
311 mbstate_t mbst = { 0 };
312 ssize_t len = wcrtomb(buf, c, &mbst);
313 if (len > 0) {
314 buf[len] = '\0';
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100315 fputs_stdout(buf);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100316 }
317 } else {
318 /* In this case, c is always one byte */
319 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200320 }
321}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200322# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
323static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
324# else
325static wchar_t adjust_width_and_validate_wc(wchar_t wc)
326# define adjust_width_and_validate_wc(width_adj, wc) \
327 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
328# endif
329{
330 int w = 1;
331
332 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200333 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
334 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200335 goto subst;
336 }
337 w = wcwidth(wc);
338 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
339 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
340 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
341 ) {
342 subst:
343 w = 1;
344 wc = CONFIG_SUBST_WCHAR;
345 }
346 }
347
348# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
349 *width_adj += w;
350#endif
351 return wc;
352}
353#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200354static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200355{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200356 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200357 return strlen(command_ps);
358}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200359# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200360static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200361{
362 safe_strncpy(dst, command_ps, maxsize);
363}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200364# endif
365# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200366/* Should never be called: */
367int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200368#endif
369
370
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000371/* Put 'command_ps[cursor]', cursor++.
372 * Advance cursor on screen. If we reached right margin, scroll text up
373 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000374#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200375static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000376{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200377 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200378 unsigned width = 0;
379 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000380
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200381 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000382 /* erase character after end of input string */
383 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200384 } else {
385 /* advance cursor only if we aren't at the end yet */
386 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200387 if (unicode_status == UNICODE_ON) {
388 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
389 c = adjust_width_and_validate_wc(&cmdedit_x, c);
390 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
391 } else {
392 cmdedit_x++;
393 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000394 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200395
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200396 ofs_to_right = cmdedit_x - cmdedit_termw;
397 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
398 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200399 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000400 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200401
402 if (ofs_to_right >= 0) {
403 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000404#if HACK_FOR_WRONG_WIDTH
405 /* This works better if our idea of term width is wrong
406 * and it is actually wider (often happens on serial lines).
407 * Printing CR,LF *forces* cursor to next line.
408 * OTOH if terminal width is correct AND terminal does NOT
409 * have automargin (IOW: it is moving cursor to next line
410 * by itself (which is wrong for VT-10x terminals)),
411 * this will break things: there will be one extra empty line */
412 puts("\r"); /* + implicit '\n' */
413#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200414 /* VT-10x terminals don't wrap cursor to next line when last char
415 * on the line is printed - cursor stays "over" this char.
416 * Need to print _next_ char too (first one to appear on next line)
417 * to make cursor move down to next line.
418 */
419 /* Works ok only if cmdedit_termw is correct. */
420 c = command_ps[cursor];
421 if (c == BB_NUL)
422 c = ' ';
423 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000424 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000425#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200426 cmdedit_y++;
427 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
428 width = 0;
429 } else { /* ofs_to_right > 0 */
430 /* wide char c didn't fit on prev line */
431 BB_PUTCHAR(c);
432 }
433 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000434 }
Erik Andersen13456d12000-03-16 08:09:57 +0000435}
436
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000437/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200438static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000439{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000440 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200441 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000442}
443
444/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000445static void goto_new_line(void)
446{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200447 put_till_end_and_adv_cursor();
Denys Vlasenkof5018da2018-04-06 17:58:21 +0200448 /* "cursor == 0" is only if prompt is "" and user input is empty */
449 if (cursor == 0 || cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000450 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000451}
452
Rob Landley88621d72006-08-29 19:41:06 +0000453static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000454{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000455 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000456}
457
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200458/* Full or last/sole prompt line, reset edit cursor, calculate terminal cursor.
459 * cmdedit_y is always calculated for the last/sole prompt line.
460 */
461static void put_prompt_custom(bool is_full)
Denys Vlasenko248c3242010-05-17 00:45:44 +0200462{
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100463 fputs_stdout((is_full ? cmdedit_prompt : prompt_last_line));
Denys Vlasenko248c3242010-05-17 00:45:44 +0200464 cursor = 0;
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100465 cmdedit_y = cmdedit_prmt_len / cmdedit_termw; /* new quasireal y */
466 cmdedit_x = cmdedit_prmt_len % cmdedit_termw;
Denys Vlasenko248c3242010-05-17 00:45:44 +0200467}
468
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200469#define put_prompt_last_line() put_prompt_custom(0)
470#define put_prompt() put_prompt_custom(1)
471
Eric Andersenaff114c2004-04-14 17:51:38 +0000472/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000473/* (optimized for slow terminals) */
474static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000475{
476 if (num > cursor)
477 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200478 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000479 return;
480 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000481
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200482 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
483 && unicode_status == UNICODE_ON
484 ) {
485 /* correct NUM to be equal to _screen_ width */
486 int n = num;
487 num = 0;
488 while (--n >= 0)
489 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
490 if (num == 0)
491 return;
492 }
493
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000494 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000495 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000496 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000497 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000498 * Also gets miscompiled for ARM users
499 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000500 * printf(("\b\b\b\b" + 4) - num);
501 * return;
502 */
503 do {
504 bb_putchar('\b');
505 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000506 return;
507 }
Marek Polacek7b181072010-10-28 21:34:56 +0200508 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000509 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000510 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000511
512 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200513 if (ENABLE_UNICODE_WIDE_WCHARS) {
514 /* With wide chars, it is hard to "backtrack"
515 * and reliably figure out where to put cursor.
516 * Example (<> is a wide char; # is an ordinary char, _ cursor):
517 * |prompt: <><> |
518 * |<><><><><><> |
519 * |_ |
520 * and user presses left arrow. num = 1, cmdedit_x = 0,
521 * We need to go up one line, and then - how do we know that
522 * we need to go *10* positions to the right? Because
523 * |prompt: <>#<>|
524 * |<><><>#<><><>|
525 * |_ |
526 * in this situation we need to go *11* positions to the right.
527 *
528 * A simpler thing to do is to redraw everything from the start
529 * up to new cursor position (which is already known):
530 */
531 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200532 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200533 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200534 cmdedit_y = 0;
535 sv_cursor = cursor;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200536 put_prompt_last_line(); /* sets cursor to 0 */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200537 while (cursor < sv_cursor)
538 put_cur_glyph_and_inc_cursor();
539 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200540 int lines_up;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200541 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200542 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200543 /* num=1...w: one line up, w+1...2w: two, etc: */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100544 lines_up = 1 + (num - 1) / cmdedit_termw;
545 cmdedit_x = (cmdedit_termw * cmdedit_y - num) % cmdedit_termw;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200546 cmdedit_y -= lines_up;
547 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200548 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200549 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200550 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
551 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200552 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200553 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000554 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000555}
556
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200557/* See redraw and draw_full below */
558static void draw_custom(int y, int back_cursor, bool is_full)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000559{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200560 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200561 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000562 bb_putchar('\r');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200563 put_prompt_custom(is_full);
Denys Vlasenko94043e82010-05-11 14:49:13 +0200564 put_till_end_and_adv_cursor();
565 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000566 input_backward(back_cursor);
567}
568
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200569/* Move y lines up, draw last/sole prompt line, editor line[s], and clear tail.
570 * goal: redraw the prompt+input+cursor in-place, overwriting the previous */
571#define redraw(y, back_cursor) draw_custom((y), (back_cursor), 0)
572
573/* Like above, but without moving up, and while using all the prompt lines.
574 * goal: draw a full prompt+input+cursor unrelated to a previous position.
575 * note: cmdedit_y always ends up relating to the last/sole prompt line */
576#define draw_full(back_cursor) draw_custom(0, (back_cursor), 1)
577
Paul Fox3f11b1b2005-08-04 19:04:46 +0000578/* Delete the char in front of the cursor, optionally saving it
579 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000580#if !ENABLE_FEATURE_EDITING_VI
581static void input_delete(void)
582#define input_delete(save) input_delete()
583#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000584static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000585#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000586{
Mark Whitley4e338752001-01-26 20:42:23 +0000587 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000588
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000589 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000590 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000591
Denis Vlasenko38f63192007-01-22 09:03:07 +0000592#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000593 if (save) {
594 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000595 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000596 newdelflag = 0;
597 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000598 if ((delptr - delbuf) < DELBUFSIZ)
599 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000600 }
601#endif
602
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200603 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200604 /* (command_len + 1 [because of NUL]) - (j + 1)
605 * simplified into (command_len - j) */
606 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000607 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200608 put_till_end_and_adv_cursor();
609 /* Last char is still visible, erase it (and more) */
610 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000611 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000612}
613
Denis Vlasenko38f63192007-01-22 09:03:07 +0000614#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000615static void put(void)
616{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000617 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000618 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000619
Paul Fox3f11b1b2005-08-04 19:04:46 +0000620 if (j == 0)
621 return;
622 ocursor = cursor;
623 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200624 memmove(command_ps + cursor + j, command_ps + cursor,
625 (command_len - cursor + 1) * sizeof(command_ps[0]));
626 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000627 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200628 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000629 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000630}
631#endif
632
Mark Whitley4e338752001-01-26 20:42:23 +0000633/* Delete the char in back of the cursor */
634static void input_backspace(void)
635{
636 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000637 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000638 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000639 }
640}
641
Eric Andersenaff114c2004-04-14 17:51:38 +0000642/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000643static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000644{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000645 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200646 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000647}
648
Denis Vlasenko38f63192007-01-22 09:03:07 +0000649#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000650
Mike Shalf3763032010-11-22 03:49:18 +0100651//FIXME:
652//needs to be more clever: currently it thinks that "foo\ b<TAB>
653//matches the file named "foo bar", which is untrue.
654//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
655//not "foo bar <cursor>...
656
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000657static void free_tab_completion_data(void)
658{
659 if (matches) {
660 while (num_matches)
661 free(matches[--num_matches]);
662 free(matches);
663 matches = NULL;
664 }
665}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000666
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000667static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000668{
Denys Vlasenkoc3797d42017-11-07 18:09:29 +0100669 unsigned char *p = (unsigned char*)matched;
670 while (*p) {
671 /* ESC attack fix: drop any string with control chars */
672 if (*p < ' '
673 || (!ENABLE_UNICODE_SUPPORT && *p >= 0x7f)
674 || (ENABLE_UNICODE_SUPPORT && *p == 0x7f)
675 ) {
676 free(matched);
677 return;
678 }
679 p++;
680 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000681 matches = xrealloc_vector(matches, 4, num_matches);
682 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000683 num_matches++;
684}
685
Mike Shalf3763032010-11-22 03:49:18 +0100686# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200687/* Replace "~user/..." with "/homedir/...".
688 * The parameter is malloced, free it or return it
689 * unchanged if no user is matched.
690 */
691static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000692{
693 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200694 char *tilde_name = ud;
695 char *home = NULL;
696
697 ud++; /* skip ~ */
698 if (*ud == '/') { /* "~/..." */
699 home = home_pwd_buf;
700 } else {
701 /* "~user/..." */
702 ud = strchr(ud, '/');
703 *ud = '\0'; /* "~user" */
704 entry = getpwnam(tilde_name + 1);
705 *ud = '/'; /* restore "~user/..." */
706 if (entry)
707 home = entry->pw_dir;
708 }
709 if (home) {
710 ud = concat_path_file(home, ud);
711 free(tilde_name);
712 tilde_name = ud;
713 }
714 return tilde_name;
715}
716
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200717/* ~use<tab> - find all users with this prefix.
718 * Return the length of the prefix used for matching.
719 */
720static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200721{
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100722 struct passwd *pw;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200723 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000724
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200725 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000726 userlen = strlen(ud);
727
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200728 setpwent();
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100729 while ((pw = getpwent()) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200730 /* Null usernames should result in all users as possible completions. */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100731 if (/* !ud[0] || */ is_prefixed_with(pw->pw_name, ud)) {
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100732 add_match(xasprintf("~%s/", pw->pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000733 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000734 }
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100735 endpwent(); /* don't keep password file open */
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200736
737 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000738}
Mike Shalf3763032010-11-22 03:49:18 +0100739# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000740
741enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000742 FIND_EXE_ONLY = 0,
743 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000744 FIND_FILE_ONLY = 2,
745};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000746
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100747static unsigned path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000748{
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100749 unsigned npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000750 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000751 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000752 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000753
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100754# if EDITING_HAS_path_lookup
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000755 if (state->flags & WITH_PATH_LOOKUP)
756 pth = state->path_lookup;
757 else
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100758# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000759 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200760
761 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000762 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
763 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000764
Denis Vlasenko253ce002007-01-22 08:34:44 +0000765 tmp = (char*)pth;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100766 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000767 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000768 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000769 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000770 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200771 tmp++;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000772 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000773 }
774
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100775 *p = res = xzalloc((npth + 1) * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000776 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000777 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000778 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000779 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000780 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000781 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000782 *tmp++ = '\0'; /* ':' -> '\0' */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000783 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000784 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100785 /* special case: "match subdirectories of the current directory" */
786 /*res[npth++] = NULL; - filled by xzalloc() */
Mark Whitley4e338752001-01-26 20:42:23 +0000787 return npth;
788}
789
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200790/* Complete command, directory or file name.
791 * Return the length of the prefix used for matching.
792 */
793static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000794{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000795 char *path1[1];
796 char **paths = path1;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100797 unsigned npaths;
798 unsigned i;
799 unsigned baselen;
800 const char *basecmd;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200801 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000802
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000803 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000804 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000805
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100806 basecmd = strrchr(command, '/');
807 if (!basecmd) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200808 if (type == FIND_EXE_ONLY)
809 npaths = path_parse(&paths);
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100810 basecmd = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000811 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000812 /* point to 'l' in "..../last_component" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100813 basecmd++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200814 /* dirbuf = ".../.../.../" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100815 dirbuf = xstrndup(command, basecmd - command);
Mike Shalf3763032010-11-22 03:49:18 +0100816# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200817 if (dirbuf[0] == '~') /* ~/... or ~user/... */
818 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100819# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200820 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000821 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100822 baselen = strlen(basecmd);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000823
Denys Vlasenko13360522016-10-24 01:25:05 +0200824 if (type == FIND_EXE_ONLY && !dirbuf) {
Ron Yorston9e2a5662020-01-21 16:01:58 +0000825# if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
Ron Yorston37788982018-11-17 17:48:14 +0000826 const char *p = applet_names;
Ron Yorston2b919582016-04-08 11:57:20 +0100827 while (*p) {
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100828 if (strncmp(basecmd, p, baselen) == 0)
Ron Yorstonf23264b2015-05-29 11:31:40 +0100829 add_match(xstrdup(p));
Ron Yorston37788982018-11-17 17:48:14 +0000830 while (*p++ != '\0')
Ron Yorston2b919582016-04-08 11:57:20 +0100831 continue;
Ron Yorstonf23264b2015-05-29 11:31:40 +0100832 }
Denys Vlasenkof128bdb2017-07-29 00:59:24 +0200833# endif
Ron Yorston9e2a5662020-01-21 16:01:58 +0000834# if EDITING_HAS_get_exe_name
835 if (state->get_exe_name) {
836 i = 0;
837 for (;;) {
838 const char *b = state->get_exe_name(i++);
839 if (!b)
840 break;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100841 if (strncmp(basecmd, b, baselen) == 0)
Ron Yorston9e2a5662020-01-21 16:01:58 +0000842 add_match(xstrdup(b));
843 }
844 }
845# endif
846 }
Ron Yorstonf23264b2015-05-29 11:31:40 +0100847
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000848 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200849 DIR *dir;
850 struct dirent *next;
851 struct stat st;
852 char *found;
Ron Yorston760b6272021-02-18 09:50:29 +0000853 const char *lpath;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200854
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100855 if (paths[i] == NULL) { /* path_parse()'s last component? */
856 /* in PATH completion, current dir's subdir names
857 * can be completions (but only subdirs, not files).
858 */
Ron Yorston8baa6432020-12-11 12:34:21 +0000859 type = FIND_DIR_ONLY;
860 paths[i] = (char *)".";
861 }
862
Ron Yorston760b6272021-02-18 09:50:29 +0000863 lpath = *paths[i] ? paths[i] : ".";
864 dir = opendir(lpath);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000865 if (!dir)
866 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000867
868 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200869 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200870 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000871
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200872 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100873 if (!basecmd[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000874 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200875 /* match? */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100876 if (strncmp(basecmd, name_found, baselen) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200877 continue; /* no */
878
Ron Yorston760b6272021-02-18 09:50:29 +0000879 found = concat_path_file(lpath, name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000880 /* NB: stat() first so that we see is it a directory;
881 * but if that fails, use lstat() so that
882 * we still match dangling links */
883 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200884 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000885
Denys Vlasenko39263632010-09-03 14:11:08 +0200886 /* Save only name */
887 len = strlen(name_found);
888 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
889 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000890
Mark Whitley4e338752001-01-26 20:42:23 +0000891 if (S_ISDIR(st.st_mode)) {
Ron Yorston8506dd62020-12-10 14:44:57 +0000892 /* skip directories if searching PATH */
893 if (type == FIND_EXE_ONLY && !dirbuf)
894 goto cont;
Denys Vlasenko39263632010-09-03 14:11:08 +0200895 /* name is a directory, add slash */
896 found[len] = '/';
897 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000898 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200899 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000900 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000901 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000902 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200903 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000904 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000905 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000906 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000907 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000908 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000909 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200910 } /* for every path */
911
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000912 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000913 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000914 free(paths);
915 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200916 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200917
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100918 return baselen;
Erik Andersen6273f652000-03-17 01:12:41 +0000919}
Erik Andersenf0657d32000-04-12 17:49:52 +0000920
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200921/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200922 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200923 * was pressed. This function looks at it, figures out what part of it
924 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200925 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200926 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200927#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200928/* Helpers: */
929/* QUOT is used on elements of int_buf[], which are bytes,
930 * not Unicode chars. Therefore it works correctly even in Unicode mode.
931 */
932#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200933static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200934{
935 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200936 if (beg == end)
937 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200938
939 while ((int_buf[beg] = int_buf[end]) != 0)
940 beg++, end++;
941
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200942 if (dbg_bmp) {
943 int i;
944 for (i = 0; int_buf[i]; i++)
945 bb_putchar((unsigned char)int_buf[i]);
946 bb_putchar('\n');
947 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200948}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200949/* Caller ensures that match_buf points to a malloced buffer
950 * big enough to hold strlen(match_buf)*2 + 2
951 */
952static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000953{
954 int i, j;
955 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200956 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000957
Denys Vlasenko76939e72010-09-03 14:09:24 +0200958 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200959
Denys Vlasenko76939e72010-09-03 14:09:24 +0200960 /* Copy in reverse order, since they overlap */
961 i = strlen(match_buf);
962 do {
963 int_buf[i] = (unsigned char)match_buf[i];
964 i--;
965 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000966
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200967 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200968 for (i = 0; int_buf[i]; i++) {
969 if (int_buf[i] == '\\') {
970 remove_chunk(int_buf, i, i + 1);
971 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000972 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200973 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200974 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200975 {
976 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200977 i = 0;
978 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200979 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200980 if (!cur)
981 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200982 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200983 if (!in_quote || (cur == in_quote)) {
984 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200985 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200986 continue;
987 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000988 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200989 if (in_quote)
990 int_buf[i] = cur | QUOT;
991 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200992 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000993 }
994
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200995 /* Remove everything up to command delimiters:
996 * ';' ';;' '&' '|' '&&' '||',
997 * but careful with '>&' '<&' '>|'
998 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000999 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001000 int cur = int_buf[i];
1001 if (cur == ';' || cur == '&' || cur == '|') {
1002 int prev = i ? int_buf[i - 1] : 0;
1003 if (cur == '&' && (prev == '>' || prev == '<')) {
1004 continue;
1005 } else if (cur == '|' && prev == '>') {
1006 continue;
1007 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001008 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001009 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001010 }
1011 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001012 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001013 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001014 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001015 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001016 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001017 /* `cmd` should count as a word:
1018 * `cmd` c<tab> should search for files c*,
1019 * not commands c*. Therefore we don't drop
1020 * `cmd` entirely, we replace it with single `.
1021 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001022 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001023 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001024 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001025 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001026 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001027 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001028 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001029 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001030 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001031 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001032
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001033 /* Remove "cmd (" and "cmd {"
1034 * Example: "if { c<tab>"
1035 * In this example, c should be matched as command pfx.
1036 */
1037 for (i = 0; int_buf[i]; i++) {
1038 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001039 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001040 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001041 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001042 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001043
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001044 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001045 for (i = 0; int_buf[i]; i++)
1046 if (int_buf[i] != ' ')
1047 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001048 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001049
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001050 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001051 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001052 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001053 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001054 if (int_buf[i] == ' '
1055 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001056 && (char)int_buf[0] == 'c'
1057 && (char)int_buf[1] == 'd'
1058 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001059 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001060 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001061 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001062 command_mode = FIND_FILE_ONLY;
1063 break;
1064 }
1065 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001066 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001067 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001068
1069 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001070 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
1071 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001072 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001073 int cur = int_buf[i];
Natanael Copa7323bca2021-04-09 17:02:00 +02001074 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&' || cur == '=') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001075 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001076 break;
1077 }
1078 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001079
Denys Vlasenko76939e72010-09-03 14:09:24 +02001080 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001081 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001082 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001083 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001084
Denys Vlasenko76939e72010-09-03 14:09:24 +02001085 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001086
1087 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001088}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001089
Glenn L McGrath4d001292003-01-06 01:11:50 +00001090/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001091 * Display by column (original idea from ls applet,
1092 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001093 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001094static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001095{
1096 int ncols, row;
1097 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001098 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001099 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001100 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001101
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001102 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001103 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001104 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001105 if (column_width < l)
1106 column_width = l;
1107 }
1108 column_width += 2; /* min space for columns */
1109 ncols = cmdedit_termw / column_width;
1110
1111 if (ncols > 1) {
1112 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001113 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001114 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001115 } else {
1116 ncols = 1;
1117 }
1118 for (row = 0; row < nrows; row++) {
1119 int n = row;
1120 int nc;
1121
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001122 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001123 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001124 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001125 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001126 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001127 if (ENABLE_UNICODE_SUPPORT)
Denys Vlasenko349d72c2018-09-30 16:56:56 +02001128 puts(printable_string(matches[n]));
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001129 else
1130 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001131 }
1132}
1133
Mike Shalf3763032010-11-22 03:49:18 +01001134static const char *is_special_char(char c)
1135{
Denys Vlasenko6d2463a2021-09-17 17:32:30 +02001136 // {: It's mandatory to escape { only if entire name is "{"
1137 // (otherwise it's not special. Example: file named "{ "
1138 // can be escaped simply as "{\ "; "{a" or "a{" need no escaping),
1139 // or if shell supports brace expansion
1140 // (ash doesn't, hush optionally does).
1141 // (): unlike {, shell treats () specially even in contexts
1142 // where they clearly are not valid (e.g. "echo )" is an error).
1143 // #: needs escaping to not start a shell comment.
1144 return strchr(" `'\"\\#$~?*[{()&;|<>", c);
1145 // Used to also have %^=+}]: but not necessary to escape?
Mike Shalf3763032010-11-22 03:49:18 +01001146}
1147
1148static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001149{
1150 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001151 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001152
1153 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001154 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001155 s[l++] = '\\';
1156 s[l++] = *found++;
1157 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001158 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001159 return s;
1160}
1161
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001162/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001163static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001164{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001165 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001166 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001167 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001168 /* Length of string used for matching */
1169 unsigned match_pfx_len = match_pfx_len;
1170 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001171# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001172 /* cursor pos in command converted to multibyte form */
1173 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001174# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001175 if (!(state->flags & TAB_COMPLETION))
1176 return;
1177
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001178 if (*lastWasTab) {
1179 /* The last char was a TAB too.
1180 * Print a list of all the available choices.
1181 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001182 if (num_matches > 0) {
1183 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001184 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001185 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001186 showfiles();
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001187 draw_full(command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001188 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001189 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001190 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001191
1192 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001193 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001194
Denys Vlasenko76939e72010-09-03 14:09:24 +02001195 /* Make a local copy of the string up to the position of the cursor.
1196 * build_match_prefix will expand it into int16_t's, need to allocate
1197 * twice as much as the string_len+1.
1198 * (we then also (ab)use this extra space later - see (**))
1199 */
1200 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001201# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001202 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001203# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001204 {
1205 CHAR_T wc = command_ps[cursor];
1206 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001207 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001208 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001209 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001210 }
Mike Shalf3763032010-11-22 03:49:18 +01001211# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001212 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001213
1214 /* Free up any memory already allocated */
1215 free_tab_completion_data();
1216
Mike Shalf3763032010-11-22 03:49:18 +01001217# if ENABLE_FEATURE_USERNAME_COMPLETION
1218 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001219 * then try completing this word as a username. */
1220 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001221 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1222 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001223# endif
1224 /* If complete_username() did not match,
1225 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001226 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001227 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001228
1229 /* Account for backslashes which will be inserted
1230 * by quote_special_chars() later */
1231 {
1232 const char *e = match_buf + strlen(match_buf);
1233 const char *s = e - match_pfx_len;
1234 while (s < e)
1235 if (is_special_char(*s++))
1236 match_pfx_len++;
1237 }
1238
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001239 /* Remove duplicates */
1240 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001241 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001242 qsort_string_vector(matches, num_matches);
1243 for (i = 0; i < num_matches - 1; ++i) {
1244 //if (matches[i] && matches[i+1]) { /* paranoia */
1245 if (strcmp(matches[i], matches[i+1]) == 0) {
1246 free(matches[i]);
1247 //matches[i] = NULL; /* paranoia */
1248 } else {
1249 matches[n++] = matches[i];
1250 }
1251 //}
1252 }
1253 matches[n++] = matches[i];
1254 num_matches = n;
1255 }
Mike Shalf3763032010-11-22 03:49:18 +01001256
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001257 /* Did we find exactly one match? */
1258 if (num_matches != 1) { /* no */
1259 char *cp;
1260 beep();
1261 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001262 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001263 /* Find common prefix */
1264 chosen_match = xstrdup(matches[0]);
1265 for (cp = chosen_match; *cp; cp++) {
1266 unsigned n;
1267 for (n = 1; n < num_matches; n++) {
1268 if (matches[n][cp - chosen_match] != *cp) {
1269 goto stop;
1270 }
1271 }
1272 }
1273 stop:
1274 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001275 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001276 }
1277 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001278 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001279 free(chosen_match);
1280 chosen_match = cp;
1281 len_found = strlen(chosen_match);
1282 } else { /* exactly one match */
1283 /* Next <tab> is not a double-tab */
1284 *lastWasTab = 0;
1285
Mike Shalf3763032010-11-22 03:49:18 +01001286 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001287 len_found = strlen(chosen_match);
1288 if (chosen_match[len_found-1] != '/') {
1289 chosen_match[len_found] = ' ';
1290 chosen_match[++len_found] = '\0';
1291 }
1292 }
1293
Mike Shalf3763032010-11-22 03:49:18 +01001294# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001295 /* Have space to place the match? */
1296 /* The result consists of three parts with these lengths: */
1297 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1298 /* it simplifies into: */
1299 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1300 int pos;
1301 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001302 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001303 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001304 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001305 command_len = strlen(command_ps);
1306 /* new pos */
1307 pos = cursor + len_found - match_pfx_len;
1308 /* write out the matched command */
1309 redraw(cmdedit_y, command_len - pos);
1310 }
Mike Shalf3763032010-11-22 03:49:18 +01001311# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001312 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001313 /* Use 2nd half of match_buf as scratch space - see (**) */
1314 char *command = match_buf + MAX_LINELEN;
1315 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001316 /* Have space to place the match? */
1317 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1318 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1319 int pos;
1320 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001321 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001322 /* where do we want to have cursor after all? */
1323 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001324 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001325 /* add match and tail */
Denys Vlasenkofe2d8062021-04-14 17:52:18 +02001326 stpcpy(stpcpy(&command[cursor_mb], chosen_match + match_pfx_len), match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001327 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001328 /* write out the matched command */
1329 /* paranoia: load_string can return 0 on conv error,
1330 * prevent passing pos = (0 - 12) to redraw */
1331 pos = command_len - len;
1332 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1333 }
1334 }
Mike Shalf3763032010-11-22 03:49:18 +01001335# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001336 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001337 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001338 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001339}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001340
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001341#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001342
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001343
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001344line_input_t* FAST_FUNC new_line_input_t(int flags)
1345{
1346 line_input_t *n = xzalloc(sizeof(*n));
1347 n->flags = flags;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02001348 n->timeout = -1;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001349#if MAX_HISTORY > 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001350 n->max_history = MAX_HISTORY;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001351#endif
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001352 return n;
1353}
1354
1355
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001356#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001357
Flemming Madsend96ffda2013-04-07 18:47:24 +02001358unsigned FAST_FUNC size_from_HISTFILESIZE(const char *hp)
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001359{
1360 int size = MAX_HISTORY;
1361 if (hp) {
1362 size = atoi(hp);
1363 if (size <= 0)
1364 return 1;
1365 if (size > MAX_HISTORY)
1366 return MAX_HISTORY;
1367 }
1368 return size;
1369}
1370
Denis Vlasenko682ad302008-09-27 01:28:56 +00001371static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001372{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001373 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001374 int cur = state->cur_history;
1375 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001376
Denys Vlasenko19158a82010-03-26 14:06:56 +01001377# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001378 {
1379 char tbuf[MAX_LINELEN];
1380 save_string(tbuf, sizeof(tbuf));
1381 state->history[cur] = xstrdup(tbuf);
1382 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001383# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001384 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001385# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001386 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001387}
1388
1389/* state->flags is already checked to be nonzero */
1390static int get_previous_history(void)
1391{
1392 if ((state->flags & DO_HISTORY) && state->cur_history) {
1393 save_command_ps_at_cur_history();
1394 state->cur_history--;
1395 return 1;
1396 }
1397 beep();
1398 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001399}
1400
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001401static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001402{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001403 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001404 if (state->cur_history < state->cnt_history) {
1405 save_command_ps_at_cur_history(); /* save the current history line */
1406 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001407 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001408 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001409 beep();
1410 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001411}
Robert Griebl350d26b2002-12-03 22:45:46 +00001412
Flemming Madsend96ffda2013-04-07 18:47:24 +02001413/* Lists command history. Used by shell 'history' builtins */
1414void FAST_FUNC show_history(const line_input_t *st)
1415{
1416 int i;
1417
1418 if (!st)
1419 return;
1420 for (i = 0; i < st->cnt_history; i++)
1421 printf("%4d %s\n", i, st->history[i]);
1422}
1423
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001424# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001425void FAST_FUNC free_line_input_t(line_input_t *n)
1426{
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001427 if (n) {
1428 int i = n->cnt_history;
1429 while (i > 0)
1430 free(n->history[--i]);
1431 free(n);
1432 }
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001433}
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001434# else
1435/* #defined to free() in libbb.h */
1436# endif
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001437
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001438# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001439/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001440 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001441 * Otherwise shell users get unhappy.
1442 *
1443 * History file is trimmed lazily, when it grows several times longer
1444 * than configured MAX_HISTORY lines.
1445 */
1446
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001447/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001448static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001449{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001450 char *temp_h[MAX_HISTORY];
1451 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001452 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001453 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001454
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001455 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001456
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001457 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001458 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001459 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001460 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001461 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001462 free(st_parm->history[idx]);
1463 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001464 }
1465
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001466 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1467 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001468 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001469 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001470 while ((line = xmalloc_fgetline(fp)) != NULL) {
1471 if (line[0] == '\0') {
1472 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001473 continue;
1474 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001475 free(temp_h[idx]);
1476 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001477 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001478 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001479 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001480 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001481 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001482 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001483
1484 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001485 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001486 while (temp_h[idx] == NULL) {
1487 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001488 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001489 idx = 0;
1490 }
1491 }
1492
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001493 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001494 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001495 line = temp_h[idx];
1496 if (!line)
1497 break;
1498 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001499 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001500 idx = 0;
1501 line_len = strlen(line);
1502 if (line_len >= MAX_LINELEN)
1503 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001504 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001505 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001506 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001507 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1508 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001509 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001510}
1511
Denys Vlasenkobede2152011-09-04 16:12:33 +02001512# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1513void save_history(line_input_t *st)
1514{
1515 FILE *fp;
1516
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001517 if (!st || !st->hist_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001518 return;
1519 if (st->cnt_history <= st->cnt_history_in_file)
1520 return;
1521
1522 fp = fopen(st->hist_file, "a");
1523 if (fp) {
1524 int i, fd;
1525 char *new_name;
1526 line_input_t *st_temp;
1527
1528 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1529 fprintf(fp, "%s\n", st->history[i]);
1530 fclose(fp);
1531
1532 /* we may have concurrently written entries from others.
1533 * load them */
1534 st_temp = new_line_input_t(st->flags);
1535 st_temp->hist_file = st->hist_file;
1536 st_temp->max_history = st->max_history;
1537 load_history(st_temp);
1538
1539 /* write out temp file and replace hist_file atomically */
1540 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1541 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1542 if (fd >= 0) {
1543 fp = xfdopen_for_write(fd);
1544 for (i = 0; i < st_temp->cnt_history; i++)
1545 fprintf(fp, "%s\n", st_temp->history[i]);
1546 fclose(fp);
1547 if (rename(new_name, st->hist_file) == 0)
1548 st->cnt_history_in_file = st_temp->cnt_history;
1549 }
1550 free(new_name);
1551 free_line_input_t(st_temp);
1552 }
1553}
1554# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001555static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001556{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001557 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001558 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001559
Denys Vlasenkobede2152011-09-04 16:12:33 +02001560 if (!state->hist_file)
1561 return;
1562
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001563 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001564 if (fd < 0)
1565 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001566 xlseek(fd, 0, SEEK_END); /* paranoia */
1567 len = strlen(str);
1568 str[len] = '\n'; /* we (try to) do atomic write */
1569 len2 = full_write(fd, str, len + 1);
1570 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001571 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001572 if (len2 != len + 1)
1573 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001574
1575 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001576 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001577 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001578 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001579 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001580
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001581 /* we may have concurrently written entries from others.
1582 * load them */
1583 st_temp = new_line_input_t(state->flags);
1584 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001585 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001586 load_history(st_temp);
1587
1588 /* write out temp file and replace hist_file atomically */
1589 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001590 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001591 if (fd >= 0) {
1592 FILE *fp;
1593 int i;
1594
1595 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001596 for (i = 0; i < st_temp->cnt_history; i++)
1597 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001598 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001599 if (rename(new_name, state->hist_file) == 0)
1600 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001601 }
1602 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001603 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001604 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001605}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001606# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001607# else
1608# define load_history(a) ((void)0)
1609# define save_history(a) ((void)0)
1610# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001611
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001612static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001613{
1614 int i;
1615
1616 if (!(state->flags & DO_HISTORY))
1617 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001618 if (str[0] == '\0')
1619 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001620 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001621 /* Don't save dupes */
1622 if (i && strcmp(state->history[i-1], str) == 0)
1623 return;
1624
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001625 free(state->history[state->max_history]); /* redundant, paranoia */
1626 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001627
1628 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001629 /* we need to keep history[state->max_history] empty, hence >=, not > */
1630 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001631 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001632 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001633 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001634 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001635# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1636 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001637 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001638# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001639 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001640 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001641 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001642 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001643 state->cur_history = i;
1644 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001645# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1646 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001647# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001648}
1649
1650#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001651# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001652#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001653
1654
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001655#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001656/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001657 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001658 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001659static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001660vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001661{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001662 CHAR_T *command = command_ps;
1663
1664 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001665 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001666 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001667 input_forward();
1668}
1669
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001670static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001671vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001672{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001673 CHAR_T *command = command_ps;
1674
Natanael Copa7e6f9312016-08-14 23:30:29 +02001675 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001676 while (cursor < command_len
Natanael Copa7e6f9312016-08-14 23:30:29 +02001677 && (BB_isalnum_or_underscore(command[cursor+1]))
Denys Vlasenko13028922009-07-12 00:51:15 +02001678 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001679 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001680 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001681 } else if (BB_ispunct(command[cursor])) {
1682 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001683 input_forward();
1684 }
1685
Denis Vlasenko253ce002007-01-22 08:34:44 +00001686 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001687 input_forward();
1688
Denys Vlasenko13028922009-07-12 00:51:15 +02001689 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001690 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001691 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001692 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001693}
1694
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001695static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001696vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001697{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001698 CHAR_T *command = command_ps;
1699
Paul Fox3f11b1b2005-08-04 19:04:46 +00001700 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001701 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001702 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001703 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001704 input_forward();
1705}
1706
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001707static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001708vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001709{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001710 CHAR_T *command = command_ps;
1711
Denis Vlasenko253ce002007-01-22 08:34:44 +00001712 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001713 return;
1714 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001715 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001716 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001717 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001718 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001719 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001720 while (cursor < command_len-1
Natanael Copa7e6f9312016-08-14 23:30:29 +02001721 && (BB_isalnum_or_underscore(command[cursor+1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001722 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001723 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001724 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001725 } else if (BB_ispunct(command[cursor])) {
1726 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001727 input_forward();
1728 }
1729}
1730
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001731static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001732vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001733{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001734 CHAR_T *command = command_ps;
1735
1736 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001737 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001738 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001739 input_backward(1);
1740}
1741
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001742static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001743vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001744{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001745 CHAR_T *command = command_ps;
1746
Paul Fox3f11b1b2005-08-04 19:04:46 +00001747 if (cursor <= 0)
1748 return;
1749 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001750 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001751 input_backward(1);
1752 if (cursor <= 0)
1753 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001754 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001755 while (cursor > 0
Natanael Copa7e6f9312016-08-14 23:30:29 +02001756 && (BB_isalnum_or_underscore(command[cursor-1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001757 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001758 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001759 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001760 } else if (BB_ispunct(command[cursor])) {
1761 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001762 input_backward(1);
1763 }
1764}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001765#endif
1766
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001767/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1768static void ctrl_left(void)
1769{
1770 CHAR_T *command = command_ps;
1771
1772 while (1) {
1773 CHAR_T c;
1774
1775 input_backward(1);
1776 if (cursor == 0)
1777 break;
1778 c = command[cursor];
1779 if (c != ' ' && !BB_ispunct(c)) {
1780 /* we reached a "word" delimited by spaces/punct.
1781 * go to its beginning */
1782 while (1) {
1783 c = command[cursor - 1];
1784 if (c == ' ' || BB_ispunct(c))
1785 break;
1786 input_backward(1);
1787 if (cursor == 0)
1788 break;
1789 }
1790 break;
1791 }
1792 }
1793}
1794static void ctrl_right(void)
1795{
1796 CHAR_T *command = command_ps;
1797
1798 while (1) {
1799 CHAR_T c;
1800
1801 c = command[cursor];
1802 if (c == BB_NUL)
1803 break;
1804 if (c != ' ' && !BB_ispunct(c)) {
1805 /* we reached a "word" delimited by spaces/punct.
1806 * go to its end + 1 */
1807 while (1) {
1808 input_forward();
1809 c = command[cursor];
1810 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1811 break;
1812 }
1813 break;
1814 }
1815 input_forward();
1816 }
1817}
1818
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001819
1820/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001821 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001822 */
1823
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001824#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1825static void ask_terminal(void)
1826{
1827 /* Ask terminal where is the cursor now.
1828 * lineedit_read_key handles response and corrects
1829 * our idea of current cursor position.
1830 * Testcase: run "echo -n long_line_long_line_long_line",
1831 * then type in a long, wrapping command and try to
1832 * delete it using backspace key.
1833 * Note: we print it _after_ prompt, because
1834 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1835 */
1836 /* Problem: if there is buffered input on stdin,
1837 * the response will be delivered later,
1838 * possibly to an unsuspecting application.
1839 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1840 * Result:
1841 * ~/srcdevel/bbox/fix/busybox.t4 #
1842 * ~/srcdevel/bbox/fix/busybox.t4 #
1843 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1844 * ~/srcdevel/bbox/fix/busybox.t4 #
1845 *
1846 * Checking for input with poll only makes the race narrower,
1847 * I still can trigger it. Strace:
1848 *
1849 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1850 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1851 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001852 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001853 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1854 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001855 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001856
Denys Vlasenko451add42010-07-25 00:06:41 +02001857 pfd.fd = STDIN_FILENO;
1858 pfd.events = POLLIN;
1859 if (safe_poll(&pfd, 1, 0) == 0) {
1860 S.sent_ESC_br6n = 1;
Ron Yorstoncad3fc72021-02-03 20:47:14 +01001861 fputs_stdout(ESC"[6n");
Denys Vlasenko451add42010-07-25 00:06:41 +02001862 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001863 }
1864}
1865#else
1866#define ask_terminal() ((void)0)
1867#endif
1868
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001869/* Note about multi-line PS1 (e.g. "\n\w \u@\h\n> ") and prompt redrawing:
1870 *
1871 * If the prompt has any newlines, after we print it once we use only its last
1872 * line to redraw in-place, which makes it simpler to calculate how many lines
1873 * we should move the cursor up to align the redraw (cmdedit_y). The earlier
1874 * prompt lines just stay on screen and we redraw below them.
1875 *
1876 * Use cases for all prompt lines beyond the initial draw:
1877 * - After clear-screen (^L) or after displaying tab-completion choices, we
1878 * print the full prompt, as it isn't redrawn in-place.
1879 * - During terminal resize we could try to redraw all lines, but we don't,
1880 * because it requires delicate alignment, it's good enough with only the
1881 * last line, and doing it wrong is arguably worse than not doing it at all.
1882 *
1883 * Terminology wise, if it doesn't mention "full", then it means the last/sole
1884 * prompt line. We use the prompt (last/sole line) while redrawing in-place,
1885 * and the full where we need a fresh one unrelated to an earlier position.
1886 *
1887 * If PS1 is not multiline, the last/sole line and the full are the same string.
1888 */
1889
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001890/* Called just once at read_line_input() init time */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001891#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001892static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001893{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001894 const char *p;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001895 cmdedit_prompt = prompt_last_line = prmt_ptr;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001896 p = strrchr(prmt_ptr, '\n');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001897 if (p)
1898 prompt_last_line = p + 1;
1899 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001900 put_prompt();
1901}
1902#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001903static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001904{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001905 int prmt_size = 0;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001906 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001907 char *cwd_buf = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001908 char flg_not_length = '[';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001909 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001910
Denys Vlasenko7a180432013-08-19 16:44:05 +02001911 /*cmdedit_prmt_len = 0; - already is */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001912
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001913 cbuf[1] = '\0'; /* never changes */
1914
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001915 while (*prmt_ptr) {
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001916 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001917 char *free_me = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001918 char *pbuf;
1919 char c;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001920
1921 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001922 c = *prmt_ptr++;
1923 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001924 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001925 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001926/*
1927 * Supported via bb_process_escape_sequence:
1928 * \a ASCII bell character (07)
1929 * \e ASCII escape character (033)
1930 * \n newline
1931 * \r carriage return
1932 * \\ backslash
1933 * \nnn char with octal code nnn
1934 * Supported:
1935 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001936 * \w current working directory, with $HOME abbreviated with a tilde
1937 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001938 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001939 * \h hostname up to the first '.'
1940 * \H hostname
1941 * \u username
1942 * \[ begin a sequence of non-printing characters
1943 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001944 * \T current time in 12-hour HH:MM:SS format
1945 * \@ current time in 12-hour am/pm format
1946 * \A current time in 24-hour HH:MM format
1947 * \t current time in 24-hour HH:MM:SS format
1948 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001949 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001950 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001951 * \# command number of this command
1952 * \j number of jobs currently managed by the shell
1953 * \l basename of the shell's terminal device name
1954 * \s name of the shell, the basename of $0 (the portion following the final slash)
1955 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001956 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1957 * \D{format}
1958 * format is passed to strftime(3).
1959 * An empty format results in a locale-specific time representation.
1960 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001961 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001962 * \v version of bash (e.g., 2.00)
1963 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01001964 cp = prmt_ptr;
1965 c = *cp;
1966 if (c != 't') /* don't treat \t as tab */
1967 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001968 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001969 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001970 break;
1971 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001972
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001973 switch (c) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001974 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001975 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001976 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001977 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001978 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001979 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001980 if (c == 'h')
1981 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001982 break;
1983 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001984 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001985 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001986 case 'T': /* 12-hour HH:MM:SS format */
1987 case '@': /* 12-hour am/pm format */
1988 case 'A': /* 24-hour HH:MM format */
1989 case 't': /* 24-hour HH:MM:SS format */
1990 /* We show all of them as 24-hour HH:MM */
1991 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
1992 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001993 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001994 case 'w': /* current dir */
1995 case 'W': /* basename of cur dir */
1996 if (!cwd_buf) {
1997 cwd_buf = xrealloc_getcwd_or_warn(NULL);
1998 if (!cwd_buf)
1999 cwd_buf = (char *)bb_msg_unknown;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002000 else if (home_pwd_buf[0]) {
2001 char *after_home_user;
2002
Denys Vlasenko1d145692013-03-29 13:09:05 +01002003 /* /home/user[/something] -> ~[/something] */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002004 after_home_user = is_prefixed_with(cwd_buf, home_pwd_buf);
2005 if (after_home_user
2006 && (*after_home_user == '/' || *after_home_user == '\0')
Denys Vlasenko1d145692013-03-29 13:09:05 +01002007 ) {
2008 cwd_buf[0] = '~';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002009 overlapping_strcpy(cwd_buf + 1, after_home_user);
Denys Vlasenko1d145692013-03-29 13:09:05 +01002010 }
2011 }
2012 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002013 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002014 if (c == 'w')
2015 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00002016 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01002017 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01002018 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002019 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002020// bb_process_escape_sequence does this now:
2021// case 'e': case 'E': /* \e \E = \033 */
2022// c = '\033';
2023// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002024 case 'x': case 'X': {
2025 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002026 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002027 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002028 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002029 buf2[l] = '\0';
2030 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002031 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002032 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002033 break;
2034 }
2035 prmt_ptr++;
2036 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002037 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002038 if (c == 0)
2039 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002040 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002041 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002042 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002043 case '[': case ']':
2044 if (c == flg_not_length) {
Denys Vlasenko7a180432013-08-19 16:44:05 +02002045 /* Toggle '['/']' hex 5b/5d */
2046 flg_not_length ^= 6;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002047 continue;
2048 }
2049 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002050 } /* switch */
2051 } /* if */
2052 } /* if */
2053 cbuf[0] = c;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002054 {
2055 int n = strlen(pbuf);
2056 prmt_size += n;
2057 if (c == '\n')
2058 cmdedit_prmt_len = 0;
2059 else if (flg_not_length != ']') {
Audun-Marius Gangstø9bf44992020-11-21 12:26:39 +01002060#if ENABLE_UNICODE_SUPPORT
2061 if (n == 1) {
2062 /* Only count single-byte characters and the first of multi-byte characters */
2063 if ((unsigned char)*pbuf < 0x80 /* single byte character */
2064 || (unsigned char)*pbuf >= 0xc0 /* first of multi-byte characters */
2065 ) {
2066 cmdedit_prmt_len += n;
2067 }
2068 } else {
2069 cmdedit_prmt_len += unicode_strwidth(pbuf);
2070 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002071#else
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002072 cmdedit_prmt_len += n;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002073#endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002074 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002075 }
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002076 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_size+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002077 free(free_me);
2078 } /* while */
2079
2080 if (cwd_buf != (char *)bb_msg_unknown)
2081 free(cwd_buf);
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002082 /* see comment (above this function) about multiline prompt redrawing */
2083 cmdedit_prompt = prompt_last_line = prmt_mem_ptr;
2084 prmt_ptr = strrchr(cmdedit_prompt, '\n');
2085 if (prmt_ptr)
2086 prompt_last_line = prmt_ptr + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002087 put_prompt();
2088}
Denys Vlasenkoa97a7952020-12-16 11:14:08 +01002089#endif /* FEATURE_EDITING_FANCY_PROMPT */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002090
Ron Yorston23286902018-02-25 20:09:54 +01002091#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko038a9772016-11-28 01:10:16 +01002092static void cmdedit_setwidth(void)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002093{
Denys Vlasenko038a9772016-11-28 01:10:16 +01002094 int new_y;
2095
2096 cmdedit_termw = get_terminal_width(STDIN_FILENO);
2097 /* new y for current cursor */
2098 new_y = (cursor + cmdedit_prmt_len) / cmdedit_termw;
2099 /* redraw */
2100 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002101}
2102
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002103static void win_changed(int nsig UNUSED_PARAM)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002104{
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002105 if (S.ok_to_redraw) {
2106 /* We are in read_key(), safe to redraw immediately */
2107 int sv_errno = errno;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002108 cmdedit_setwidth();
2109 fflush_all();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002110 errno = sv_errno;
2111 } else {
2112 /* Signal main loop that redraw is necessary */
2113 S.SIGWINCH_count++;
2114 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002115}
Ron Yorston23286902018-02-25 20:09:54 +01002116#endif
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002117
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002118static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002119{
Denys Vlasenko020f4062009-05-17 16:44:54 +02002120 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002121#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002122 char unicode_buf[MB_CUR_MAX + 1];
2123 int unicode_idx = 0;
2124#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02002125
Denys Vlasenko038a9772016-11-28 01:10:16 +01002126 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002127 while (1) {
2128 /* Wait for input. TIMEOUT = -1 makes read_key wait even
2129 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
2130 * insist on full MB_CUR_MAX buffer to declare input like
2131 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
2132 *
2133 * Note: read_key sets errno to 0 on success.
2134 */
Ron Yorston23286902018-02-25 20:09:54 +01002135 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 1;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002136 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
Ron Yorston23286902018-02-25 20:09:54 +01002137 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 0;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002138 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01002139#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002140 if (errno == EAGAIN && unicode_idx != 0)
2141 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01002142#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002143 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02002144 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002145
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002146#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2147 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002148 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02002149 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002150 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002151 if (cursor == 0) { /* otherwise it may be bogus */
2152 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002153 /*
2154 * Is col > cmdedit_prmt_len?
2155 * If yes (terminal says cursor is farther to the right
2156 * of where we think it should be),
2157 * the prompt wasn't printed starting at col 1,
2158 * there was additional text before it.
2159 */
2160 if ((int)(col - cmdedit_prmt_len) > 0) {
2161 /* Fix our understanding of current x position */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002162 cmdedit_x += (col - cmdedit_prmt_len);
2163 while (cmdedit_x >= cmdedit_termw) {
2164 cmdedit_x -= cmdedit_termw;
2165 cmdedit_y++;
2166 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02002167 }
2168 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002169 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02002170 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002171#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002172
Denys Vlasenko19158a82010-03-26 14:06:56 +01002173#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002174 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002175 wchar_t wc;
2176
2177 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002178 break;
2179 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002180
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002181 unicode_buf[unicode_idx++] = ic;
2182 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002183 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2184 /* Not (yet?) a valid unicode char */
2185 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002186 timeout = 50;
2187 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002188 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002189 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002190 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002191 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002192# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002193 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002194# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002195 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002196# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002197 } else {
2198 /* Valid unicode char, return its code */
2199 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002200 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002201 }
2202#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002203 break;
2204 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002205
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002206 return ic;
2207}
2208
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002209#if ENABLE_UNICODE_BIDI_SUPPORT
2210static int isrtl_str(void)
2211{
2212 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002213
2214 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002215 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002216 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002217}
2218#else
2219# define isrtl_str() 0
2220#endif
2221
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002222/* leave out the "vi-mode"-only case labels if vi editing isn't
2223 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002224#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002225
2226/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002227#undef CTRL
2228#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002229
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002230enum {
2231 VI_CMDMODE_BIT = 0x40000000,
2232 /* 0x80000000 bit flags KEYCODE_xxx */
2233};
2234
2235#if ENABLE_FEATURE_REVERSE_SEARCH
2236/* Mimic readline Ctrl-R reverse history search.
2237 * When invoked, it shows the following prompt:
2238 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2239 * and typing results in search being performed:
2240 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2241 * Search is performed by looking at progressively older lines in history.
2242 * Ctrl-R again searches for the next match in history.
2243 * Backspace deletes last matched char.
2244 * Control keys exit search and return to normal editing (at current history line).
2245 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002246static int32_t reverse_i_search(int timeout)
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002247{
2248 char match_buf[128]; /* for user input */
2249 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2250 const char *matched_history_line;
2251 const char *saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002252 unsigned saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002253 int32_t ic;
2254
2255 matched_history_line = NULL;
2256 read_key_buffer[0] = 0;
2257 match_buf[0] = '\0';
2258
2259 /* Save and replace the prompt */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002260 saved_prompt = prompt_last_line;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002261 saved_prmt_len = cmdedit_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002262 goto set_prompt;
2263
2264 while (1) {
2265 int h;
2266 unsigned match_buf_len = strlen(match_buf);
2267
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002268//FIXME: correct timeout? (i.e. count it down?)
2269 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002270
2271 switch (ic) {
2272 case CTRL('R'): /* searching for the next match */
2273 break;
2274
2275 case '\b':
2276 case '\x7f':
2277 /* Backspace */
2278 if (unicode_status == UNICODE_ON) {
2279 while (match_buf_len != 0) {
2280 uint8_t c = match_buf[--match_buf_len];
2281 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2282 break; /* yes */
2283 }
2284 } else {
2285 if (match_buf_len != 0)
2286 match_buf_len--;
2287 }
2288 match_buf[match_buf_len] = '\0';
2289 break;
2290
2291 default:
2292 if (ic < ' '
2293 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2294 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2295 ) {
2296 goto ret;
2297 }
2298
2299 /* Append this char */
2300#if ENABLE_UNICODE_SUPPORT
2301 if (unicode_status == UNICODE_ON) {
2302 mbstate_t mbstate = { 0 };
2303 char buf[MB_CUR_MAX + 1];
2304 int len = wcrtomb(buf, ic, &mbstate);
2305 if (len > 0) {
2306 buf[len] = '\0';
2307 if (match_buf_len + len < sizeof(match_buf))
2308 strcpy(match_buf + match_buf_len, buf);
2309 }
2310 } else
2311#endif
2312 if (match_buf_len < sizeof(match_buf) - 1) {
2313 match_buf[match_buf_len] = ic;
2314 match_buf[match_buf_len + 1] = '\0';
2315 }
2316 break;
2317 } /* switch (ic) */
2318
2319 /* Search in history for match_buf */
2320 h = state->cur_history;
2321 if (ic == CTRL('R'))
2322 h--;
2323 while (h >= 0) {
2324 if (state->history[h]) {
2325 char *match = strstr(state->history[h], match_buf);
2326 if (match) {
2327 state->cur_history = h;
2328 matched_history_line = state->history[h];
2329 command_len = load_string(matched_history_line);
2330 cursor = match - matched_history_line;
2331//FIXME: cursor position for Unicode case
2332
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002333 free((char*)prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002334 set_prompt:
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002335 prompt_last_line = xasprintf("(reverse-i-search)'%s': ", match_buf);
2336 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002337 goto do_redraw;
2338 }
2339 }
2340 h--;
2341 }
2342
2343 /* Not found */
2344 match_buf[match_buf_len] = '\0';
2345 beep();
2346 continue;
2347
2348 do_redraw:
2349 redraw(cmdedit_y, command_len - cursor);
2350 } /* while (1) */
2351
2352 ret:
2353 if (matched_history_line)
2354 command_len = load_string(matched_history_line);
2355
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002356 free((char*)prompt_last_line);
2357 prompt_last_line = saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002358 cmdedit_prmt_len = saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002359 redraw(cmdedit_y, command_len - cursor);
2360
2361 return ic;
2362}
2363#endif
2364
Denys Vlasenko23427a62018-12-08 15:45:46 +01002365#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002366static void sigaction2(int sig, struct sigaction *act)
2367{
2368 // Grr... gcc 8.1.1:
2369 // "passing argument 3 to restrict-qualified parameter aliases with argument 2"
2370 // dance around that...
2371 struct sigaction *oact FIX_ALIASING;
2372 oact = act;
2373 sigaction(sig, act, oact);
2374}
Denys Vlasenko23427a62018-12-08 15:45:46 +01002375#endif
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002376
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002377/* maxsize must be >= 2.
2378 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002379 * -1 on read errors or EOF, or on bare Ctrl-D,
2380 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002381 * (in both cases the cursor remains on the input line, '\n' is not printed)
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002382 * >0 length of input string, including terminating '\n'
2383 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002384int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize)
Erik Andersen13456d12000-03-16 08:09:57 +00002385{
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002386 int len, n;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002387 int timeout;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002388#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002389 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002390#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002391 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002392#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002393 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002394#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002395 struct termios initial_settings;
2396 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002397 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002398
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002399 INIT_S();
Denys Vlasenko96717d92020-12-21 22:50:23 +01002400 //command_len = 0; - done by INIT_S()
2401 //cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
2402 cmdedit_termw = 80;
2403 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;)
2404 IF_FEATURE_EDITING_VI(delptr = delbuf;)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002405
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002406 n = get_termios_and_make_raw(STDIN_FILENO, &new_settings, &initial_settings, 0
2407 | TERMIOS_CLEAR_ISIG /* turn off INTR (ctrl-C), QUIT, SUSP */
2408 );
2409 if (n != 0 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON) {
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002410 /* Happens when e.g. stty -echo was run before.
2411 * But if ICANON is not set, we don't come here.
2412 * (example: interactive python ^Z-backgrounded,
2413 * tty is still in "raw mode").
2414 */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002415 parse_and_put_prompt(prompt);
Denys Vlasenko038a9772016-11-28 01:10:16 +01002416 fflush_all();
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002417 if (fgets(command, maxsize, stdin) == NULL)
2418 len = -1; /* EOF or error */
2419 else
2420 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002421 DEINIT_S();
2422 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002423 }
2424
Denys Vlasenko28055022010-01-04 20:49:58 +01002425 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002426
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002427// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002428 if (maxsize > MAX_LINELEN)
2429 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002430 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002431
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002432 timeout = -1;
2433 /* Make state->flags == 0 if st is NULL.
2434 * With zeroed flags, no other fields are ever referenced.
2435 */
2436 state = (line_input_t*) &const_int_0;
2437 if (st) {
2438 state = st;
2439 timeout = st->timeout;
2440 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002441#if MAX_HISTORY > 0
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002442 if (state->flags & DO_HISTORY) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002443# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002444 if (state->hist_file)
2445 if (state->cnt_history == 0)
2446 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002447# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002448 state->cur_history = state->cnt_history;
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002449 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002450#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002451
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002452 /* prepare before init handlers */
Denys Vlasenko19158a82010-03-26 14:06:56 +01002453#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002454 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2455#else
Mark Whitley4e338752001-01-26 20:42:23 +00002456 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002457 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002458#endif
2459#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002460
Denis Vlasenko202ac502008-11-05 13:20:58 +00002461 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002462
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002463#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002464 {
2465 struct passwd *entry;
2466
2467 entry = getpwuid(geteuid());
2468 if (entry) {
2469 user_buf = xstrdup(entry->pw_name);
2470 home_pwd_buf = xstrdup(entry->pw_dir);
2471 }
2472 }
2473#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002474
2475#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002476 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002477 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002478 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2479#endif
2480
Denys Vlasenko0a677222017-11-08 13:38:12 +01002481 /* Get width (before printing prompt) */
2482 cmdedit_termw = get_terminal_width(STDIN_FILENO);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002483 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002484 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002485 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002486
Ron Yorston23286902018-02-25 20:09:54 +01002487#if ENABLE_FEATURE_EDITING_WINCH
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002488 /* Install window resize handler (NB: after *all* init is complete) */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002489 S.SIGWINCH_handler.sa_handler = win_changed;
2490 S.SIGWINCH_handler.sa_flags = SA_RESTART;
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002491 sigaction2(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002492#endif
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002493 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002494 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002495 /*
2496 * The emacs and vi modes share much of the code in the big
2497 * command loop. Commands entered when in vi's command mode
2498 * (aka "escape mode") get an extra bit added to distinguish
2499 * them - this keeps them from being self-inserted. This
2500 * clutters the big switch a bit, but keeps all the code
2501 * in one place.
2502 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002503 int32_t ic, ic_raw;
Ron Yorston23286902018-02-25 20:09:54 +01002504#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002505 unsigned count;
2506
2507 count = S.SIGWINCH_count;
2508 if (S.SIGWINCH_saved != count) {
2509 S.SIGWINCH_saved = count;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002510 cmdedit_setwidth();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002511 }
Ron Yorston23286902018-02-25 20:09:54 +01002512#endif
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002513 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002514
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002515#if ENABLE_FEATURE_REVERSE_SEARCH
2516 again:
2517#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002518#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002519 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002520 if (vi_cmdmode) {
2521 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2522 * change ic if it contains one of them: */
2523 ic |= VI_CMDMODE_BIT;
2524 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002525#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002526
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002527 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002528 case '\n':
2529 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002530 vi_case('\n'|VI_CMDMODE_BIT:)
2531 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002532 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002533 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002534 break_out = 1;
2535 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002536 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002537 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002538 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002539 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002540 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002541 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002542 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002543 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002544 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002545 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002546 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002547 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002548 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002549 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002550 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002551 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002552 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002553 vi_case('l'|VI_CMDMODE_BIT:)
2554 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002555 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002556 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002557 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002558 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002559 if (!isrtl_str())
2560 input_backspace();
2561 else
2562 input_delete(0);
2563 break;
2564 case KEYCODE_DELETE:
2565 if (!isrtl_str())
2566 input_delete(0);
2567 else
2568 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002569 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002570#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002571 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002572 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002573 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002574#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002575 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002576 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002577 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002578 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002579 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002580 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002581 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002582 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002583 /* Control-l -- clear screen */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002584 /* cursor to top,left; clear to the end of screen */
2585 printf(ESC"[H" ESC"[J");
2586 draw_full(command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002587 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002588#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002589 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002590 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2591 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002592 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002593 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002594 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002595 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002596 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002597 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2598 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002599 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002600 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002601 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002602 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002603#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002604 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002605 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002606 /* Control-U -- Clear line before cursor */
2607 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002608 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002609 memmove(command_ps, command_ps + cursor,
2610 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002611 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002612 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002613 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002614 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002615 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002616 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002617 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002618 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002619 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002620 input_backspace();
2621 break;
Rostislav Skudnov2e4ef382016-11-24 15:04:00 +01002622 case KEYCODE_ALT_D: {
2623 /* Delete word forward */
2624 int nc, sc = cursor;
2625 ctrl_right();
2626 nc = cursor - sc;
2627 input_backward(nc);
2628 while (--nc >= 0)
2629 input_delete(1);
2630 break;
2631 }
2632 case KEYCODE_ALT_BACKSPACE: {
2633 /* Delete word backward */
2634 int sc = cursor;
2635 ctrl_left();
2636 while (sc-- > cursor)
2637 input_delete(1);
2638 break;
2639 }
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002640#if ENABLE_FEATURE_REVERSE_SEARCH
2641 case CTRL('R'):
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002642 ic = ic_raw = reverse_i_search(timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002643 goto again;
2644#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002645
Denis Vlasenko38f63192007-01-22 09:03:07 +00002646#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002647 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002648 vi_cmdmode = 0;
2649 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002650 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002651 input_backward(cursor);
2652 vi_cmdmode = 0;
2653 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002654 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002655 input_forward();
2656 vi_cmdmode = 0;
2657 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002658 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002659 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002660 vi_cmdmode = 0;
2661 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002662 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002663 input_delete(1);
2664 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002665 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002666 if (cursor > 0) {
2667 input_backward(1);
2668 input_delete(1);
2669 }
2670 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002671 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002672 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002673 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002674 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002675 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002676 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002677 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002678 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002679 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002680 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002681 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002682 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002683 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002684 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002685 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002686 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002687 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002688 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002689 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002690 vi_cmdmode = 0;
2691 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002692 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002693 goto clear_to_eol;
2694
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002695 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002696 vi_cmdmode = 0;
2697 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002698 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002699 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002700
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002701 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002702 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002703 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002704 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002705 input_backward(cursor);
2706 goto clear_to_eol;
2707 break;
2708 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002709
2710 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002711 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002712 case 'w':
2713 case 'W':
2714 case 'e':
2715 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002716 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002717 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002718 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002719 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002720 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002721 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002722 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002723 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002724 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002725 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002726 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002727 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002728 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002729 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002730 break;
2731 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002732 nc = cursor;
2733 input_backward(cursor - sc);
2734 while (nc-- > cursor)
2735 input_delete(1);
2736 break;
2737 case 'b': /* "db", "cb" */
2738 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002739 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002740 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002741 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002742 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002743 while (sc-- > cursor)
2744 input_delete(1);
2745 break;
2746 case ' ': /* "d ", "c " */
2747 input_delete(1);
2748 break;
2749 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002750 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002751 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002752 input_delete(1);
2753 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002754 }
2755 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002756 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002757 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002758 input_forward();
2759 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002760 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002761 put();
2762 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002763 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002764//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002765 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002766 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002767 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002768 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002769 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002770 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002771 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002772 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002773 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002774 }
2775 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002776 case '\x1b': /* ESC */
2777 if (state->flags & VI_MODE) {
2778 /* insert mode --> command mode */
2779 vi_cmdmode = 1;
2780 input_backward(1);
2781 }
2782 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002783#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002784
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002785#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002786 case KEYCODE_UP:
2787 if (get_previous_history())
2788 goto rewrite_line;
2789 beep();
2790 break;
2791 case KEYCODE_DOWN:
2792 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002793 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002794 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002795 /* Rewrite the line with the selected history item */
2796 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002797 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002798 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002799 /* redraw and go to eol (bol, in vi) */
2800 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2801 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002802#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002803 case KEYCODE_RIGHT:
2804 input_forward();
2805 break;
2806 case KEYCODE_LEFT:
2807 input_backward(1);
2808 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002809 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002810 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002811 ctrl_left();
2812 break;
2813 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002814 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002815 ctrl_right();
2816 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002817 case KEYCODE_HOME:
2818 input_backward(cursor);
2819 break;
2820 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002821 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002822 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002823
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002824 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002825 if (initial_settings.c_cc[VINTR] != 0
2826 && ic_raw == initial_settings.c_cc[VINTR]
2827 ) {
2828 /* Ctrl-C (usually) - stop gathering input */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002829 command_len = 0;
2830 break_out = -1; /* "do not append '\n'" */
2831 break;
2832 }
2833 if (initial_settings.c_cc[VEOF] != 0
2834 && ic_raw == initial_settings.c_cc[VEOF]
2835 ) {
2836 /* Ctrl-D (usually) - delete one character,
2837 * or exit if len=0 and no chars to delete */
2838 if (command_len == 0) {
2839 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002840
2841 case -1: /* error (e.g. EIO when tty is destroyed) */
2842 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002843 break_out = command_len = -1;
2844 break;
2845 }
2846 input_delete(0);
2847 break;
2848 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002849// /* Control-V -- force insert of next char */
2850// if (c == CTRL('V')) {
2851// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002852// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002853// if (c == 0) {
2854// beep();
2855// break;
2856// }
2857// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002858 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002859 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2860 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002861 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002862 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002863 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002864 * Otherwise, we are here if ic is a
2865 * control char or an unhandled ESC sequence,
2866 * which is also ignored.
2867 */
2868 break;
2869 }
2870 if ((int)command_len >= (maxsize - 2)) {
2871 /* Not enough space for the char and EOL */
2872 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002873 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002874
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002875 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002876 if (cursor == (command_len - 1)) {
2877 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002878 command_ps[cursor] = ic;
2879 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002880 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002881 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002882 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002883 } else {
2884 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002885 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002886
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002887 memmove(command_ps + sc + 1, command_ps + sc,
2888 (command_len - sc) * sizeof(command_ps[0]));
2889 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002890 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2891 if (!isrtl_str())
2892 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002893 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002894 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002895 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002896 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002897 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002898 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002899
2900 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002901 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002902
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002903#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002904 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002905 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002906#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002907 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002908
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002909#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002910 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002911 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2912 * We sent "ESC [ 6 n", but got '\n' first, and
2913 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2914 * It's bad already and not much can be done with it
2915 * (it _will_ be visible for the next process to read stdin),
2916 * but without this delay it even shows up on the screen
2917 * as garbage because we restore echo settings with tcsetattr
2918 * before it comes in. UGLY!
2919 */
2920 usleep(20*1000);
Denys Vlasenkofae73322020-12-21 21:55:03 +01002921// MAYBE? tcflush(STDIN_FILENO, TCIFLUSH); /* flushes data received but not read */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002922 }
2923#endif
2924
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002925/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002926#undef command
2927
Denys Vlasenko19158a82010-03-26 14:06:56 +01002928#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002929 command[0] = '\0';
2930 if (command_len > 0)
2931 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002932 free(command_ps);
2933#endif
2934
Flemming Madsend96ffda2013-04-07 18:47:24 +02002935 if (command_len > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002936 remember_in_history(command);
Flemming Madsend96ffda2013-04-07 18:47:24 +02002937 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002938
Eric Andersen27bb7902003-12-23 20:24:51 +00002939 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002940 command[command_len++] = '\n';
2941 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002942 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002943
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002944#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002945 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002946#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002947
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002948 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002949 tcsetattr_stdin_TCSANOW(&initial_settings);
Ron Yorston23286902018-02-25 20:09:54 +01002950#if ENABLE_FEATURE_EDITING_WINCH
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002951 /* restore SIGWINCH handler */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002952 sigaction_set(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002953#endif
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002954 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002955
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002956 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002957 DEINIT_S();
2958
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002959 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002960}
2961
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002962#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002963
2964#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002965int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002966{
Ron Yorstoncad3fc72021-02-03 20:47:14 +01002967 fputs_stdout(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002968 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002969 if (!fgets(command, maxsize, stdin))
2970 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002971 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002972}
2973
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002974#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002975
2976
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002977/*
2978 * Testing
2979 */
2980
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002981#ifdef TEST
2982
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002983#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002984
2985const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002986
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002987int main(int argc, char **argv)
2988{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002989 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002990 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002991#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002992 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2993 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
Denys Vlasenko8187e012017-09-13 22:48:30 +02002994 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002995#else
2996 "% ";
2997#endif
2998
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002999 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00003000 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003001 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00003002 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00003003 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02003004 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003005 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00003006 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003007 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003008 return 0;
3009}
3010
Eric Andersenc470f442003-07-28 09:56:35 +00003011#endif /* TEST */