blob: b685399f986b0a8ad0289f1af27e4aa98b237c97 [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{
Ron Yorston7d1c7d82022-03-24 12:17:25 +0000262 const char *home;
263
264# if ENABLE_SHELL_ASH || ENABLE_SHELL_HUSH
265 home = state->sh_get_var ? state->sh_get_var("HOME") : getenv("HOME");
266# else
267 home = getenv("HOME");
268# endif
269 if (home != NULL && home[0] != '\0')
270 return home;
271
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200272 if (!got_user_strings)
273 get_user_strings();
274 return home_pwd_buf;
275}
276#endif
277
Denys Vlasenko19158a82010-03-26 14:06:56 +0100278#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200279static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200280{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100281 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200282 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100283 if (len < 0)
284 len = 0;
285 command_ps[len] = BB_NUL;
286 return len;
287 } else {
288 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200289 while (src[i] && i < S.maxsize - 1) {
290 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100291 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200292 }
293 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100294 return i;
295 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200296}
Tomas Heinricha659b812010-04-29 13:43:39 +0200297static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200298{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100299 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200300# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100301 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
302 if (len < 0)
303 len = 0;
304 dst[len] = '\0';
305 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200306# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100307 unsigned dstpos = 0;
308 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200309
Denys Vlasenko353680a2011-03-27 01:18:07 +0100310 maxsize--;
311 while (dstpos < maxsize) {
312 wchar_t wc;
313 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200314
Denys Vlasenko353680a2011-03-27 01:18:07 +0100315 /* Convert up to 1st invalid byte (or up to end) */
316 while ((wc = command_ps[srcpos]) != BB_NUL
317 && !unicode_is_raw_byte(wc)
318 ) {
319 srcpos++;
320 }
321 command_ps[srcpos] = BB_NUL;
322 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
323 if (n < 0) /* should not happen */
324 break;
325 dstpos += n;
326 if (wc == BB_NUL) /* usually is */
327 break;
328
329 /* We do have invalid byte here! */
330 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200331 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100332 if (dstpos == maxsize)
333 break;
334 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200335 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100336 dst[dstpos] = '\0';
337 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200338# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100339 } else {
340 unsigned i = 0;
341 while ((dst[i] = command_ps[i]) != 0)
342 i++;
343 return i;
344 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200345}
346/* I thought just fputwc(c, stdout) would work. But no... */
347static void BB_PUTCHAR(wchar_t c)
348{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100349 if (unicode_status == UNICODE_ON) {
350 char buf[MB_CUR_MAX + 1];
351 mbstate_t mbst = { 0 };
352 ssize_t len = wcrtomb(buf, c, &mbst);
353 if (len > 0) {
354 buf[len] = '\0';
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100355 fputs_stdout(buf);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100356 }
357 } else {
358 /* In this case, c is always one byte */
359 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200360 }
361}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200362# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
363static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
364# else
365static wchar_t adjust_width_and_validate_wc(wchar_t wc)
366# define adjust_width_and_validate_wc(width_adj, wc) \
367 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
368# endif
369{
370 int w = 1;
371
372 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200373 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
374 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200375 goto subst;
376 }
377 w = wcwidth(wc);
378 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
379 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
380 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
381 ) {
382 subst:
383 w = 1;
384 wc = CONFIG_SUBST_WCHAR;
385 }
386 }
387
388# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
389 *width_adj += w;
390#endif
391 return wc;
392}
393#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200394static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200395{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200396 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200397 return strlen(command_ps);
398}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200399# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200400static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200401{
402 safe_strncpy(dst, command_ps, maxsize);
403}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200404# endif
405# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200406/* Should never be called: */
407int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200408#endif
409
410
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000411/* Put 'command_ps[cursor]', cursor++.
412 * Advance cursor on screen. If we reached right margin, scroll text up
413 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000414#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200415static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000416{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200417 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200418 unsigned width = 0;
419 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000420
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200421 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000422 /* erase character after end of input string */
423 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200424 } else {
425 /* advance cursor only if we aren't at the end yet */
426 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200427 if (unicode_status == UNICODE_ON) {
428 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
429 c = adjust_width_and_validate_wc(&cmdedit_x, c);
430 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
431 } else {
432 cmdedit_x++;
433 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000434 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200435
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200436 ofs_to_right = cmdedit_x - cmdedit_termw;
437 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
438 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200439 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000440 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200441
442 if (ofs_to_right >= 0) {
443 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000444#if HACK_FOR_WRONG_WIDTH
445 /* This works better if our idea of term width is wrong
446 * and it is actually wider (often happens on serial lines).
447 * Printing CR,LF *forces* cursor to next line.
448 * OTOH if terminal width is correct AND terminal does NOT
449 * have automargin (IOW: it is moving cursor to next line
450 * by itself (which is wrong for VT-10x terminals)),
451 * this will break things: there will be one extra empty line */
452 puts("\r"); /* + implicit '\n' */
453#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200454 /* VT-10x terminals don't wrap cursor to next line when last char
455 * on the line is printed - cursor stays "over" this char.
456 * Need to print _next_ char too (first one to appear on next line)
457 * to make cursor move down to next line.
458 */
459 /* Works ok only if cmdedit_termw is correct. */
460 c = command_ps[cursor];
461 if (c == BB_NUL)
462 c = ' ';
463 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000464 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000465#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200466 cmdedit_y++;
467 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
468 width = 0;
469 } else { /* ofs_to_right > 0 */
470 /* wide char c didn't fit on prev line */
471 BB_PUTCHAR(c);
472 }
473 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000474 }
Erik Andersen13456d12000-03-16 08:09:57 +0000475}
476
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000477/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200478static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000479{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000480 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200481 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000482}
483
484/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000485static void goto_new_line(void)
486{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200487 put_till_end_and_adv_cursor();
Denys Vlasenkof5018da2018-04-06 17:58:21 +0200488 /* "cursor == 0" is only if prompt is "" and user input is empty */
489 if (cursor == 0 || cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000490 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000491}
492
Rob Landley88621d72006-08-29 19:41:06 +0000493static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000494{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000495 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000496}
497
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200498/* Full or last/sole prompt line, reset edit cursor, calculate terminal cursor.
499 * cmdedit_y is always calculated for the last/sole prompt line.
500 */
501static void put_prompt_custom(bool is_full)
Denys Vlasenko248c3242010-05-17 00:45:44 +0200502{
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100503 fputs_stdout((is_full ? cmdedit_prompt : prompt_last_line));
Denys Vlasenko248c3242010-05-17 00:45:44 +0200504 cursor = 0;
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100505 cmdedit_y = cmdedit_prmt_len / cmdedit_termw; /* new quasireal y */
506 cmdedit_x = cmdedit_prmt_len % cmdedit_termw;
Denys Vlasenko248c3242010-05-17 00:45:44 +0200507}
508
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200509#define put_prompt_last_line() put_prompt_custom(0)
510#define put_prompt() put_prompt_custom(1)
511
Eric Andersenaff114c2004-04-14 17:51:38 +0000512/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000513/* (optimized for slow terminals) */
514static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000515{
516 if (num > cursor)
517 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200518 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000519 return;
520 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000521
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200522 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
523 && unicode_status == UNICODE_ON
524 ) {
525 /* correct NUM to be equal to _screen_ width */
526 int n = num;
527 num = 0;
528 while (--n >= 0)
529 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
530 if (num == 0)
531 return;
532 }
533
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000534 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000535 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000536 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000537 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000538 * Also gets miscompiled for ARM users
539 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000540 * printf(("\b\b\b\b" + 4) - num);
541 * return;
542 */
543 do {
544 bb_putchar('\b');
545 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000546 return;
547 }
Marek Polacek7b181072010-10-28 21:34:56 +0200548 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000549 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000550 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000551
552 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200553 if (ENABLE_UNICODE_WIDE_WCHARS) {
554 /* With wide chars, it is hard to "backtrack"
555 * and reliably figure out where to put cursor.
556 * Example (<> is a wide char; # is an ordinary char, _ cursor):
557 * |prompt: <><> |
558 * |<><><><><><> |
559 * |_ |
560 * and user presses left arrow. num = 1, cmdedit_x = 0,
561 * We need to go up one line, and then - how do we know that
562 * we need to go *10* positions to the right? Because
563 * |prompt: <>#<>|
564 * |<><><>#<><><>|
565 * |_ |
566 * in this situation we need to go *11* positions to the right.
567 *
568 * A simpler thing to do is to redraw everything from the start
569 * up to new cursor position (which is already known):
570 */
571 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200572 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200573 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200574 cmdedit_y = 0;
575 sv_cursor = cursor;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200576 put_prompt_last_line(); /* sets cursor to 0 */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200577 while (cursor < sv_cursor)
578 put_cur_glyph_and_inc_cursor();
579 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200580 int lines_up;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200581 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200582 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200583 /* num=1...w: one line up, w+1...2w: two, etc: */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100584 lines_up = 1 + (num - 1) / cmdedit_termw;
585 cmdedit_x = (cmdedit_termw * cmdedit_y - num) % cmdedit_termw;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200586 cmdedit_y -= lines_up;
587 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200588 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200589 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200590 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
591 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200592 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200593 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000594 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000595}
596
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200597/* See redraw and draw_full below */
598static void draw_custom(int y, int back_cursor, bool is_full)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000599{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200600 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200601 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000602 bb_putchar('\r');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200603 put_prompt_custom(is_full);
Denys Vlasenko94043e82010-05-11 14:49:13 +0200604 put_till_end_and_adv_cursor();
605 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000606 input_backward(back_cursor);
607}
608
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200609/* Move y lines up, draw last/sole prompt line, editor line[s], and clear tail.
610 * goal: redraw the prompt+input+cursor in-place, overwriting the previous */
611#define redraw(y, back_cursor) draw_custom((y), (back_cursor), 0)
612
613/* Like above, but without moving up, and while using all the prompt lines.
614 * goal: draw a full prompt+input+cursor unrelated to a previous position.
615 * note: cmdedit_y always ends up relating to the last/sole prompt line */
616#define draw_full(back_cursor) draw_custom(0, (back_cursor), 1)
617
Paul Fox3f11b1b2005-08-04 19:04:46 +0000618/* Delete the char in front of the cursor, optionally saving it
619 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000620#if !ENABLE_FEATURE_EDITING_VI
621static void input_delete(void)
622#define input_delete(save) input_delete()
623#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000624static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000625#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000626{
Mark Whitley4e338752001-01-26 20:42:23 +0000627 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000628
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000629 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000630 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000631
Denis Vlasenko38f63192007-01-22 09:03:07 +0000632#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000633 if (save) {
634 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000635 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000636 newdelflag = 0;
637 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000638 if ((delptr - delbuf) < DELBUFSIZ)
639 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000640 }
641#endif
642
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200643 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200644 /* (command_len + 1 [because of NUL]) - (j + 1)
645 * simplified into (command_len - j) */
646 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000647 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200648 put_till_end_and_adv_cursor();
649 /* Last char is still visible, erase it (and more) */
650 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000651 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000652}
653
Denis Vlasenko38f63192007-01-22 09:03:07 +0000654#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000655static void put(void)
656{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000657 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000658 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000659
Paul Fox3f11b1b2005-08-04 19:04:46 +0000660 if (j == 0)
661 return;
662 ocursor = cursor;
663 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200664 memmove(command_ps + cursor + j, command_ps + cursor,
665 (command_len - cursor + 1) * sizeof(command_ps[0]));
666 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000667 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200668 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000669 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000670}
671#endif
672
Mark Whitley4e338752001-01-26 20:42:23 +0000673/* Delete the char in back of the cursor */
674static void input_backspace(void)
675{
676 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000677 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000678 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000679 }
680}
681
Eric Andersenaff114c2004-04-14 17:51:38 +0000682/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000683static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000684{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000685 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200686 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000687}
688
Denis Vlasenko38f63192007-01-22 09:03:07 +0000689#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000690
Mike Shalf3763032010-11-22 03:49:18 +0100691//FIXME:
692//needs to be more clever: currently it thinks that "foo\ b<TAB>
693//matches the file named "foo bar", which is untrue.
694//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
695//not "foo bar <cursor>...
696
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000697static void free_tab_completion_data(void)
698{
699 if (matches) {
700 while (num_matches)
701 free(matches[--num_matches]);
702 free(matches);
703 matches = NULL;
704 }
705}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000706
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000707static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000708{
Denys Vlasenkoc3797d42017-11-07 18:09:29 +0100709 unsigned char *p = (unsigned char*)matched;
710 while (*p) {
711 /* ESC attack fix: drop any string with control chars */
712 if (*p < ' '
713 || (!ENABLE_UNICODE_SUPPORT && *p >= 0x7f)
714 || (ENABLE_UNICODE_SUPPORT && *p == 0x7f)
715 ) {
716 free(matched);
717 return;
718 }
719 p++;
720 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000721 matches = xrealloc_vector(matches, 4, num_matches);
722 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000723 num_matches++;
724}
725
Mike Shalf3763032010-11-22 03:49:18 +0100726# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200727/* Replace "~user/..." with "/homedir/...".
728 * The parameter is malloced, free it or return it
729 * unchanged if no user is matched.
730 */
731static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000732{
733 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200734 char *tilde_name = ud;
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200735 const char *home = NULL;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200736
737 ud++; /* skip ~ */
738 if (*ud == '/') { /* "~/..." */
Denys Vlasenkof4fcd742021-10-11 23:08:31 +0200739 home = get_homedir_or_NULL();
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200740 } else {
741 /* "~user/..." */
742 ud = strchr(ud, '/');
743 *ud = '\0'; /* "~user" */
744 entry = getpwnam(tilde_name + 1);
745 *ud = '/'; /* restore "~user/..." */
746 if (entry)
747 home = entry->pw_dir;
748 }
749 if (home) {
750 ud = concat_path_file(home, ud);
751 free(tilde_name);
752 tilde_name = ud;
753 }
754 return tilde_name;
755}
756
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200757/* ~use<tab> - find all users with this prefix.
758 * Return the length of the prefix used for matching.
759 */
760static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200761{
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100762 struct passwd *pw;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200763 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000764
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200765 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000766 userlen = strlen(ud);
767
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200768 setpwent();
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100769 while ((pw = getpwent()) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200770 /* Null usernames should result in all users as possible completions. */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100771 if (/* !ud[0] || */ is_prefixed_with(pw->pw_name, ud)) {
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100772 add_match(xasprintf("~%s/", pw->pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000773 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000774 }
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100775 endpwent(); /* don't keep password file open */
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200776
777 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000778}
Mike Shalf3763032010-11-22 03:49:18 +0100779# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000780
781enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000782 FIND_EXE_ONLY = 0,
783 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000784 FIND_FILE_ONLY = 2,
785};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000786
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100787static unsigned path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000788{
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100789 unsigned npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000790 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000791 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000792 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000793
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100794# if EDITING_HAS_path_lookup
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000795 if (state->flags & WITH_PATH_LOOKUP)
796 pth = state->path_lookup;
797 else
Denys Vlasenkoa97a7952020-12-16 11:14:08 +0100798# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000799 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200800
801 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000802 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
803 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000804
Denis Vlasenko253ce002007-01-22 08:34:44 +0000805 tmp = (char*)pth;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100806 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000807 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000808 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000809 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000810 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200811 tmp++;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000812 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000813 }
814
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100815 *p = res = xzalloc((npth + 1) * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000816 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000817 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000818 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000819 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000820 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000821 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000822 *tmp++ = '\0'; /* ':' -> '\0' */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000823 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000824 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100825 /* special case: "match subdirectories of the current directory" */
826 /*res[npth++] = NULL; - filled by xzalloc() */
Mark Whitley4e338752001-01-26 20:42:23 +0000827 return npth;
828}
829
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200830/* Complete command, directory or file name.
831 * Return the length of the prefix used for matching.
832 */
833static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000834{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000835 char *path1[1];
836 char **paths = path1;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100837 unsigned npaths;
838 unsigned i;
839 unsigned baselen;
840 const char *basecmd;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200841 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000842
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000843 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000844 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000845
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100846 basecmd = strrchr(command, '/');
847 if (!basecmd) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200848 if (type == FIND_EXE_ONLY)
849 npaths = path_parse(&paths);
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100850 basecmd = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000851 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000852 /* point to 'l' in "..../last_component" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100853 basecmd++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200854 /* dirbuf = ".../.../.../" */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100855 dirbuf = xstrndup(command, basecmd - command);
Mike Shalf3763032010-11-22 03:49:18 +0100856# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200857 if (dirbuf[0] == '~') /* ~/... or ~user/... */
858 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100859# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200860 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000861 }
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100862 baselen = strlen(basecmd);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000863
Denys Vlasenko13360522016-10-24 01:25:05 +0200864 if (type == FIND_EXE_ONLY && !dirbuf) {
Ron Yorston9e2a5662020-01-21 16:01:58 +0000865# if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
Ron Yorston37788982018-11-17 17:48:14 +0000866 const char *p = applet_names;
Ron Yorston2b919582016-04-08 11:57:20 +0100867 while (*p) {
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100868 if (strncmp(basecmd, p, baselen) == 0)
Ron Yorstonf23264b2015-05-29 11:31:40 +0100869 add_match(xstrdup(p));
Ron Yorston37788982018-11-17 17:48:14 +0000870 while (*p++ != '\0')
Ron Yorston2b919582016-04-08 11:57:20 +0100871 continue;
Ron Yorstonf23264b2015-05-29 11:31:40 +0100872 }
Denys Vlasenkof128bdb2017-07-29 00:59:24 +0200873# endif
Ron Yorston7d1c7d82022-03-24 12:17:25 +0000874# if ENABLE_SHELL_ASH || ENABLE_SHELL_HUSH
Ron Yorston9e2a5662020-01-21 16:01:58 +0000875 if (state->get_exe_name) {
876 i = 0;
877 for (;;) {
878 const char *b = state->get_exe_name(i++);
879 if (!b)
880 break;
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100881 if (strncmp(basecmd, b, baselen) == 0)
Ron Yorston9e2a5662020-01-21 16:01:58 +0000882 add_match(xstrdup(b));
883 }
884 }
885# endif
886 }
Ron Yorstonf23264b2015-05-29 11:31:40 +0100887
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000888 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200889 DIR *dir;
890 struct dirent *next;
891 struct stat st;
892 char *found;
Ron Yorston760b6272021-02-18 09:50:29 +0000893 const char *lpath;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200894
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100895 if (paths[i] == NULL) { /* path_parse()'s last component? */
896 /* in PATH completion, current dir's subdir names
897 * can be completions (but only subdirs, not files).
898 */
Ron Yorston8baa6432020-12-11 12:34:21 +0000899 type = FIND_DIR_ONLY;
900 paths[i] = (char *)".";
901 }
902
Ron Yorston760b6272021-02-18 09:50:29 +0000903 lpath = *paths[i] ? paths[i] : ".";
904 dir = opendir(lpath);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000905 if (!dir)
906 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000907
908 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200909 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200910 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000911
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200912 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100913 if (!basecmd[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000914 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200915 /* match? */
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100916 if (strncmp(basecmd, name_found, baselen) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200917 continue; /* no */
918
Ron Yorston760b6272021-02-18 09:50:29 +0000919 found = concat_path_file(lpath, name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000920 /* NB: stat() first so that we see is it a directory;
921 * but if that fails, use lstat() so that
922 * we still match dangling links */
923 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200924 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000925
Denys Vlasenko39263632010-09-03 14:11:08 +0200926 /* Save only name */
927 len = strlen(name_found);
928 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
929 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000930
Mark Whitley4e338752001-01-26 20:42:23 +0000931 if (S_ISDIR(st.st_mode)) {
Ron Yorston8506dd62020-12-10 14:44:57 +0000932 /* skip directories if searching PATH */
933 if (type == FIND_EXE_ONLY && !dirbuf)
934 goto cont;
Denys Vlasenko39263632010-09-03 14:11:08 +0200935 /* name is a directory, add slash */
936 found[len] = '/';
937 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000938 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200939 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000940 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000941 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000942 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200943 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000944 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000945 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000946 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000947 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000948 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000949 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200950 } /* for every path */
951
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000952 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000953 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000954 free(paths);
955 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200956 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200957
Denys Vlasenko1d180cd2020-12-16 10:59:20 +0100958 return baselen;
Erik Andersen6273f652000-03-17 01:12:41 +0000959}
Erik Andersenf0657d32000-04-12 17:49:52 +0000960
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200961/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200962 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200963 * was pressed. This function looks at it, figures out what part of it
964 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200965 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200966 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200967#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200968/* Helpers: */
969/* QUOT is used on elements of int_buf[], which are bytes,
970 * not Unicode chars. Therefore it works correctly even in Unicode mode.
971 */
972#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200973static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200974{
975 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200976 if (beg == end)
977 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200978
979 while ((int_buf[beg] = int_buf[end]) != 0)
980 beg++, end++;
981
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200982 if (dbg_bmp) {
983 int i;
984 for (i = 0; int_buf[i]; i++)
985 bb_putchar((unsigned char)int_buf[i]);
986 bb_putchar('\n');
987 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200988}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200989/* Caller ensures that match_buf points to a malloced buffer
990 * big enough to hold strlen(match_buf)*2 + 2
991 */
992static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000993{
994 int i, j;
995 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200996 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000997
Denys Vlasenko76939e72010-09-03 14:09:24 +0200998 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200999
Denys Vlasenko76939e72010-09-03 14:09:24 +02001000 /* Copy in reverse order, since they overlap */
1001 i = strlen(match_buf);
1002 do {
1003 int_buf[i] = (unsigned char)match_buf[i];
1004 i--;
1005 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001006
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001007 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001008 for (i = 0; int_buf[i]; i++) {
1009 if (int_buf[i] == '\\') {
1010 remove_chunk(int_buf, i, i + 1);
1011 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001012 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001013 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001014 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001015 {
1016 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001017 i = 0;
1018 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001019 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001020 if (!cur)
1021 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001022 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001023 if (!in_quote || (cur == in_quote)) {
1024 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001025 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001026 continue;
1027 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001028 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001029 if (in_quote)
1030 int_buf[i] = cur | QUOT;
1031 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001032 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001033 }
1034
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001035 /* Remove everything up to command delimiters:
1036 * ';' ';;' '&' '|' '&&' '||',
1037 * but careful with '>&' '<&' '>|'
1038 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001039 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001040 int cur = int_buf[i];
1041 if (cur == ';' || cur == '&' || cur == '|') {
1042 int prev = i ? int_buf[i - 1] : 0;
1043 if (cur == '&' && (prev == '>' || prev == '<')) {
1044 continue;
1045 } else if (cur == '|' && prev == '>') {
1046 continue;
1047 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001048 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001049 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001050 }
1051 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001052 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001053 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001054 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001055 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001056 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001057 /* `cmd` should count as a word:
1058 * `cmd` c<tab> should search for files c*,
1059 * not commands c*. Therefore we don't drop
1060 * `cmd` entirely, we replace it with single `.
1061 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001062 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001063 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001064 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001065 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001066 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001067 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001068 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001069 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001070 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001071 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001072
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001073 /* Remove "cmd (" and "cmd {"
1074 * Example: "if { c<tab>"
1075 * In this example, c should be matched as command pfx.
1076 */
1077 for (i = 0; int_buf[i]; i++) {
1078 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001079 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001080 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001081 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001082 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001083
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001084 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001085 for (i = 0; int_buf[i]; i++)
1086 if (int_buf[i] != ' ')
1087 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001088 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001089
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001090 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001091 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001092 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001093 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001094 if (int_buf[i] == ' '
1095 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001096 && (char)int_buf[0] == 'c'
1097 && (char)int_buf[1] == 'd'
1098 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001099 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001100 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001101 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001102 command_mode = FIND_FILE_ONLY;
1103 break;
1104 }
1105 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001106 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001107 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001108
1109 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001110 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
1111 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001112 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001113 int cur = int_buf[i];
Natanael Copa7323bca2021-04-09 17:02:00 +02001114 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&' || cur == '=') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001115 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001116 break;
1117 }
1118 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001119
Denys Vlasenko76939e72010-09-03 14:09:24 +02001120 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001121 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001122 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001123 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001124
Denys Vlasenko76939e72010-09-03 14:09:24 +02001125 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001126
1127 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001128}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001129
Glenn L McGrath4d001292003-01-06 01:11:50 +00001130/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001131 * Display by column (original idea from ls applet,
1132 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001133 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001134static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001135{
1136 int ncols, row;
1137 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001138 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001139 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001140 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001141
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001142 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001143 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001144 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001145 if (column_width < l)
1146 column_width = l;
1147 }
1148 column_width += 2; /* min space for columns */
1149 ncols = cmdedit_termw / column_width;
1150
1151 if (ncols > 1) {
1152 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001153 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001154 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001155 } else {
1156 ncols = 1;
1157 }
1158 for (row = 0; row < nrows; row++) {
1159 int n = row;
1160 int nc;
1161
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001162 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001163 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001164 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001165 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001166 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001167 if (ENABLE_UNICODE_SUPPORT)
Denys Vlasenko349d72c2018-09-30 16:56:56 +02001168 puts(printable_string(matches[n]));
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001169 else
1170 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001171 }
1172}
1173
Mike Shalf3763032010-11-22 03:49:18 +01001174static const char *is_special_char(char c)
1175{
Denys Vlasenko6d2463a2021-09-17 17:32:30 +02001176 // {: It's mandatory to escape { only if entire name is "{"
1177 // (otherwise it's not special. Example: file named "{ "
1178 // can be escaped simply as "{\ "; "{a" or "a{" need no escaping),
1179 // or if shell supports brace expansion
1180 // (ash doesn't, hush optionally does).
1181 // (): unlike {, shell treats () specially even in contexts
1182 // where they clearly are not valid (e.g. "echo )" is an error).
1183 // #: needs escaping to not start a shell comment.
1184 return strchr(" `'\"\\#$~?*[{()&;|<>", c);
1185 // Used to also have %^=+}]: but not necessary to escape?
Mike Shalf3763032010-11-22 03:49:18 +01001186}
1187
1188static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001189{
1190 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001191 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001192
1193 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001194 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001195 s[l++] = '\\';
1196 s[l++] = *found++;
1197 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001198 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001199 return s;
1200}
1201
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001202/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001203static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001204{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001205 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001206 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001207 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001208 /* Length of string used for matching */
1209 unsigned match_pfx_len = match_pfx_len;
1210 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001211# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001212 /* cursor pos in command converted to multibyte form */
1213 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001214# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001215 if (!(state->flags & TAB_COMPLETION))
1216 return;
1217
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001218 if (*lastWasTab) {
1219 /* The last char was a TAB too.
1220 * Print a list of all the available choices.
1221 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001222 if (num_matches > 0) {
1223 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001224 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001225 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001226 showfiles();
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001227 draw_full(command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001228 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001229 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001230 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001231
1232 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001233 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001234
Denys Vlasenko76939e72010-09-03 14:09:24 +02001235 /* Make a local copy of the string up to the position of the cursor.
1236 * build_match_prefix will expand it into int16_t's, need to allocate
1237 * twice as much as the string_len+1.
1238 * (we then also (ab)use this extra space later - see (**))
1239 */
1240 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001241# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001242 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001243# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001244 {
1245 CHAR_T wc = command_ps[cursor];
1246 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001247 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001248 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001249 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001250 }
Mike Shalf3763032010-11-22 03:49:18 +01001251# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001252 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001253
1254 /* Free up any memory already allocated */
1255 free_tab_completion_data();
1256
Mike Shalf3763032010-11-22 03:49:18 +01001257# if ENABLE_FEATURE_USERNAME_COMPLETION
1258 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001259 * then try completing this word as a username. */
1260 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001261 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1262 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001263# endif
1264 /* If complete_username() did not match,
1265 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001266 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001267 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001268
1269 /* Account for backslashes which will be inserted
1270 * by quote_special_chars() later */
1271 {
1272 const char *e = match_buf + strlen(match_buf);
1273 const char *s = e - match_pfx_len;
1274 while (s < e)
1275 if (is_special_char(*s++))
1276 match_pfx_len++;
1277 }
1278
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001279 /* Remove duplicates */
1280 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001281 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001282 qsort_string_vector(matches, num_matches);
1283 for (i = 0; i < num_matches - 1; ++i) {
1284 //if (matches[i] && matches[i+1]) { /* paranoia */
1285 if (strcmp(matches[i], matches[i+1]) == 0) {
1286 free(matches[i]);
1287 //matches[i] = NULL; /* paranoia */
1288 } else {
1289 matches[n++] = matches[i];
1290 }
1291 //}
1292 }
1293 matches[n++] = matches[i];
1294 num_matches = n;
1295 }
Mike Shalf3763032010-11-22 03:49:18 +01001296
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001297 /* Did we find exactly one match? */
1298 if (num_matches != 1) { /* no */
1299 char *cp;
1300 beep();
1301 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001302 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001303 /* Find common prefix */
1304 chosen_match = xstrdup(matches[0]);
1305 for (cp = chosen_match; *cp; cp++) {
1306 unsigned n;
1307 for (n = 1; n < num_matches; n++) {
1308 if (matches[n][cp - chosen_match] != *cp) {
1309 goto stop;
1310 }
1311 }
1312 }
1313 stop:
1314 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001315 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001316 }
1317 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001318 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001319 free(chosen_match);
1320 chosen_match = cp;
1321 len_found = strlen(chosen_match);
1322 } else { /* exactly one match */
1323 /* Next <tab> is not a double-tab */
1324 *lastWasTab = 0;
1325
Mike Shalf3763032010-11-22 03:49:18 +01001326 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001327 len_found = strlen(chosen_match);
1328 if (chosen_match[len_found-1] != '/') {
1329 chosen_match[len_found] = ' ';
1330 chosen_match[++len_found] = '\0';
1331 }
1332 }
1333
Mike Shalf3763032010-11-22 03:49:18 +01001334# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001335 /* Have space to place the match? */
1336 /* The result consists of three parts with these lengths: */
1337 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1338 /* it simplifies into: */
1339 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1340 int pos;
1341 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001342 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001343 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001344 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001345 command_len = strlen(command_ps);
1346 /* new pos */
1347 pos = cursor + len_found - match_pfx_len;
1348 /* write out the matched command */
1349 redraw(cmdedit_y, command_len - pos);
1350 }
Mike Shalf3763032010-11-22 03:49:18 +01001351# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001352 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001353 /* Use 2nd half of match_buf as scratch space - see (**) */
1354 char *command = match_buf + MAX_LINELEN;
1355 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001356 /* Have space to place the match? */
1357 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1358 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1359 int pos;
1360 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001361 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001362 /* where do we want to have cursor after all? */
1363 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001364 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001365 /* add match and tail */
Denys Vlasenkofe2d8062021-04-14 17:52:18 +02001366 stpcpy(stpcpy(&command[cursor_mb], chosen_match + match_pfx_len), match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001367 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001368 /* write out the matched command */
1369 /* paranoia: load_string can return 0 on conv error,
1370 * prevent passing pos = (0 - 12) to redraw */
1371 pos = command_len - len;
1372 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1373 }
1374 }
Mike Shalf3763032010-11-22 03:49:18 +01001375# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001376 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001377 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001378 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001379}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001380
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001381#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001382
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001383
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001384line_input_t* FAST_FUNC new_line_input_t(int flags)
1385{
1386 line_input_t *n = xzalloc(sizeof(*n));
1387 n->flags = flags;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02001388 n->timeout = -1;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001389#if MAX_HISTORY > 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001390 n->max_history = MAX_HISTORY;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001391#endif
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001392 return n;
1393}
1394
1395
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001396#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001397
Flemming Madsend96ffda2013-04-07 18:47:24 +02001398unsigned FAST_FUNC size_from_HISTFILESIZE(const char *hp)
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001399{
1400 int size = MAX_HISTORY;
1401 if (hp) {
1402 size = atoi(hp);
1403 if (size <= 0)
1404 return 1;
1405 if (size > MAX_HISTORY)
1406 return MAX_HISTORY;
1407 }
1408 return size;
1409}
1410
Denis Vlasenko682ad302008-09-27 01:28:56 +00001411static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001412{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001413 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001414 int cur = state->cur_history;
1415 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001416
Denys Vlasenko19158a82010-03-26 14:06:56 +01001417# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001418 {
1419 char tbuf[MAX_LINELEN];
1420 save_string(tbuf, sizeof(tbuf));
1421 state->history[cur] = xstrdup(tbuf);
1422 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001423# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001424 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001425# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001426 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001427}
1428
1429/* state->flags is already checked to be nonzero */
1430static int get_previous_history(void)
1431{
1432 if ((state->flags & DO_HISTORY) && state->cur_history) {
1433 save_command_ps_at_cur_history();
1434 state->cur_history--;
1435 return 1;
1436 }
1437 beep();
1438 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001439}
1440
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001441static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001442{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001443 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001444 if (state->cur_history < state->cnt_history) {
1445 save_command_ps_at_cur_history(); /* save the current history line */
1446 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001447 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001448 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001449 beep();
1450 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001451}
Robert Griebl350d26b2002-12-03 22:45:46 +00001452
Flemming Madsend96ffda2013-04-07 18:47:24 +02001453/* Lists command history. Used by shell 'history' builtins */
1454void FAST_FUNC show_history(const line_input_t *st)
1455{
1456 int i;
1457
1458 if (!st)
1459 return;
1460 for (i = 0; i < st->cnt_history; i++)
1461 printf("%4d %s\n", i, st->history[i]);
1462}
1463
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001464# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001465void FAST_FUNC free_line_input_t(line_input_t *n)
1466{
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001467 if (n) {
1468 int i = n->cnt_history;
1469 while (i > 0)
1470 free(n->history[--i]);
1471 free(n);
1472 }
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001473}
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001474# else
1475/* #defined to free() in libbb.h */
1476# endif
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001477
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001478# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001479/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001480 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001481 * Otherwise shell users get unhappy.
1482 *
1483 * History file is trimmed lazily, when it grows several times longer
1484 * than configured MAX_HISTORY lines.
1485 */
1486
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001487/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001488static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001489{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001490 char *temp_h[MAX_HISTORY];
1491 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001492 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001493 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001494
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001495 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001496
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001497 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001498 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001499 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001500 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001501 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001502 free(st_parm->history[idx]);
1503 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001504 }
1505
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001506 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1507 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001508 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001509 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001510 while ((line = xmalloc_fgetline(fp)) != NULL) {
1511 if (line[0] == '\0') {
1512 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001513 continue;
1514 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001515 free(temp_h[idx]);
1516 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001517 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001518 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001519 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001520 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001521 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001522 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001523
1524 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001525 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001526 while (temp_h[idx] == NULL) {
1527 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001528 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001529 idx = 0;
1530 }
1531 }
1532
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001533 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001534 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001535 line = temp_h[idx];
1536 if (!line)
1537 break;
1538 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001539 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001540 idx = 0;
1541 line_len = strlen(line);
1542 if (line_len >= MAX_LINELEN)
1543 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001544 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001545 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001546 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001547 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1548 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001549 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001550}
1551
Denys Vlasenkobede2152011-09-04 16:12:33 +02001552# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1553void save_history(line_input_t *st)
1554{
1555 FILE *fp;
1556
Denys Vlasenko00eb23b2020-12-21 21:36:58 +01001557 if (!st || !st->hist_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001558 return;
1559 if (st->cnt_history <= st->cnt_history_in_file)
1560 return;
1561
1562 fp = fopen(st->hist_file, "a");
1563 if (fp) {
1564 int i, fd;
1565 char *new_name;
1566 line_input_t *st_temp;
1567
1568 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1569 fprintf(fp, "%s\n", st->history[i]);
1570 fclose(fp);
1571
1572 /* we may have concurrently written entries from others.
1573 * load them */
1574 st_temp = new_line_input_t(st->flags);
1575 st_temp->hist_file = st->hist_file;
1576 st_temp->max_history = st->max_history;
1577 load_history(st_temp);
1578
1579 /* write out temp file and replace hist_file atomically */
1580 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1581 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1582 if (fd >= 0) {
1583 fp = xfdopen_for_write(fd);
1584 for (i = 0; i < st_temp->cnt_history; i++)
1585 fprintf(fp, "%s\n", st_temp->history[i]);
1586 fclose(fp);
1587 if (rename(new_name, st->hist_file) == 0)
1588 st->cnt_history_in_file = st_temp->cnt_history;
1589 }
1590 free(new_name);
1591 free_line_input_t(st_temp);
1592 }
1593}
1594# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001595static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001596{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001597 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001598 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001599
Denys Vlasenkobede2152011-09-04 16:12:33 +02001600 if (!state->hist_file)
1601 return;
1602
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001603 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001604 if (fd < 0)
1605 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001606 xlseek(fd, 0, SEEK_END); /* paranoia */
1607 len = strlen(str);
1608 str[len] = '\n'; /* we (try to) do atomic write */
1609 len2 = full_write(fd, str, len + 1);
1610 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001611 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001612 if (len2 != len + 1)
1613 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001614
1615 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001616 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001617 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001618 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001619 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001620
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001621 /* we may have concurrently written entries from others.
1622 * load them */
1623 st_temp = new_line_input_t(state->flags);
1624 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001625 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001626 load_history(st_temp);
1627
1628 /* write out temp file and replace hist_file atomically */
1629 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001630 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001631 if (fd >= 0) {
1632 FILE *fp;
1633 int i;
1634
1635 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001636 for (i = 0; i < st_temp->cnt_history; i++)
1637 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001638 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001639 if (rename(new_name, state->hist_file) == 0)
1640 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001641 }
1642 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001643 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001644 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001645}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001646# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001647# else
1648# define load_history(a) ((void)0)
1649# define save_history(a) ((void)0)
1650# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001651
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001652static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001653{
1654 int i;
1655
1656 if (!(state->flags & DO_HISTORY))
1657 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001658 if (str[0] == '\0')
1659 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001660 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001661 /* Don't save dupes */
1662 if (i && strcmp(state->history[i-1], str) == 0)
1663 return;
1664
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001665 free(state->history[state->max_history]); /* redundant, paranoia */
1666 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001667
1668 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001669 /* we need to keep history[state->max_history] empty, hence >=, not > */
1670 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001671 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001672 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001673 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001674 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001675# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1676 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001677 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001678# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001679 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001680 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001681 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001682 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001683 state->cur_history = i;
1684 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001685# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1686 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001687# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001688}
1689
1690#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001691# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001692#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001693
1694
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001695#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001696/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001697 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001698 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001699static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001700vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001701{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001702 CHAR_T *command = command_ps;
1703
1704 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001705 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001706 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001707 input_forward();
1708}
1709
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001710static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001711vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001712{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001713 CHAR_T *command = command_ps;
1714
Natanael Copa7e6f9312016-08-14 23:30:29 +02001715 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001716 while (cursor < command_len
Natanael Copa7e6f9312016-08-14 23:30:29 +02001717 && (BB_isalnum_or_underscore(command[cursor+1]))
Denys Vlasenko13028922009-07-12 00:51:15 +02001718 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001719 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001720 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001721 } else if (BB_ispunct(command[cursor])) {
1722 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001723 input_forward();
1724 }
1725
Denis Vlasenko253ce002007-01-22 08:34:44 +00001726 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001727 input_forward();
1728
Denys Vlasenko13028922009-07-12 00:51:15 +02001729 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001730 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001731 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001732 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001733}
1734
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001735static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001736vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001737{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001738 CHAR_T *command = command_ps;
1739
Paul Fox3f11b1b2005-08-04 19:04:46 +00001740 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001741 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001742 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001743 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001744 input_forward();
1745}
1746
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001747static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001748vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001749{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001750 CHAR_T *command = command_ps;
1751
Denis Vlasenko253ce002007-01-22 08:34:44 +00001752 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001753 return;
1754 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001755 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001756 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001757 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001758 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001759 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001760 while (cursor < command_len-1
Natanael Copa7e6f9312016-08-14 23:30:29 +02001761 && (BB_isalnum_or_underscore(command[cursor+1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001762 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001763 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001764 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001765 } else if (BB_ispunct(command[cursor])) {
1766 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001767 input_forward();
1768 }
1769}
1770
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001771static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001772vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001773{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001774 CHAR_T *command = command_ps;
1775
1776 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001777 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001778 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001779 input_backward(1);
1780}
1781
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001782static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001783vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001784{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001785 CHAR_T *command = command_ps;
1786
Paul Fox3f11b1b2005-08-04 19:04:46 +00001787 if (cursor <= 0)
1788 return;
1789 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001790 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001791 input_backward(1);
1792 if (cursor <= 0)
1793 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001794 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001795 while (cursor > 0
Natanael Copa7e6f9312016-08-14 23:30:29 +02001796 && (BB_isalnum_or_underscore(command[cursor-1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001797 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001798 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001799 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001800 } else if (BB_ispunct(command[cursor])) {
1801 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001802 input_backward(1);
1803 }
1804}
Denys Vlasenko627821e2021-09-25 19:36:35 +02001805#endif /* ENABLE_FEATURE_EDITING_VI */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001806
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001807/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1808static void ctrl_left(void)
1809{
1810 CHAR_T *command = command_ps;
1811
1812 while (1) {
1813 CHAR_T c;
1814
1815 input_backward(1);
1816 if (cursor == 0)
1817 break;
1818 c = command[cursor];
1819 if (c != ' ' && !BB_ispunct(c)) {
1820 /* we reached a "word" delimited by spaces/punct.
1821 * go to its beginning */
1822 while (1) {
1823 c = command[cursor - 1];
1824 if (c == ' ' || BB_ispunct(c))
1825 break;
1826 input_backward(1);
1827 if (cursor == 0)
1828 break;
1829 }
1830 break;
1831 }
1832 }
1833}
1834static void ctrl_right(void)
1835{
1836 CHAR_T *command = command_ps;
1837
1838 while (1) {
1839 CHAR_T c;
1840
1841 c = command[cursor];
1842 if (c == BB_NUL)
1843 break;
1844 if (c != ' ' && !BB_ispunct(c)) {
1845 /* we reached a "word" delimited by spaces/punct.
1846 * go to its end + 1 */
1847 while (1) {
1848 input_forward();
1849 c = command[cursor];
1850 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1851 break;
1852 }
1853 break;
1854 }
1855 input_forward();
1856 }
1857}
1858
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001859
1860/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001861 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001862 */
1863
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001864#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1865static void ask_terminal(void)
1866{
1867 /* Ask terminal where is the cursor now.
1868 * lineedit_read_key handles response and corrects
1869 * our idea of current cursor position.
1870 * Testcase: run "echo -n long_line_long_line_long_line",
1871 * then type in a long, wrapping command and try to
1872 * delete it using backspace key.
1873 * Note: we print it _after_ prompt, because
1874 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1875 */
1876 /* Problem: if there is buffered input on stdin,
1877 * the response will be delivered later,
1878 * possibly to an unsuspecting application.
1879 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1880 * Result:
1881 * ~/srcdevel/bbox/fix/busybox.t4 #
1882 * ~/srcdevel/bbox/fix/busybox.t4 #
1883 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1884 * ~/srcdevel/bbox/fix/busybox.t4 #
1885 *
1886 * Checking for input with poll only makes the race narrower,
1887 * I still can trigger it. Strace:
1888 *
1889 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1890 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1891 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001892 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001893 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1894 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001895 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001896
Denys Vlasenko451add42010-07-25 00:06:41 +02001897 pfd.fd = STDIN_FILENO;
1898 pfd.events = POLLIN;
1899 if (safe_poll(&pfd, 1, 0) == 0) {
1900 S.sent_ESC_br6n = 1;
Ron Yorstoncad3fc72021-02-03 20:47:14 +01001901 fputs_stdout(ESC"[6n");
Denys Vlasenko451add42010-07-25 00:06:41 +02001902 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001903 }
1904}
1905#else
Denys Vlasenko627821e2021-09-25 19:36:35 +02001906# define ask_terminal() ((void)0)
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001907#endif
1908
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001909/* Note about multi-line PS1 (e.g. "\n\w \u@\h\n> ") and prompt redrawing:
1910 *
1911 * If the prompt has any newlines, after we print it once we use only its last
1912 * line to redraw in-place, which makes it simpler to calculate how many lines
1913 * we should move the cursor up to align the redraw (cmdedit_y). The earlier
1914 * prompt lines just stay on screen and we redraw below them.
1915 *
1916 * Use cases for all prompt lines beyond the initial draw:
1917 * - After clear-screen (^L) or after displaying tab-completion choices, we
1918 * print the full prompt, as it isn't redrawn in-place.
1919 * - During terminal resize we could try to redraw all lines, but we don't,
1920 * because it requires delicate alignment, it's good enough with only the
1921 * last line, and doing it wrong is arguably worse than not doing it at all.
1922 *
1923 * Terminology wise, if it doesn't mention "full", then it means the last/sole
1924 * prompt line. We use the prompt (last/sole line) while redrawing in-place,
1925 * and the full where we need a fresh one unrelated to an earlier position.
1926 *
1927 * If PS1 is not multiline, the last/sole line and the full are the same string.
1928 */
1929
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001930/* Called just once at read_line_input() init time */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001931#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001932static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001933{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001934 const char *p;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001935 cmdedit_prompt = prompt_last_line = prmt_ptr;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001936 p = strrchr(prmt_ptr, '\n');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001937 if (p)
1938 prompt_last_line = p + 1;
1939 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001940 put_prompt();
1941}
1942#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001943static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001944{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001945 int prmt_size = 0;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001946 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001947 char *cwd_buf = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001948 char flg_not_length = '[';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001949 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001950
Denys Vlasenko7a180432013-08-19 16:44:05 +02001951 /*cmdedit_prmt_len = 0; - already is */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001952
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001953 cbuf[1] = '\0'; /* never changes */
1954
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001955 while (*prmt_ptr) {
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001956 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001957 char *free_me = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001958 char *pbuf;
1959 char c;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001960
1961 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001962 c = *prmt_ptr++;
1963 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001964 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001965 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001966/*
1967 * Supported via bb_process_escape_sequence:
1968 * \a ASCII bell character (07)
1969 * \e ASCII escape character (033)
1970 * \n newline
1971 * \r carriage return
1972 * \\ backslash
1973 * \nnn char with octal code nnn
1974 * Supported:
1975 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001976 * \w current working directory, with $HOME abbreviated with a tilde
1977 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001978 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001979 * \h hostname up to the first '.'
1980 * \H hostname
1981 * \u username
1982 * \[ begin a sequence of non-printing characters
1983 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001984 * \T current time in 12-hour HH:MM:SS format
1985 * \@ current time in 12-hour am/pm format
1986 * \A current time in 24-hour HH:MM format
1987 * \t current time in 24-hour HH:MM:SS format
1988 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001989 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001990 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001991 * \# command number of this command
1992 * \j number of jobs currently managed by the shell
1993 * \l basename of the shell's terminal device name
1994 * \s name of the shell, the basename of $0 (the portion following the final slash)
1995 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001996 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1997 * \D{format}
1998 * format is passed to strftime(3).
1999 * An empty format results in a locale-specific time representation.
2000 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002001 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002002 * \v version of bash (e.g., 2.00)
2003 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01002004 cp = prmt_ptr;
2005 c = *cp;
2006 if (c != 't') /* don't treat \t as tab */
2007 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002008 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002009 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002010 break;
2011 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002012
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002013 switch (c) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002014 case 'u':
Denys Vlasenkof4fcd742021-10-11 23:08:31 +02002015 pbuf = (char*)get_username_str();
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002016 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002017 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002018 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00002019 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002020 if (c == 'h')
2021 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002022 break;
2023 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002024 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002025 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002026 case 'T': /* 12-hour HH:MM:SS format */
2027 case '@': /* 12-hour am/pm format */
2028 case 'A': /* 24-hour HH:MM format */
2029 case 't': /* 24-hour HH:MM:SS format */
2030 /* We show all of them as 24-hour HH:MM */
2031 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
2032 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002033 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002034 case 'w': /* current dir */
2035 case 'W': /* basename of cur dir */
2036 if (!cwd_buf) {
Denys Vlasenkof4fcd742021-10-11 23:08:31 +02002037 const char *home;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002038 cwd_buf = xrealloc_getcwd_or_warn(NULL);
2039 if (!cwd_buf)
2040 cwd_buf = (char *)bb_msg_unknown;
Denys Vlasenkof4fcd742021-10-11 23:08:31 +02002041 else if ((home = get_homedir_or_NULL()) != NULL && home[0]) {
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002042 char *after_home_user;
2043
Denys Vlasenko1d145692013-03-29 13:09:05 +01002044 /* /home/user[/something] -> ~[/something] */
Denys Vlasenkof4fcd742021-10-11 23:08:31 +02002045 after_home_user = is_prefixed_with(cwd_buf, home);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002046 if (after_home_user
2047 && (*after_home_user == '/' || *after_home_user == '\0')
Denys Vlasenko1d145692013-03-29 13:09:05 +01002048 ) {
2049 cwd_buf[0] = '~';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002050 overlapping_strcpy(cwd_buf + 1, after_home_user);
Denys Vlasenko1d145692013-03-29 13:09:05 +01002051 }
2052 }
2053 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002054 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002055 if (c == 'w')
2056 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00002057 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01002058 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01002059 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002060 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002061// bb_process_escape_sequence does this now:
2062// case 'e': case 'E': /* \e \E = \033 */
2063// c = '\033';
2064// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002065 case 'x': case 'X': {
2066 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002067 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002068 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002069 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002070 buf2[l] = '\0';
2071 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002072 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002073 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002074 break;
2075 }
2076 prmt_ptr++;
2077 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002078 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002079 if (c == 0)
2080 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002081 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002082 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002083 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002084 case '[': case ']':
2085 if (c == flg_not_length) {
Denys Vlasenko7a180432013-08-19 16:44:05 +02002086 /* Toggle '['/']' hex 5b/5d */
2087 flg_not_length ^= 6;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002088 continue;
2089 }
2090 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002091 } /* switch */
2092 } /* if */
2093 } /* if */
2094 cbuf[0] = c;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002095 {
2096 int n = strlen(pbuf);
2097 prmt_size += n;
2098 if (c == '\n')
2099 cmdedit_prmt_len = 0;
2100 else if (flg_not_length != ']') {
Denys Vlasenko627821e2021-09-25 19:36:35 +02002101# if ENABLE_UNICODE_SUPPORT
Audun-Marius Gangstø9bf44992020-11-21 12:26:39 +01002102 if (n == 1) {
2103 /* Only count single-byte characters and the first of multi-byte characters */
2104 if ((unsigned char)*pbuf < 0x80 /* single byte character */
2105 || (unsigned char)*pbuf >= 0xc0 /* first of multi-byte characters */
2106 ) {
2107 cmdedit_prmt_len += n;
2108 }
2109 } else {
2110 cmdedit_prmt_len += unicode_strwidth(pbuf);
2111 }
Denys Vlasenko627821e2021-09-25 19:36:35 +02002112# else
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002113 cmdedit_prmt_len += n;
Denys Vlasenko627821e2021-09-25 19:36:35 +02002114# endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002115 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002116 }
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002117 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_size+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002118 free(free_me);
2119 } /* while */
2120
2121 if (cwd_buf != (char *)bb_msg_unknown)
2122 free(cwd_buf);
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002123 /* see comment (above this function) about multiline prompt redrawing */
2124 cmdedit_prompt = prompt_last_line = prmt_mem_ptr;
2125 prmt_ptr = strrchr(cmdedit_prompt, '\n');
2126 if (prmt_ptr)
2127 prompt_last_line = prmt_ptr + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002128 put_prompt();
2129}
Denys Vlasenkoa97a7952020-12-16 11:14:08 +01002130#endif /* FEATURE_EDITING_FANCY_PROMPT */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002131
Ron Yorston23286902018-02-25 20:09:54 +01002132#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko038a9772016-11-28 01:10:16 +01002133static void cmdedit_setwidth(void)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002134{
Denys Vlasenko038a9772016-11-28 01:10:16 +01002135 int new_y;
2136
2137 cmdedit_termw = get_terminal_width(STDIN_FILENO);
2138 /* new y for current cursor */
2139 new_y = (cursor + cmdedit_prmt_len) / cmdedit_termw;
2140 /* redraw */
2141 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002142}
2143
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002144static void win_changed(int nsig UNUSED_PARAM)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002145{
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002146 if (S.ok_to_redraw) {
2147 /* We are in read_key(), safe to redraw immediately */
2148 int sv_errno = errno;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002149 cmdedit_setwidth();
2150 fflush_all();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002151 errno = sv_errno;
2152 } else {
2153 /* Signal main loop that redraw is necessary */
2154 S.SIGWINCH_count++;
2155 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002156}
Ron Yorston23286902018-02-25 20:09:54 +01002157#endif
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002158
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002159static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002160{
Denys Vlasenko020f4062009-05-17 16:44:54 +02002161 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002162#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002163 char unicode_buf[MB_CUR_MAX + 1];
2164 int unicode_idx = 0;
2165#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02002166
Denys Vlasenko038a9772016-11-28 01:10:16 +01002167 fflush_all();
Denys Vlasenko1e825ac2022-01-18 00:31:27 +01002168 for (;;) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002169 /* Wait for input. TIMEOUT = -1 makes read_key wait even
2170 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
2171 * insist on full MB_CUR_MAX buffer to declare input like
2172 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
2173 *
Denys Vlasenko12566e72022-01-17 03:02:40 +01002174 * If LI_INTERRUPTIBLE, return -1 if got EINTR in poll()
2175 * inside read_key, or if bb_got_signal != 0 (IOW: if signal
2176 * arrived before poll() is reached).
2177 *
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002178 * Note: read_key sets errno to 0 on success.
2179 */
Denys Vlasenko1e825ac2022-01-18 00:31:27 +01002180 for (;;) {
Denys Vlasenko12566e72022-01-17 03:02:40 +01002181 if ((state->flags & LI_INTERRUPTIBLE) && bb_got_signal) {
2182 errno = EINTR;
2183 return -1;
2184 }
2185//FIXME: still races here with signals, but small window to poll() inside read_key
2186 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 1;)
Denys Vlasenko1e825ac2022-01-18 00:31:27 +01002187 /* errno = 0; - read_key does this itself */
Denys Vlasenko12566e72022-01-17 03:02:40 +01002188 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
2189 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 0;)
Denys Vlasenko1e825ac2022-01-18 00:31:27 +01002190 if (errno != EINTR)
2191 break;
2192 if (state->flags & LI_INTERRUPTIBLE) {
2193 /* LI_INTERRUPTIBLE bails out on EINTR,
2194 * but nothing really guarantees that bb_got_signal
2195 * is nonzero. Follow the least surprise principle:
2196 */
2197 if (bb_got_signal == 0)
2198 bb_got_signal = 255;
2199 goto ret;
2200 }
2201 }
Denys Vlasenko12566e72022-01-17 03:02:40 +01002202
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002203 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01002204#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002205 if (errno == EAGAIN && unicode_idx != 0)
2206 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01002207#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002208 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02002209 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002210
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002211#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2212 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002213 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02002214 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002215 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002216 if (cursor == 0) { /* otherwise it may be bogus */
2217 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002218 /*
2219 * Is col > cmdedit_prmt_len?
2220 * If yes (terminal says cursor is farther to the right
2221 * of where we think it should be),
2222 * the prompt wasn't printed starting at col 1,
2223 * there was additional text before it.
2224 */
2225 if ((int)(col - cmdedit_prmt_len) > 0) {
2226 /* Fix our understanding of current x position */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002227 cmdedit_x += (col - cmdedit_prmt_len);
2228 while (cmdedit_x >= cmdedit_termw) {
2229 cmdedit_x -= cmdedit_termw;
2230 cmdedit_y++;
2231 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02002232 }
2233 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002234 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02002235 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002236#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002237
Denys Vlasenko19158a82010-03-26 14:06:56 +01002238#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002239 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002240 wchar_t wc;
2241
2242 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002243 break;
2244 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002245
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002246 unicode_buf[unicode_idx++] = ic;
2247 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002248 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2249 /* Not (yet?) a valid unicode char */
2250 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002251 timeout = 50;
2252 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002253 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002254 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002255 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002256 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002257# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002258 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002259# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002260 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002261# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002262 } else {
2263 /* Valid unicode char, return its code */
2264 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002265 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002266 }
2267#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002268 break;
2269 }
Denys Vlasenko1e825ac2022-01-18 00:31:27 +01002270 ret:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002271 return ic;
2272}
2273
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002274#if ENABLE_UNICODE_BIDI_SUPPORT
2275static int isrtl_str(void)
2276{
2277 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002278
2279 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002280 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002281 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002282}
2283#else
2284# define isrtl_str() 0
2285#endif
2286
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002287/* leave out the "vi-mode"-only case labels if vi editing isn't
2288 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002289#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002290
2291/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002292#undef CTRL
2293#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002294
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002295enum {
2296 VI_CMDMODE_BIT = 0x40000000,
2297 /* 0x80000000 bit flags KEYCODE_xxx */
2298};
2299
2300#if ENABLE_FEATURE_REVERSE_SEARCH
2301/* Mimic readline Ctrl-R reverse history search.
2302 * When invoked, it shows the following prompt:
2303 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2304 * and typing results in search being performed:
2305 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2306 * Search is performed by looking at progressively older lines in history.
2307 * Ctrl-R again searches for the next match in history.
2308 * Backspace deletes last matched char.
2309 * Control keys exit search and return to normal editing (at current history line).
2310 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002311static int32_t reverse_i_search(int timeout)
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002312{
2313 char match_buf[128]; /* for user input */
2314 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2315 const char *matched_history_line;
2316 const char *saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002317 unsigned saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002318 int32_t ic;
2319
2320 matched_history_line = NULL;
2321 read_key_buffer[0] = 0;
2322 match_buf[0] = '\0';
2323
2324 /* Save and replace the prompt */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002325 saved_prompt = prompt_last_line;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002326 saved_prmt_len = cmdedit_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002327 goto set_prompt;
2328
2329 while (1) {
2330 int h;
2331 unsigned match_buf_len = strlen(match_buf);
2332
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002333//FIXME: correct timeout? (i.e. count it down?)
2334 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002335
2336 switch (ic) {
2337 case CTRL('R'): /* searching for the next match */
2338 break;
2339
2340 case '\b':
2341 case '\x7f':
2342 /* Backspace */
2343 if (unicode_status == UNICODE_ON) {
2344 while (match_buf_len != 0) {
2345 uint8_t c = match_buf[--match_buf_len];
2346 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2347 break; /* yes */
2348 }
2349 } else {
2350 if (match_buf_len != 0)
2351 match_buf_len--;
2352 }
2353 match_buf[match_buf_len] = '\0';
2354 break;
2355
2356 default:
2357 if (ic < ' '
2358 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2359 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2360 ) {
2361 goto ret;
2362 }
2363
2364 /* Append this char */
Denys Vlasenko627821e2021-09-25 19:36:35 +02002365# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002366 if (unicode_status == UNICODE_ON) {
2367 mbstate_t mbstate = { 0 };
2368 char buf[MB_CUR_MAX + 1];
2369 int len = wcrtomb(buf, ic, &mbstate);
2370 if (len > 0) {
2371 buf[len] = '\0';
2372 if (match_buf_len + len < sizeof(match_buf))
2373 strcpy(match_buf + match_buf_len, buf);
2374 }
2375 } else
Denys Vlasenko627821e2021-09-25 19:36:35 +02002376# endif
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002377 if (match_buf_len < sizeof(match_buf) - 1) {
2378 match_buf[match_buf_len] = ic;
2379 match_buf[match_buf_len + 1] = '\0';
2380 }
2381 break;
2382 } /* switch (ic) */
2383
2384 /* Search in history for match_buf */
2385 h = state->cur_history;
2386 if (ic == CTRL('R'))
2387 h--;
2388 while (h >= 0) {
2389 if (state->history[h]) {
2390 char *match = strstr(state->history[h], match_buf);
2391 if (match) {
2392 state->cur_history = h;
2393 matched_history_line = state->history[h];
2394 command_len = load_string(matched_history_line);
2395 cursor = match - matched_history_line;
2396//FIXME: cursor position for Unicode case
2397
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002398 free((char*)prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002399 set_prompt:
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002400 prompt_last_line = xasprintf("(reverse-i-search)'%s': ", match_buf);
2401 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002402 goto do_redraw;
2403 }
2404 }
2405 h--;
2406 }
2407
2408 /* Not found */
2409 match_buf[match_buf_len] = '\0';
2410 beep();
2411 continue;
2412
2413 do_redraw:
2414 redraw(cmdedit_y, command_len - cursor);
2415 } /* while (1) */
2416
2417 ret:
2418 if (matched_history_line)
2419 command_len = load_string(matched_history_line);
2420
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002421 free((char*)prompt_last_line);
2422 prompt_last_line = saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002423 cmdedit_prmt_len = saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002424 redraw(cmdedit_y, command_len - cursor);
2425
2426 return ic;
2427}
Denys Vlasenko627821e2021-09-25 19:36:35 +02002428#endif /* ENABLE_FEATURE_REVERSE_SEARCH */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002429
Denys Vlasenko23427a62018-12-08 15:45:46 +01002430#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002431static void sigaction2(int sig, struct sigaction *act)
2432{
2433 // Grr... gcc 8.1.1:
2434 // "passing argument 3 to restrict-qualified parameter aliases with argument 2"
2435 // dance around that...
2436 struct sigaction *oact FIX_ALIASING;
2437 oact = act;
2438 sigaction(sig, act, oact);
2439}
Denys Vlasenko23427a62018-12-08 15:45:46 +01002440#endif
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002441
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002442/* maxsize must be >= 2.
2443 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002444 * -1 on read errors or EOF, or on bare Ctrl-D,
2445 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002446 * (in both cases the cursor remains on the input line, '\n' is not printed)
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002447 * >0 length of input string, including terminating '\n'
2448 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002449int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize)
Erik Andersen13456d12000-03-16 08:09:57 +00002450{
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002451 int len, n;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002452 int timeout;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002453#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002454 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002455#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002456 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002457#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002458 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002459#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002460 struct termios initial_settings;
2461 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002462 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002463
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002464 INIT_S();
Denys Vlasenko96717d92020-12-21 22:50:23 +01002465 //command_len = 0; - done by INIT_S()
2466 //cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
2467 cmdedit_termw = 80;
Denys Vlasenko96717d92020-12-21 22:50:23 +01002468 IF_FEATURE_EDITING_VI(delptr = delbuf;)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002469
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002470 n = get_termios_and_make_raw(STDIN_FILENO, &new_settings, &initial_settings, 0
2471 | TERMIOS_CLEAR_ISIG /* turn off INTR (ctrl-C), QUIT, SUSP */
2472 );
2473 if (n != 0 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON) {
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002474 /* Happens when e.g. stty -echo was run before.
2475 * But if ICANON is not set, we don't come here.
2476 * (example: interactive python ^Z-backgrounded,
2477 * tty is still in "raw mode").
2478 */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002479 parse_and_put_prompt(prompt);
Denys Vlasenko038a9772016-11-28 01:10:16 +01002480 fflush_all();
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002481 if (fgets(command, maxsize, stdin) == NULL)
2482 len = -1; /* EOF or error */
2483 else
2484 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002485 DEINIT_S();
2486 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002487 }
2488
Denys Vlasenko28055022010-01-04 20:49:58 +01002489 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002490
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002491// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002492 if (maxsize > MAX_LINELEN)
2493 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002494 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002495
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002496 timeout = -1;
2497 /* Make state->flags == 0 if st is NULL.
2498 * With zeroed flags, no other fields are ever referenced.
2499 */
2500 state = (line_input_t*) &const_int_0;
2501 if (st) {
2502 state = st;
2503 timeout = st->timeout;
2504 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002505#if MAX_HISTORY > 0
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002506 if (state->flags & DO_HISTORY) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002507# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002508 if (state->hist_file)
2509 if (state->cnt_history == 0)
2510 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002511# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002512 state->cur_history = state->cnt_history;
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002513 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002514#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002515
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002516 /* prepare before init handlers */
Denys Vlasenko19158a82010-03-26 14:06:56 +01002517#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002518 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2519#else
Mark Whitley4e338752001-01-26 20:42:23 +00002520 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002521 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002522#endif
2523#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002524
Denis Vlasenko202ac502008-11-05 13:20:58 +00002525 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002526
Denis Vlasenko682ad302008-09-27 01:28:56 +00002527#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002528 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002529 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002530 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2531#endif
2532
Denys Vlasenko0a677222017-11-08 13:38:12 +01002533 /* Get width (before printing prompt) */
2534 cmdedit_termw = get_terminal_width(STDIN_FILENO);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002535 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002536 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002537 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002538
Ron Yorston23286902018-02-25 20:09:54 +01002539#if ENABLE_FEATURE_EDITING_WINCH
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002540 /* Install window resize handler (NB: after *all* init is complete) */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002541 S.SIGWINCH_handler.sa_handler = win_changed;
2542 S.SIGWINCH_handler.sa_flags = SA_RESTART;
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002543 sigaction2(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002544#endif
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002545 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002546 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002547 /*
2548 * The emacs and vi modes share much of the code in the big
2549 * command loop. Commands entered when in vi's command mode
2550 * (aka "escape mode") get an extra bit added to distinguish
2551 * them - this keeps them from being self-inserted. This
2552 * clutters the big switch a bit, but keeps all the code
2553 * in one place.
2554 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002555 int32_t ic, ic_raw;
Ron Yorston23286902018-02-25 20:09:54 +01002556#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002557 unsigned count;
2558
2559 count = S.SIGWINCH_count;
2560 if (S.SIGWINCH_saved != count) {
2561 S.SIGWINCH_saved = count;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002562 cmdedit_setwidth();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002563 }
Ron Yorston23286902018-02-25 20:09:54 +01002564#endif
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002565 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002566
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002567#if ENABLE_FEATURE_REVERSE_SEARCH
2568 again:
2569#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002570#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002571 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002572 if (vi_cmdmode) {
2573 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2574 * change ic if it contains one of them: */
2575 ic |= VI_CMDMODE_BIT;
2576 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002577#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002578
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002579 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002580 case '\n':
2581 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002582 vi_case('\n'|VI_CMDMODE_BIT:)
2583 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002584 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002585 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002586 break_out = 1;
2587 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002588 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002589 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002590 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002591 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002592 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002593 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002594 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002595 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002596 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002597 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002598 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002599 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002600 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002601 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002602 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002603 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002604 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002605 vi_case('l'|VI_CMDMODE_BIT:)
2606 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002607 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002608 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002609 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002610 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002611 if (!isrtl_str())
2612 input_backspace();
2613 else
2614 input_delete(0);
2615 break;
2616 case KEYCODE_DELETE:
2617 if (!isrtl_str())
2618 input_delete(0);
2619 else
2620 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002621 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002622#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002623 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002624 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002625 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002626#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002627 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002628 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002629 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002630 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002631 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002632 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002633 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002634 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002635 /* Control-l -- clear screen */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002636 /* cursor to top,left; clear to the end of screen */
2637 printf(ESC"[H" ESC"[J");
2638 draw_full(command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002639 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002640#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002641 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002642 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2643 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002644 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002645 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002646 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002647 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002648 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002649 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2650 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002651 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002652 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002653 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002654 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002655#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002656 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002657 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002658 /* Control-U -- Clear line before cursor */
2659 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002660 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002661 memmove(command_ps, command_ps + cursor,
2662 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002663 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002664 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002665 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002666 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002667 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002668 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002669 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002670 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002671 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002672 input_backspace();
2673 break;
Rostislav Skudnov2e4ef382016-11-24 15:04:00 +01002674 case KEYCODE_ALT_D: {
2675 /* Delete word forward */
2676 int nc, sc = cursor;
2677 ctrl_right();
2678 nc = cursor - sc;
2679 input_backward(nc);
2680 while (--nc >= 0)
2681 input_delete(1);
2682 break;
2683 }
2684 case KEYCODE_ALT_BACKSPACE: {
2685 /* Delete word backward */
2686 int sc = cursor;
2687 ctrl_left();
2688 while (sc-- > cursor)
2689 input_delete(1);
2690 break;
2691 }
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002692#if ENABLE_FEATURE_REVERSE_SEARCH
2693 case CTRL('R'):
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002694 ic = ic_raw = reverse_i_search(timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002695 goto again;
2696#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002697
Denis Vlasenko38f63192007-01-22 09:03:07 +00002698#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002699 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002700 vi_cmdmode = 0;
2701 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002702 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002703 input_backward(cursor);
2704 vi_cmdmode = 0;
2705 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002706 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002707 input_forward();
2708 vi_cmdmode = 0;
2709 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002710 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002711 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002712 vi_cmdmode = 0;
2713 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002714 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002715 input_delete(1);
2716 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002717 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002718 if (cursor > 0) {
2719 input_backward(1);
2720 input_delete(1);
2721 }
2722 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002723 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002724 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002725 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002726 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002727 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002728 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002729 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002730 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002731 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002732 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002733 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002734 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002735 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002736 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002737 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002738 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002739 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002740 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002741 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002742 vi_cmdmode = 0;
2743 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002744 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002745 goto clear_to_eol;
2746
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002747 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002748 vi_cmdmode = 0;
2749 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002750 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002751 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002752
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002753 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002754 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002755 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002756 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002757 input_backward(cursor);
2758 goto clear_to_eol;
2759 break;
2760 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002761
2762 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002763 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002764 case 'w':
2765 case 'W':
2766 case 'e':
2767 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002768 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002769 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002770 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002771 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002772 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002773 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002774 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002775 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002776 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002777 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002778 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002779 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002780 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002781 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002782 break;
2783 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002784 nc = cursor;
2785 input_backward(cursor - sc);
2786 while (nc-- > cursor)
2787 input_delete(1);
2788 break;
2789 case 'b': /* "db", "cb" */
2790 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002791 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002792 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002793 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002794 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002795 while (sc-- > cursor)
2796 input_delete(1);
2797 break;
2798 case ' ': /* "d ", "c " */
2799 input_delete(1);
2800 break;
2801 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002802 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002803 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002804 input_delete(1);
2805 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002806 }
2807 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002808 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002809 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002810 input_forward();
2811 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002812 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002813 put();
2814 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002815 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002816//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002817 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002818 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002819 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002820 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002821 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002822 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002823 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002824 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002825 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002826 }
2827 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002828 case '\x1b': /* ESC */
2829 if (state->flags & VI_MODE) {
2830 /* insert mode --> command mode */
2831 vi_cmdmode = 1;
2832 input_backward(1);
2833 }
2834 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002835#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002836
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002837#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002838 case KEYCODE_UP:
2839 if (get_previous_history())
2840 goto rewrite_line;
2841 beep();
2842 break;
2843 case KEYCODE_DOWN:
2844 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002845 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002846 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002847 /* Rewrite the line with the selected history item */
2848 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002849 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002850 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002851 /* redraw and go to eol (bol, in vi) */
2852 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2853 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002854#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002855 case KEYCODE_RIGHT:
2856 input_forward();
2857 break;
2858 case KEYCODE_LEFT:
2859 input_backward(1);
2860 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002861 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002862 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002863 ctrl_left();
2864 break;
2865 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002866 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002867 ctrl_right();
2868 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002869 case KEYCODE_HOME:
2870 input_backward(cursor);
2871 break;
2872 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002873 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002874 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002875
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002876 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002877 if (initial_settings.c_cc[VINTR] != 0
2878 && ic_raw == initial_settings.c_cc[VINTR]
2879 ) {
2880 /* Ctrl-C (usually) - stop gathering input */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002881 command_len = 0;
2882 break_out = -1; /* "do not append '\n'" */
2883 break;
2884 }
2885 if (initial_settings.c_cc[VEOF] != 0
2886 && ic_raw == initial_settings.c_cc[VEOF]
2887 ) {
2888 /* Ctrl-D (usually) - delete one character,
2889 * or exit if len=0 and no chars to delete */
2890 if (command_len == 0) {
2891 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002892
2893 case -1: /* error (e.g. EIO when tty is destroyed) */
2894 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002895 break_out = command_len = -1;
2896 break;
2897 }
2898 input_delete(0);
2899 break;
2900 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002901// /* Control-V -- force insert of next char */
2902// if (c == CTRL('V')) {
2903// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002904// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002905// if (c == 0) {
2906// beep();
2907// break;
2908// }
2909// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002910 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002911 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2912 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002913 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002914 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002915 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002916 * Otherwise, we are here if ic is a
2917 * control char or an unhandled ESC sequence,
2918 * which is also ignored.
2919 */
2920 break;
2921 }
2922 if ((int)command_len >= (maxsize - 2)) {
2923 /* Not enough space for the char and EOL */
2924 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002925 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002926
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002927 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002928 if (cursor == (command_len - 1)) {
2929 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002930 command_ps[cursor] = ic;
2931 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002932 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002933 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002934 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002935 } else {
2936 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002937 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002938
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002939 memmove(command_ps + sc + 1, command_ps + sc,
2940 (command_len - sc) * sizeof(command_ps[0]));
2941 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002942 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2943 if (!isrtl_str())
2944 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002945 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002946 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002947 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002948 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002949 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002950 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002951
2952 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002953 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002954
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002955#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002956 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002957 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002958#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002959 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002960
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002961#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002962 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002963 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2964 * We sent "ESC [ 6 n", but got '\n' first, and
2965 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2966 * It's bad already and not much can be done with it
2967 * (it _will_ be visible for the next process to read stdin),
2968 * but without this delay it even shows up on the screen
2969 * as garbage because we restore echo settings with tcsetattr
2970 * before it comes in. UGLY!
2971 */
2972 usleep(20*1000);
Denys Vlasenkofae73322020-12-21 21:55:03 +01002973// MAYBE? tcflush(STDIN_FILENO, TCIFLUSH); /* flushes data received but not read */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002974 }
2975#endif
2976
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002977/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002978#undef command
2979
Denys Vlasenko19158a82010-03-26 14:06:56 +01002980#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002981 command[0] = '\0';
2982 if (command_len > 0)
2983 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002984 free(command_ps);
2985#endif
2986
Flemming Madsend96ffda2013-04-07 18:47:24 +02002987 if (command_len > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002988 remember_in_history(command);
Flemming Madsend96ffda2013-04-07 18:47:24 +02002989 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002990
Eric Andersen27bb7902003-12-23 20:24:51 +00002991 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002992 command[command_len++] = '\n';
2993 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002994 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002995
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002996#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002997 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002998#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002999
Denis Vlasenko6258fd32007-01-22 07:30:26 +00003000 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00003001 tcsetattr_stdin_TCSANOW(&initial_settings);
Ron Yorston23286902018-02-25 20:09:54 +01003002#if ENABLE_FEATURE_EDITING_WINCH
Denis Vlasenko6258fd32007-01-22 07:30:26 +00003003 /* restore SIGWINCH handler */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01003004 sigaction_set(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01003005#endif
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003006 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00003007
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00003008 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00003009 DEINIT_S();
3010
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00003011 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003012}
3013
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02003014#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003015
3016#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00003017int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003018{
Ron Yorstoncad3fc72021-02-03 20:47:14 +01003019 fputs_stdout(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003020 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02003021 if (!fgets(command, maxsize, stdin))
3022 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003023 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00003024}
3025
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02003026#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00003027
3028
Denis Vlasenko82b39e82007-01-21 19:18:19 +00003029/*
3030 * Testing
3031 */
3032
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003033#ifdef TEST
3034
Eric Andersenf9ff8a72001-03-15 20:51:09 +00003035#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00003036
3037const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00003038
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003039int main(int argc, char **argv)
3040{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00003041 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003042 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00003043#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00003044 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
3045 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
Denys Vlasenko8187e012017-09-13 22:48:30 +02003046 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003047#else
3048 "% ";
3049#endif
3050
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00003051 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00003052 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003053 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00003054 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00003055 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02003056 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003057 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00003058 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003059 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00003060 return 0;
3061}
3062
Eric Andersenc470f442003-07-28 09:56:35 +00003063#endif /* TEST */