blob: e14c7870752b2d31e073cd18662085194ae6ed53 [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
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000138/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000139struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000140 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000141
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100142 unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
Mark Whitley4e338752001-01-26 20:42:23 +0000143
Denys Vlasenko020f4062009-05-17 16:44:54 +0200144 unsigned cmdedit_x; /* real x (col) terminal position */
145 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200146 unsigned cmdedit_prmt_len; /* on-screen length of last/sole prompt line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000147
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000148 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200149 int command_len; /* must be signed */
150 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200151 * to _not_ be promoted to unsigned */
152 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200153 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000154
155 const char *cmdedit_prompt;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200156 const char *prompt_last_line; /* last/sole prompt line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000157
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200158#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000159 char *user_buf;
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200160 char *home_pwd_buf;
161 smallint got_user_strings;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000162#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000163
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000164#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000165 unsigned num_matches;
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200166 char **matches;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000167#endif
168
Ron Yorston23286902018-02-25 20:09:54 +0100169#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100170 unsigned SIGWINCH_saved;
171 volatile unsigned SIGWINCH_count;
172 volatile smallint ok_to_redraw;
Ron Yorston23286902018-02-25 20:09:54 +0100173#endif
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100174
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000175#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200176# define DELBUFSIZ 128
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000177 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100178 CHAR_T *delptr;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200179 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000180#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100181#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100182 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100183#endif
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100184
Ron Yorston23286902018-02-25 20:09:54 +0100185#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100186 /* Largish struct, keeping it last results in smaller code */
187 struct sigaction SIGWINCH_handler;
Ron Yorston23286902018-02-25 20:09:54 +0100188#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000189};
190
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000191/* See lineedit_ptr_hack.c */
YU Jincheng1f925032021-09-29 17:37:26 +0800192extern struct lineedit_statics *BB_GLOBAL_CONST lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000193
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000194#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000195#define state (S.state )
196#define cmdedit_termw (S.cmdedit_termw )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000197#define cmdedit_x (S.cmdedit_x )
198#define cmdedit_y (S.cmdedit_y )
199#define cmdedit_prmt_len (S.cmdedit_prmt_len)
200#define cursor (S.cursor )
201#define command_len (S.command_len )
202#define command_ps (S.command_ps )
203#define cmdedit_prompt (S.cmdedit_prompt )
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200204#define prompt_last_line (S.prompt_last_line)
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000205#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000206#define home_pwd_buf (S.home_pwd_buf )
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200207#define got_user_strings (S.got_user_strings)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000208#define num_matches (S.num_matches )
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200209#define matches (S.matches )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000210#define delptr (S.delptr )
211#define newdelflag (S.newdelflag )
212#define delbuf (S.delbuf )
213
214#define INIT_S() do { \
YU Jincheng5156b242021-10-10 02:19:51 +0800215 XZALLOC_CONST_PTR(&lineedit_ptr_to_statics, sizeof(S)); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000216} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200217
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000218static void deinit_S(void)
219{
220#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000221 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200222 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000223 free((char*)cmdedit_prompt);
224#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200225#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000226 free(user_buf);
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200227 free(home_pwd_buf);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000228#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000229 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000230}
231#define DEINIT_S() deinit_S()
232
Denis Vlasenko2c844952008-04-25 18:44:35 +0000233
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200234#if ENABLE_USERNAME_OR_HOMEDIR
235/* Call getpwuid() only if necessary.
236 * E.g. if PS1=':', no user database reading is needed to generate prompt.
237 * (Unfortunately, default PS1='\w \$' needs it, \w abbreviates homedir
238 * as ~/... - for that it needs to *know* the homedir...)
239 */
240static void get_user_strings(void)
241{
242 struct passwd *entry;
243
244 got_user_strings = 1;
245 entry = getpwuid(geteuid());
246 if (entry) {
247 user_buf = xstrdup(entry->pw_name);
248 home_pwd_buf = xstrdup(entry->pw_dir);
249 }
250}
251
252static const char *get_username_str(void)
253{
254 if (!got_user_strings)
255 get_user_strings();
256 return user_buf ? user_buf : "";
257 /* btw, bash uses "I have no name!" string if uid has no entry */
258}
259
260static NOINLINE const char *get_homedir_or_NULL(void)
261{
262 if (!got_user_strings)
263 get_user_strings();
264 return home_pwd_buf;
265}
266#endif
267
Denys Vlasenko19158a82010-03-26 14:06:56 +0100268#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200269static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200270{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100271 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200272 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100273 if (len < 0)
274 len = 0;
275 command_ps[len] = BB_NUL;
276 return len;
277 } else {
278 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200279 while (src[i] && i < S.maxsize - 1) {
280 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100281 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200282 }
283 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100284 return i;
285 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200286}
Tomas Heinricha659b812010-04-29 13:43:39 +0200287static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200288{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100289 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200290# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100291 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
292 if (len < 0)
293 len = 0;
294 dst[len] = '\0';
295 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200296# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100297 unsigned dstpos = 0;
298 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200299
Denys Vlasenko353680a2011-03-27 01:18:07 +0100300 maxsize--;
301 while (dstpos < maxsize) {
302 wchar_t wc;
303 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200304
Denys Vlasenko353680a2011-03-27 01:18:07 +0100305 /* Convert up to 1st invalid byte (or up to end) */
306 while ((wc = command_ps[srcpos]) != BB_NUL
307 && !unicode_is_raw_byte(wc)
308 ) {
309 srcpos++;
310 }
311 command_ps[srcpos] = BB_NUL;
312 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
313 if (n < 0) /* should not happen */
314 break;
315 dstpos += n;
316 if (wc == BB_NUL) /* usually is */
317 break;
318
319 /* We do have invalid byte here! */
320 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200321 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100322 if (dstpos == maxsize)
323 break;
324 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200325 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100326 dst[dstpos] = '\0';
327 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200328# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100329 } else {
330 unsigned i = 0;
331 while ((dst[i] = command_ps[i]) != 0)
332 i++;
333 return i;
334 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200335}
336/* I thought just fputwc(c, stdout) would work. But no... */
337static void BB_PUTCHAR(wchar_t c)
338{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100339 if (unicode_status == UNICODE_ON) {
340 char buf[MB_CUR_MAX + 1];
341 mbstate_t mbst = { 0 };
342 ssize_t len = wcrtomb(buf, c, &mbst);
343 if (len > 0) {
344 buf[len] = '\0';
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100345 fputs_stdout(buf);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100346 }
347 } else {
348 /* In this case, c is always one byte */
349 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200350 }
351}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200352# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
353static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
354# else
355static wchar_t adjust_width_and_validate_wc(wchar_t wc)
356# define adjust_width_and_validate_wc(width_adj, wc) \
357 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
358# endif
359{
360 int w = 1;
361
362 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200363 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
364 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200365 goto subst;
366 }
367 w = wcwidth(wc);
368 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
369 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
370 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
371 ) {
372 subst:
373 w = 1;
374 wc = CONFIG_SUBST_WCHAR;
375 }
376 }
377
378# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
379 *width_adj += w;
380#endif
381 return wc;
382}
383#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200384static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200385{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200386 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200387 return strlen(command_ps);
388}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200389# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200390static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200391{
392 safe_strncpy(dst, command_ps, maxsize);
393}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200394# endif
395# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200396/* Should never be called: */
397int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200398#endif
399
400
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000401/* Put 'command_ps[cursor]', cursor++.
402 * Advance cursor on screen. If we reached right margin, scroll text up
403 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000404#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200405static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000406{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200407 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200408 unsigned width = 0;
409 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000410
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200411 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000412 /* erase character after end of input string */
413 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200414 } else {
415 /* advance cursor only if we aren't at the end yet */
416 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200417 if (unicode_status == UNICODE_ON) {
418 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
419 c = adjust_width_and_validate_wc(&cmdedit_x, c);
420 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
421 } else {
422 cmdedit_x++;
423 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000424 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200425
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200426 ofs_to_right = cmdedit_x - cmdedit_termw;
427 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
428 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200429 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000430 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200431
432 if (ofs_to_right >= 0) {
433 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000434#if HACK_FOR_WRONG_WIDTH
435 /* This works better if our idea of term width is wrong
436 * and it is actually wider (often happens on serial lines).
437 * Printing CR,LF *forces* cursor to next line.
438 * OTOH if terminal width is correct AND terminal does NOT
439 * have automargin (IOW: it is moving cursor to next line
440 * by itself (which is wrong for VT-10x terminals)),
441 * this will break things: there will be one extra empty line */
442 puts("\r"); /* + implicit '\n' */
443#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200444 /* VT-10x terminals don't wrap cursor to next line when last char
445 * on the line is printed - cursor stays "over" this char.
446 * Need to print _next_ char too (first one to appear on next line)
447 * to make cursor move down to next line.
448 */
449 /* Works ok only if cmdedit_termw is correct. */
450 c = command_ps[cursor];
451 if (c == BB_NUL)
452 c = ' ';
453 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000454 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000455#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200456 cmdedit_y++;
457 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
458 width = 0;
459 } else { /* ofs_to_right > 0 */
460 /* wide char c didn't fit on prev line */
461 BB_PUTCHAR(c);
462 }
463 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000464 }
Erik Andersen13456d12000-03-16 08:09:57 +0000465}
466
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000467/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200468static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000469{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000470 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200471 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000472}
473
474/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000475static void goto_new_line(void)
476{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200477 put_till_end_and_adv_cursor();
Denys Vlasenkof5018da2018-04-06 17:58:21 +0200478 /* "cursor == 0" is only if prompt is "" and user input is empty */
479 if (cursor == 0 || cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000480 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000481}
482
Rob Landley88621d72006-08-29 19:41:06 +0000483static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000484{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000485 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000486}
487
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200488/* Full or last/sole prompt line, reset edit cursor, calculate terminal cursor.
489 * cmdedit_y is always calculated for the last/sole prompt line.
490 */
491static void put_prompt_custom(bool is_full)
Denys Vlasenko248c3242010-05-17 00:45:44 +0200492{
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100493 fputs_stdout((is_full ? cmdedit_prompt : prompt_last_line));
Denys Vlasenko248c3242010-05-17 00:45:44 +0200494 cursor = 0;
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100495 cmdedit_y = cmdedit_prmt_len / cmdedit_termw; /* new quasireal y */
496 cmdedit_x = cmdedit_prmt_len % cmdedit_termw;
Denys Vlasenko248c3242010-05-17 00:45:44 +0200497}
498
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200499#define put_prompt_last_line() put_prompt_custom(0)
500#define put_prompt() put_prompt_custom(1)
501
Eric Andersenaff114c2004-04-14 17:51:38 +0000502/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000503/* (optimized for slow terminals) */
504static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000505{
506 if (num > cursor)
507 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200508 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000509 return;
510 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000511
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200512 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
513 && unicode_status == UNICODE_ON
514 ) {
515 /* correct NUM to be equal to _screen_ width */
516 int n = num;
517 num = 0;
518 while (--n >= 0)
519 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
520 if (num == 0)
521 return;
522 }
523
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000524 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000525 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000526 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000527 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000528 * Also gets miscompiled for ARM users
529 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000530 * printf(("\b\b\b\b" + 4) - num);
531 * return;
532 */
533 do {
534 bb_putchar('\b');
535 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000536 return;
537 }
Marek Polacek7b181072010-10-28 21:34:56 +0200538 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000539 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000540 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000541
542 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200543 if (ENABLE_UNICODE_WIDE_WCHARS) {
544 /* With wide chars, it is hard to "backtrack"
545 * and reliably figure out where to put cursor.
546 * Example (<> is a wide char; # is an ordinary char, _ cursor):
547 * |prompt: <><> |
548 * |<><><><><><> |
549 * |_ |
550 * and user presses left arrow. num = 1, cmdedit_x = 0,
551 * We need to go up one line, and then - how do we know that
552 * we need to go *10* positions to the right? Because
553 * |prompt: <>#<>|
554 * |<><><>#<><><>|
555 * |_ |
556 * in this situation we need to go *11* positions to the right.
557 *
558 * A simpler thing to do is to redraw everything from the start
559 * up to new cursor position (which is already known):
560 */
561 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200562 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200563 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200564 cmdedit_y = 0;
565 sv_cursor = cursor;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200566 put_prompt_last_line(); /* sets cursor to 0 */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200567 while (cursor < sv_cursor)
568 put_cur_glyph_and_inc_cursor();
569 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200570 int lines_up;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200571 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200572 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200573 /* num=1...w: one line up, w+1...2w: two, etc: */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100574 lines_up = 1 + (num - 1) / cmdedit_termw;
575 cmdedit_x = (cmdedit_termw * cmdedit_y - num) % cmdedit_termw;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200576 cmdedit_y -= lines_up;
577 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200578 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200579 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200580 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
581 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200582 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200583 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000584 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000585}
586
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200587/* See redraw and draw_full below */
588static void draw_custom(int y, int back_cursor, bool is_full)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000589{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200590 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200591 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000592 bb_putchar('\r');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200593 put_prompt_custom(is_full);
Denys Vlasenko94043e82010-05-11 14:49:13 +0200594 put_till_end_and_adv_cursor();
595 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000596 input_backward(back_cursor);
597}
598
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200599/* Move y lines up, draw last/sole prompt line, editor line[s], and clear tail.
600 * goal: redraw the prompt+input+cursor in-place, overwriting the previous */
601#define redraw(y, back_cursor) draw_custom((y), (back_cursor), 0)
602
603/* Like above, but without moving up, and while using all the prompt lines.
604 * goal: draw a full prompt+input+cursor unrelated to a previous position.
605 * note: cmdedit_y always ends up relating to the last/sole prompt line */
606#define draw_full(back_cursor) draw_custom(0, (back_cursor), 1)
607
Paul Fox3f11b1b2005-08-04 19:04:46 +0000608/* Delete the char in front of the cursor, optionally saving it
609 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000610#if !ENABLE_FEATURE_EDITING_VI
611static void input_delete(void)
612#define input_delete(save) input_delete()
613#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000614static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000615#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000616{
Mark Whitley4e338752001-01-26 20:42:23 +0000617 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000618
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000619 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000620 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000621
Denis Vlasenko38f63192007-01-22 09:03:07 +0000622#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000623 if (save) {
624 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000625 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000626 newdelflag = 0;
627 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000628 if ((delptr - delbuf) < DELBUFSIZ)
629 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000630 }
631#endif
632
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200633 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200634 /* (command_len + 1 [because of NUL]) - (j + 1)
635 * simplified into (command_len - j) */
636 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000637 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200638 put_till_end_and_adv_cursor();
639 /* Last char is still visible, erase it (and more) */
640 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000641 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000642}
643
Denis Vlasenko38f63192007-01-22 09:03:07 +0000644#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000645static void put(void)
646{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000647 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000648 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000649
Paul Fox3f11b1b2005-08-04 19:04:46 +0000650 if (j == 0)
651 return;
652 ocursor = cursor;
653 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200654 memmove(command_ps + cursor + j, command_ps + cursor,
655 (command_len - cursor + 1) * sizeof(command_ps[0]));
656 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000657 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200658 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000659 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000660}
661#endif
662
Mark Whitley4e338752001-01-26 20:42:23 +0000663/* Delete the char in back of the cursor */
664static void input_backspace(void)
665{
666 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000667 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000668 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000669 }
670}
671
Eric Andersenaff114c2004-04-14 17:51:38 +0000672/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000673static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000674{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000675 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200676 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000677}
678
Denis Vlasenko38f63192007-01-22 09:03:07 +0000679#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000680
Mike Shalf3763032010-11-22 03:49:18 +0100681//FIXME:
682//needs to be more clever: currently it thinks that "foo\ b<TAB>
683//matches the file named "foo bar", which is untrue.
684//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
685//not "foo bar <cursor>...
686
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000687static void free_tab_completion_data(void)
688{
689 if (matches) {
690 while (num_matches)
691 free(matches[--num_matches]);
692 free(matches);
693 matches = NULL;
694 }
695}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000696
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000697static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000698{
Denys Vlasenkoc3797d42017-11-07 18:09:29 +0100699 unsigned char *p = (unsigned char*)matched;
700 while (*p) {
701 /* ESC attack fix: drop any string with control chars */
702 if (*p < ' '
703 || (!ENABLE_UNICODE_SUPPORT && *p >= 0x7f)
704 || (ENABLE_UNICODE_SUPPORT && *p == 0x7f)
705 ) {
706 free(matched);
707 return;
708 }
709 p++;
710 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000711 matches = xrealloc_vector(matches, 4, num_matches);
712 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000713 num_matches++;
714}
715
Mike Shalf3763032010-11-22 03:49:18 +0100716# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200717/* Replace "~user/..." with "/homedir/...".
718 * The parameter is malloced, free it or return it
719 * unchanged if no user is matched.
720 */
721static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000722{
723 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200724 char *tilde_name = ud;
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200725 const char *home = NULL;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200726
727 ud++; /* skip ~ */
728 if (*ud == '/') { /* "~/..." */
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200729 home = get_homedir_or_NULL();
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200730 } else {
731 /* "~user/..." */
732 ud = strchr(ud, '/');
733 *ud = '\0'; /* "~user" */
734 entry = getpwnam(tilde_name + 1);
735 *ud = '/'; /* restore "~user/..." */
736 if (entry)
737 home = entry->pw_dir;
738 }
739 if (home) {
740 ud = concat_path_file(home, ud);
741 free(tilde_name);
742 tilde_name = ud;
743 }
744 return tilde_name;
745}
746
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200747/* ~use<tab> - find all users with this prefix.
748 * Return the length of the prefix used for matching.
749 */
750static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200751{
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100752 struct passwd *pw;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200753 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000754
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200755 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000756 userlen = strlen(ud);
757
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200758 setpwent();
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100759 while ((pw = getpwent()) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200760 /* Null usernames should result in all users as possible completions. */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100761 if (/* !ud[0] || */ is_prefixed_with(pw->pw_name, ud)) {
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100762 add_match(xasprintf("~%s/", pw->pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000763 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000764 }
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100765 endpwent(); /* don't keep password file open */
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200766
767 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000768}
Mike Shalf3763032010-11-22 03:49:18 +0100769# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000770
771enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000772 FIND_EXE_ONLY = 0,
773 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000774 FIND_FILE_ONLY = 2,
775};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000776
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100777static unsigned path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000778{
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100779 unsigned npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000780 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000781 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000782 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000783
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100784# if EDITING_HAS_path_lookup
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000785 if (state->flags & WITH_PATH_LOOKUP)
786 pth = state->path_lookup;
787 else
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100788# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000789 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200790
791 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000792 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
793 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000794
Denis Vlasenko253ce002007-01-22 08:34:44 +0000795 tmp = (char*)pth;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100796 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000797 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000798 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000799 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000800 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200801 tmp++;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000802 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000803 }
804
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100805 *p = res = xzalloc((npth + 1) * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000806 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000807 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000808 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000809 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000810 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000811 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000812 *tmp++ = '\0'; /* ':' -> '\0' */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000813 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000814 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100815 /* special case: "match subdirectories of the current directory" */
816 /*res[npth++] = NULL; - filled by xzalloc() */
Mark Whitley4e338752001-01-26 20:42:23 +0000817 return npth;
818}
819
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200820/* Complete command, directory or file name.
821 * Return the length of the prefix used for matching.
822 */
823static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000824{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000825 char *path1[1];
826 char **paths = path1;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100827 unsigned npaths;
828 unsigned i;
829 unsigned baselen;
830 const char *basecmd;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200831 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000832
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000833 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000834 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000835
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100836 basecmd = strrchr(command, '/');
837 if (!basecmd) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200838 if (type == FIND_EXE_ONLY)
839 npaths = path_parse(&paths);
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100840 basecmd = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000841 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000842 /* point to 'l' in "..../last_component" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100843 basecmd++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200844 /* dirbuf = ".../.../.../" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100845 dirbuf = xstrndup(command, basecmd - command);
Mike Shalf3763032010-11-22 03:49:18 +0100846# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200847 if (dirbuf[0] == '~') /* ~/... or ~user/... */
848 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100849# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200850 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000851 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100852 baselen = strlen(basecmd);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000853
Denys Vlasenko13360522016-10-24 01:25:05 +0200854 if (type == FIND_EXE_ONLY && !dirbuf) {
Ron Yorston9e2a5662020-01-21 16:01:58 +0000855# if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
Ron Yorston37788982018-11-17 17:48:14 +0000856 const char *p = applet_names;
Ron Yorston2b919582016-04-08 11:57:20 +0100857 while (*p) {
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100858 if (strncmp(basecmd, p, baselen) == 0)
Ron Yorstonf23264b2015-05-29 11:31:40 +0100859 add_match(xstrdup(p));
Ron Yorston37788982018-11-17 17:48:14 +0000860 while (*p++ != '\0')
Ron Yorston2b919582016-04-08 11:57:20 +0100861 continue;
Ron Yorstonf23264b2015-05-29 11:31:40 +0100862 }
Denys Vlasenkof128bdb2017-07-29 00:59:24 +0200863# endif
Ron Yorston9e2a5662020-01-21 16:01:58 +0000864# if EDITING_HAS_get_exe_name
865 if (state->get_exe_name) {
866 i = 0;
867 for (;;) {
868 const char *b = state->get_exe_name(i++);
869 if (!b)
870 break;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100871 if (strncmp(basecmd, b, baselen) == 0)
Ron Yorston9e2a5662020-01-21 16:01:58 +0000872 add_match(xstrdup(b));
873 }
874 }
875# endif
876 }
Ron Yorstonf23264b2015-05-29 11:31:40 +0100877
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000878 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200879 DIR *dir;
880 struct dirent *next;
881 struct stat st;
882 char *found;
Ron Yorston760b6272021-02-18 09:50:29 +0000883 const char *lpath;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200884
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100885 if (paths[i] == NULL) { /* path_parse()'s last component? */
886 /* in PATH completion, current dir's subdir names
887 * can be completions (but only subdirs, not files).
888 */
Ron Yorston8baa6432020-12-11 12:34:21 +0000889 type = FIND_DIR_ONLY;
890 paths[i] = (char *)".";
891 }
892
Ron Yorston760b6272021-02-18 09:50:29 +0000893 lpath = *paths[i] ? paths[i] : ".";
894 dir = opendir(lpath);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000895 if (!dir)
896 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000897
898 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200899 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200900 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000901
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200902 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100903 if (!basecmd[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000904 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200905 /* match? */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100906 if (strncmp(basecmd, name_found, baselen) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200907 continue; /* no */
908
Ron Yorston760b6272021-02-18 09:50:29 +0000909 found = concat_path_file(lpath, name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000910 /* NB: stat() first so that we see is it a directory;
911 * but if that fails, use lstat() so that
912 * we still match dangling links */
913 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200914 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000915
Denys Vlasenko39263632010-09-03 14:11:08 +0200916 /* Save only name */
917 len = strlen(name_found);
918 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
919 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000920
Mark Whitley4e338752001-01-26 20:42:23 +0000921 if (S_ISDIR(st.st_mode)) {
Ron Yorston8506dd62020-12-10 14:44:57 +0000922 /* skip directories if searching PATH */
923 if (type == FIND_EXE_ONLY && !dirbuf)
924 goto cont;
Denys Vlasenko39263632010-09-03 14:11:08 +0200925 /* name is a directory, add slash */
926 found[len] = '/';
927 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000928 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200929 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000930 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000931 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000932 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200933 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000934 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000935 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000936 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000937 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000938 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000939 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200940 } /* for every path */
941
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000942 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000943 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000944 free(paths);
945 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200946 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200947
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100948 return baselen;
Erik Andersen6273f652000-03-17 01:12:41 +0000949}
Erik Andersenf0657d32000-04-12 17:49:52 +0000950
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200951/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200952 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200953 * was pressed. This function looks at it, figures out what part of it
954 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200955 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200956 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200957#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200958/* Helpers: */
959/* QUOT is used on elements of int_buf[], which are bytes,
960 * not Unicode chars. Therefore it works correctly even in Unicode mode.
961 */
962#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200963static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200964{
965 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200966 if (beg == end)
967 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200968
969 while ((int_buf[beg] = int_buf[end]) != 0)
970 beg++, end++;
971
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200972 if (dbg_bmp) {
973 int i;
974 for (i = 0; int_buf[i]; i++)
975 bb_putchar((unsigned char)int_buf[i]);
976 bb_putchar('\n');
977 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200978}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200979/* Caller ensures that match_buf points to a malloced buffer
980 * big enough to hold strlen(match_buf)*2 + 2
981 */
982static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000983{
984 int i, j;
985 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200986 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000987
Denys Vlasenko76939e72010-09-03 14:09:24 +0200988 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200989
Denys Vlasenko76939e72010-09-03 14:09:24 +0200990 /* Copy in reverse order, since they overlap */
991 i = strlen(match_buf);
992 do {
993 int_buf[i] = (unsigned char)match_buf[i];
994 i--;
995 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000996
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200997 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200998 for (i = 0; int_buf[i]; i++) {
999 if (int_buf[i] == '\\') {
1000 remove_chunk(int_buf, i, i + 1);
1001 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001002 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001003 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001004 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001005 {
1006 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001007 i = 0;
1008 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001009 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001010 if (!cur)
1011 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001012 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001013 if (!in_quote || (cur == in_quote)) {
1014 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001015 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001016 continue;
1017 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001018 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001019 if (in_quote)
1020 int_buf[i] = cur | QUOT;
1021 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001022 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001023 }
1024
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001025 /* Remove everything up to command delimiters:
1026 * ';' ';;' '&' '|' '&&' '||',
1027 * but careful with '>&' '<&' '>|'
1028 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001029 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001030 int cur = int_buf[i];
1031 if (cur == ';' || cur == '&' || cur == '|') {
1032 int prev = i ? int_buf[i - 1] : 0;
1033 if (cur == '&' && (prev == '>' || prev == '<')) {
1034 continue;
1035 } else if (cur == '|' && prev == '>') {
1036 continue;
1037 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001038 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001039 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001040 }
1041 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001042 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001043 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001044 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001045 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001046 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001047 /* `cmd` should count as a word:
1048 * `cmd` c<tab> should search for files c*,
1049 * not commands c*. Therefore we don't drop
1050 * `cmd` entirely, we replace it with single `.
1051 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001052 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001053 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001054 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001055 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001056 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001057 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001058 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001059 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001060 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001061 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001062
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001063 /* Remove "cmd (" and "cmd {"
1064 * Example: "if { c<tab>"
1065 * In this example, c should be matched as command pfx.
1066 */
1067 for (i = 0; int_buf[i]; i++) {
1068 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001069 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001070 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001071 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001072 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001073
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001074 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001075 for (i = 0; int_buf[i]; i++)
1076 if (int_buf[i] != ' ')
1077 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001078 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001079
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001080 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001081 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001082 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001083 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001084 if (int_buf[i] == ' '
1085 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001086 && (char)int_buf[0] == 'c'
1087 && (char)int_buf[1] == 'd'
1088 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001089 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001090 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001091 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001092 command_mode = FIND_FILE_ONLY;
1093 break;
1094 }
1095 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001096 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001097 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001098
1099 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001100 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
1101 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001102 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001103 int cur = int_buf[i];
Natanael Copa7323bca2021-04-09 17:02:00 +02001104 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&' || cur == '=') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001105 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001106 break;
1107 }
1108 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001109
Denys Vlasenko76939e72010-09-03 14:09:24 +02001110 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001111 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001112 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001113 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001114
Denys Vlasenko76939e72010-09-03 14:09:24 +02001115 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001116
1117 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001118}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001119
Glenn L McGrath4d001292003-01-06 01:11:50 +00001120/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001121 * Display by column (original idea from ls applet,
1122 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001123 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001124static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001125{
1126 int ncols, row;
1127 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001128 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001129 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001130 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001131
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001132 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001133 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001134 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001135 if (column_width < l)
1136 column_width = l;
1137 }
1138 column_width += 2; /* min space for columns */
1139 ncols = cmdedit_termw / column_width;
1140
1141 if (ncols > 1) {
1142 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001143 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001144 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001145 } else {
1146 ncols = 1;
1147 }
1148 for (row = 0; row < nrows; row++) {
1149 int n = row;
1150 int nc;
1151
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001152 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001153 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001154 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001155 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001156 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001157 if (ENABLE_UNICODE_SUPPORT)
Denys Vlasenko349d72c2018-09-30 16:56:56 +02001158 puts(printable_string(matches[n]));
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001159 else
1160 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001161 }
1162}
1163
Mike Shalf3763032010-11-22 03:49:18 +01001164static const char *is_special_char(char c)
1165{
Denys Vlasenko6d2463a2021-09-17 17:32:30 +02001166 // {: It's mandatory to escape { only if entire name is "{"
1167 // (otherwise it's not special. Example: file named "{ "
1168 // can be escaped simply as "{\ "; "{a" or "a{" need no escaping),
1169 // or if shell supports brace expansion
1170 // (ash doesn't, hush optionally does).
1171 // (): unlike {, shell treats () specially even in contexts
1172 // where they clearly are not valid (e.g. "echo )" is an error).
1173 // #: needs escaping to not start a shell comment.
1174 return strchr(" `'\"\\#$~?*[{()&;|<>", c);
1175 // Used to also have %^=+}]: but not necessary to escape?
Mike Shalf3763032010-11-22 03:49:18 +01001176}
1177
1178static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001179{
1180 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001181 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001182
1183 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001184 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001185 s[l++] = '\\';
1186 s[l++] = *found++;
1187 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001188 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001189 return s;
1190}
1191
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001192/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001193static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001194{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001195 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001196 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001197 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001198 /* Length of string used for matching */
1199 unsigned match_pfx_len = match_pfx_len;
1200 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001201# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001202 /* cursor pos in command converted to multibyte form */
1203 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001204# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001205 if (!(state->flags & TAB_COMPLETION))
1206 return;
1207
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001208 if (*lastWasTab) {
1209 /* The last char was a TAB too.
1210 * Print a list of all the available choices.
1211 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001212 if (num_matches > 0) {
1213 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001214 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001215 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001216 showfiles();
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001217 draw_full(command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001218 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001219 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001220 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001221
1222 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001223 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001224
Denys Vlasenko76939e72010-09-03 14:09:24 +02001225 /* Make a local copy of the string up to the position of the cursor.
1226 * build_match_prefix will expand it into int16_t's, need to allocate
1227 * twice as much as the string_len+1.
1228 * (we then also (ab)use this extra space later - see (**))
1229 */
1230 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001231# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001232 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001233# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001234 {
1235 CHAR_T wc = command_ps[cursor];
1236 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001237 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001238 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001239 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001240 }
Mike Shalf3763032010-11-22 03:49:18 +01001241# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001242 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001243
1244 /* Free up any memory already allocated */
1245 free_tab_completion_data();
1246
Mike Shalf3763032010-11-22 03:49:18 +01001247# if ENABLE_FEATURE_USERNAME_COMPLETION
1248 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001249 * then try completing this word as a username. */
1250 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001251 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1252 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001253# endif
1254 /* If complete_username() did not match,
1255 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001256 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001257 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001258
1259 /* Account for backslashes which will be inserted
1260 * by quote_special_chars() later */
1261 {
1262 const char *e = match_buf + strlen(match_buf);
1263 const char *s = e - match_pfx_len;
1264 while (s < e)
1265 if (is_special_char(*s++))
1266 match_pfx_len++;
1267 }
1268
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001269 /* Remove duplicates */
1270 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001271 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001272 qsort_string_vector(matches, num_matches);
1273 for (i = 0; i < num_matches - 1; ++i) {
1274 //if (matches[i] && matches[i+1]) { /* paranoia */
1275 if (strcmp(matches[i], matches[i+1]) == 0) {
1276 free(matches[i]);
1277 //matches[i] = NULL; /* paranoia */
1278 } else {
1279 matches[n++] = matches[i];
1280 }
1281 //}
1282 }
1283 matches[n++] = matches[i];
1284 num_matches = n;
1285 }
Mike Shalf3763032010-11-22 03:49:18 +01001286
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001287 /* Did we find exactly one match? */
1288 if (num_matches != 1) { /* no */
1289 char *cp;
1290 beep();
1291 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001292 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001293 /* Find common prefix */
1294 chosen_match = xstrdup(matches[0]);
1295 for (cp = chosen_match; *cp; cp++) {
1296 unsigned n;
1297 for (n = 1; n < num_matches; n++) {
1298 if (matches[n][cp - chosen_match] != *cp) {
1299 goto stop;
1300 }
1301 }
1302 }
1303 stop:
1304 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001305 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001306 }
1307 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001308 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001309 free(chosen_match);
1310 chosen_match = cp;
1311 len_found = strlen(chosen_match);
1312 } else { /* exactly one match */
1313 /* Next <tab> is not a double-tab */
1314 *lastWasTab = 0;
1315
Mike Shalf3763032010-11-22 03:49:18 +01001316 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001317 len_found = strlen(chosen_match);
1318 if (chosen_match[len_found-1] != '/') {
1319 chosen_match[len_found] = ' ';
1320 chosen_match[++len_found] = '\0';
1321 }
1322 }
1323
Mike Shalf3763032010-11-22 03:49:18 +01001324# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001325 /* Have space to place the match? */
1326 /* The result consists of three parts with these lengths: */
1327 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1328 /* it simplifies into: */
1329 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1330 int pos;
1331 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001332 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001333 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001334 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001335 command_len = strlen(command_ps);
1336 /* new pos */
1337 pos = cursor + len_found - match_pfx_len;
1338 /* write out the matched command */
1339 redraw(cmdedit_y, command_len - pos);
1340 }
Mike Shalf3763032010-11-22 03:49:18 +01001341# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001342 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001343 /* Use 2nd half of match_buf as scratch space - see (**) */
1344 char *command = match_buf + MAX_LINELEN;
1345 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001346 /* Have space to place the match? */
1347 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1348 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1349 int pos;
1350 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001351 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001352 /* where do we want to have cursor after all? */
1353 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001354 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001355 /* add match and tail */
Denys Vlasenkofe2d8062021-04-14 17:52:18 +02001356 stpcpy(stpcpy(&command[cursor_mb], chosen_match + match_pfx_len), match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001357 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001358 /* write out the matched command */
1359 /* paranoia: load_string can return 0 on conv error,
1360 * prevent passing pos = (0 - 12) to redraw */
1361 pos = command_len - len;
1362 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1363 }
1364 }
Mike Shalf3763032010-11-22 03:49:18 +01001365# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001366 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001367 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001368 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001369}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001370
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001371#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001372
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001373
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001374line_input_t* FAST_FUNC new_line_input_t(int flags)
1375{
1376 line_input_t *n = xzalloc(sizeof(*n));
1377 n->flags = flags;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02001378 n->timeout = -1;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001379#if MAX_HISTORY > 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001380 n->max_history = MAX_HISTORY;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001381#endif
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001382 return n;
1383}
1384
1385
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001386#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001387
Flemming Madsend96ffda2013-04-07 18:47:24 +02001388unsigned FAST_FUNC size_from_HISTFILESIZE(const char *hp)
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001389{
1390 int size = MAX_HISTORY;
1391 if (hp) {
1392 size = atoi(hp);
1393 if (size <= 0)
1394 return 1;
1395 if (size > MAX_HISTORY)
1396 return MAX_HISTORY;
1397 }
1398 return size;
1399}
1400
Denis Vlasenko682ad302008-09-27 01:28:56 +00001401static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001402{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001403 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001404 int cur = state->cur_history;
1405 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001406
Denys Vlasenko19158a82010-03-26 14:06:56 +01001407# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001408 {
1409 char tbuf[MAX_LINELEN];
1410 save_string(tbuf, sizeof(tbuf));
1411 state->history[cur] = xstrdup(tbuf);
1412 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001413# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001414 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001415# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001416 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001417}
1418
1419/* state->flags is already checked to be nonzero */
1420static int get_previous_history(void)
1421{
1422 if ((state->flags & DO_HISTORY) && state->cur_history) {
1423 save_command_ps_at_cur_history();
1424 state->cur_history--;
1425 return 1;
1426 }
1427 beep();
1428 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001429}
1430
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001431static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001432{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001433 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001434 if (state->cur_history < state->cnt_history) {
1435 save_command_ps_at_cur_history(); /* save the current history line */
1436 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001437 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001438 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001439 beep();
1440 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001441}
Robert Griebl350d26b2002-12-03 22:45:46 +00001442
Flemming Madsend96ffda2013-04-07 18:47:24 +02001443/* Lists command history. Used by shell 'history' builtins */
1444void FAST_FUNC show_history(const line_input_t *st)
1445{
1446 int i;
1447
1448 if (!st)
1449 return;
1450 for (i = 0; i < st->cnt_history; i++)
1451 printf("%4d %s\n", i, st->history[i]);
1452}
1453
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001454# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001455void FAST_FUNC free_line_input_t(line_input_t *n)
1456{
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001457 if (n) {
1458 int i = n->cnt_history;
1459 while (i > 0)
1460 free(n->history[--i]);
1461 free(n);
1462 }
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001463}
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001464# else
1465/* #defined to free() in libbb.h */
1466# endif
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001467
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001468# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001469/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001470 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001471 * Otherwise shell users get unhappy.
1472 *
1473 * History file is trimmed lazily, when it grows several times longer
1474 * than configured MAX_HISTORY lines.
1475 */
1476
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001477/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001478static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001479{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001480 char *temp_h[MAX_HISTORY];
1481 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001482 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001483 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001484
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001485 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001486
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001487 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001488 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001489 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001490 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001491 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001492 free(st_parm->history[idx]);
1493 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001494 }
1495
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001496 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1497 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001498 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001499 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001500 while ((line = xmalloc_fgetline(fp)) != NULL) {
1501 if (line[0] == '\0') {
1502 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001503 continue;
1504 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001505 free(temp_h[idx]);
1506 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001507 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001508 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001509 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001510 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001511 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001512 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001513
1514 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001515 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001516 while (temp_h[idx] == NULL) {
1517 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001518 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001519 idx = 0;
1520 }
1521 }
1522
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001523 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001524 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001525 line = temp_h[idx];
1526 if (!line)
1527 break;
1528 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001529 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001530 idx = 0;
1531 line_len = strlen(line);
1532 if (line_len >= MAX_LINELEN)
1533 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001534 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001535 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001536 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001537 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1538 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001539 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001540}
1541
Denys Vlasenkobede2152011-09-04 16:12:33 +02001542# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1543void save_history(line_input_t *st)
1544{
1545 FILE *fp;
1546
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001547 if (!st || !st->hist_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001548 return;
1549 if (st->cnt_history <= st->cnt_history_in_file)
1550 return;
1551
1552 fp = fopen(st->hist_file, "a");
1553 if (fp) {
1554 int i, fd;
1555 char *new_name;
1556 line_input_t *st_temp;
1557
1558 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1559 fprintf(fp, "%s\n", st->history[i]);
1560 fclose(fp);
1561
1562 /* we may have concurrently written entries from others.
1563 * load them */
1564 st_temp = new_line_input_t(st->flags);
1565 st_temp->hist_file = st->hist_file;
1566 st_temp->max_history = st->max_history;
1567 load_history(st_temp);
1568
1569 /* write out temp file and replace hist_file atomically */
1570 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1571 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1572 if (fd >= 0) {
1573 fp = xfdopen_for_write(fd);
1574 for (i = 0; i < st_temp->cnt_history; i++)
1575 fprintf(fp, "%s\n", st_temp->history[i]);
1576 fclose(fp);
1577 if (rename(new_name, st->hist_file) == 0)
1578 st->cnt_history_in_file = st_temp->cnt_history;
1579 }
1580 free(new_name);
1581 free_line_input_t(st_temp);
1582 }
1583}
1584# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001585static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001586{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001587 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001588 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001589
Denys Vlasenkobede2152011-09-04 16:12:33 +02001590 if (!state->hist_file)
1591 return;
1592
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001593 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001594 if (fd < 0)
1595 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001596 xlseek(fd, 0, SEEK_END); /* paranoia */
1597 len = strlen(str);
1598 str[len] = '\n'; /* we (try to) do atomic write */
1599 len2 = full_write(fd, str, len + 1);
1600 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001601 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001602 if (len2 != len + 1)
1603 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001604
1605 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001606 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001607 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001608 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001609 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001610
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001611 /* we may have concurrently written entries from others.
1612 * load them */
1613 st_temp = new_line_input_t(state->flags);
1614 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001615 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001616 load_history(st_temp);
1617
1618 /* write out temp file and replace hist_file atomically */
1619 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001620 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001621 if (fd >= 0) {
1622 FILE *fp;
1623 int i;
1624
1625 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001626 for (i = 0; i < st_temp->cnt_history; i++)
1627 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001628 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001629 if (rename(new_name, state->hist_file) == 0)
1630 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001631 }
1632 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001633 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001634 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001635}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001636# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001637# else
1638# define load_history(a) ((void)0)
1639# define save_history(a) ((void)0)
1640# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001641
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001642static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001643{
1644 int i;
1645
1646 if (!(state->flags & DO_HISTORY))
1647 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001648 if (str[0] == '\0')
1649 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001650 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001651 /* Don't save dupes */
1652 if (i && strcmp(state->history[i-1], str) == 0)
1653 return;
1654
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001655 free(state->history[state->max_history]); /* redundant, paranoia */
1656 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001657
1658 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001659 /* we need to keep history[state->max_history] empty, hence >=, not > */
1660 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001661 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001662 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001663 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001664 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001665# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1666 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001667 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001668# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001669 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001670 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001671 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001672 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001673 state->cur_history = i;
1674 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001675# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1676 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001677# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001678}
1679
1680#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001681# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001682#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001683
1684
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001685#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001686/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001687 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001688 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001689static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001690vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001691{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001692 CHAR_T *command = command_ps;
1693
1694 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001695 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001696 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001697 input_forward();
1698}
1699
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001700static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001701vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001702{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001703 CHAR_T *command = command_ps;
1704
Natanael Copa7e6f9312016-08-14 23:30:29 +02001705 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001706 while (cursor < command_len
Natanael Copa7e6f9312016-08-14 23:30:29 +02001707 && (BB_isalnum_or_underscore(command[cursor+1]))
Denys Vlasenko13028922009-07-12 00:51:15 +02001708 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001709 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001710 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001711 } else if (BB_ispunct(command[cursor])) {
1712 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001713 input_forward();
1714 }
1715
Denis Vlasenko253ce002007-01-22 08:34:44 +00001716 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001717 input_forward();
1718
Denys Vlasenko13028922009-07-12 00:51:15 +02001719 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001720 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001721 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001722 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001723}
1724
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001725static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001726vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001727{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001728 CHAR_T *command = command_ps;
1729
Paul Fox3f11b1b2005-08-04 19:04:46 +00001730 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001731 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001732 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001733 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001734 input_forward();
1735}
1736
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001737static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001738vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001739{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001740 CHAR_T *command = command_ps;
1741
Denis Vlasenko253ce002007-01-22 08:34:44 +00001742 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001743 return;
1744 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001745 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001746 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001747 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001748 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001749 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001750 while (cursor < command_len-1
Natanael Copa7e6f9312016-08-14 23:30:29 +02001751 && (BB_isalnum_or_underscore(command[cursor+1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001752 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001753 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001754 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001755 } else if (BB_ispunct(command[cursor])) {
1756 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001757 input_forward();
1758 }
1759}
1760
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001761static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001762vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001763{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001764 CHAR_T *command = command_ps;
1765
1766 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001767 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001768 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001769 input_backward(1);
1770}
1771
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001772static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001773vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001774{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001775 CHAR_T *command = command_ps;
1776
Paul Fox3f11b1b2005-08-04 19:04:46 +00001777 if (cursor <= 0)
1778 return;
1779 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001780 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001781 input_backward(1);
1782 if (cursor <= 0)
1783 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001784 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001785 while (cursor > 0
Natanael Copa7e6f9312016-08-14 23:30:29 +02001786 && (BB_isalnum_or_underscore(command[cursor-1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001787 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001788 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001789 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001790 } else if (BB_ispunct(command[cursor])) {
1791 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001792 input_backward(1);
1793 }
1794}
Denys Vlasenko627821e2021-09-25 19:36:35 +02001795#endif /* ENABLE_FEATURE_EDITING_VI */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001796
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001797/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1798static void ctrl_left(void)
1799{
1800 CHAR_T *command = command_ps;
1801
1802 while (1) {
1803 CHAR_T c;
1804
1805 input_backward(1);
1806 if (cursor == 0)
1807 break;
1808 c = command[cursor];
1809 if (c != ' ' && !BB_ispunct(c)) {
1810 /* we reached a "word" delimited by spaces/punct.
1811 * go to its beginning */
1812 while (1) {
1813 c = command[cursor - 1];
1814 if (c == ' ' || BB_ispunct(c))
1815 break;
1816 input_backward(1);
1817 if (cursor == 0)
1818 break;
1819 }
1820 break;
1821 }
1822 }
1823}
1824static void ctrl_right(void)
1825{
1826 CHAR_T *command = command_ps;
1827
1828 while (1) {
1829 CHAR_T c;
1830
1831 c = command[cursor];
1832 if (c == BB_NUL)
1833 break;
1834 if (c != ' ' && !BB_ispunct(c)) {
1835 /* we reached a "word" delimited by spaces/punct.
1836 * go to its end + 1 */
1837 while (1) {
1838 input_forward();
1839 c = command[cursor];
1840 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1841 break;
1842 }
1843 break;
1844 }
1845 input_forward();
1846 }
1847}
1848
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001849
1850/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001851 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001852 */
1853
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001854#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1855static void ask_terminal(void)
1856{
1857 /* Ask terminal where is the cursor now.
1858 * lineedit_read_key handles response and corrects
1859 * our idea of current cursor position.
1860 * Testcase: run "echo -n long_line_long_line_long_line",
1861 * then type in a long, wrapping command and try to
1862 * delete it using backspace key.
1863 * Note: we print it _after_ prompt, because
1864 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1865 */
1866 /* Problem: if there is buffered input on stdin,
1867 * the response will be delivered later,
1868 * possibly to an unsuspecting application.
1869 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1870 * Result:
1871 * ~/srcdevel/bbox/fix/busybox.t4 #
1872 * ~/srcdevel/bbox/fix/busybox.t4 #
1873 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1874 * ~/srcdevel/bbox/fix/busybox.t4 #
1875 *
1876 * Checking for input with poll only makes the race narrower,
1877 * I still can trigger it. Strace:
1878 *
1879 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1880 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1881 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001882 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001883 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1884 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001885 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001886
Denys Vlasenko451add42010-07-25 00:06:41 +02001887 pfd.fd = STDIN_FILENO;
1888 pfd.events = POLLIN;
1889 if (safe_poll(&pfd, 1, 0) == 0) {
1890 S.sent_ESC_br6n = 1;
Ron Yorstoncad3fc72021-02-03 20:47:14 +01001891 fputs_stdout(ESC"[6n");
Denys Vlasenko451add42010-07-25 00:06:41 +02001892 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001893 }
1894}
1895#else
Denys Vlasenko627821e2021-09-25 19:36:35 +02001896# define ask_terminal() ((void)0)
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001897#endif
1898
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001899/* Note about multi-line PS1 (e.g. "\n\w \u@\h\n> ") and prompt redrawing:
1900 *
1901 * If the prompt has any newlines, after we print it once we use only its last
1902 * line to redraw in-place, which makes it simpler to calculate how many lines
1903 * we should move the cursor up to align the redraw (cmdedit_y). The earlier
1904 * prompt lines just stay on screen and we redraw below them.
1905 *
1906 * Use cases for all prompt lines beyond the initial draw:
1907 * - After clear-screen (^L) or after displaying tab-completion choices, we
1908 * print the full prompt, as it isn't redrawn in-place.
1909 * - During terminal resize we could try to redraw all lines, but we don't,
1910 * because it requires delicate alignment, it's good enough with only the
1911 * last line, and doing it wrong is arguably worse than not doing it at all.
1912 *
1913 * Terminology wise, if it doesn't mention "full", then it means the last/sole
1914 * prompt line. We use the prompt (last/sole line) while redrawing in-place,
1915 * and the full where we need a fresh one unrelated to an earlier position.
1916 *
1917 * If PS1 is not multiline, the last/sole line and the full are the same string.
1918 */
1919
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001920/* Called just once at read_line_input() init time */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001921#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001922static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001923{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001924 const char *p;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001925 cmdedit_prompt = prompt_last_line = prmt_ptr;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001926 p = strrchr(prmt_ptr, '\n');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001927 if (p)
1928 prompt_last_line = p + 1;
1929 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001930 put_prompt();
1931}
1932#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001933static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001934{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001935 int prmt_size = 0;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001936 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001937 char *cwd_buf = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001938 char flg_not_length = '[';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001939 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001940
Denys Vlasenko7a180432013-08-19 16:44:05 +02001941 /*cmdedit_prmt_len = 0; - already is */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001942
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001943 cbuf[1] = '\0'; /* never changes */
1944
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001945 while (*prmt_ptr) {
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001946 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001947 char *free_me = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001948 char *pbuf;
1949 char c;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001950
1951 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001952 c = *prmt_ptr++;
1953 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001954 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001955 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001956/*
1957 * Supported via bb_process_escape_sequence:
1958 * \a ASCII bell character (07)
1959 * \e ASCII escape character (033)
1960 * \n newline
1961 * \r carriage return
1962 * \\ backslash
1963 * \nnn char with octal code nnn
1964 * Supported:
1965 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001966 * \w current working directory, with $HOME abbreviated with a tilde
1967 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001968 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001969 * \h hostname up to the first '.'
1970 * \H hostname
1971 * \u username
1972 * \[ begin a sequence of non-printing characters
1973 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001974 * \T current time in 12-hour HH:MM:SS format
1975 * \@ current time in 12-hour am/pm format
1976 * \A current time in 24-hour HH:MM format
1977 * \t current time in 24-hour HH:MM:SS format
1978 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001979 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001980 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001981 * \# command number of this command
1982 * \j number of jobs currently managed by the shell
1983 * \l basename of the shell's terminal device name
1984 * \s name of the shell, the basename of $0 (the portion following the final slash)
1985 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001986 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1987 * \D{format}
1988 * format is passed to strftime(3).
1989 * An empty format results in a locale-specific time representation.
1990 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001991 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001992 * \v version of bash (e.g., 2.00)
1993 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01001994 cp = prmt_ptr;
1995 c = *cp;
1996 if (c != 't') /* don't treat \t as tab */
1997 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001998 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001999 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002000 break;
2001 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002002
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002003 switch (c) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002004 case 'u':
Denys Vlasenkof4fcd742021-10-11 23:08:31 +02002005 pbuf = (char*)get_username_str();
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002006 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002007 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002008 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00002009 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002010 if (c == 'h')
2011 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002012 break;
2013 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002014 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002015 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002016 case 'T': /* 12-hour HH:MM:SS format */
2017 case '@': /* 12-hour am/pm format */
2018 case 'A': /* 24-hour HH:MM format */
2019 case 't': /* 24-hour HH:MM:SS format */
2020 /* We show all of them as 24-hour HH:MM */
2021 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
2022 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002023 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002024 case 'w': /* current dir */
2025 case 'W': /* basename of cur dir */
2026 if (!cwd_buf) {
Denys Vlasenkof4fcd742021-10-11 23:08:31 +02002027 const char *home;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002028 cwd_buf = xrealloc_getcwd_or_warn(NULL);
2029 if (!cwd_buf)
2030 cwd_buf = (char *)bb_msg_unknown;
Denys Vlasenkof4fcd742021-10-11 23:08:31 +02002031 else if ((home = get_homedir_or_NULL()) != NULL && home[0]) {
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002032 char *after_home_user;
2033
Denys Vlasenko1d145692013-03-29 13:09:05 +01002034 /* /home/user[/something] -> ~[/something] */
Denys Vlasenkof4fcd742021-10-11 23:08:31 +02002035 after_home_user = is_prefixed_with(cwd_buf, home);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002036 if (after_home_user
2037 && (*after_home_user == '/' || *after_home_user == '\0')
Denys Vlasenko1d145692013-03-29 13:09:05 +01002038 ) {
2039 cwd_buf[0] = '~';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002040 overlapping_strcpy(cwd_buf + 1, after_home_user);
Denys Vlasenko1d145692013-03-29 13:09:05 +01002041 }
2042 }
2043 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002044 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002045 if (c == 'w')
2046 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00002047 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01002048 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01002049 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002050 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002051// bb_process_escape_sequence does this now:
2052// case 'e': case 'E': /* \e \E = \033 */
2053// c = '\033';
2054// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002055 case 'x': case 'X': {
2056 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002057 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002058 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002059 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002060 buf2[l] = '\0';
2061 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002062 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002063 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002064 break;
2065 }
2066 prmt_ptr++;
2067 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002068 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002069 if (c == 0)
2070 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002071 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002072 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002073 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002074 case '[': case ']':
2075 if (c == flg_not_length) {
Denys Vlasenko7a180432013-08-19 16:44:05 +02002076 /* Toggle '['/']' hex 5b/5d */
2077 flg_not_length ^= 6;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002078 continue;
2079 }
2080 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002081 } /* switch */
2082 } /* if */
2083 } /* if */
2084 cbuf[0] = c;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002085 {
2086 int n = strlen(pbuf);
2087 prmt_size += n;
2088 if (c == '\n')
2089 cmdedit_prmt_len = 0;
2090 else if (flg_not_length != ']') {
Denys Vlasenko627821e2021-09-25 19:36:35 +02002091# if ENABLE_UNICODE_SUPPORT
Audun-Marius Gangstø9bf44992020-11-21 12:26:39 +01002092 if (n == 1) {
2093 /* Only count single-byte characters and the first of multi-byte characters */
2094 if ((unsigned char)*pbuf < 0x80 /* single byte character */
2095 || (unsigned char)*pbuf >= 0xc0 /* first of multi-byte characters */
2096 ) {
2097 cmdedit_prmt_len += n;
2098 }
2099 } else {
2100 cmdedit_prmt_len += unicode_strwidth(pbuf);
2101 }
Denys Vlasenko627821e2021-09-25 19:36:35 +02002102# else
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002103 cmdedit_prmt_len += n;
Denys Vlasenko627821e2021-09-25 19:36:35 +02002104# endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002105 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002106 }
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002107 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_size+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002108 free(free_me);
2109 } /* while */
2110
2111 if (cwd_buf != (char *)bb_msg_unknown)
2112 free(cwd_buf);
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002113 /* see comment (above this function) about multiline prompt redrawing */
2114 cmdedit_prompt = prompt_last_line = prmt_mem_ptr;
2115 prmt_ptr = strrchr(cmdedit_prompt, '\n');
2116 if (prmt_ptr)
2117 prompt_last_line = prmt_ptr + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002118 put_prompt();
2119}
Denys Vlasenkoa97a7952020-12-16 11:14:08 +01002120#endif /* FEATURE_EDITING_FANCY_PROMPT */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002121
Ron Yorston23286902018-02-25 20:09:54 +01002122#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko038a9772016-11-28 01:10:16 +01002123static void cmdedit_setwidth(void)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002124{
Denys Vlasenko038a9772016-11-28 01:10:16 +01002125 int new_y;
2126
2127 cmdedit_termw = get_terminal_width(STDIN_FILENO);
2128 /* new y for current cursor */
2129 new_y = (cursor + cmdedit_prmt_len) / cmdedit_termw;
2130 /* redraw */
2131 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002132}
2133
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002134static void win_changed(int nsig UNUSED_PARAM)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002135{
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002136 if (S.ok_to_redraw) {
2137 /* We are in read_key(), safe to redraw immediately */
2138 int sv_errno = errno;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002139 cmdedit_setwidth();
2140 fflush_all();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002141 errno = sv_errno;
2142 } else {
2143 /* Signal main loop that redraw is necessary */
2144 S.SIGWINCH_count++;
2145 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002146}
Ron Yorston23286902018-02-25 20:09:54 +01002147#endif
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002148
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002149static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002150{
Denys Vlasenko020f4062009-05-17 16:44:54 +02002151 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002152#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002153 char unicode_buf[MB_CUR_MAX + 1];
2154 int unicode_idx = 0;
2155#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02002156
Denys Vlasenko038a9772016-11-28 01:10:16 +01002157 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002158 while (1) {
2159 /* Wait for input. TIMEOUT = -1 makes read_key wait even
2160 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
2161 * insist on full MB_CUR_MAX buffer to declare input like
2162 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
2163 *
2164 * Note: read_key sets errno to 0 on success.
2165 */
Ron Yorston23286902018-02-25 20:09:54 +01002166 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 1;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002167 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
Ron Yorston23286902018-02-25 20:09:54 +01002168 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 0;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002169 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01002170#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002171 if (errno == EAGAIN && unicode_idx != 0)
2172 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01002173#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002174 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02002175 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002176
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002177#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2178 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002179 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02002180 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002181 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002182 if (cursor == 0) { /* otherwise it may be bogus */
2183 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002184 /*
2185 * Is col > cmdedit_prmt_len?
2186 * If yes (terminal says cursor is farther to the right
2187 * of where we think it should be),
2188 * the prompt wasn't printed starting at col 1,
2189 * there was additional text before it.
2190 */
2191 if ((int)(col - cmdedit_prmt_len) > 0) {
2192 /* Fix our understanding of current x position */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002193 cmdedit_x += (col - cmdedit_prmt_len);
2194 while (cmdedit_x >= cmdedit_termw) {
2195 cmdedit_x -= cmdedit_termw;
2196 cmdedit_y++;
2197 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02002198 }
2199 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002200 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02002201 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002202#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002203
Denys Vlasenko19158a82010-03-26 14:06:56 +01002204#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002205 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002206 wchar_t wc;
2207
2208 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002209 break;
2210 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002211
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002212 unicode_buf[unicode_idx++] = ic;
2213 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002214 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2215 /* Not (yet?) a valid unicode char */
2216 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002217 timeout = 50;
2218 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002219 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002220 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002221 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002222 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002223# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002224 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002225# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002226 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002227# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002228 } else {
2229 /* Valid unicode char, return its code */
2230 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002231 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002232 }
2233#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002234 break;
2235 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002236
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002237 return ic;
2238}
2239
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002240#if ENABLE_UNICODE_BIDI_SUPPORT
2241static int isrtl_str(void)
2242{
2243 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002244
2245 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002246 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002247 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002248}
2249#else
2250# define isrtl_str() 0
2251#endif
2252
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002253/* leave out the "vi-mode"-only case labels if vi editing isn't
2254 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002255#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002256
2257/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002258#undef CTRL
2259#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002260
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002261enum {
2262 VI_CMDMODE_BIT = 0x40000000,
2263 /* 0x80000000 bit flags KEYCODE_xxx */
2264};
2265
2266#if ENABLE_FEATURE_REVERSE_SEARCH
2267/* Mimic readline Ctrl-R reverse history search.
2268 * When invoked, it shows the following prompt:
2269 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2270 * and typing results in search being performed:
2271 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2272 * Search is performed by looking at progressively older lines in history.
2273 * Ctrl-R again searches for the next match in history.
2274 * Backspace deletes last matched char.
2275 * Control keys exit search and return to normal editing (at current history line).
2276 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002277static int32_t reverse_i_search(int timeout)
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002278{
2279 char match_buf[128]; /* for user input */
2280 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2281 const char *matched_history_line;
2282 const char *saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002283 unsigned saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002284 int32_t ic;
2285
2286 matched_history_line = NULL;
2287 read_key_buffer[0] = 0;
2288 match_buf[0] = '\0';
2289
2290 /* Save and replace the prompt */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002291 saved_prompt = prompt_last_line;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002292 saved_prmt_len = cmdedit_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002293 goto set_prompt;
2294
2295 while (1) {
2296 int h;
2297 unsigned match_buf_len = strlen(match_buf);
2298
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002299//FIXME: correct timeout? (i.e. count it down?)
2300 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002301
2302 switch (ic) {
2303 case CTRL('R'): /* searching for the next match */
2304 break;
2305
2306 case '\b':
2307 case '\x7f':
2308 /* Backspace */
2309 if (unicode_status == UNICODE_ON) {
2310 while (match_buf_len != 0) {
2311 uint8_t c = match_buf[--match_buf_len];
2312 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2313 break; /* yes */
2314 }
2315 } else {
2316 if (match_buf_len != 0)
2317 match_buf_len--;
2318 }
2319 match_buf[match_buf_len] = '\0';
2320 break;
2321
2322 default:
2323 if (ic < ' '
2324 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2325 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2326 ) {
2327 goto ret;
2328 }
2329
2330 /* Append this char */
Denys Vlasenko627821e2021-09-25 19:36:35 +02002331# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002332 if (unicode_status == UNICODE_ON) {
2333 mbstate_t mbstate = { 0 };
2334 char buf[MB_CUR_MAX + 1];
2335 int len = wcrtomb(buf, ic, &mbstate);
2336 if (len > 0) {
2337 buf[len] = '\0';
2338 if (match_buf_len + len < sizeof(match_buf))
2339 strcpy(match_buf + match_buf_len, buf);
2340 }
2341 } else
Denys Vlasenko627821e2021-09-25 19:36:35 +02002342# endif
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002343 if (match_buf_len < sizeof(match_buf) - 1) {
2344 match_buf[match_buf_len] = ic;
2345 match_buf[match_buf_len + 1] = '\0';
2346 }
2347 break;
2348 } /* switch (ic) */
2349
2350 /* Search in history for match_buf */
2351 h = state->cur_history;
2352 if (ic == CTRL('R'))
2353 h--;
2354 while (h >= 0) {
2355 if (state->history[h]) {
2356 char *match = strstr(state->history[h], match_buf);
2357 if (match) {
2358 state->cur_history = h;
2359 matched_history_line = state->history[h];
2360 command_len = load_string(matched_history_line);
2361 cursor = match - matched_history_line;
2362//FIXME: cursor position for Unicode case
2363
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002364 free((char*)prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002365 set_prompt:
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002366 prompt_last_line = xasprintf("(reverse-i-search)'%s': ", match_buf);
2367 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002368 goto do_redraw;
2369 }
2370 }
2371 h--;
2372 }
2373
2374 /* Not found */
2375 match_buf[match_buf_len] = '\0';
2376 beep();
2377 continue;
2378
2379 do_redraw:
2380 redraw(cmdedit_y, command_len - cursor);
2381 } /* while (1) */
2382
2383 ret:
2384 if (matched_history_line)
2385 command_len = load_string(matched_history_line);
2386
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002387 free((char*)prompt_last_line);
2388 prompt_last_line = saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002389 cmdedit_prmt_len = saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002390 redraw(cmdedit_y, command_len - cursor);
2391
2392 return ic;
2393}
Denys Vlasenko627821e2021-09-25 19:36:35 +02002394#endif /* ENABLE_FEATURE_REVERSE_SEARCH */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002395
Denys Vlasenko23427a62018-12-08 15:45:46 +01002396#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002397static void sigaction2(int sig, struct sigaction *act)
2398{
2399 // Grr... gcc 8.1.1:
2400 // "passing argument 3 to restrict-qualified parameter aliases with argument 2"
2401 // dance around that...
2402 struct sigaction *oact FIX_ALIASING;
2403 oact = act;
2404 sigaction(sig, act, oact);
2405}
Denys Vlasenko23427a62018-12-08 15:45:46 +01002406#endif
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002407
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002408/* maxsize must be >= 2.
2409 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002410 * -1 on read errors or EOF, or on bare Ctrl-D,
2411 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002412 * (in both cases the cursor remains on the input line, '\n' is not printed)
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002413 * >0 length of input string, including terminating '\n'
2414 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002415int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize)
Erik Andersen13456d12000-03-16 08:09:57 +00002416{
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002417 int len, n;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002418 int timeout;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002419#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002420 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002421#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002422 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002423#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002424 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002425#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002426 struct termios initial_settings;
2427 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002428 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002429
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002430 INIT_S();
Denys Vlasenko96717d92020-12-21 22:50:23 +01002431 //command_len = 0; - done by INIT_S()
2432 //cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
2433 cmdedit_termw = 80;
Denys Vlasenko96717d92020-12-21 22:50:23 +01002434 IF_FEATURE_EDITING_VI(delptr = delbuf;)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002435
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002436 n = get_termios_and_make_raw(STDIN_FILENO, &new_settings, &initial_settings, 0
2437 | TERMIOS_CLEAR_ISIG /* turn off INTR (ctrl-C), QUIT, SUSP */
2438 );
2439 if (n != 0 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON) {
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002440 /* Happens when e.g. stty -echo was run before.
2441 * But if ICANON is not set, we don't come here.
2442 * (example: interactive python ^Z-backgrounded,
2443 * tty is still in "raw mode").
2444 */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002445 parse_and_put_prompt(prompt);
Denys Vlasenko038a9772016-11-28 01:10:16 +01002446 fflush_all();
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002447 if (fgets(command, maxsize, stdin) == NULL)
2448 len = -1; /* EOF or error */
2449 else
2450 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002451 DEINIT_S();
2452 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002453 }
2454
Denys Vlasenko28055022010-01-04 20:49:58 +01002455 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002456
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002457// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002458 if (maxsize > MAX_LINELEN)
2459 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002460 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002461
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002462 timeout = -1;
2463 /* Make state->flags == 0 if st is NULL.
2464 * With zeroed flags, no other fields are ever referenced.
2465 */
2466 state = (line_input_t*) &const_int_0;
2467 if (st) {
2468 state = st;
2469 timeout = st->timeout;
2470 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002471#if MAX_HISTORY > 0
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002472 if (state->flags & DO_HISTORY) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002473# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002474 if (state->hist_file)
2475 if (state->cnt_history == 0)
2476 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002477# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002478 state->cur_history = state->cnt_history;
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002479 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002480#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002481
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002482 /* prepare before init handlers */
Denys Vlasenko19158a82010-03-26 14:06:56 +01002483#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002484 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2485#else
Mark Whitley4e338752001-01-26 20:42:23 +00002486 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002487 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002488#endif
2489#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002490
Denis Vlasenko202ac502008-11-05 13:20:58 +00002491 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002492
Denis Vlasenko682ad302008-09-27 01:28:56 +00002493#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002494 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002495 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002496 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2497#endif
2498
Denys Vlasenko0a677222017-11-08 13:38:12 +01002499 /* Get width (before printing prompt) */
2500 cmdedit_termw = get_terminal_width(STDIN_FILENO);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002501 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002502 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002503 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002504
Ron Yorston23286902018-02-25 20:09:54 +01002505#if ENABLE_FEATURE_EDITING_WINCH
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002506 /* Install window resize handler (NB: after *all* init is complete) */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002507 S.SIGWINCH_handler.sa_handler = win_changed;
2508 S.SIGWINCH_handler.sa_flags = SA_RESTART;
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002509 sigaction2(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002510#endif
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002511 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002512 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002513 /*
2514 * The emacs and vi modes share much of the code in the big
2515 * command loop. Commands entered when in vi's command mode
2516 * (aka "escape mode") get an extra bit added to distinguish
2517 * them - this keeps them from being self-inserted. This
2518 * clutters the big switch a bit, but keeps all the code
2519 * in one place.
2520 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002521 int32_t ic, ic_raw;
Ron Yorston23286902018-02-25 20:09:54 +01002522#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002523 unsigned count;
2524
2525 count = S.SIGWINCH_count;
2526 if (S.SIGWINCH_saved != count) {
2527 S.SIGWINCH_saved = count;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002528 cmdedit_setwidth();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002529 }
Ron Yorston23286902018-02-25 20:09:54 +01002530#endif
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002531 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002532
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002533#if ENABLE_FEATURE_REVERSE_SEARCH
2534 again:
2535#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002536#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002537 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002538 if (vi_cmdmode) {
2539 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2540 * change ic if it contains one of them: */
2541 ic |= VI_CMDMODE_BIT;
2542 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002543#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002544
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002545 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002546 case '\n':
2547 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002548 vi_case('\n'|VI_CMDMODE_BIT:)
2549 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002550 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002551 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002552 break_out = 1;
2553 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002554 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002555 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002556 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002557 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002558 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002559 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002560 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002561 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002562 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002563 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002564 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002565 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002566 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002567 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002568 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002569 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002570 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002571 vi_case('l'|VI_CMDMODE_BIT:)
2572 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002573 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002574 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002575 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002576 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002577 if (!isrtl_str())
2578 input_backspace();
2579 else
2580 input_delete(0);
2581 break;
2582 case KEYCODE_DELETE:
2583 if (!isrtl_str())
2584 input_delete(0);
2585 else
2586 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002587 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002588#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002589 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002590 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002591 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002592#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002593 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002594 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002595 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002596 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002597 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002598 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002599 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002600 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002601 /* Control-l -- clear screen */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002602 /* cursor to top,left; clear to the end of screen */
2603 printf(ESC"[H" ESC"[J");
2604 draw_full(command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002605 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002606#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002607 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002608 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2609 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002610 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002611 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002612 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002613 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002614 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002615 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2616 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002617 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002618 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002619 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002620 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002621#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002622 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002623 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002624 /* Control-U -- Clear line before cursor */
2625 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002626 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002627 memmove(command_ps, command_ps + cursor,
2628 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002629 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002630 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002631 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002632 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002633 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002634 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002635 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002636 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002637 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002638 input_backspace();
2639 break;
Rostislav Skudnov2e4ef382016-11-24 15:04:00 +01002640 case KEYCODE_ALT_D: {
2641 /* Delete word forward */
2642 int nc, sc = cursor;
2643 ctrl_right();
2644 nc = cursor - sc;
2645 input_backward(nc);
2646 while (--nc >= 0)
2647 input_delete(1);
2648 break;
2649 }
2650 case KEYCODE_ALT_BACKSPACE: {
2651 /* Delete word backward */
2652 int sc = cursor;
2653 ctrl_left();
2654 while (sc-- > cursor)
2655 input_delete(1);
2656 break;
2657 }
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002658#if ENABLE_FEATURE_REVERSE_SEARCH
2659 case CTRL('R'):
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002660 ic = ic_raw = reverse_i_search(timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002661 goto again;
2662#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002663
Denis Vlasenko38f63192007-01-22 09:03:07 +00002664#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002665 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002666 vi_cmdmode = 0;
2667 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002668 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002669 input_backward(cursor);
2670 vi_cmdmode = 0;
2671 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002672 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002673 input_forward();
2674 vi_cmdmode = 0;
2675 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002676 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002677 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002678 vi_cmdmode = 0;
2679 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002680 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002681 input_delete(1);
2682 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002683 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002684 if (cursor > 0) {
2685 input_backward(1);
2686 input_delete(1);
2687 }
2688 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002689 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002690 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002691 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002692 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002693 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002694 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002695 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002696 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002697 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002698 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002699 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002700 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002701 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002702 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002703 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002704 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002705 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002706 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002707 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002708 vi_cmdmode = 0;
2709 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002710 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002711 goto clear_to_eol;
2712
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002713 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002714 vi_cmdmode = 0;
2715 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002716 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002717 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002718
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002719 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002720 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002721 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002722 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002723 input_backward(cursor);
2724 goto clear_to_eol;
2725 break;
2726 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002727
2728 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002729 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002730 case 'w':
2731 case 'W':
2732 case 'e':
2733 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002734 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002735 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002736 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002737 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002738 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002739 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002740 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002741 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002742 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002743 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002744 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002745 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002746 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002747 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002748 break;
2749 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002750 nc = cursor;
2751 input_backward(cursor - sc);
2752 while (nc-- > cursor)
2753 input_delete(1);
2754 break;
2755 case 'b': /* "db", "cb" */
2756 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002757 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002758 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002759 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002760 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002761 while (sc-- > cursor)
2762 input_delete(1);
2763 break;
2764 case ' ': /* "d ", "c " */
2765 input_delete(1);
2766 break;
2767 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002768 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002769 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002770 input_delete(1);
2771 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002772 }
2773 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002774 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002775 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002776 input_forward();
2777 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002778 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002779 put();
2780 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002781 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002782//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002783 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002784 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002785 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002786 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002787 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002788 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002789 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002790 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002791 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002792 }
2793 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002794 case '\x1b': /* ESC */
2795 if (state->flags & VI_MODE) {
2796 /* insert mode --> command mode */
2797 vi_cmdmode = 1;
2798 input_backward(1);
2799 }
2800 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002801#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002802
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002803#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002804 case KEYCODE_UP:
2805 if (get_previous_history())
2806 goto rewrite_line;
2807 beep();
2808 break;
2809 case KEYCODE_DOWN:
2810 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002811 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002812 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002813 /* Rewrite the line with the selected history item */
2814 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002815 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002816 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002817 /* redraw and go to eol (bol, in vi) */
2818 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2819 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002820#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002821 case KEYCODE_RIGHT:
2822 input_forward();
2823 break;
2824 case KEYCODE_LEFT:
2825 input_backward(1);
2826 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002827 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002828 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002829 ctrl_left();
2830 break;
2831 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002832 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002833 ctrl_right();
2834 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002835 case KEYCODE_HOME:
2836 input_backward(cursor);
2837 break;
2838 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002839 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002840 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002841
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002842 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002843 if (initial_settings.c_cc[VINTR] != 0
2844 && ic_raw == initial_settings.c_cc[VINTR]
2845 ) {
2846 /* Ctrl-C (usually) - stop gathering input */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002847 command_len = 0;
2848 break_out = -1; /* "do not append '\n'" */
2849 break;
2850 }
2851 if (initial_settings.c_cc[VEOF] != 0
2852 && ic_raw == initial_settings.c_cc[VEOF]
2853 ) {
2854 /* Ctrl-D (usually) - delete one character,
2855 * or exit if len=0 and no chars to delete */
2856 if (command_len == 0) {
2857 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002858
2859 case -1: /* error (e.g. EIO when tty is destroyed) */
2860 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002861 break_out = command_len = -1;
2862 break;
2863 }
2864 input_delete(0);
2865 break;
2866 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002867// /* Control-V -- force insert of next char */
2868// if (c == CTRL('V')) {
2869// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002870// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002871// if (c == 0) {
2872// beep();
2873// break;
2874// }
2875// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002876 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002877 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2878 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002879 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002880 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002881 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002882 * Otherwise, we are here if ic is a
2883 * control char or an unhandled ESC sequence,
2884 * which is also ignored.
2885 */
2886 break;
2887 }
2888 if ((int)command_len >= (maxsize - 2)) {
2889 /* Not enough space for the char and EOL */
2890 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002891 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002892
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002893 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002894 if (cursor == (command_len - 1)) {
2895 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002896 command_ps[cursor] = ic;
2897 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002898 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002899 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002900 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002901 } else {
2902 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002903 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002904
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002905 memmove(command_ps + sc + 1, command_ps + sc,
2906 (command_len - sc) * sizeof(command_ps[0]));
2907 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002908 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2909 if (!isrtl_str())
2910 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002911 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002912 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002913 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002914 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002915 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002916 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002917
2918 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002919 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002920
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002921#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002922 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002923 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002924#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002925 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002926
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002927#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002928 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002929 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2930 * We sent "ESC [ 6 n", but got '\n' first, and
2931 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2932 * It's bad already and not much can be done with it
2933 * (it _will_ be visible for the next process to read stdin),
2934 * but without this delay it even shows up on the screen
2935 * as garbage because we restore echo settings with tcsetattr
2936 * before it comes in. UGLY!
2937 */
2938 usleep(20*1000);
Denys Vlasenkofae73322020-12-21 21:55:03 +01002939// MAYBE? tcflush(STDIN_FILENO, TCIFLUSH); /* flushes data received but not read */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002940 }
2941#endif
2942
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002943/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002944#undef command
2945
Denys Vlasenko19158a82010-03-26 14:06:56 +01002946#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002947 command[0] = '\0';
2948 if (command_len > 0)
2949 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002950 free(command_ps);
2951#endif
2952
Flemming Madsend96ffda2013-04-07 18:47:24 +02002953 if (command_len > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002954 remember_in_history(command);
Flemming Madsend96ffda2013-04-07 18:47:24 +02002955 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002956
Eric Andersen27bb7902003-12-23 20:24:51 +00002957 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002958 command[command_len++] = '\n';
2959 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002960 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002961
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002962#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002963 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002964#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002965
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002966 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002967 tcsetattr_stdin_TCSANOW(&initial_settings);
Ron Yorston23286902018-02-25 20:09:54 +01002968#if ENABLE_FEATURE_EDITING_WINCH
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002969 /* restore SIGWINCH handler */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002970 sigaction_set(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002971#endif
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002972 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002973
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002974 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002975 DEINIT_S();
2976
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002977 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002978}
2979
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002980#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002981
2982#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002983int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002984{
Ron Yorstoncad3fc72021-02-03 20:47:14 +01002985 fputs_stdout(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002986 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002987 if (!fgets(command, maxsize, stdin))
2988 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002989 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002990}
2991
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002992#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002993
2994
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002995/*
2996 * Testing
2997 */
2998
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002999#ifdef TEST
3000
Eric Andersenf9ff8a72001-03-15 20:51:09 +00003001#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00003002
3003const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00003004
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003005int main(int argc, char **argv)
3006{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00003007 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003008 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00003009#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00003010 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
3011 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
Denys Vlasenko8187e012017-09-13 22:48:30 +02003012 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003013#else
3014 "% ";
3015#endif
3016
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00003017 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00003018 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003019 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00003020 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00003021 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02003022 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003023 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00003024 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003025 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003026 return 0;
3027}
3028
Eric Andersenc470f442003-07-28 09:56:35 +00003029#endif /* TEST */