blob: c3b5738e201416962297029a2005fd1cb5bd8a67 [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 cmdedit_termw = 80; \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200220 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Shawn J. Goff46031da2013-02-27 18:30:05 +0100221 IF_FEATURE_EDITING_VI(delptr = delbuf;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000222} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200223
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000224static void deinit_S(void)
225{
226#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000227 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200228 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000229 free((char*)cmdedit_prompt);
230#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200231#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000232 free(user_buf);
233 if (home_pwd_buf != null_str)
234 free(home_pwd_buf);
235#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000236 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000237}
238#define DEINIT_S() deinit_S()
239
Denis Vlasenko2c844952008-04-25 18:44:35 +0000240
Denys Vlasenko19158a82010-03-26 14:06:56 +0100241#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200242static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200243{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100244 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200245 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100246 if (len < 0)
247 len = 0;
248 command_ps[len] = BB_NUL;
249 return len;
250 } else {
251 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200252 while (src[i] && i < S.maxsize - 1) {
253 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100254 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200255 }
256 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100257 return i;
258 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200259}
Tomas Heinricha659b812010-04-29 13:43:39 +0200260static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200261{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100262 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200263# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100264 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
265 if (len < 0)
266 len = 0;
267 dst[len] = '\0';
268 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200269# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100270 unsigned dstpos = 0;
271 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200272
Denys Vlasenko353680a2011-03-27 01:18:07 +0100273 maxsize--;
274 while (dstpos < maxsize) {
275 wchar_t wc;
276 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200277
Denys Vlasenko353680a2011-03-27 01:18:07 +0100278 /* Convert up to 1st invalid byte (or up to end) */
279 while ((wc = command_ps[srcpos]) != BB_NUL
280 && !unicode_is_raw_byte(wc)
281 ) {
282 srcpos++;
283 }
284 command_ps[srcpos] = BB_NUL;
285 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
286 if (n < 0) /* should not happen */
287 break;
288 dstpos += n;
289 if (wc == BB_NUL) /* usually is */
290 break;
291
292 /* We do have invalid byte here! */
293 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200294 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100295 if (dstpos == maxsize)
296 break;
297 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200298 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100299 dst[dstpos] = '\0';
300 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200301# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100302 } else {
303 unsigned i = 0;
304 while ((dst[i] = command_ps[i]) != 0)
305 i++;
306 return i;
307 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200308}
309/* I thought just fputwc(c, stdout) would work. But no... */
310static void BB_PUTCHAR(wchar_t c)
311{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100312 if (unicode_status == UNICODE_ON) {
313 char buf[MB_CUR_MAX + 1];
314 mbstate_t mbst = { 0 };
315 ssize_t len = wcrtomb(buf, c, &mbst);
316 if (len > 0) {
317 buf[len] = '\0';
318 fputs(buf, stdout);
319 }
320 } else {
321 /* In this case, c is always one byte */
322 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200323 }
324}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200325# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
326static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
327# else
328static wchar_t adjust_width_and_validate_wc(wchar_t wc)
329# define adjust_width_and_validate_wc(width_adj, wc) \
330 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
331# endif
332{
333 int w = 1;
334
335 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200336 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
337 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200338 goto subst;
339 }
340 w = wcwidth(wc);
341 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
342 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
343 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
344 ) {
345 subst:
346 w = 1;
347 wc = CONFIG_SUBST_WCHAR;
348 }
349 }
350
351# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
352 *width_adj += w;
353#endif
354 return wc;
355}
356#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200357static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200358{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200359 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200360 return strlen(command_ps);
361}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200362# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200363static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200364{
365 safe_strncpy(dst, command_ps, maxsize);
366}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200367# endif
368# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200369/* Should never be called: */
370int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200371#endif
372
373
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000374/* Put 'command_ps[cursor]', cursor++.
375 * Advance cursor on screen. If we reached right margin, scroll text up
376 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000377#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200378static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000379{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200380 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200381 unsigned width = 0;
382 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000383
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200384 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000385 /* erase character after end of input string */
386 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200387 } else {
388 /* advance cursor only if we aren't at the end yet */
389 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200390 if (unicode_status == UNICODE_ON) {
391 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
392 c = adjust_width_and_validate_wc(&cmdedit_x, c);
393 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
394 } else {
395 cmdedit_x++;
396 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000397 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200398
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200399 ofs_to_right = cmdedit_x - cmdedit_termw;
400 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
401 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200402 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000403 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200404
405 if (ofs_to_right >= 0) {
406 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000407#if HACK_FOR_WRONG_WIDTH
408 /* This works better if our idea of term width is wrong
409 * and it is actually wider (often happens on serial lines).
410 * Printing CR,LF *forces* cursor to next line.
411 * OTOH if terminal width is correct AND terminal does NOT
412 * have automargin (IOW: it is moving cursor to next line
413 * by itself (which is wrong for VT-10x terminals)),
414 * this will break things: there will be one extra empty line */
415 puts("\r"); /* + implicit '\n' */
416#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200417 /* VT-10x terminals don't wrap cursor to next line when last char
418 * on the line is printed - cursor stays "over" this char.
419 * Need to print _next_ char too (first one to appear on next line)
420 * to make cursor move down to next line.
421 */
422 /* Works ok only if cmdedit_termw is correct. */
423 c = command_ps[cursor];
424 if (c == BB_NUL)
425 c = ' ';
426 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000427 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000428#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200429 cmdedit_y++;
430 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
431 width = 0;
432 } else { /* ofs_to_right > 0 */
433 /* wide char c didn't fit on prev line */
434 BB_PUTCHAR(c);
435 }
436 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000437 }
Erik Andersen13456d12000-03-16 08:09:57 +0000438}
439
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000440/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200441static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000442{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000443 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200444 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000445}
446
447/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000448static void goto_new_line(void)
449{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200450 put_till_end_and_adv_cursor();
Denys Vlasenkof5018da2018-04-06 17:58:21 +0200451 /* "cursor == 0" is only if prompt is "" and user input is empty */
452 if (cursor == 0 || cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000453 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000454}
455
Rob Landley88621d72006-08-29 19:41:06 +0000456static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000457{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000458 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000459}
460
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200461/* Full or last/sole prompt line, reset edit cursor, calculate terminal cursor.
462 * cmdedit_y is always calculated for the last/sole prompt line.
463 */
464static void put_prompt_custom(bool is_full)
Denys Vlasenko248c3242010-05-17 00:45:44 +0200465{
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200466 fputs((is_full ? cmdedit_prompt : prompt_last_line), stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200467 cursor = 0;
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100468 cmdedit_y = cmdedit_prmt_len / cmdedit_termw; /* new quasireal y */
469 cmdedit_x = cmdedit_prmt_len % cmdedit_termw;
Denys Vlasenko248c3242010-05-17 00:45:44 +0200470}
471
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200472#define put_prompt_last_line() put_prompt_custom(0)
473#define put_prompt() put_prompt_custom(1)
474
Eric Andersenaff114c2004-04-14 17:51:38 +0000475/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000476/* (optimized for slow terminals) */
477static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000478{
479 if (num > cursor)
480 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200481 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000482 return;
483 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000484
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200485 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
486 && unicode_status == UNICODE_ON
487 ) {
488 /* correct NUM to be equal to _screen_ width */
489 int n = num;
490 num = 0;
491 while (--n >= 0)
492 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
493 if (num == 0)
494 return;
495 }
496
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000497 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000498 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000499 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000500 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000501 * Also gets miscompiled for ARM users
502 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000503 * printf(("\b\b\b\b" + 4) - num);
504 * return;
505 */
506 do {
507 bb_putchar('\b');
508 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000509 return;
510 }
Marek Polacek7b181072010-10-28 21:34:56 +0200511 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000512 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000513 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000514
515 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200516 if (ENABLE_UNICODE_WIDE_WCHARS) {
517 /* With wide chars, it is hard to "backtrack"
518 * and reliably figure out where to put cursor.
519 * Example (<> is a wide char; # is an ordinary char, _ cursor):
520 * |prompt: <><> |
521 * |<><><><><><> |
522 * |_ |
523 * and user presses left arrow. num = 1, cmdedit_x = 0,
524 * We need to go up one line, and then - how do we know that
525 * we need to go *10* positions to the right? Because
526 * |prompt: <>#<>|
527 * |<><><>#<><><>|
528 * |_ |
529 * in this situation we need to go *11* positions to the right.
530 *
531 * A simpler thing to do is to redraw everything from the start
532 * up to new cursor position (which is already known):
533 */
534 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200535 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200536 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200537 cmdedit_y = 0;
538 sv_cursor = cursor;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200539 put_prompt_last_line(); /* sets cursor to 0 */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200540 while (cursor < sv_cursor)
541 put_cur_glyph_and_inc_cursor();
542 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200543 int lines_up;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200544 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200545 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200546 /* num=1...w: one line up, w+1...2w: two, etc: */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100547 lines_up = 1 + (num - 1) / cmdedit_termw;
548 cmdedit_x = (cmdedit_termw * cmdedit_y - num) % cmdedit_termw;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200549 cmdedit_y -= lines_up;
550 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200551 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200552 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200553 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
554 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200555 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200556 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000557 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000558}
559
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200560/* See redraw and draw_full below */
561static void draw_custom(int y, int back_cursor, bool is_full)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000562{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200563 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200564 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000565 bb_putchar('\r');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200566 put_prompt_custom(is_full);
Denys Vlasenko94043e82010-05-11 14:49:13 +0200567 put_till_end_and_adv_cursor();
568 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000569 input_backward(back_cursor);
570}
571
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200572/* Move y lines up, draw last/sole prompt line, editor line[s], and clear tail.
573 * goal: redraw the prompt+input+cursor in-place, overwriting the previous */
574#define redraw(y, back_cursor) draw_custom((y), (back_cursor), 0)
575
576/* Like above, but without moving up, and while using all the prompt lines.
577 * goal: draw a full prompt+input+cursor unrelated to a previous position.
578 * note: cmdedit_y always ends up relating to the last/sole prompt line */
579#define draw_full(back_cursor) draw_custom(0, (back_cursor), 1)
580
Paul Fox3f11b1b2005-08-04 19:04:46 +0000581/* Delete the char in front of the cursor, optionally saving it
582 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000583#if !ENABLE_FEATURE_EDITING_VI
584static void input_delete(void)
585#define input_delete(save) input_delete()
586#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000587static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000588#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000589{
Mark Whitley4e338752001-01-26 20:42:23 +0000590 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000591
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000592 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000593 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000594
Denis Vlasenko38f63192007-01-22 09:03:07 +0000595#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000596 if (save) {
597 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000598 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000599 newdelflag = 0;
600 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000601 if ((delptr - delbuf) < DELBUFSIZ)
602 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000603 }
604#endif
605
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200606 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200607 /* (command_len + 1 [because of NUL]) - (j + 1)
608 * simplified into (command_len - j) */
609 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000610 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200611 put_till_end_and_adv_cursor();
612 /* Last char is still visible, erase it (and more) */
613 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000614 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000615}
616
Denis Vlasenko38f63192007-01-22 09:03:07 +0000617#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000618static void put(void)
619{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000620 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000621 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000622
Paul Fox3f11b1b2005-08-04 19:04:46 +0000623 if (j == 0)
624 return;
625 ocursor = cursor;
626 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200627 memmove(command_ps + cursor + j, command_ps + cursor,
628 (command_len - cursor + 1) * sizeof(command_ps[0]));
629 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000630 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200631 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000632 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000633}
634#endif
635
Mark Whitley4e338752001-01-26 20:42:23 +0000636/* Delete the char in back of the cursor */
637static void input_backspace(void)
638{
639 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000640 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000641 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000642 }
643}
644
Eric Andersenaff114c2004-04-14 17:51:38 +0000645/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000646static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000647{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000648 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200649 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000650}
651
Denis Vlasenko38f63192007-01-22 09:03:07 +0000652#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000653
Mike Shalf3763032010-11-22 03:49:18 +0100654//FIXME:
655//needs to be more clever: currently it thinks that "foo\ b<TAB>
656//matches the file named "foo bar", which is untrue.
657//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
658//not "foo bar <cursor>...
659
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000660static void free_tab_completion_data(void)
661{
662 if (matches) {
663 while (num_matches)
664 free(matches[--num_matches]);
665 free(matches);
666 matches = NULL;
667 }
668}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000669
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000670static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000671{
Denys Vlasenkoc3797d42017-11-07 18:09:29 +0100672 unsigned char *p = (unsigned char*)matched;
673 while (*p) {
674 /* ESC attack fix: drop any string with control chars */
675 if (*p < ' '
676 || (!ENABLE_UNICODE_SUPPORT && *p >= 0x7f)
677 || (ENABLE_UNICODE_SUPPORT && *p == 0x7f)
678 ) {
679 free(matched);
680 return;
681 }
682 p++;
683 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000684 matches = xrealloc_vector(matches, 4, num_matches);
685 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000686 num_matches++;
687}
688
Mike Shalf3763032010-11-22 03:49:18 +0100689# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200690/* Replace "~user/..." with "/homedir/...".
691 * The parameter is malloced, free it or return it
692 * unchanged if no user is matched.
693 */
694static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000695{
696 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200697 char *tilde_name = ud;
698 char *home = NULL;
699
700 ud++; /* skip ~ */
701 if (*ud == '/') { /* "~/..." */
702 home = home_pwd_buf;
703 } else {
704 /* "~user/..." */
705 ud = strchr(ud, '/');
706 *ud = '\0'; /* "~user" */
707 entry = getpwnam(tilde_name + 1);
708 *ud = '/'; /* restore "~user/..." */
709 if (entry)
710 home = entry->pw_dir;
711 }
712 if (home) {
713 ud = concat_path_file(home, ud);
714 free(tilde_name);
715 tilde_name = ud;
716 }
717 return tilde_name;
718}
719
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200720/* ~use<tab> - find all users with this prefix.
721 * Return the length of the prefix used for matching.
722 */
723static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200724{
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100725 struct passwd *pw;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200726 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000727
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200728 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000729 userlen = strlen(ud);
730
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200731 setpwent();
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100732 while ((pw = getpwent()) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200733 /* Null usernames should result in all users as possible completions. */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100734 if (/* !ud[0] || */ is_prefixed_with(pw->pw_name, ud)) {
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100735 add_match(xasprintf("~%s/", pw->pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000736 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000737 }
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100738 endpwent(); /* don't keep password file open */
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200739
740 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000741}
Mike Shalf3763032010-11-22 03:49:18 +0100742# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000743
744enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000745 FIND_EXE_ONLY = 0,
746 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000747 FIND_FILE_ONLY = 2,
748};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000749
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100750static unsigned path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000751{
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100752 unsigned npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000753 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000754 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000755 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000756
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100757# if EDITING_HAS_path_lookup
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000758 if (state->flags & WITH_PATH_LOOKUP)
759 pth = state->path_lookup;
760 else
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100761# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000762 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200763
764 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000765 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
766 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000767
Denis Vlasenko253ce002007-01-22 08:34:44 +0000768 tmp = (char*)pth;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100769 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000770 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000771 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000772 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000773 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200774 tmp++;
775 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000776 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000777 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000778 }
779
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100780 *p = res = xzalloc((npth + 1) * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000781 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000782 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000783 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000784 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000785 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000786 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000787 *tmp++ = '\0'; /* ':' -> '\0' */
788 if (*tmp == '\0')
789 break; /* :<empty> */
790 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000791 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100792 /* special case: "match subdirectories of the current directory" */
793 /*res[npth++] = NULL; - filled by xzalloc() */
Mark Whitley4e338752001-01-26 20:42:23 +0000794 return npth;
795}
796
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200797/* Complete command, directory or file name.
798 * Return the length of the prefix used for matching.
799 */
800static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000801{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000802 char *path1[1];
803 char **paths = path1;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100804 unsigned npaths;
805 unsigned i;
806 unsigned baselen;
807 const char *basecmd;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200808 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000809
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000810 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000811 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000812
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100813 basecmd = strrchr(command, '/');
814 if (!basecmd) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200815 if (type == FIND_EXE_ONLY)
816 npaths = path_parse(&paths);
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100817 basecmd = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000818 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000819 /* point to 'l' in "..../last_component" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100820 basecmd++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200821 /* dirbuf = ".../.../.../" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100822 dirbuf = xstrndup(command, basecmd - command);
Mike Shalf3763032010-11-22 03:49:18 +0100823# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200824 if (dirbuf[0] == '~') /* ~/... or ~user/... */
825 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100826# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200827 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000828 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100829 baselen = strlen(basecmd);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000830
Denys Vlasenko13360522016-10-24 01:25:05 +0200831 if (type == FIND_EXE_ONLY && !dirbuf) {
Ron Yorston9e2a5662020-01-21 16:01:58 +0000832# if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
Ron Yorston37788982018-11-17 17:48:14 +0000833 const char *p = applet_names;
Ron Yorston2b919582016-04-08 11:57:20 +0100834 while (*p) {
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100835 if (strncmp(basecmd, p, baselen) == 0)
Ron Yorstonf23264b2015-05-29 11:31:40 +0100836 add_match(xstrdup(p));
Ron Yorston37788982018-11-17 17:48:14 +0000837 while (*p++ != '\0')
Ron Yorston2b919582016-04-08 11:57:20 +0100838 continue;
Ron Yorstonf23264b2015-05-29 11:31:40 +0100839 }
Denys Vlasenkof128bdb2017-07-29 00:59:24 +0200840# endif
Ron Yorston9e2a5662020-01-21 16:01:58 +0000841# if EDITING_HAS_get_exe_name
842 if (state->get_exe_name) {
843 i = 0;
844 for (;;) {
845 const char *b = state->get_exe_name(i++);
846 if (!b)
847 break;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100848 if (strncmp(basecmd, b, baselen) == 0)
Ron Yorston9e2a5662020-01-21 16:01:58 +0000849 add_match(xstrdup(b));
850 }
851 }
852# endif
853 }
Ron Yorstonf23264b2015-05-29 11:31:40 +0100854
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000855 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200856 DIR *dir;
857 struct dirent *next;
858 struct stat st;
859 char *found;
860
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100861 if (paths[i] == NULL) { /* path_parse()'s last component? */
862 /* in PATH completion, current dir's subdir names
863 * can be completions (but only subdirs, not files).
864 */
Ron Yorston8baa6432020-12-11 12:34:21 +0000865 type = FIND_DIR_ONLY;
866 paths[i] = (char *)".";
867 }
868
Mark Whitley4e338752001-01-26 20:42:23 +0000869 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000870 if (!dir)
871 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000872
873 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200874 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200875 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000876
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200877 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100878 if (!basecmd[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000879 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200880 /* match? */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100881 if (strncmp(basecmd, name_found, baselen) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200882 continue; /* no */
883
884 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000885 /* NB: stat() first so that we see is it a directory;
886 * but if that fails, use lstat() so that
887 * we still match dangling links */
888 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200889 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000890
Denys Vlasenko39263632010-09-03 14:11:08 +0200891 /* Save only name */
892 len = strlen(name_found);
893 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
894 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000895
Mark Whitley4e338752001-01-26 20:42:23 +0000896 if (S_ISDIR(st.st_mode)) {
Ron Yorston8506dd62020-12-10 14:44:57 +0000897 /* skip directories if searching PATH */
898 if (type == FIND_EXE_ONLY && !dirbuf)
899 goto cont;
Denys Vlasenko39263632010-09-03 14:11:08 +0200900 /* name is a directory, add slash */
901 found[len] = '/';
902 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000903 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200904 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000905 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000906 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000907 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200908 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000909 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000910 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000911 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000912 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000913 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000914 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200915 } /* for every path */
916
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000917 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000918 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000919 free(paths);
920 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200921 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200922
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100923 return baselen;
Erik Andersen6273f652000-03-17 01:12:41 +0000924}
Erik Andersenf0657d32000-04-12 17:49:52 +0000925
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200926/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200927 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200928 * was pressed. This function looks at it, figures out what part of it
929 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200930 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200931 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200932#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200933/* Helpers: */
934/* QUOT is used on elements of int_buf[], which are bytes,
935 * not Unicode chars. Therefore it works correctly even in Unicode mode.
936 */
937#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200938static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200939{
940 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200941 if (beg == end)
942 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200943
944 while ((int_buf[beg] = int_buf[end]) != 0)
945 beg++, end++;
946
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200947 if (dbg_bmp) {
948 int i;
949 for (i = 0; int_buf[i]; i++)
950 bb_putchar((unsigned char)int_buf[i]);
951 bb_putchar('\n');
952 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200953}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200954/* Caller ensures that match_buf points to a malloced buffer
955 * big enough to hold strlen(match_buf)*2 + 2
956 */
957static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000958{
959 int i, j;
960 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200961 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000962
Denys Vlasenko76939e72010-09-03 14:09:24 +0200963 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200964
Denys Vlasenko76939e72010-09-03 14:09:24 +0200965 /* Copy in reverse order, since they overlap */
966 i = strlen(match_buf);
967 do {
968 int_buf[i] = (unsigned char)match_buf[i];
969 i--;
970 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000971
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200972 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200973 for (i = 0; int_buf[i]; i++) {
974 if (int_buf[i] == '\\') {
975 remove_chunk(int_buf, i, i + 1);
976 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000977 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200978 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200979 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200980 {
981 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200982 i = 0;
983 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200984 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200985 if (!cur)
986 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200987 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200988 if (!in_quote || (cur == in_quote)) {
989 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200990 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200991 continue;
992 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000993 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200994 if (in_quote)
995 int_buf[i] = cur | QUOT;
996 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200997 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000998 }
999
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001000 /* Remove everything up to command delimiters:
1001 * ';' ';;' '&' '|' '&&' '||',
1002 * but careful with '>&' '<&' '>|'
1003 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001004 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001005 int cur = int_buf[i];
1006 if (cur == ';' || cur == '&' || cur == '|') {
1007 int prev = i ? int_buf[i - 1] : 0;
1008 if (cur == '&' && (prev == '>' || prev == '<')) {
1009 continue;
1010 } else if (cur == '|' && prev == '>') {
1011 continue;
1012 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001013 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001014 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001015 }
1016 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001017 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001018 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001019 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001020 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001021 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001022 /* `cmd` should count as a word:
1023 * `cmd` c<tab> should search for files c*,
1024 * not commands c*. Therefore we don't drop
1025 * `cmd` entirely, we replace it with single `.
1026 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001027 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001028 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001029 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001030 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001031 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001032 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001033 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001034 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001035 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001036 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001037
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001038 /* Remove "cmd (" and "cmd {"
1039 * Example: "if { c<tab>"
1040 * In this example, c should be matched as command pfx.
1041 */
1042 for (i = 0; int_buf[i]; i++) {
1043 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001044 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001045 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001046 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001047 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001048
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001049 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001050 for (i = 0; int_buf[i]; i++)
1051 if (int_buf[i] != ' ')
1052 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001053 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001054
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001055 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001056 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001057 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001058 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001059 if (int_buf[i] == ' '
1060 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001061 && (char)int_buf[0] == 'c'
1062 && (char)int_buf[1] == 'd'
1063 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001064 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001065 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001066 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001067 command_mode = FIND_FILE_ONLY;
1068 break;
1069 }
1070 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001071 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001072 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001073
1074 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001075 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
1076 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001077 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001078 int cur = int_buf[i];
1079 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001080 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001081 break;
1082 }
1083 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001084
Denys Vlasenko76939e72010-09-03 14:09:24 +02001085 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001086 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001087 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001088 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001089
Denys Vlasenko76939e72010-09-03 14:09:24 +02001090 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001091
1092 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001093}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001094
Glenn L McGrath4d001292003-01-06 01:11:50 +00001095/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001096 * Display by column (original idea from ls applet,
1097 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001098 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001099static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001100{
1101 int ncols, row;
1102 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001103 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001104 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001105 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001106
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001107 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001108 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001109 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001110 if (column_width < l)
1111 column_width = l;
1112 }
1113 column_width += 2; /* min space for columns */
1114 ncols = cmdedit_termw / column_width;
1115
1116 if (ncols > 1) {
1117 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001118 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001119 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001120 } else {
1121 ncols = 1;
1122 }
1123 for (row = 0; row < nrows; row++) {
1124 int n = row;
1125 int nc;
1126
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001127 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001128 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001129 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001130 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001131 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001132 if (ENABLE_UNICODE_SUPPORT)
Denys Vlasenko349d72c2018-09-30 16:56:56 +02001133 puts(printable_string(matches[n]));
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001134 else
1135 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001136 }
1137}
1138
Mike Shalf3763032010-11-22 03:49:18 +01001139static const char *is_special_char(char c)
1140{
1141 return strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", c);
1142}
1143
1144static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001145{
1146 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001147 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001148
1149 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001150 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001151 s[l++] = '\\';
1152 s[l++] = *found++;
1153 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001154 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001155 return s;
1156}
1157
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001158/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001159static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001160{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001161 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001162 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001163 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001164 /* Length of string used for matching */
1165 unsigned match_pfx_len = match_pfx_len;
1166 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001167# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001168 /* cursor pos in command converted to multibyte form */
1169 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001170# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001171 if (!(state->flags & TAB_COMPLETION))
1172 return;
1173
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001174 if (*lastWasTab) {
1175 /* The last char was a TAB too.
1176 * Print a list of all the available choices.
1177 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001178 if (num_matches > 0) {
1179 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001180 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001181 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001182 showfiles();
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001183 draw_full(command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001184 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001185 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001186 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001187
1188 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001189 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001190
Denys Vlasenko76939e72010-09-03 14:09:24 +02001191 /* Make a local copy of the string up to the position of the cursor.
1192 * build_match_prefix will expand it into int16_t's, need to allocate
1193 * twice as much as the string_len+1.
1194 * (we then also (ab)use this extra space later - see (**))
1195 */
1196 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001197# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001198 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001199# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001200 {
1201 CHAR_T wc = command_ps[cursor];
1202 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001203 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001204 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001205 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001206 }
Mike Shalf3763032010-11-22 03:49:18 +01001207# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001208 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001209
1210 /* Free up any memory already allocated */
1211 free_tab_completion_data();
1212
Mike Shalf3763032010-11-22 03:49:18 +01001213# if ENABLE_FEATURE_USERNAME_COMPLETION
1214 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001215 * then try completing this word as a username. */
1216 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001217 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1218 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001219# endif
1220 /* If complete_username() did not match,
1221 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001222 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001223 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001224
1225 /* Account for backslashes which will be inserted
1226 * by quote_special_chars() later */
1227 {
1228 const char *e = match_buf + strlen(match_buf);
1229 const char *s = e - match_pfx_len;
1230 while (s < e)
1231 if (is_special_char(*s++))
1232 match_pfx_len++;
1233 }
1234
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001235 /* Remove duplicates */
1236 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001237 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001238 qsort_string_vector(matches, num_matches);
1239 for (i = 0; i < num_matches - 1; ++i) {
1240 //if (matches[i] && matches[i+1]) { /* paranoia */
1241 if (strcmp(matches[i], matches[i+1]) == 0) {
1242 free(matches[i]);
1243 //matches[i] = NULL; /* paranoia */
1244 } else {
1245 matches[n++] = matches[i];
1246 }
1247 //}
1248 }
1249 matches[n++] = matches[i];
1250 num_matches = n;
1251 }
Mike Shalf3763032010-11-22 03:49:18 +01001252
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001253 /* Did we find exactly one match? */
1254 if (num_matches != 1) { /* no */
1255 char *cp;
1256 beep();
1257 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001258 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001259 /* Find common prefix */
1260 chosen_match = xstrdup(matches[0]);
1261 for (cp = chosen_match; *cp; cp++) {
1262 unsigned n;
1263 for (n = 1; n < num_matches; n++) {
1264 if (matches[n][cp - chosen_match] != *cp) {
1265 goto stop;
1266 }
1267 }
1268 }
1269 stop:
1270 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001271 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001272 }
1273 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001274 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001275 free(chosen_match);
1276 chosen_match = cp;
1277 len_found = strlen(chosen_match);
1278 } else { /* exactly one match */
1279 /* Next <tab> is not a double-tab */
1280 *lastWasTab = 0;
1281
Mike Shalf3763032010-11-22 03:49:18 +01001282 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001283 len_found = strlen(chosen_match);
1284 if (chosen_match[len_found-1] != '/') {
1285 chosen_match[len_found] = ' ';
1286 chosen_match[++len_found] = '\0';
1287 }
1288 }
1289
Mike Shalf3763032010-11-22 03:49:18 +01001290# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001291 /* Have space to place the match? */
1292 /* The result consists of three parts with these lengths: */
1293 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1294 /* it simplifies into: */
1295 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1296 int pos;
1297 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001298 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001299 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001300 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001301 command_len = strlen(command_ps);
1302 /* new pos */
1303 pos = cursor + len_found - match_pfx_len;
1304 /* write out the matched command */
1305 redraw(cmdedit_y, command_len - pos);
1306 }
Mike Shalf3763032010-11-22 03:49:18 +01001307# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001308 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001309 /* Use 2nd half of match_buf as scratch space - see (**) */
1310 char *command = match_buf + MAX_LINELEN;
1311 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001312 /* Have space to place the match? */
1313 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1314 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1315 int pos;
1316 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001317 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001318 /* where do we want to have cursor after all? */
1319 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001320 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001321 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001322 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001323 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001324 /* write out the matched command */
1325 /* paranoia: load_string can return 0 on conv error,
1326 * prevent passing pos = (0 - 12) to redraw */
1327 pos = command_len - len;
1328 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1329 }
1330 }
Mike Shalf3763032010-11-22 03:49:18 +01001331# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001332 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001333 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001334 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001335}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001336
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001337#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001338
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001339
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001340line_input_t* FAST_FUNC new_line_input_t(int flags)
1341{
1342 line_input_t *n = xzalloc(sizeof(*n));
1343 n->flags = flags;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02001344 n->timeout = -1;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001345#if MAX_HISTORY > 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001346 n->max_history = MAX_HISTORY;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001347#endif
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001348 return n;
1349}
1350
1351
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001352#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001353
Flemming Madsend96ffda2013-04-07 18:47:24 +02001354unsigned FAST_FUNC size_from_HISTFILESIZE(const char *hp)
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001355{
1356 int size = MAX_HISTORY;
1357 if (hp) {
1358 size = atoi(hp);
1359 if (size <= 0)
1360 return 1;
1361 if (size > MAX_HISTORY)
1362 return MAX_HISTORY;
1363 }
1364 return size;
1365}
1366
Denis Vlasenko682ad302008-09-27 01:28:56 +00001367static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001368{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001369 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001370 int cur = state->cur_history;
1371 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001372
Denys Vlasenko19158a82010-03-26 14:06:56 +01001373# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001374 {
1375 char tbuf[MAX_LINELEN];
1376 save_string(tbuf, sizeof(tbuf));
1377 state->history[cur] = xstrdup(tbuf);
1378 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001379# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001380 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001381# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001382 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001383}
1384
1385/* state->flags is already checked to be nonzero */
1386static int get_previous_history(void)
1387{
1388 if ((state->flags & DO_HISTORY) && state->cur_history) {
1389 save_command_ps_at_cur_history();
1390 state->cur_history--;
1391 return 1;
1392 }
1393 beep();
1394 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001395}
1396
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001397static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001398{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001399 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001400 if (state->cur_history < state->cnt_history) {
1401 save_command_ps_at_cur_history(); /* save the current history line */
1402 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001403 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001404 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001405 beep();
1406 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001407}
Robert Griebl350d26b2002-12-03 22:45:46 +00001408
Flemming Madsend96ffda2013-04-07 18:47:24 +02001409/* Lists command history. Used by shell 'history' builtins */
1410void FAST_FUNC show_history(const line_input_t *st)
1411{
1412 int i;
1413
1414 if (!st)
1415 return;
1416 for (i = 0; i < st->cnt_history; i++)
1417 printf("%4d %s\n", i, st->history[i]);
1418}
1419
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001420void FAST_FUNC free_line_input_t(line_input_t *n)
1421{
1422# if ENABLE_FEATURE_EDITING_SAVEHISTORY
1423 int i = n->cnt_history;
1424 while (i > 0)
1425 free(n->history[--i]);
1426#endif
1427 free(n);
1428}
1429
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001430# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001431/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001432 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001433 * Otherwise shell users get unhappy.
1434 *
1435 * History file is trimmed lazily, when it grows several times longer
1436 * than configured MAX_HISTORY lines.
1437 */
1438
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001439/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001440static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001441{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001442 char *temp_h[MAX_HISTORY];
1443 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001444 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001445 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001446
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001447 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001448
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001449 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001450 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001451 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001452 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001453 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001454 free(st_parm->history[idx]);
1455 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001456 }
1457
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001458 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1459 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001460 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001461 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001462 while ((line = xmalloc_fgetline(fp)) != NULL) {
1463 if (line[0] == '\0') {
1464 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001465 continue;
1466 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001467 free(temp_h[idx]);
1468 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001469 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001470 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001471 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001472 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001473 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001474 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001475
1476 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001477 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001478 while (temp_h[idx] == NULL) {
1479 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001480 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001481 idx = 0;
1482 }
1483 }
1484
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001485 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001486 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001487 line = temp_h[idx];
1488 if (!line)
1489 break;
1490 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001491 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001492 idx = 0;
1493 line_len = strlen(line);
1494 if (line_len >= MAX_LINELEN)
1495 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001496 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001497 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001498 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001499 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1500 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001501 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001502}
1503
Denys Vlasenkobede2152011-09-04 16:12:33 +02001504# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1505void save_history(line_input_t *st)
1506{
1507 FILE *fp;
1508
Denys Vlasenkobede2152011-09-04 16:12:33 +02001509 if (!st->hist_file)
1510 return;
1511 if (st->cnt_history <= st->cnt_history_in_file)
1512 return;
1513
1514 fp = fopen(st->hist_file, "a");
1515 if (fp) {
1516 int i, fd;
1517 char *new_name;
1518 line_input_t *st_temp;
1519
1520 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1521 fprintf(fp, "%s\n", st->history[i]);
1522 fclose(fp);
1523
1524 /* we may have concurrently written entries from others.
1525 * load them */
1526 st_temp = new_line_input_t(st->flags);
1527 st_temp->hist_file = st->hist_file;
1528 st_temp->max_history = st->max_history;
1529 load_history(st_temp);
1530
1531 /* write out temp file and replace hist_file atomically */
1532 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1533 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1534 if (fd >= 0) {
1535 fp = xfdopen_for_write(fd);
1536 for (i = 0; i < st_temp->cnt_history; i++)
1537 fprintf(fp, "%s\n", st_temp->history[i]);
1538 fclose(fp);
1539 if (rename(new_name, st->hist_file) == 0)
1540 st->cnt_history_in_file = st_temp->cnt_history;
1541 }
1542 free(new_name);
1543 free_line_input_t(st_temp);
1544 }
1545}
1546# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001547static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001548{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001549 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001550 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001551
Denys Vlasenkobede2152011-09-04 16:12:33 +02001552 if (!state->hist_file)
1553 return;
1554
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001555 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001556 if (fd < 0)
1557 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001558 xlseek(fd, 0, SEEK_END); /* paranoia */
1559 len = strlen(str);
1560 str[len] = '\n'; /* we (try to) do atomic write */
1561 len2 = full_write(fd, str, len + 1);
1562 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001563 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001564 if (len2 != len + 1)
1565 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001566
1567 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001568 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001569 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001570 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001571 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001572
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001573 /* we may have concurrently written entries from others.
1574 * load them */
1575 st_temp = new_line_input_t(state->flags);
1576 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001577 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001578 load_history(st_temp);
1579
1580 /* write out temp file and replace hist_file atomically */
1581 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001582 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001583 if (fd >= 0) {
1584 FILE *fp;
1585 int i;
1586
1587 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001588 for (i = 0; i < st_temp->cnt_history; i++)
1589 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001590 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001591 if (rename(new_name, state->hist_file) == 0)
1592 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001593 }
1594 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001595 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001596 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001597}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001598# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001599# else
1600# define load_history(a) ((void)0)
1601# define save_history(a) ((void)0)
1602# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001603
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001604static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001605{
1606 int i;
1607
1608 if (!(state->flags & DO_HISTORY))
1609 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001610 if (str[0] == '\0')
1611 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001612 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001613 /* Don't save dupes */
1614 if (i && strcmp(state->history[i-1], str) == 0)
1615 return;
1616
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001617 free(state->history[state->max_history]); /* redundant, paranoia */
1618 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001619
1620 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001621 /* we need to keep history[state->max_history] empty, hence >=, not > */
1622 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001623 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001624 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001625 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001626 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001627# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1628 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001629 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001630# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001631 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001632 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001633 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001634 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001635 state->cur_history = i;
1636 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001637# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1638 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001639# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001640}
1641
1642#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001643# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001644#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001645
1646
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001647#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001648/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001649 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001650 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001651static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001652vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001653{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001654 CHAR_T *command = command_ps;
1655
1656 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001657 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001658 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001659 input_forward();
1660}
1661
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001662static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001663vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001664{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001665 CHAR_T *command = command_ps;
1666
Natanael Copa7e6f9312016-08-14 23:30:29 +02001667 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001668 while (cursor < command_len
Natanael Copa7e6f9312016-08-14 23:30:29 +02001669 && (BB_isalnum_or_underscore(command[cursor+1]))
Denys Vlasenko13028922009-07-12 00:51:15 +02001670 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001671 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001672 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001673 } else if (BB_ispunct(command[cursor])) {
1674 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001675 input_forward();
1676 }
1677
Denis Vlasenko253ce002007-01-22 08:34:44 +00001678 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001679 input_forward();
1680
Denys Vlasenko13028922009-07-12 00:51:15 +02001681 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001682 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001683 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001684 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001685}
1686
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001687static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001688vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001689{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001690 CHAR_T *command = command_ps;
1691
Paul Fox3f11b1b2005-08-04 19:04:46 +00001692 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001693 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001694 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001695 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001696 input_forward();
1697}
1698
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001699static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001700vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001701{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001702 CHAR_T *command = command_ps;
1703
Denis Vlasenko253ce002007-01-22 08:34:44 +00001704 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001705 return;
1706 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001707 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001708 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001709 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001710 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001711 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001712 while (cursor < command_len-1
Natanael Copa7e6f9312016-08-14 23:30:29 +02001713 && (BB_isalnum_or_underscore(command[cursor+1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001714 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001715 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001716 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001717 } else if (BB_ispunct(command[cursor])) {
1718 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001719 input_forward();
1720 }
1721}
1722
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001723static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001724vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001725{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001726 CHAR_T *command = command_ps;
1727
1728 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001729 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001730 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001731 input_backward(1);
1732}
1733
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001734static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001735vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001736{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001737 CHAR_T *command = command_ps;
1738
Paul Fox3f11b1b2005-08-04 19:04:46 +00001739 if (cursor <= 0)
1740 return;
1741 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001742 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001743 input_backward(1);
1744 if (cursor <= 0)
1745 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001746 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001747 while (cursor > 0
Natanael Copa7e6f9312016-08-14 23:30:29 +02001748 && (BB_isalnum_or_underscore(command[cursor-1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001749 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001750 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001751 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001752 } else if (BB_ispunct(command[cursor])) {
1753 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001754 input_backward(1);
1755 }
1756}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001757#endif
1758
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001759/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1760static void ctrl_left(void)
1761{
1762 CHAR_T *command = command_ps;
1763
1764 while (1) {
1765 CHAR_T c;
1766
1767 input_backward(1);
1768 if (cursor == 0)
1769 break;
1770 c = command[cursor];
1771 if (c != ' ' && !BB_ispunct(c)) {
1772 /* we reached a "word" delimited by spaces/punct.
1773 * go to its beginning */
1774 while (1) {
1775 c = command[cursor - 1];
1776 if (c == ' ' || BB_ispunct(c))
1777 break;
1778 input_backward(1);
1779 if (cursor == 0)
1780 break;
1781 }
1782 break;
1783 }
1784 }
1785}
1786static void ctrl_right(void)
1787{
1788 CHAR_T *command = command_ps;
1789
1790 while (1) {
1791 CHAR_T c;
1792
1793 c = command[cursor];
1794 if (c == BB_NUL)
1795 break;
1796 if (c != ' ' && !BB_ispunct(c)) {
1797 /* we reached a "word" delimited by spaces/punct.
1798 * go to its end + 1 */
1799 while (1) {
1800 input_forward();
1801 c = command[cursor];
1802 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1803 break;
1804 }
1805 break;
1806 }
1807 input_forward();
1808 }
1809}
1810
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001811
1812/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001813 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001814 */
1815
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001816#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1817static void ask_terminal(void)
1818{
1819 /* Ask terminal where is the cursor now.
1820 * lineedit_read_key handles response and corrects
1821 * our idea of current cursor position.
1822 * Testcase: run "echo -n long_line_long_line_long_line",
1823 * then type in a long, wrapping command and try to
1824 * delete it using backspace key.
1825 * Note: we print it _after_ prompt, because
1826 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1827 */
1828 /* Problem: if there is buffered input on stdin,
1829 * the response will be delivered later,
1830 * possibly to an unsuspecting application.
1831 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1832 * Result:
1833 * ~/srcdevel/bbox/fix/busybox.t4 #
1834 * ~/srcdevel/bbox/fix/busybox.t4 #
1835 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1836 * ~/srcdevel/bbox/fix/busybox.t4 #
1837 *
1838 * Checking for input with poll only makes the race narrower,
1839 * I still can trigger it. Strace:
1840 *
1841 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1842 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1843 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001844 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001845 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1846 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001847 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001848
Denys Vlasenko451add42010-07-25 00:06:41 +02001849 pfd.fd = STDIN_FILENO;
1850 pfd.events = POLLIN;
1851 if (safe_poll(&pfd, 1, 0) == 0) {
1852 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001853 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001854 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001855 }
1856}
1857#else
1858#define ask_terminal() ((void)0)
1859#endif
1860
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001861/* Note about multi-line PS1 (e.g. "\n\w \u@\h\n> ") and prompt redrawing:
1862 *
1863 * If the prompt has any newlines, after we print it once we use only its last
1864 * line to redraw in-place, which makes it simpler to calculate how many lines
1865 * we should move the cursor up to align the redraw (cmdedit_y). The earlier
1866 * prompt lines just stay on screen and we redraw below them.
1867 *
1868 * Use cases for all prompt lines beyond the initial draw:
1869 * - After clear-screen (^L) or after displaying tab-completion choices, we
1870 * print the full prompt, as it isn't redrawn in-place.
1871 * - During terminal resize we could try to redraw all lines, but we don't,
1872 * because it requires delicate alignment, it's good enough with only the
1873 * last line, and doing it wrong is arguably worse than not doing it at all.
1874 *
1875 * Terminology wise, if it doesn't mention "full", then it means the last/sole
1876 * prompt line. We use the prompt (last/sole line) while redrawing in-place,
1877 * and the full where we need a fresh one unrelated to an earlier position.
1878 *
1879 * If PS1 is not multiline, the last/sole line and the full are the same string.
1880 */
1881
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001882/* Called just once at read_line_input() init time */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001883#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001884static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001885{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001886 const char *p;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001887 cmdedit_prompt = prompt_last_line = prmt_ptr;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001888 p = strrchr(prmt_ptr, '\n');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001889 if (p)
1890 prompt_last_line = p + 1;
1891 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001892 put_prompt();
1893}
1894#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001895static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001896{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001897 int prmt_size = 0;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001898 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001899 char *cwd_buf = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001900 char flg_not_length = '[';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001901 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001902
Denys Vlasenko7a180432013-08-19 16:44:05 +02001903 /*cmdedit_prmt_len = 0; - already is */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001904
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001905 cbuf[1] = '\0'; /* never changes */
1906
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001907 while (*prmt_ptr) {
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001908 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001909 char *free_me = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001910 char *pbuf;
1911 char c;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001912
1913 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001914 c = *prmt_ptr++;
1915 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001916 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001917 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001918/*
1919 * Supported via bb_process_escape_sequence:
1920 * \a ASCII bell character (07)
1921 * \e ASCII escape character (033)
1922 * \n newline
1923 * \r carriage return
1924 * \\ backslash
1925 * \nnn char with octal code nnn
1926 * Supported:
1927 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001928 * \w current working directory, with $HOME abbreviated with a tilde
1929 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001930 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001931 * \h hostname up to the first '.'
1932 * \H hostname
1933 * \u username
1934 * \[ begin a sequence of non-printing characters
1935 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001936 * \T current time in 12-hour HH:MM:SS format
1937 * \@ current time in 12-hour am/pm format
1938 * \A current time in 24-hour HH:MM format
1939 * \t current time in 24-hour HH:MM:SS format
1940 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001941 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001942 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001943 * \# command number of this command
1944 * \j number of jobs currently managed by the shell
1945 * \l basename of the shell's terminal device name
1946 * \s name of the shell, the basename of $0 (the portion following the final slash)
1947 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001948 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1949 * \D{format}
1950 * format is passed to strftime(3).
1951 * An empty format results in a locale-specific time representation.
1952 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001953 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001954 * \v version of bash (e.g., 2.00)
1955 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01001956 cp = prmt_ptr;
1957 c = *cp;
1958 if (c != 't') /* don't treat \t as tab */
1959 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001960 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001961 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001962 break;
1963 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001964
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001965 switch (c) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001966 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001967 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001968 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001969 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001970 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001971 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001972 if (c == 'h')
1973 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001974 break;
1975 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001976 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001977 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001978 case 'T': /* 12-hour HH:MM:SS format */
1979 case '@': /* 12-hour am/pm format */
1980 case 'A': /* 24-hour HH:MM format */
1981 case 't': /* 24-hour HH:MM:SS format */
1982 /* We show all of them as 24-hour HH:MM */
1983 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
1984 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001985 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001986 case 'w': /* current dir */
1987 case 'W': /* basename of cur dir */
1988 if (!cwd_buf) {
1989 cwd_buf = xrealloc_getcwd_or_warn(NULL);
1990 if (!cwd_buf)
1991 cwd_buf = (char *)bb_msg_unknown;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001992 else if (home_pwd_buf[0]) {
1993 char *after_home_user;
1994
Denys Vlasenko1d145692013-03-29 13:09:05 +01001995 /* /home/user[/something] -> ~[/something] */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001996 after_home_user = is_prefixed_with(cwd_buf, home_pwd_buf);
1997 if (after_home_user
1998 && (*after_home_user == '/' || *after_home_user == '\0')
Denys Vlasenko1d145692013-03-29 13:09:05 +01001999 ) {
2000 cwd_buf[0] = '~';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002001 overlapping_strcpy(cwd_buf + 1, after_home_user);
Denys Vlasenko1d145692013-03-29 13:09:05 +01002002 }
2003 }
2004 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002005 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002006 if (c == 'w')
2007 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00002008 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01002009 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01002010 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002011 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002012// bb_process_escape_sequence does this now:
2013// case 'e': case 'E': /* \e \E = \033 */
2014// c = '\033';
2015// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002016 case 'x': case 'X': {
2017 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002018 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002019 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002020 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002021 buf2[l] = '\0';
2022 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002023 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002024 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002025 break;
2026 }
2027 prmt_ptr++;
2028 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002029 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002030 if (c == 0)
2031 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002032 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002033 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002034 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002035 case '[': case ']':
2036 if (c == flg_not_length) {
Denys Vlasenko7a180432013-08-19 16:44:05 +02002037 /* Toggle '['/']' hex 5b/5d */
2038 flg_not_length ^= 6;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002039 continue;
2040 }
2041 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002042 } /* switch */
2043 } /* if */
2044 } /* if */
2045 cbuf[0] = c;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002046 {
2047 int n = strlen(pbuf);
2048 prmt_size += n;
2049 if (c == '\n')
2050 cmdedit_prmt_len = 0;
2051 else if (flg_not_length != ']') {
Audun-Marius Gangstø9bf44992020-11-21 12:26:39 +01002052#if ENABLE_UNICODE_SUPPORT
2053 if (n == 1) {
2054 /* Only count single-byte characters and the first of multi-byte characters */
2055 if ((unsigned char)*pbuf < 0x80 /* single byte character */
2056 || (unsigned char)*pbuf >= 0xc0 /* first of multi-byte characters */
2057 ) {
2058 cmdedit_prmt_len += n;
2059 }
2060 } else {
2061 cmdedit_prmt_len += unicode_strwidth(pbuf);
2062 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002063#else
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002064 cmdedit_prmt_len += n;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002065#endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002066 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002067 }
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002068 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_size+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002069 free(free_me);
2070 } /* while */
2071
2072 if (cwd_buf != (char *)bb_msg_unknown)
2073 free(cwd_buf);
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002074 /* see comment (above this function) about multiline prompt redrawing */
2075 cmdedit_prompt = prompt_last_line = prmt_mem_ptr;
2076 prmt_ptr = strrchr(cmdedit_prompt, '\n');
2077 if (prmt_ptr)
2078 prompt_last_line = prmt_ptr + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002079 put_prompt();
2080}
Denys Vlasenkoa97a7952020-12-16 11:14:08 +01002081#endif /* FEATURE_EDITING_FANCY_PROMPT */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002082
Ron Yorston23286902018-02-25 20:09:54 +01002083#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko038a9772016-11-28 01:10:16 +01002084static void cmdedit_setwidth(void)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002085{
Denys Vlasenko038a9772016-11-28 01:10:16 +01002086 int new_y;
2087
2088 cmdedit_termw = get_terminal_width(STDIN_FILENO);
2089 /* new y for current cursor */
2090 new_y = (cursor + cmdedit_prmt_len) / cmdedit_termw;
2091 /* redraw */
2092 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002093}
2094
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002095static void win_changed(int nsig UNUSED_PARAM)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002096{
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002097 if (S.ok_to_redraw) {
2098 /* We are in read_key(), safe to redraw immediately */
2099 int sv_errno = errno;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002100 cmdedit_setwidth();
2101 fflush_all();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002102 errno = sv_errno;
2103 } else {
2104 /* Signal main loop that redraw is necessary */
2105 S.SIGWINCH_count++;
2106 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002107}
Ron Yorston23286902018-02-25 20:09:54 +01002108#endif
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002109
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002110static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002111{
Denys Vlasenko020f4062009-05-17 16:44:54 +02002112 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002113#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002114 char unicode_buf[MB_CUR_MAX + 1];
2115 int unicode_idx = 0;
2116#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02002117
Denys Vlasenko038a9772016-11-28 01:10:16 +01002118 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002119 while (1) {
2120 /* Wait for input. TIMEOUT = -1 makes read_key wait even
2121 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
2122 * insist on full MB_CUR_MAX buffer to declare input like
2123 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
2124 *
2125 * Note: read_key sets errno to 0 on success.
2126 */
Ron Yorston23286902018-02-25 20:09:54 +01002127 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 1;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002128 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
Ron Yorston23286902018-02-25 20:09:54 +01002129 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 0;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002130 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01002131#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002132 if (errno == EAGAIN && unicode_idx != 0)
2133 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01002134#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002135 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02002136 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002137
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002138#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2139 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002140 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02002141 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002142 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002143 if (cursor == 0) { /* otherwise it may be bogus */
2144 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002145 /*
2146 * Is col > cmdedit_prmt_len?
2147 * If yes (terminal says cursor is farther to the right
2148 * of where we think it should be),
2149 * the prompt wasn't printed starting at col 1,
2150 * there was additional text before it.
2151 */
2152 if ((int)(col - cmdedit_prmt_len) > 0) {
2153 /* Fix our understanding of current x position */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002154 cmdedit_x += (col - cmdedit_prmt_len);
2155 while (cmdedit_x >= cmdedit_termw) {
2156 cmdedit_x -= cmdedit_termw;
2157 cmdedit_y++;
2158 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02002159 }
2160 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002161 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02002162 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002163#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002164
Denys Vlasenko19158a82010-03-26 14:06:56 +01002165#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002166 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002167 wchar_t wc;
2168
2169 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002170 break;
2171 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002172
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002173 unicode_buf[unicode_idx++] = ic;
2174 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002175 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2176 /* Not (yet?) a valid unicode char */
2177 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002178 timeout = 50;
2179 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002180 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002181 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002182 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002183 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002184# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002185 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002186# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002187 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002188# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002189 } else {
2190 /* Valid unicode char, return its code */
2191 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002192 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002193 }
2194#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002195 break;
2196 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002197
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002198 return ic;
2199}
2200
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002201#if ENABLE_UNICODE_BIDI_SUPPORT
2202static int isrtl_str(void)
2203{
2204 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002205
2206 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002207 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002208 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002209}
2210#else
2211# define isrtl_str() 0
2212#endif
2213
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002214/* leave out the "vi-mode"-only case labels if vi editing isn't
2215 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002216#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002217
2218/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002219#undef CTRL
2220#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002221
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002222enum {
2223 VI_CMDMODE_BIT = 0x40000000,
2224 /* 0x80000000 bit flags KEYCODE_xxx */
2225};
2226
2227#if ENABLE_FEATURE_REVERSE_SEARCH
2228/* Mimic readline Ctrl-R reverse history search.
2229 * When invoked, it shows the following prompt:
2230 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2231 * and typing results in search being performed:
2232 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2233 * Search is performed by looking at progressively older lines in history.
2234 * Ctrl-R again searches for the next match in history.
2235 * Backspace deletes last matched char.
2236 * Control keys exit search and return to normal editing (at current history line).
2237 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002238static int32_t reverse_i_search(int timeout)
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002239{
2240 char match_buf[128]; /* for user input */
2241 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2242 const char *matched_history_line;
2243 const char *saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002244 unsigned saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002245 int32_t ic;
2246
2247 matched_history_line = NULL;
2248 read_key_buffer[0] = 0;
2249 match_buf[0] = '\0';
2250
2251 /* Save and replace the prompt */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002252 saved_prompt = prompt_last_line;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002253 saved_prmt_len = cmdedit_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002254 goto set_prompt;
2255
2256 while (1) {
2257 int h;
2258 unsigned match_buf_len = strlen(match_buf);
2259
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002260//FIXME: correct timeout? (i.e. count it down?)
2261 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002262
2263 switch (ic) {
2264 case CTRL('R'): /* searching for the next match */
2265 break;
2266
2267 case '\b':
2268 case '\x7f':
2269 /* Backspace */
2270 if (unicode_status == UNICODE_ON) {
2271 while (match_buf_len != 0) {
2272 uint8_t c = match_buf[--match_buf_len];
2273 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2274 break; /* yes */
2275 }
2276 } else {
2277 if (match_buf_len != 0)
2278 match_buf_len--;
2279 }
2280 match_buf[match_buf_len] = '\0';
2281 break;
2282
2283 default:
2284 if (ic < ' '
2285 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2286 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2287 ) {
2288 goto ret;
2289 }
2290
2291 /* Append this char */
2292#if ENABLE_UNICODE_SUPPORT
2293 if (unicode_status == UNICODE_ON) {
2294 mbstate_t mbstate = { 0 };
2295 char buf[MB_CUR_MAX + 1];
2296 int len = wcrtomb(buf, ic, &mbstate);
2297 if (len > 0) {
2298 buf[len] = '\0';
2299 if (match_buf_len + len < sizeof(match_buf))
2300 strcpy(match_buf + match_buf_len, buf);
2301 }
2302 } else
2303#endif
2304 if (match_buf_len < sizeof(match_buf) - 1) {
2305 match_buf[match_buf_len] = ic;
2306 match_buf[match_buf_len + 1] = '\0';
2307 }
2308 break;
2309 } /* switch (ic) */
2310
2311 /* Search in history for match_buf */
2312 h = state->cur_history;
2313 if (ic == CTRL('R'))
2314 h--;
2315 while (h >= 0) {
2316 if (state->history[h]) {
2317 char *match = strstr(state->history[h], match_buf);
2318 if (match) {
2319 state->cur_history = h;
2320 matched_history_line = state->history[h];
2321 command_len = load_string(matched_history_line);
2322 cursor = match - matched_history_line;
2323//FIXME: cursor position for Unicode case
2324
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002325 free((char*)prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002326 set_prompt:
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002327 prompt_last_line = xasprintf("(reverse-i-search)'%s': ", match_buf);
2328 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002329 goto do_redraw;
2330 }
2331 }
2332 h--;
2333 }
2334
2335 /* Not found */
2336 match_buf[match_buf_len] = '\0';
2337 beep();
2338 continue;
2339
2340 do_redraw:
2341 redraw(cmdedit_y, command_len - cursor);
2342 } /* while (1) */
2343
2344 ret:
2345 if (matched_history_line)
2346 command_len = load_string(matched_history_line);
2347
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002348 free((char*)prompt_last_line);
2349 prompt_last_line = saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002350 cmdedit_prmt_len = saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002351 redraw(cmdedit_y, command_len - cursor);
2352
2353 return ic;
2354}
2355#endif
2356
Denys Vlasenko23427a62018-12-08 15:45:46 +01002357#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002358static void sigaction2(int sig, struct sigaction *act)
2359{
2360 // Grr... gcc 8.1.1:
2361 // "passing argument 3 to restrict-qualified parameter aliases with argument 2"
2362 // dance around that...
2363 struct sigaction *oact FIX_ALIASING;
2364 oact = act;
2365 sigaction(sig, act, oact);
2366}
Denys Vlasenko23427a62018-12-08 15:45:46 +01002367#endif
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002368
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002369/* maxsize must be >= 2.
2370 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002371 * -1 on read errors or EOF, or on bare Ctrl-D,
2372 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002373 * (in both cases the cursor remains on the input line, '\n' is not printed)
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002374 * >0 length of input string, including terminating '\n'
2375 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002376int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize)
Erik Andersen13456d12000-03-16 08:09:57 +00002377{
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002378 int len, n;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002379 int timeout;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002380#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002381 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002382#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002383 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002384#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002385 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002386#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002387 struct termios initial_settings;
2388 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002389 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002390
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002391 INIT_S();
2392
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002393 n = get_termios_and_make_raw(STDIN_FILENO, &new_settings, &initial_settings, 0
2394 | TERMIOS_CLEAR_ISIG /* turn off INTR (ctrl-C), QUIT, SUSP */
2395 );
2396 if (n != 0 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON) {
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002397 /* Happens when e.g. stty -echo was run before.
2398 * But if ICANON is not set, we don't come here.
2399 * (example: interactive python ^Z-backgrounded,
2400 * tty is still in "raw mode").
2401 */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002402 parse_and_put_prompt(prompt);
Denys Vlasenko038a9772016-11-28 01:10:16 +01002403 fflush_all();
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002404 if (fgets(command, maxsize, stdin) == NULL)
2405 len = -1; /* EOF or error */
2406 else
2407 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002408 DEINIT_S();
2409 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002410 }
2411
Denys Vlasenko28055022010-01-04 20:49:58 +01002412 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002413
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002414// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002415 if (maxsize > MAX_LINELEN)
2416 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002417 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002418
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002419 timeout = -1;
2420 /* Make state->flags == 0 if st is NULL.
2421 * With zeroed flags, no other fields are ever referenced.
2422 */
2423 state = (line_input_t*) &const_int_0;
2424 if (st) {
2425 state = st;
2426 timeout = st->timeout;
2427 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002428#if MAX_HISTORY > 0
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002429 if (state->flags & DO_HISTORY) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002430# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002431 if (state->hist_file)
2432 if (state->cnt_history == 0)
2433 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002434# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002435 state->cur_history = state->cnt_history;
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002436 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002437#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002438
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002439 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002440 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002441 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002442#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002443 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2444#else
Mark Whitley4e338752001-01-26 20:42:23 +00002445 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002446 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002447#endif
2448#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002449
Denis Vlasenko202ac502008-11-05 13:20:58 +00002450 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002451
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002452#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002453 {
2454 struct passwd *entry;
2455
2456 entry = getpwuid(geteuid());
2457 if (entry) {
2458 user_buf = xstrdup(entry->pw_name);
2459 home_pwd_buf = xstrdup(entry->pw_dir);
2460 }
2461 }
2462#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002463
2464#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002465 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002466 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002467 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2468#endif
2469
Denys Vlasenko0a677222017-11-08 13:38:12 +01002470 /* Get width (before printing prompt) */
2471 cmdedit_termw = get_terminal_width(STDIN_FILENO);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002472 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002473 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002474 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002475
Ron Yorston23286902018-02-25 20:09:54 +01002476#if ENABLE_FEATURE_EDITING_WINCH
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002477 /* Install window resize handler (NB: after *all* init is complete) */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002478 S.SIGWINCH_handler.sa_handler = win_changed;
2479 S.SIGWINCH_handler.sa_flags = SA_RESTART;
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002480 sigaction2(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002481#endif
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002482 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002483 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002484 /*
2485 * The emacs and vi modes share much of the code in the big
2486 * command loop. Commands entered when in vi's command mode
2487 * (aka "escape mode") get an extra bit added to distinguish
2488 * them - this keeps them from being self-inserted. This
2489 * clutters the big switch a bit, but keeps all the code
2490 * in one place.
2491 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002492 int32_t ic, ic_raw;
Ron Yorston23286902018-02-25 20:09:54 +01002493#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002494 unsigned count;
2495
2496 count = S.SIGWINCH_count;
2497 if (S.SIGWINCH_saved != count) {
2498 S.SIGWINCH_saved = count;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002499 cmdedit_setwidth();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002500 }
Ron Yorston23286902018-02-25 20:09:54 +01002501#endif
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002502 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002503
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002504#if ENABLE_FEATURE_REVERSE_SEARCH
2505 again:
2506#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002507#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002508 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002509 if (vi_cmdmode) {
2510 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2511 * change ic if it contains one of them: */
2512 ic |= VI_CMDMODE_BIT;
2513 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002514#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002515
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002516 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002517 case '\n':
2518 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002519 vi_case('\n'|VI_CMDMODE_BIT:)
2520 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002521 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002522 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002523 break_out = 1;
2524 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002525 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002526 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002527 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002528 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002529 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002530 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002531 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002532 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002533 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002534 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002535 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002536 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002537 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002538 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002539 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002540 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002541 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002542 vi_case('l'|VI_CMDMODE_BIT:)
2543 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002544 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002545 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002546 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002547 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002548 if (!isrtl_str())
2549 input_backspace();
2550 else
2551 input_delete(0);
2552 break;
2553 case KEYCODE_DELETE:
2554 if (!isrtl_str())
2555 input_delete(0);
2556 else
2557 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002558 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002559#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002560 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002561 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002562 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002563#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002564 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002565 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002566 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002567 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002568 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002569 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002570 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002571 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002572 /* Control-l -- clear screen */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002573 /* cursor to top,left; clear to the end of screen */
2574 printf(ESC"[H" ESC"[J");
2575 draw_full(command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002576 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002577#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002578 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002579 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2580 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002581 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002582 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002583 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002584 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002585 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002586 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2587 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002588 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002589 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002590 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002591 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002592#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002593 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002594 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002595 /* Control-U -- Clear line before cursor */
2596 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002597 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002598 memmove(command_ps, command_ps + cursor,
2599 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002600 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002601 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002602 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002603 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002604 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002605 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002606 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002607 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002608 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002609 input_backspace();
2610 break;
Rostislav Skudnov2e4ef382016-11-24 15:04:00 +01002611 case KEYCODE_ALT_D: {
2612 /* Delete word forward */
2613 int nc, sc = cursor;
2614 ctrl_right();
2615 nc = cursor - sc;
2616 input_backward(nc);
2617 while (--nc >= 0)
2618 input_delete(1);
2619 break;
2620 }
2621 case KEYCODE_ALT_BACKSPACE: {
2622 /* Delete word backward */
2623 int sc = cursor;
2624 ctrl_left();
2625 while (sc-- > cursor)
2626 input_delete(1);
2627 break;
2628 }
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002629#if ENABLE_FEATURE_REVERSE_SEARCH
2630 case CTRL('R'):
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002631 ic = ic_raw = reverse_i_search(timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002632 goto again;
2633#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002634
Denis Vlasenko38f63192007-01-22 09:03:07 +00002635#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002636 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002637 vi_cmdmode = 0;
2638 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002639 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002640 input_backward(cursor);
2641 vi_cmdmode = 0;
2642 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002643 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002644 input_forward();
2645 vi_cmdmode = 0;
2646 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002647 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002648 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002649 vi_cmdmode = 0;
2650 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002651 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002652 input_delete(1);
2653 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002654 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002655 if (cursor > 0) {
2656 input_backward(1);
2657 input_delete(1);
2658 }
2659 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002660 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002661 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002662 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002663 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002664 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002665 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002666 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002667 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002668 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002669 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002670 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002671 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002672 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002673 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002674 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002675 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002676 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002677 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002678 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002679 vi_cmdmode = 0;
2680 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002681 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002682 goto clear_to_eol;
2683
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002684 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002685 vi_cmdmode = 0;
2686 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002687 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002688 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002689
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002690 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002691 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002692 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002693 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002694 input_backward(cursor);
2695 goto clear_to_eol;
2696 break;
2697 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002698
2699 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002700 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002701 case 'w':
2702 case 'W':
2703 case 'e':
2704 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002705 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002706 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002707 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002708 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002709 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002710 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002711 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002712 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002713 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002714 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002715 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002716 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002717 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002718 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002719 break;
2720 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002721 nc = cursor;
2722 input_backward(cursor - sc);
2723 while (nc-- > cursor)
2724 input_delete(1);
2725 break;
2726 case 'b': /* "db", "cb" */
2727 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002728 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002729 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002730 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002731 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002732 while (sc-- > cursor)
2733 input_delete(1);
2734 break;
2735 case ' ': /* "d ", "c " */
2736 input_delete(1);
2737 break;
2738 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002739 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002740 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002741 input_delete(1);
2742 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002743 }
2744 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002745 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002746 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002747 input_forward();
2748 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002749 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002750 put();
2751 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002752 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002753//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002754 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002755 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002756 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002757 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002758 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002759 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002760 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002761 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002762 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002763 }
2764 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002765 case '\x1b': /* ESC */
2766 if (state->flags & VI_MODE) {
2767 /* insert mode --> command mode */
2768 vi_cmdmode = 1;
2769 input_backward(1);
2770 }
2771 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002772#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002773
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002774#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002775 case KEYCODE_UP:
2776 if (get_previous_history())
2777 goto rewrite_line;
2778 beep();
2779 break;
2780 case KEYCODE_DOWN:
2781 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002782 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002783 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002784 /* Rewrite the line with the selected history item */
2785 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002786 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002787 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002788 /* redraw and go to eol (bol, in vi) */
2789 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2790 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002791#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002792 case KEYCODE_RIGHT:
2793 input_forward();
2794 break;
2795 case KEYCODE_LEFT:
2796 input_backward(1);
2797 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002798 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002799 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002800 ctrl_left();
2801 break;
2802 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002803 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002804 ctrl_right();
2805 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002806 case KEYCODE_HOME:
2807 input_backward(cursor);
2808 break;
2809 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002810 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002811 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002812
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002813 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002814 if (initial_settings.c_cc[VINTR] != 0
2815 && ic_raw == initial_settings.c_cc[VINTR]
2816 ) {
2817 /* Ctrl-C (usually) - stop gathering input */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002818 command_len = 0;
2819 break_out = -1; /* "do not append '\n'" */
2820 break;
2821 }
2822 if (initial_settings.c_cc[VEOF] != 0
2823 && ic_raw == initial_settings.c_cc[VEOF]
2824 ) {
2825 /* Ctrl-D (usually) - delete one character,
2826 * or exit if len=0 and no chars to delete */
2827 if (command_len == 0) {
2828 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002829
2830 case -1: /* error (e.g. EIO when tty is destroyed) */
2831 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002832 break_out = command_len = -1;
2833 break;
2834 }
2835 input_delete(0);
2836 break;
2837 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002838// /* Control-V -- force insert of next char */
2839// if (c == CTRL('V')) {
2840// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002841// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002842// if (c == 0) {
2843// beep();
2844// break;
2845// }
2846// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002847 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002848 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2849 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002850 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002851 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002852 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002853 * Otherwise, we are here if ic is a
2854 * control char or an unhandled ESC sequence,
2855 * which is also ignored.
2856 */
2857 break;
2858 }
2859 if ((int)command_len >= (maxsize - 2)) {
2860 /* Not enough space for the char and EOL */
2861 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002862 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002863
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002864 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002865 if (cursor == (command_len - 1)) {
2866 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002867 command_ps[cursor] = ic;
2868 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002869 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002870 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002871 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002872 } else {
2873 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002874 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002875
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002876 memmove(command_ps + sc + 1, command_ps + sc,
2877 (command_len - sc) * sizeof(command_ps[0]));
2878 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002879 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2880 if (!isrtl_str())
2881 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002882 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002883 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002884 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002885 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002886 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002887 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002888
2889 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002890 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002891
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002892#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002893 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002894 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002895#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002896 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002897
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002898#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002899 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002900 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2901 * We sent "ESC [ 6 n", but got '\n' first, and
2902 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2903 * It's bad already and not much can be done with it
2904 * (it _will_ be visible for the next process to read stdin),
2905 * but without this delay it even shows up on the screen
2906 * as garbage because we restore echo settings with tcsetattr
2907 * before it comes in. UGLY!
2908 */
2909 usleep(20*1000);
2910 }
2911#endif
2912
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002913/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002914#undef command
2915
Denys Vlasenko19158a82010-03-26 14:06:56 +01002916#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002917 command[0] = '\0';
2918 if (command_len > 0)
2919 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002920 free(command_ps);
2921#endif
2922
Flemming Madsend96ffda2013-04-07 18:47:24 +02002923 if (command_len > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002924 remember_in_history(command);
Flemming Madsend96ffda2013-04-07 18:47:24 +02002925 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002926
Eric Andersen27bb7902003-12-23 20:24:51 +00002927 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002928 command[command_len++] = '\n';
2929 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002930 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002931
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002932#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002933 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002934#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002935
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002936 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002937 tcsetattr_stdin_TCSANOW(&initial_settings);
Ron Yorston23286902018-02-25 20:09:54 +01002938#if ENABLE_FEATURE_EDITING_WINCH
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002939 /* restore SIGWINCH handler */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002940 sigaction_set(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002941#endif
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002942 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002943
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002944 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002945 DEINIT_S();
2946
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002947 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002948}
2949
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002950#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002951
2952#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002953int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002954{
2955 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002956 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002957 if (!fgets(command, maxsize, stdin))
2958 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002959 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002960}
2961
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002962#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002963
2964
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002965/*
2966 * Testing
2967 */
2968
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002969#ifdef TEST
2970
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002971#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002972
2973const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002974
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002975int main(int argc, char **argv)
2976{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002977 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002978 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002979#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002980 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2981 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
Denys Vlasenko8187e012017-09-13 22:48:30 +02002982 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002983#else
2984 "% ";
2985#endif
2986
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002987 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002988 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002989 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002990 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002991 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002992 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002993 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002994 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002995 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002996 return 0;
2997}
2998
Eric Andersenc470f442003-07-28 09:56:35 +00002999#endif /* TEST */