blob: 5eb701f00b7c8c9041890cc7c3f2c0a1e21cec14 [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 Vlasenkob9e35dc2010-07-18 22:21:24 +020060#define ENABLE_USERNAME_OR_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000061 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020062#define IF_USERNAME_OR_HOMEDIR(...)
63#if ENABLE_USERNAME_OR_HOMEDIR
64# undef IF_USERNAME_OR_HOMEDIR
65# define IF_USERNAME_OR_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000066#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000067
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020068
69#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010070#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020071# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020072# define CHAR_T wchar_t
Denys Vlasenko8c317f02019-05-14 17:26:47 +020073static bool BB_isspace(CHAR_T c)
74{
75 return ((unsigned)c < 256 && isspace(c));
76}
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010077# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenko8c317f02019-05-14 17:26:47 +020078static bool BB_isalnum_or_underscore(CHAR_T c)
79{
Natanael Copa7e6f9312016-08-14 23:30:29 +020080 return ((unsigned)c < 256 && isalnum(c)) || c == '_';
81}
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010082# endif
Denys Vlasenko8c317f02019-05-14 17:26:47 +020083static bool BB_ispunct(CHAR_T c)
84{
85 return ((unsigned)c < 256 && ispunct(c));
86}
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020087# undef isspace
88# undef isalnum
89# undef ispunct
90# undef isprint
91# define isspace isspace_must_not_be_used
92# define isalnum isalnum_must_not_be_used
93# define ispunct ispunct_must_not_be_used
94# define isprint isprint_must_not_be_used
95#else
96# define BB_NUL '\0'
97# define CHAR_T char
98# define BB_isspace(c) isspace(c)
Natanael Copa7e6f9312016-08-14 23:30:29 +020099# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenko82d1c1f2017-12-31 17:30:02 +0100100static bool BB_isalnum_or_underscore(CHAR_T c)
101{
Denys Vlasenkod5314e72020-06-24 09:31:30 +0200102 return isalnum(c) || c == '_';
Natanael Copa7e6f9312016-08-14 23:30:29 +0200103}
104# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200105# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200106#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200107#if ENABLE_UNICODE_PRESERVE_BROKEN
108# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
109# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
110#else
111# define unicode_is_raw_byte(wc) 0
112#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200113
114
Marek Polacek7b181072010-10-28 21:34:56 +0200115#define ESC "\033"
116
117#define SEQ_CLEAR_TILL_END_OF_SCREEN ESC"[J"
118//#define SEQ_CLEAR_TILL_END_OF_LINE ESC"[K"
Tomas Heinricha659b812010-04-29 13:43:39 +0200119
120
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000121enum {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000122 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000123 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000124 : 0x7ff0
125};
Robert Griebl350d26b2002-12-03 22:45:46 +0000126
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200127#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000128static const char null_str[] ALIGN1 = "";
129#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000130
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000131/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000132struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000133 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000134
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100135 unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
Mark Whitley4e338752001-01-26 20:42:23 +0000136
Denys Vlasenko020f4062009-05-17 16:44:54 +0200137 unsigned cmdedit_x; /* real x (col) terminal position */
138 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200139 unsigned cmdedit_prmt_len; /* on-screen length of last/sole prompt line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000140
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000141 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200142 int command_len; /* must be signed */
143 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200144 * to _not_ be promoted to unsigned */
145 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200146 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000147
148 const char *cmdedit_prompt;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200149 const char *prompt_last_line; /* last/sole prompt line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000150
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200151#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000152 char *user_buf;
153 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000154#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000155
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000156#if ENABLE_FEATURE_TAB_COMPLETION
157 char **matches;
158 unsigned num_matches;
159#endif
160
Ron Yorston23286902018-02-25 20:09:54 +0100161#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100162 unsigned SIGWINCH_saved;
163 volatile unsigned SIGWINCH_count;
164 volatile smallint ok_to_redraw;
Ron Yorston23286902018-02-25 20:09:54 +0100165#endif
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100166
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000167#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200168# define DELBUFSIZ 128
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000169 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100170 CHAR_T *delptr;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200171 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000172#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100173#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100174 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100175#endif
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100176
Ron Yorston23286902018-02-25 20:09:54 +0100177#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100178 /* Largish struct, keeping it last results in smaller code */
179 struct sigaction SIGWINCH_handler;
Ron Yorston23286902018-02-25 20:09:54 +0100180#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000181};
182
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000183/* See lineedit_ptr_hack.c */
184extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000185
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000186#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000187#define state (S.state )
188#define cmdedit_termw (S.cmdedit_termw )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000189#define cmdedit_x (S.cmdedit_x )
190#define cmdedit_y (S.cmdedit_y )
191#define cmdedit_prmt_len (S.cmdedit_prmt_len)
192#define cursor (S.cursor )
193#define command_len (S.command_len )
194#define command_ps (S.command_ps )
195#define cmdedit_prompt (S.cmdedit_prompt )
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200196#define prompt_last_line (S.prompt_last_line)
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000197#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000198#define home_pwd_buf (S.home_pwd_buf )
199#define matches (S.matches )
200#define num_matches (S.num_matches )
201#define delptr (S.delptr )
202#define newdelflag (S.newdelflag )
203#define delbuf (S.delbuf )
204
205#define INIT_S() do { \
Denys Vlasenkoaf7169b2019-10-25 12:12:22 +0200206 (*(struct lineedit_statics**)not_const_pp(&lineedit_ptr_to_statics)) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000207 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000208 cmdedit_termw = 80; \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200209 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Shawn J. Goff46031da2013-02-27 18:30:05 +0100210 IF_FEATURE_EDITING_VI(delptr = delbuf;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000211} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200212
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000213static void deinit_S(void)
214{
215#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000216 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200217 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000218 free((char*)cmdedit_prompt);
219#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200220#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000221 free(user_buf);
222 if (home_pwd_buf != null_str)
223 free(home_pwd_buf);
224#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000225 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000226}
227#define DEINIT_S() deinit_S()
228
Denis Vlasenko2c844952008-04-25 18:44:35 +0000229
Denys Vlasenko19158a82010-03-26 14:06:56 +0100230#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200231static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200232{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100233 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200234 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100235 if (len < 0)
236 len = 0;
237 command_ps[len] = BB_NUL;
238 return len;
239 } else {
240 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200241 while (src[i] && i < S.maxsize - 1) {
242 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100243 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200244 }
245 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100246 return i;
247 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200248}
Tomas Heinricha659b812010-04-29 13:43:39 +0200249static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200250{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100251 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200252# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100253 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
254 if (len < 0)
255 len = 0;
256 dst[len] = '\0';
257 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200258# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100259 unsigned dstpos = 0;
260 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200261
Denys Vlasenko353680a2011-03-27 01:18:07 +0100262 maxsize--;
263 while (dstpos < maxsize) {
264 wchar_t wc;
265 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200266
Denys Vlasenko353680a2011-03-27 01:18:07 +0100267 /* Convert up to 1st invalid byte (or up to end) */
268 while ((wc = command_ps[srcpos]) != BB_NUL
269 && !unicode_is_raw_byte(wc)
270 ) {
271 srcpos++;
272 }
273 command_ps[srcpos] = BB_NUL;
274 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
275 if (n < 0) /* should not happen */
276 break;
277 dstpos += n;
278 if (wc == BB_NUL) /* usually is */
279 break;
280
281 /* We do have invalid byte here! */
282 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200283 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100284 if (dstpos == maxsize)
285 break;
286 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200287 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100288 dst[dstpos] = '\0';
289 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200290# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100291 } else {
292 unsigned i = 0;
293 while ((dst[i] = command_ps[i]) != 0)
294 i++;
295 return i;
296 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200297}
298/* I thought just fputwc(c, stdout) would work. But no... */
299static void BB_PUTCHAR(wchar_t c)
300{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100301 if (unicode_status == UNICODE_ON) {
302 char buf[MB_CUR_MAX + 1];
303 mbstate_t mbst = { 0 };
304 ssize_t len = wcrtomb(buf, c, &mbst);
305 if (len > 0) {
306 buf[len] = '\0';
307 fputs(buf, stdout);
308 }
309 } else {
310 /* In this case, c is always one byte */
311 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200312 }
313}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200314# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
315static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
316# else
317static wchar_t adjust_width_and_validate_wc(wchar_t wc)
318# define adjust_width_and_validate_wc(width_adj, wc) \
319 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
320# endif
321{
322 int w = 1;
323
324 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200325 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
326 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200327 goto subst;
328 }
329 w = wcwidth(wc);
330 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
331 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
332 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
333 ) {
334 subst:
335 w = 1;
336 wc = CONFIG_SUBST_WCHAR;
337 }
338 }
339
340# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
341 *width_adj += w;
342#endif
343 return wc;
344}
345#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200346static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200347{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200348 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200349 return strlen(command_ps);
350}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200351# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200352static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200353{
354 safe_strncpy(dst, command_ps, maxsize);
355}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200356# endif
357# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200358/* Should never be called: */
359int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200360#endif
361
362
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000363/* Put 'command_ps[cursor]', cursor++.
364 * Advance cursor on screen. If we reached right margin, scroll text up
365 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000366#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200367static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000368{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200369 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200370 unsigned width = 0;
371 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000372
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200373 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000374 /* erase character after end of input string */
375 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200376 } else {
377 /* advance cursor only if we aren't at the end yet */
378 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200379 if (unicode_status == UNICODE_ON) {
380 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
381 c = adjust_width_and_validate_wc(&cmdedit_x, c);
382 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
383 } else {
384 cmdedit_x++;
385 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000386 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200387
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200388 ofs_to_right = cmdedit_x - cmdedit_termw;
389 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
390 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200391 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000392 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200393
394 if (ofs_to_right >= 0) {
395 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000396#if HACK_FOR_WRONG_WIDTH
397 /* This works better if our idea of term width is wrong
398 * and it is actually wider (often happens on serial lines).
399 * Printing CR,LF *forces* cursor to next line.
400 * OTOH if terminal width is correct AND terminal does NOT
401 * have automargin (IOW: it is moving cursor to next line
402 * by itself (which is wrong for VT-10x terminals)),
403 * this will break things: there will be one extra empty line */
404 puts("\r"); /* + implicit '\n' */
405#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200406 /* VT-10x terminals don't wrap cursor to next line when last char
407 * on the line is printed - cursor stays "over" this char.
408 * Need to print _next_ char too (first one to appear on next line)
409 * to make cursor move down to next line.
410 */
411 /* Works ok only if cmdedit_termw is correct. */
412 c = command_ps[cursor];
413 if (c == BB_NUL)
414 c = ' ';
415 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000416 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000417#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200418 cmdedit_y++;
419 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
420 width = 0;
421 } else { /* ofs_to_right > 0 */
422 /* wide char c didn't fit on prev line */
423 BB_PUTCHAR(c);
424 }
425 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000426 }
Erik Andersen13456d12000-03-16 08:09:57 +0000427}
428
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000429/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200430static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000431{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000432 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200433 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000434}
435
436/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000437static void goto_new_line(void)
438{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200439 put_till_end_and_adv_cursor();
Denys Vlasenkof5018da2018-04-06 17:58:21 +0200440 /* "cursor == 0" is only if prompt is "" and user input is empty */
441 if (cursor == 0 || cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000442 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000443}
444
Rob Landley88621d72006-08-29 19:41:06 +0000445static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000446{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000447 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000448}
449
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200450/* Full or last/sole prompt line, reset edit cursor, calculate terminal cursor.
451 * cmdedit_y is always calculated for the last/sole prompt line.
452 */
453static void put_prompt_custom(bool is_full)
Denys Vlasenko248c3242010-05-17 00:45:44 +0200454{
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200455 fputs((is_full ? cmdedit_prompt : prompt_last_line), stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200456 cursor = 0;
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100457 cmdedit_y = cmdedit_prmt_len / cmdedit_termw; /* new quasireal y */
458 cmdedit_x = cmdedit_prmt_len % cmdedit_termw;
Denys Vlasenko248c3242010-05-17 00:45:44 +0200459}
460
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200461#define put_prompt_last_line() put_prompt_custom(0)
462#define put_prompt() put_prompt_custom(1)
463
Eric Andersenaff114c2004-04-14 17:51:38 +0000464/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000465/* (optimized for slow terminals) */
466static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000467{
468 if (num > cursor)
469 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200470 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000471 return;
472 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000473
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200474 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
475 && unicode_status == UNICODE_ON
476 ) {
477 /* correct NUM to be equal to _screen_ width */
478 int n = num;
479 num = 0;
480 while (--n >= 0)
481 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
482 if (num == 0)
483 return;
484 }
485
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000486 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000487 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000488 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000489 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000490 * Also gets miscompiled for ARM users
491 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000492 * printf(("\b\b\b\b" + 4) - num);
493 * return;
494 */
495 do {
496 bb_putchar('\b');
497 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000498 return;
499 }
Marek Polacek7b181072010-10-28 21:34:56 +0200500 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000501 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000502 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000503
504 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200505 if (ENABLE_UNICODE_WIDE_WCHARS) {
506 /* With wide chars, it is hard to "backtrack"
507 * and reliably figure out where to put cursor.
508 * Example (<> is a wide char; # is an ordinary char, _ cursor):
509 * |prompt: <><> |
510 * |<><><><><><> |
511 * |_ |
512 * and user presses left arrow. num = 1, cmdedit_x = 0,
513 * We need to go up one line, and then - how do we know that
514 * we need to go *10* positions to the right? Because
515 * |prompt: <>#<>|
516 * |<><><>#<><><>|
517 * |_ |
518 * in this situation we need to go *11* positions to the right.
519 *
520 * A simpler thing to do is to redraw everything from the start
521 * up to new cursor position (which is already known):
522 */
523 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200524 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200525 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200526 cmdedit_y = 0;
527 sv_cursor = cursor;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200528 put_prompt_last_line(); /* sets cursor to 0 */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200529 while (cursor < sv_cursor)
530 put_cur_glyph_and_inc_cursor();
531 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200532 int lines_up;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200533 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200534 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200535 /* num=1...w: one line up, w+1...2w: two, etc: */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100536 lines_up = 1 + (num - 1) / cmdedit_termw;
537 cmdedit_x = (cmdedit_termw * cmdedit_y - num) % cmdedit_termw;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200538 cmdedit_y -= lines_up;
539 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200540 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200541 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200542 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
543 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200544 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200545 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000546 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000547}
548
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200549/* See redraw and draw_full below */
550static void draw_custom(int y, int back_cursor, bool is_full)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000551{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200552 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200553 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000554 bb_putchar('\r');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200555 put_prompt_custom(is_full);
Denys Vlasenko94043e82010-05-11 14:49:13 +0200556 put_till_end_and_adv_cursor();
557 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000558 input_backward(back_cursor);
559}
560
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200561/* Move y lines up, draw last/sole prompt line, editor line[s], and clear tail.
562 * goal: redraw the prompt+input+cursor in-place, overwriting the previous */
563#define redraw(y, back_cursor) draw_custom((y), (back_cursor), 0)
564
565/* Like above, but without moving up, and while using all the prompt lines.
566 * goal: draw a full prompt+input+cursor unrelated to a previous position.
567 * note: cmdedit_y always ends up relating to the last/sole prompt line */
568#define draw_full(back_cursor) draw_custom(0, (back_cursor), 1)
569
Paul Fox3f11b1b2005-08-04 19:04:46 +0000570/* Delete the char in front of the cursor, optionally saving it
571 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000572#if !ENABLE_FEATURE_EDITING_VI
573static void input_delete(void)
574#define input_delete(save) input_delete()
575#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000576static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000577#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000578{
Mark Whitley4e338752001-01-26 20:42:23 +0000579 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000580
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000581 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000582 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000583
Denis Vlasenko38f63192007-01-22 09:03:07 +0000584#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000585 if (save) {
586 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000587 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000588 newdelflag = 0;
589 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000590 if ((delptr - delbuf) < DELBUFSIZ)
591 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000592 }
593#endif
594
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200595 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200596 /* (command_len + 1 [because of NUL]) - (j + 1)
597 * simplified into (command_len - j) */
598 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000599 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200600 put_till_end_and_adv_cursor();
601 /* Last char is still visible, erase it (and more) */
602 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000603 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000604}
605
Denis Vlasenko38f63192007-01-22 09:03:07 +0000606#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000607static void put(void)
608{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000609 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000610 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000611
Paul Fox3f11b1b2005-08-04 19:04:46 +0000612 if (j == 0)
613 return;
614 ocursor = cursor;
615 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200616 memmove(command_ps + cursor + j, command_ps + cursor,
617 (command_len - cursor + 1) * sizeof(command_ps[0]));
618 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000619 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200620 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000621 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000622}
623#endif
624
Mark Whitley4e338752001-01-26 20:42:23 +0000625/* Delete the char in back of the cursor */
626static void input_backspace(void)
627{
628 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000629 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000630 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000631 }
632}
633
Eric Andersenaff114c2004-04-14 17:51:38 +0000634/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000635static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000636{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000637 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200638 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000639}
640
Denis Vlasenko38f63192007-01-22 09:03:07 +0000641#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000642
Mike Shalf3763032010-11-22 03:49:18 +0100643//FIXME:
644//needs to be more clever: currently it thinks that "foo\ b<TAB>
645//matches the file named "foo bar", which is untrue.
646//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
647//not "foo bar <cursor>...
648
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000649static void free_tab_completion_data(void)
650{
651 if (matches) {
652 while (num_matches)
653 free(matches[--num_matches]);
654 free(matches);
655 matches = NULL;
656 }
657}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000658
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000659static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000660{
Denys Vlasenkoc3797d42017-11-07 18:09:29 +0100661 unsigned char *p = (unsigned char*)matched;
662 while (*p) {
663 /* ESC attack fix: drop any string with control chars */
664 if (*p < ' '
665 || (!ENABLE_UNICODE_SUPPORT && *p >= 0x7f)
666 || (ENABLE_UNICODE_SUPPORT && *p == 0x7f)
667 ) {
668 free(matched);
669 return;
670 }
671 p++;
672 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000673 matches = xrealloc_vector(matches, 4, num_matches);
674 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000675 num_matches++;
676}
677
Mike Shalf3763032010-11-22 03:49:18 +0100678# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200679/* Replace "~user/..." with "/homedir/...".
680 * The parameter is malloced, free it or return it
681 * unchanged if no user is matched.
682 */
683static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000684{
685 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200686 char *tilde_name = ud;
687 char *home = NULL;
688
689 ud++; /* skip ~ */
690 if (*ud == '/') { /* "~/..." */
691 home = home_pwd_buf;
692 } else {
693 /* "~user/..." */
694 ud = strchr(ud, '/');
695 *ud = '\0'; /* "~user" */
696 entry = getpwnam(tilde_name + 1);
697 *ud = '/'; /* restore "~user/..." */
698 if (entry)
699 home = entry->pw_dir;
700 }
701 if (home) {
702 ud = concat_path_file(home, ud);
703 free(tilde_name);
704 tilde_name = ud;
705 }
706 return tilde_name;
707}
708
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200709/* ~use<tab> - find all users with this prefix.
710 * Return the length of the prefix used for matching.
711 */
712static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200713{
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100714 struct passwd *pw;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200715 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000716
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200717 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000718 userlen = strlen(ud);
719
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200720 setpwent();
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100721 while ((pw = getpwent()) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200722 /* Null usernames should result in all users as possible completions. */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100723 if (/* !ud[0] || */ is_prefixed_with(pw->pw_name, ud)) {
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100724 add_match(xasprintf("~%s/", pw->pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000725 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000726 }
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100727 endpwent(); /* don't keep password file open */
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200728
729 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000730}
Mike Shalf3763032010-11-22 03:49:18 +0100731# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000732
733enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000734 FIND_EXE_ONLY = 0,
735 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000736 FIND_FILE_ONLY = 2,
737};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000738
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200739static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000740{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000741 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000742 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000743 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000744 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000745
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000746 if (state->flags & WITH_PATH_LOOKUP)
747 pth = state->path_lookup;
748 else
749 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200750
751 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000752 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
753 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000754
Denis Vlasenko253ce002007-01-22 08:34:44 +0000755 tmp = (char*)pth;
Ron Yorston8baa6432020-12-11 12:34:21 +0000756 npth = 2; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000757 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000758 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000759 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000760 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200761 tmp++;
762 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000763 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000764 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000765 }
766
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200767 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000768 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000769 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000770 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000771 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000772 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000773 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000774 *tmp++ = '\0'; /* ':' -> '\0' */
775 if (*tmp == '\0')
776 break; /* :<empty> */
777 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000778 }
Ron Yorston8baa6432020-12-11 12:34:21 +0000779 /* special case: match subdirectories of the current directory */
780 res[npth++] = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000781 return npth;
782}
783
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200784/* Complete command, directory or file name.
785 * Return the length of the prefix used for matching.
786 */
787static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000788{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000789 char *path1[1];
790 char **paths = path1;
791 int npaths;
792 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200793 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200794 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200795 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000796
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000797 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000798 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000799
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200800 pfind = strrchr(command, '/');
801 if (!pfind) {
802 if (type == FIND_EXE_ONLY)
803 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000804 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000805 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000806 /* point to 'l' in "..../last_component" */
807 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200808 /* dirbuf = ".../.../.../" */
809 dirbuf = xstrndup(command, pfind - command);
Mike Shalf3763032010-11-22 03:49:18 +0100810# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200811 if (dirbuf[0] == '~') /* ~/... or ~user/... */
812 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100813# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200814 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000815 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200816 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000817
Denys Vlasenko13360522016-10-24 01:25:05 +0200818 if (type == FIND_EXE_ONLY && !dirbuf) {
Ron Yorston9e2a5662020-01-21 16:01:58 +0000819# if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
Ron Yorston37788982018-11-17 17:48:14 +0000820 const char *p = applet_names;
Ron Yorston2b919582016-04-08 11:57:20 +0100821 while (*p) {
Ron Yorstonf23264b2015-05-29 11:31:40 +0100822 if (strncmp(pfind, p, pf_len) == 0)
823 add_match(xstrdup(p));
Ron Yorston37788982018-11-17 17:48:14 +0000824 while (*p++ != '\0')
Ron Yorston2b919582016-04-08 11:57:20 +0100825 continue;
Ron Yorstonf23264b2015-05-29 11:31:40 +0100826 }
Denys Vlasenkof128bdb2017-07-29 00:59:24 +0200827# endif
Ron Yorston9e2a5662020-01-21 16:01:58 +0000828# if EDITING_HAS_get_exe_name
829 if (state->get_exe_name) {
830 i = 0;
831 for (;;) {
832 const char *b = state->get_exe_name(i++);
833 if (!b)
834 break;
835 if (strncmp(pfind, b, pf_len) == 0)
836 add_match(xstrdup(b));
837 }
838 }
839# endif
840 }
Ron Yorstonf23264b2015-05-29 11:31:40 +0100841
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000842 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200843 DIR *dir;
844 struct dirent *next;
845 struct stat st;
846 char *found;
847
Ron Yorston8baa6432020-12-11 12:34:21 +0000848 if (paths[i] == NULL) {
849 type = FIND_DIR_ONLY;
850 paths[i] = (char *)".";
851 }
852
Mark Whitley4e338752001-01-26 20:42:23 +0000853 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000854 if (!dir)
855 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000856
857 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200858 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200859 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000860
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200861 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
862 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000863 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200864 /* match? */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100865 if (!is_prefixed_with(name_found, pfind))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200866 continue; /* no */
867
868 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000869 /* NB: stat() first so that we see is it a directory;
870 * but if that fails, use lstat() so that
871 * we still match dangling links */
872 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200873 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000874
Denys Vlasenko39263632010-09-03 14:11:08 +0200875 /* Save only name */
876 len = strlen(name_found);
877 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
878 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000879
Mark Whitley4e338752001-01-26 20:42:23 +0000880 if (S_ISDIR(st.st_mode)) {
Ron Yorston8506dd62020-12-10 14:44:57 +0000881 /* skip directories if searching PATH */
882 if (type == FIND_EXE_ONLY && !dirbuf)
883 goto cont;
Denys Vlasenko39263632010-09-03 14:11:08 +0200884 /* name is a directory, add slash */
885 found[len] = '/';
886 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000887 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200888 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000889 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000890 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000891 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200892 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000893 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000894 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000895 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000896 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000897 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000898 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200899 } /* for every path */
900
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000901 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000902 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000903 free(paths);
904 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200905 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200906
907 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000908}
Erik Andersenf0657d32000-04-12 17:49:52 +0000909
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200910/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200911 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200912 * was pressed. This function looks at it, figures out what part of it
913 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200914 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200915 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200916#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200917/* Helpers: */
918/* QUOT is used on elements of int_buf[], which are bytes,
919 * not Unicode chars. Therefore it works correctly even in Unicode mode.
920 */
921#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200922static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200923{
924 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200925 if (beg == end)
926 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200927
928 while ((int_buf[beg] = int_buf[end]) != 0)
929 beg++, end++;
930
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200931 if (dbg_bmp) {
932 int i;
933 for (i = 0; int_buf[i]; i++)
934 bb_putchar((unsigned char)int_buf[i]);
935 bb_putchar('\n');
936 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200937}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200938/* Caller ensures that match_buf points to a malloced buffer
939 * big enough to hold strlen(match_buf)*2 + 2
940 */
941static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000942{
943 int i, j;
944 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200945 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000946
Denys Vlasenko76939e72010-09-03 14:09:24 +0200947 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200948
Denys Vlasenko76939e72010-09-03 14:09:24 +0200949 /* Copy in reverse order, since they overlap */
950 i = strlen(match_buf);
951 do {
952 int_buf[i] = (unsigned char)match_buf[i];
953 i--;
954 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000955
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200956 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200957 for (i = 0; int_buf[i]; i++) {
958 if (int_buf[i] == '\\') {
959 remove_chunk(int_buf, i, i + 1);
960 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000961 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200962 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200963 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200964 {
965 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200966 i = 0;
967 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200968 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200969 if (!cur)
970 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200971 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200972 if (!in_quote || (cur == in_quote)) {
973 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200974 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200975 continue;
976 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000977 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200978 if (in_quote)
979 int_buf[i] = cur | QUOT;
980 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200981 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000982 }
983
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200984 /* Remove everything up to command delimiters:
985 * ';' ';;' '&' '|' '&&' '||',
986 * but careful with '>&' '<&' '>|'
987 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000988 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200989 int cur = int_buf[i];
990 if (cur == ';' || cur == '&' || cur == '|') {
991 int prev = i ? int_buf[i - 1] : 0;
992 if (cur == '&' && (prev == '>' || prev == '<')) {
993 continue;
994 } else if (cur == '|' && prev == '>') {
995 continue;
996 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200997 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200998 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000999 }
1000 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001001 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001002 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001003 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001004 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001005 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001006 /* `cmd` should count as a word:
1007 * `cmd` c<tab> should search for files c*,
1008 * not commands c*. Therefore we don't drop
1009 * `cmd` entirely, we replace it with single `.
1010 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001011 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001012 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001013 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001014 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001015 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001016 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001017 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001018 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001019 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001020 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001021
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001022 /* Remove "cmd (" and "cmd {"
1023 * Example: "if { c<tab>"
1024 * In this example, c should be matched as command pfx.
1025 */
1026 for (i = 0; int_buf[i]; i++) {
1027 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001028 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001029 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001030 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001031 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001032
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001033 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001034 for (i = 0; int_buf[i]; i++)
1035 if (int_buf[i] != ' ')
1036 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001037 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001038
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001039 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001040 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001041 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001042 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001043 if (int_buf[i] == ' '
1044 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001045 && (char)int_buf[0] == 'c'
1046 && (char)int_buf[1] == 'd'
1047 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001048 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001049 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001050 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001051 command_mode = FIND_FILE_ONLY;
1052 break;
1053 }
1054 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001055 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001056 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001057
1058 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001059 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
1060 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001061 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001062 int cur = int_buf[i];
1063 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001064 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001065 break;
1066 }
1067 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001068
Denys Vlasenko76939e72010-09-03 14:09:24 +02001069 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001070 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001071 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001072 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001073
Denys Vlasenko76939e72010-09-03 14:09:24 +02001074 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001075
1076 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001077}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001078
Glenn L McGrath4d001292003-01-06 01:11:50 +00001079/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001080 * Display by column (original idea from ls applet,
1081 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001082 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001083static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001084{
1085 int ncols, row;
1086 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001087 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001088 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001089 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001090
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001091 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001092 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001093 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001094 if (column_width < l)
1095 column_width = l;
1096 }
1097 column_width += 2; /* min space for columns */
1098 ncols = cmdedit_termw / column_width;
1099
1100 if (ncols > 1) {
1101 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001102 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001103 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001104 } else {
1105 ncols = 1;
1106 }
1107 for (row = 0; row < nrows; row++) {
1108 int n = row;
1109 int nc;
1110
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001111 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001112 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001113 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001114 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001115 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001116 if (ENABLE_UNICODE_SUPPORT)
Denys Vlasenko349d72c2018-09-30 16:56:56 +02001117 puts(printable_string(matches[n]));
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001118 else
1119 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001120 }
1121}
1122
Mike Shalf3763032010-11-22 03:49:18 +01001123static const char *is_special_char(char c)
1124{
1125 return strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", c);
1126}
1127
1128static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001129{
1130 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001131 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001132
1133 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001134 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001135 s[l++] = '\\';
1136 s[l++] = *found++;
1137 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001138 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001139 return s;
1140}
1141
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001142/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001143static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001144{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001145 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001146 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001147 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001148 /* Length of string used for matching */
1149 unsigned match_pfx_len = match_pfx_len;
1150 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001151# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001152 /* cursor pos in command converted to multibyte form */
1153 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001154# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001155 if (!(state->flags & TAB_COMPLETION))
1156 return;
1157
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001158 if (*lastWasTab) {
1159 /* The last char was a TAB too.
1160 * Print a list of all the available choices.
1161 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001162 if (num_matches > 0) {
1163 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001164 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001165 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001166 showfiles();
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001167 draw_full(command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001168 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001169 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001170 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001171
1172 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001173 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001174
Denys Vlasenko76939e72010-09-03 14:09:24 +02001175 /* Make a local copy of the string up to the position of the cursor.
1176 * build_match_prefix will expand it into int16_t's, need to allocate
1177 * twice as much as the string_len+1.
1178 * (we then also (ab)use this extra space later - see (**))
1179 */
1180 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001181# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001182 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001183# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001184 {
1185 CHAR_T wc = command_ps[cursor];
1186 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001187 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001188 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001189 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001190 }
Mike Shalf3763032010-11-22 03:49:18 +01001191# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001192 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001193
1194 /* Free up any memory already allocated */
1195 free_tab_completion_data();
1196
Mike Shalf3763032010-11-22 03:49:18 +01001197# if ENABLE_FEATURE_USERNAME_COMPLETION
1198 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001199 * then try completing this word as a username. */
1200 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001201 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1202 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001203# endif
1204 /* If complete_username() did not match,
1205 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001206 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001207 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001208
1209 /* Account for backslashes which will be inserted
1210 * by quote_special_chars() later */
1211 {
1212 const char *e = match_buf + strlen(match_buf);
1213 const char *s = e - match_pfx_len;
1214 while (s < e)
1215 if (is_special_char(*s++))
1216 match_pfx_len++;
1217 }
1218
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001219 /* Remove duplicates */
1220 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001221 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001222 qsort_string_vector(matches, num_matches);
1223 for (i = 0; i < num_matches - 1; ++i) {
1224 //if (matches[i] && matches[i+1]) { /* paranoia */
1225 if (strcmp(matches[i], matches[i+1]) == 0) {
1226 free(matches[i]);
1227 //matches[i] = NULL; /* paranoia */
1228 } else {
1229 matches[n++] = matches[i];
1230 }
1231 //}
1232 }
1233 matches[n++] = matches[i];
1234 num_matches = n;
1235 }
Mike Shalf3763032010-11-22 03:49:18 +01001236
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001237 /* Did we find exactly one match? */
1238 if (num_matches != 1) { /* no */
1239 char *cp;
1240 beep();
1241 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001242 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001243 /* Find common prefix */
1244 chosen_match = xstrdup(matches[0]);
1245 for (cp = chosen_match; *cp; cp++) {
1246 unsigned n;
1247 for (n = 1; n < num_matches; n++) {
1248 if (matches[n][cp - chosen_match] != *cp) {
1249 goto stop;
1250 }
1251 }
1252 }
1253 stop:
1254 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001255 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001256 }
1257 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001258 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001259 free(chosen_match);
1260 chosen_match = cp;
1261 len_found = strlen(chosen_match);
1262 } else { /* exactly one match */
1263 /* Next <tab> is not a double-tab */
1264 *lastWasTab = 0;
1265
Mike Shalf3763032010-11-22 03:49:18 +01001266 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001267 len_found = strlen(chosen_match);
1268 if (chosen_match[len_found-1] != '/') {
1269 chosen_match[len_found] = ' ';
1270 chosen_match[++len_found] = '\0';
1271 }
1272 }
1273
Mike Shalf3763032010-11-22 03:49:18 +01001274# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001275 /* Have space to place the match? */
1276 /* The result consists of three parts with these lengths: */
1277 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1278 /* it simplifies into: */
1279 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1280 int pos;
1281 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001282 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001283 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001284 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001285 command_len = strlen(command_ps);
1286 /* new pos */
1287 pos = cursor + len_found - match_pfx_len;
1288 /* write out the matched command */
1289 redraw(cmdedit_y, command_len - pos);
1290 }
Mike Shalf3763032010-11-22 03:49:18 +01001291# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001292 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001293 /* Use 2nd half of match_buf as scratch space - see (**) */
1294 char *command = match_buf + MAX_LINELEN;
1295 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001296 /* Have space to place the match? */
1297 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1298 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1299 int pos;
1300 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001301 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001302 /* where do we want to have cursor after all? */
1303 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001304 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001305 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001306 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001307 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001308 /* write out the matched command */
1309 /* paranoia: load_string can return 0 on conv error,
1310 * prevent passing pos = (0 - 12) to redraw */
1311 pos = command_len - len;
1312 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1313 }
1314 }
Mike Shalf3763032010-11-22 03:49:18 +01001315# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001316 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001317 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001318 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001319}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001320
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001321#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001322
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001323
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001324line_input_t* FAST_FUNC new_line_input_t(int flags)
1325{
1326 line_input_t *n = xzalloc(sizeof(*n));
1327 n->flags = flags;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02001328 n->timeout = -1;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001329#if MAX_HISTORY > 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001330 n->max_history = MAX_HISTORY;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001331#endif
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001332 return n;
1333}
1334
1335
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001336#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001337
Flemming Madsend96ffda2013-04-07 18:47:24 +02001338unsigned FAST_FUNC size_from_HISTFILESIZE(const char *hp)
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001339{
1340 int size = MAX_HISTORY;
1341 if (hp) {
1342 size = atoi(hp);
1343 if (size <= 0)
1344 return 1;
1345 if (size > MAX_HISTORY)
1346 return MAX_HISTORY;
1347 }
1348 return size;
1349}
1350
Denis Vlasenko682ad302008-09-27 01:28:56 +00001351static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001352{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001353 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001354 int cur = state->cur_history;
1355 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001356
Denys Vlasenko19158a82010-03-26 14:06:56 +01001357# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001358 {
1359 char tbuf[MAX_LINELEN];
1360 save_string(tbuf, sizeof(tbuf));
1361 state->history[cur] = xstrdup(tbuf);
1362 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001363# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001364 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001365# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001366 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001367}
1368
1369/* state->flags is already checked to be nonzero */
1370static int get_previous_history(void)
1371{
1372 if ((state->flags & DO_HISTORY) && state->cur_history) {
1373 save_command_ps_at_cur_history();
1374 state->cur_history--;
1375 return 1;
1376 }
1377 beep();
1378 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001379}
1380
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001381static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001382{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001383 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001384 if (state->cur_history < state->cnt_history) {
1385 save_command_ps_at_cur_history(); /* save the current history line */
1386 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001387 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001388 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001389 beep();
1390 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001391}
Robert Griebl350d26b2002-12-03 22:45:46 +00001392
Flemming Madsend96ffda2013-04-07 18:47:24 +02001393/* Lists command history. Used by shell 'history' builtins */
1394void FAST_FUNC show_history(const line_input_t *st)
1395{
1396 int i;
1397
1398 if (!st)
1399 return;
1400 for (i = 0; i < st->cnt_history; i++)
1401 printf("%4d %s\n", i, st->history[i]);
1402}
1403
Denys Vlasenko3d27d432018-12-27 18:03:20 +01001404void FAST_FUNC free_line_input_t(line_input_t *n)
1405{
1406# if ENABLE_FEATURE_EDITING_SAVEHISTORY
1407 int i = n->cnt_history;
1408 while (i > 0)
1409 free(n->history[--i]);
1410#endif
1411 free(n);
1412}
1413
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001414# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001415/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001416 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001417 * Otherwise shell users get unhappy.
1418 *
1419 * History file is trimmed lazily, when it grows several times longer
1420 * than configured MAX_HISTORY lines.
1421 */
1422
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001423/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001424static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001425{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001426 char *temp_h[MAX_HISTORY];
1427 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001428 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001429 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001430
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001431 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001432
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001433 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001434 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001435 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001436 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001437 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001438 free(st_parm->history[idx]);
1439 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001440 }
1441
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001442 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1443 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001444 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001445 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001446 while ((line = xmalloc_fgetline(fp)) != NULL) {
1447 if (line[0] == '\0') {
1448 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001449 continue;
1450 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001451 free(temp_h[idx]);
1452 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001453 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001454 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001455 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001456 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001457 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001458 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001459
1460 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001461 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001462 while (temp_h[idx] == NULL) {
1463 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001464 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001465 idx = 0;
1466 }
1467 }
1468
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001469 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001470 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001471 line = temp_h[idx];
1472 if (!line)
1473 break;
1474 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001475 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001476 idx = 0;
1477 line_len = strlen(line);
1478 if (line_len >= MAX_LINELEN)
1479 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001480 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001481 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001482 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001483 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1484 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001485 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001486}
1487
Denys Vlasenkobede2152011-09-04 16:12:33 +02001488# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1489void save_history(line_input_t *st)
1490{
1491 FILE *fp;
1492
Denys Vlasenkobede2152011-09-04 16:12:33 +02001493 if (!st->hist_file)
1494 return;
1495 if (st->cnt_history <= st->cnt_history_in_file)
1496 return;
1497
1498 fp = fopen(st->hist_file, "a");
1499 if (fp) {
1500 int i, fd;
1501 char *new_name;
1502 line_input_t *st_temp;
1503
1504 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1505 fprintf(fp, "%s\n", st->history[i]);
1506 fclose(fp);
1507
1508 /* we may have concurrently written entries from others.
1509 * load them */
1510 st_temp = new_line_input_t(st->flags);
1511 st_temp->hist_file = st->hist_file;
1512 st_temp->max_history = st->max_history;
1513 load_history(st_temp);
1514
1515 /* write out temp file and replace hist_file atomically */
1516 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1517 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1518 if (fd >= 0) {
1519 fp = xfdopen_for_write(fd);
1520 for (i = 0; i < st_temp->cnt_history; i++)
1521 fprintf(fp, "%s\n", st_temp->history[i]);
1522 fclose(fp);
1523 if (rename(new_name, st->hist_file) == 0)
1524 st->cnt_history_in_file = st_temp->cnt_history;
1525 }
1526 free(new_name);
1527 free_line_input_t(st_temp);
1528 }
1529}
1530# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001531static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001532{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001533 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001534 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001535
Denys Vlasenkobede2152011-09-04 16:12:33 +02001536 if (!state->hist_file)
1537 return;
1538
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001539 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001540 if (fd < 0)
1541 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001542 xlseek(fd, 0, SEEK_END); /* paranoia */
1543 len = strlen(str);
1544 str[len] = '\n'; /* we (try to) do atomic write */
1545 len2 = full_write(fd, str, len + 1);
1546 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001547 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001548 if (len2 != len + 1)
1549 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001550
1551 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001552 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001553 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001554 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001555 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001556
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001557 /* we may have concurrently written entries from others.
1558 * load them */
1559 st_temp = new_line_input_t(state->flags);
1560 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001561 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001562 load_history(st_temp);
1563
1564 /* write out temp file and replace hist_file atomically */
1565 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001566 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001567 if (fd >= 0) {
1568 FILE *fp;
1569 int i;
1570
1571 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001572 for (i = 0; i < st_temp->cnt_history; i++)
1573 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001574 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001575 if (rename(new_name, state->hist_file) == 0)
1576 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001577 }
1578 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001579 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001580 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001581}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001582# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001583# else
1584# define load_history(a) ((void)0)
1585# define save_history(a) ((void)0)
1586# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001587
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001588static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001589{
1590 int i;
1591
1592 if (!(state->flags & DO_HISTORY))
1593 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001594 if (str[0] == '\0')
1595 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001596 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001597 /* Don't save dupes */
1598 if (i && strcmp(state->history[i-1], str) == 0)
1599 return;
1600
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001601 free(state->history[state->max_history]); /* redundant, paranoia */
1602 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001603
1604 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001605 /* we need to keep history[state->max_history] empty, hence >=, not > */
1606 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001607 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001608 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001609 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001610 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001611# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1612 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001613 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001614# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001615 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001616 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001617 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001618 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001619 state->cur_history = i;
1620 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001621# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1622 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001623# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001624}
1625
1626#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001627# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001628#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001629
1630
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001631#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001632/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001633 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001634 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001635static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001636vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001637{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001638 CHAR_T *command = command_ps;
1639
1640 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001641 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001642 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001643 input_forward();
1644}
1645
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001646static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001647vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001648{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001649 CHAR_T *command = command_ps;
1650
Natanael Copa7e6f9312016-08-14 23:30:29 +02001651 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001652 while (cursor < command_len
Natanael Copa7e6f9312016-08-14 23:30:29 +02001653 && (BB_isalnum_or_underscore(command[cursor+1]))
Denys Vlasenko13028922009-07-12 00:51:15 +02001654 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001655 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001656 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001657 } else if (BB_ispunct(command[cursor])) {
1658 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001659 input_forward();
1660 }
1661
Denis Vlasenko253ce002007-01-22 08:34:44 +00001662 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001663 input_forward();
1664
Denys Vlasenko13028922009-07-12 00:51:15 +02001665 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001666 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001667 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001668 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001669}
1670
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001671static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001672vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001673{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001674 CHAR_T *command = command_ps;
1675
Paul Fox3f11b1b2005-08-04 19:04:46 +00001676 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001677 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001678 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001679 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001680 input_forward();
1681}
1682
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001683static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001684vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001685{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001686 CHAR_T *command = command_ps;
1687
Denis Vlasenko253ce002007-01-22 08:34:44 +00001688 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001689 return;
1690 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001691 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001692 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001693 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001694 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001695 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001696 while (cursor < command_len-1
Natanael Copa7e6f9312016-08-14 23:30:29 +02001697 && (BB_isalnum_or_underscore(command[cursor+1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001698 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001699 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001700 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001701 } else if (BB_ispunct(command[cursor])) {
1702 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001703 input_forward();
1704 }
1705}
1706
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001707static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001708vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001709{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001710 CHAR_T *command = command_ps;
1711
1712 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001713 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001714 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001715 input_backward(1);
1716}
1717
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001718static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001719vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001720{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001721 CHAR_T *command = command_ps;
1722
Paul Fox3f11b1b2005-08-04 19:04:46 +00001723 if (cursor <= 0)
1724 return;
1725 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001726 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001727 input_backward(1);
1728 if (cursor <= 0)
1729 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001730 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001731 while (cursor > 0
Natanael Copa7e6f9312016-08-14 23:30:29 +02001732 && (BB_isalnum_or_underscore(command[cursor-1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001733 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001734 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001735 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001736 } else if (BB_ispunct(command[cursor])) {
1737 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001738 input_backward(1);
1739 }
1740}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001741#endif
1742
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001743/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1744static void ctrl_left(void)
1745{
1746 CHAR_T *command = command_ps;
1747
1748 while (1) {
1749 CHAR_T c;
1750
1751 input_backward(1);
1752 if (cursor == 0)
1753 break;
1754 c = command[cursor];
1755 if (c != ' ' && !BB_ispunct(c)) {
1756 /* we reached a "word" delimited by spaces/punct.
1757 * go to its beginning */
1758 while (1) {
1759 c = command[cursor - 1];
1760 if (c == ' ' || BB_ispunct(c))
1761 break;
1762 input_backward(1);
1763 if (cursor == 0)
1764 break;
1765 }
1766 break;
1767 }
1768 }
1769}
1770static void ctrl_right(void)
1771{
1772 CHAR_T *command = command_ps;
1773
1774 while (1) {
1775 CHAR_T c;
1776
1777 c = command[cursor];
1778 if (c == BB_NUL)
1779 break;
1780 if (c != ' ' && !BB_ispunct(c)) {
1781 /* we reached a "word" delimited by spaces/punct.
1782 * go to its end + 1 */
1783 while (1) {
1784 input_forward();
1785 c = command[cursor];
1786 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1787 break;
1788 }
1789 break;
1790 }
1791 input_forward();
1792 }
1793}
1794
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001795
1796/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001797 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001798 */
1799
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001800#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1801static void ask_terminal(void)
1802{
1803 /* Ask terminal where is the cursor now.
1804 * lineedit_read_key handles response and corrects
1805 * our idea of current cursor position.
1806 * Testcase: run "echo -n long_line_long_line_long_line",
1807 * then type in a long, wrapping command and try to
1808 * delete it using backspace key.
1809 * Note: we print it _after_ prompt, because
1810 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1811 */
1812 /* Problem: if there is buffered input on stdin,
1813 * the response will be delivered later,
1814 * possibly to an unsuspecting application.
1815 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1816 * Result:
1817 * ~/srcdevel/bbox/fix/busybox.t4 #
1818 * ~/srcdevel/bbox/fix/busybox.t4 #
1819 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1820 * ~/srcdevel/bbox/fix/busybox.t4 #
1821 *
1822 * Checking for input with poll only makes the race narrower,
1823 * I still can trigger it. Strace:
1824 *
1825 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1826 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1827 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001828 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001829 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1830 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001831 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001832
Denys Vlasenko451add42010-07-25 00:06:41 +02001833 pfd.fd = STDIN_FILENO;
1834 pfd.events = POLLIN;
1835 if (safe_poll(&pfd, 1, 0) == 0) {
1836 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001837 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001838 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001839 }
1840}
1841#else
1842#define ask_terminal() ((void)0)
1843#endif
1844
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001845/* Note about multi-line PS1 (e.g. "\n\w \u@\h\n> ") and prompt redrawing:
1846 *
1847 * If the prompt has any newlines, after we print it once we use only its last
1848 * line to redraw in-place, which makes it simpler to calculate how many lines
1849 * we should move the cursor up to align the redraw (cmdedit_y). The earlier
1850 * prompt lines just stay on screen and we redraw below them.
1851 *
1852 * Use cases for all prompt lines beyond the initial draw:
1853 * - After clear-screen (^L) or after displaying tab-completion choices, we
1854 * print the full prompt, as it isn't redrawn in-place.
1855 * - During terminal resize we could try to redraw all lines, but we don't,
1856 * because it requires delicate alignment, it's good enough with only the
1857 * last line, and doing it wrong is arguably worse than not doing it at all.
1858 *
1859 * Terminology wise, if it doesn't mention "full", then it means the last/sole
1860 * prompt line. We use the prompt (last/sole line) while redrawing in-place,
1861 * and the full where we need a fresh one unrelated to an earlier position.
1862 *
1863 * If PS1 is not multiline, the last/sole line and the full are the same string.
1864 */
1865
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001866/* Called just once at read_line_input() init time */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001867#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001868static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001869{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001870 const char *p;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001871 cmdedit_prompt = prompt_last_line = prmt_ptr;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001872 p = strrchr(prmt_ptr, '\n');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001873 if (p)
1874 prompt_last_line = p + 1;
1875 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001876 put_prompt();
1877}
1878#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001879static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001880{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001881 int prmt_size = 0;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001882 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001883# if ENABLE_USERNAME_OR_HOMEDIR
1884 char *cwd_buf = NULL;
1885# endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001886 char flg_not_length = '[';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001887 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001888
Denys Vlasenko7a180432013-08-19 16:44:05 +02001889 /*cmdedit_prmt_len = 0; - already is */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001890
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001891 cbuf[1] = '\0'; /* never changes */
1892
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001893 while (*prmt_ptr) {
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001894 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001895 char *free_me = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001896 char *pbuf;
1897 char c;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001898
1899 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001900 c = *prmt_ptr++;
1901 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001902 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001903 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001904/*
1905 * Supported via bb_process_escape_sequence:
1906 * \a ASCII bell character (07)
1907 * \e ASCII escape character (033)
1908 * \n newline
1909 * \r carriage return
1910 * \\ backslash
1911 * \nnn char with octal code nnn
1912 * Supported:
1913 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001914 * \w current working directory, with $HOME abbreviated with a tilde
1915 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001916 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001917 * \h hostname up to the first '.'
1918 * \H hostname
1919 * \u username
1920 * \[ begin a sequence of non-printing characters
1921 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001922 * \T current time in 12-hour HH:MM:SS format
1923 * \@ current time in 12-hour am/pm format
1924 * \A current time in 24-hour HH:MM format
1925 * \t current time in 24-hour HH:MM:SS format
1926 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001927 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001928 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001929 * \# command number of this command
1930 * \j number of jobs currently managed by the shell
1931 * \l basename of the shell's terminal device name
1932 * \s name of the shell, the basename of $0 (the portion following the final slash)
1933 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001934 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1935 * \D{format}
1936 * format is passed to strftime(3).
1937 * An empty format results in a locale-specific time representation.
1938 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001939 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001940 * \v version of bash (e.g., 2.00)
1941 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01001942 cp = prmt_ptr;
1943 c = *cp;
1944 if (c != 't') /* don't treat \t as tab */
1945 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001946 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001947 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001948 break;
1949 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001950
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001951 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001952# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001953 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001954 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001955 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001956# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001957 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001958 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001959 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001960 if (c == 'h')
1961 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001962 break;
1963 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001964 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001965 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001966 case 'T': /* 12-hour HH:MM:SS format */
1967 case '@': /* 12-hour am/pm format */
1968 case 'A': /* 24-hour HH:MM format */
1969 case 't': /* 24-hour HH:MM:SS format */
1970 /* We show all of them as 24-hour HH:MM */
1971 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
1972 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001973 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001974# if ENABLE_USERNAME_OR_HOMEDIR
1975 case 'w': /* current dir */
1976 case 'W': /* basename of cur dir */
1977 if (!cwd_buf) {
1978 cwd_buf = xrealloc_getcwd_or_warn(NULL);
1979 if (!cwd_buf)
1980 cwd_buf = (char *)bb_msg_unknown;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001981 else if (home_pwd_buf[0]) {
1982 char *after_home_user;
1983
Denys Vlasenko1d145692013-03-29 13:09:05 +01001984 /* /home/user[/something] -> ~[/something] */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001985 after_home_user = is_prefixed_with(cwd_buf, home_pwd_buf);
1986 if (after_home_user
1987 && (*after_home_user == '/' || *after_home_user == '\0')
Denys Vlasenko1d145692013-03-29 13:09:05 +01001988 ) {
1989 cwd_buf[0] = '~';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001990 overlapping_strcpy(cwd_buf + 1, after_home_user);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001991 }
1992 }
1993 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001994 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001995 if (c == 'w')
1996 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001997 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01001998 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01001999 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002000 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01002001# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01002002// bb_process_escape_sequence does this now:
2003// case 'e': case 'E': /* \e \E = \033 */
2004// c = '\033';
2005// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002006 case 'x': case 'X': {
2007 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002008 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002009 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002010 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002011 buf2[l] = '\0';
2012 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002013 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002014 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002015 break;
2016 }
2017 prmt_ptr++;
2018 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002019 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002020 if (c == 0)
2021 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002022 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002023 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002024 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002025 case '[': case ']':
2026 if (c == flg_not_length) {
Denys Vlasenko7a180432013-08-19 16:44:05 +02002027 /* Toggle '['/']' hex 5b/5d */
2028 flg_not_length ^= 6;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002029 continue;
2030 }
2031 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002032 } /* switch */
2033 } /* if */
2034 } /* if */
2035 cbuf[0] = c;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002036 {
2037 int n = strlen(pbuf);
2038 prmt_size += n;
2039 if (c == '\n')
2040 cmdedit_prmt_len = 0;
2041 else if (flg_not_length != ']') {
Audun-Marius Gangstø9bf44992020-11-21 12:26:39 +01002042#if ENABLE_UNICODE_SUPPORT
2043 if (n == 1) {
2044 /* Only count single-byte characters and the first of multi-byte characters */
2045 if ((unsigned char)*pbuf < 0x80 /* single byte character */
2046 || (unsigned char)*pbuf >= 0xc0 /* first of multi-byte characters */
2047 ) {
2048 cmdedit_prmt_len += n;
2049 }
2050 } else {
2051 cmdedit_prmt_len += unicode_strwidth(pbuf);
2052 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002053#else
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002054 cmdedit_prmt_len += n;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002055#endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002056 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002057 }
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002058 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_size+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002059 free(free_me);
2060 } /* while */
2061
Denys Vlasenko1d145692013-03-29 13:09:05 +01002062# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002063 if (cwd_buf != (char *)bb_msg_unknown)
2064 free(cwd_buf);
Denys Vlasenko1d145692013-03-29 13:09:05 +01002065# endif
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002066 /* see comment (above this function) about multiline prompt redrawing */
2067 cmdedit_prompt = prompt_last_line = prmt_mem_ptr;
2068 prmt_ptr = strrchr(cmdedit_prompt, '\n');
2069 if (prmt_ptr)
2070 prompt_last_line = prmt_ptr + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002071 put_prompt();
2072}
Paul Fox3f11b1b2005-08-04 19:04:46 +00002073#endif
2074
Ron Yorston23286902018-02-25 20:09:54 +01002075#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko038a9772016-11-28 01:10:16 +01002076static void cmdedit_setwidth(void)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002077{
Denys Vlasenko038a9772016-11-28 01:10:16 +01002078 int new_y;
2079
2080 cmdedit_termw = get_terminal_width(STDIN_FILENO);
2081 /* new y for current cursor */
2082 new_y = (cursor + cmdedit_prmt_len) / cmdedit_termw;
2083 /* redraw */
2084 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002085}
2086
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002087static void win_changed(int nsig UNUSED_PARAM)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002088{
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002089 if (S.ok_to_redraw) {
2090 /* We are in read_key(), safe to redraw immediately */
2091 int sv_errno = errno;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002092 cmdedit_setwidth();
2093 fflush_all();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002094 errno = sv_errno;
2095 } else {
2096 /* Signal main loop that redraw is necessary */
2097 S.SIGWINCH_count++;
2098 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002099}
Ron Yorston23286902018-02-25 20:09:54 +01002100#endif
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002101
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002102static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002103{
Denys Vlasenko020f4062009-05-17 16:44:54 +02002104 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002105#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002106 char unicode_buf[MB_CUR_MAX + 1];
2107 int unicode_idx = 0;
2108#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02002109
Denys Vlasenko038a9772016-11-28 01:10:16 +01002110 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002111 while (1) {
2112 /* Wait for input. TIMEOUT = -1 makes read_key wait even
2113 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
2114 * insist on full MB_CUR_MAX buffer to declare input like
2115 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
2116 *
2117 * Note: read_key sets errno to 0 on success.
2118 */
Ron Yorston23286902018-02-25 20:09:54 +01002119 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 1;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002120 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
Ron Yorston23286902018-02-25 20:09:54 +01002121 IF_FEATURE_EDITING_WINCH(S.ok_to_redraw = 0;)
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002122 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01002123#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002124 if (errno == EAGAIN && unicode_idx != 0)
2125 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01002126#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002127 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02002128 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002129
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002130#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2131 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002132 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02002133 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002134 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002135 if (cursor == 0) { /* otherwise it may be bogus */
2136 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002137 /*
2138 * Is col > cmdedit_prmt_len?
2139 * If yes (terminal says cursor is farther to the right
2140 * of where we think it should be),
2141 * the prompt wasn't printed starting at col 1,
2142 * there was additional text before it.
2143 */
2144 if ((int)(col - cmdedit_prmt_len) > 0) {
2145 /* Fix our understanding of current x position */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002146 cmdedit_x += (col - cmdedit_prmt_len);
2147 while (cmdedit_x >= cmdedit_termw) {
2148 cmdedit_x -= cmdedit_termw;
2149 cmdedit_y++;
2150 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02002151 }
2152 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002153 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02002154 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002155#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002156
Denys Vlasenko19158a82010-03-26 14:06:56 +01002157#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002158 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002159 wchar_t wc;
2160
2161 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002162 break;
2163 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002164
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002165 unicode_buf[unicode_idx++] = ic;
2166 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002167 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2168 /* Not (yet?) a valid unicode char */
2169 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002170 timeout = 50;
2171 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002172 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002173 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002174 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002175 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002176# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002177 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002178# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002179 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002180# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002181 } else {
2182 /* Valid unicode char, return its code */
2183 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002184 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002185 }
2186#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002187 break;
2188 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002189
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002190 return ic;
2191}
2192
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002193#if ENABLE_UNICODE_BIDI_SUPPORT
2194static int isrtl_str(void)
2195{
2196 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002197
2198 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002199 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002200 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002201}
2202#else
2203# define isrtl_str() 0
2204#endif
2205
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002206/* leave out the "vi-mode"-only case labels if vi editing isn't
2207 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002208#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002209
2210/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002211#undef CTRL
2212#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002213
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002214enum {
2215 VI_CMDMODE_BIT = 0x40000000,
2216 /* 0x80000000 bit flags KEYCODE_xxx */
2217};
2218
2219#if ENABLE_FEATURE_REVERSE_SEARCH
2220/* Mimic readline Ctrl-R reverse history search.
2221 * When invoked, it shows the following prompt:
2222 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2223 * and typing results in search being performed:
2224 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2225 * Search is performed by looking at progressively older lines in history.
2226 * Ctrl-R again searches for the next match in history.
2227 * Backspace deletes last matched char.
2228 * Control keys exit search and return to normal editing (at current history line).
2229 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002230static int32_t reverse_i_search(int timeout)
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002231{
2232 char match_buf[128]; /* for user input */
2233 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2234 const char *matched_history_line;
2235 const char *saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002236 unsigned saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002237 int32_t ic;
2238
2239 matched_history_line = NULL;
2240 read_key_buffer[0] = 0;
2241 match_buf[0] = '\0';
2242
2243 /* Save and replace the prompt */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002244 saved_prompt = prompt_last_line;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002245 saved_prmt_len = cmdedit_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002246 goto set_prompt;
2247
2248 while (1) {
2249 int h;
2250 unsigned match_buf_len = strlen(match_buf);
2251
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002252//FIXME: correct timeout? (i.e. count it down?)
2253 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002254
2255 switch (ic) {
2256 case CTRL('R'): /* searching for the next match */
2257 break;
2258
2259 case '\b':
2260 case '\x7f':
2261 /* Backspace */
2262 if (unicode_status == UNICODE_ON) {
2263 while (match_buf_len != 0) {
2264 uint8_t c = match_buf[--match_buf_len];
2265 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2266 break; /* yes */
2267 }
2268 } else {
2269 if (match_buf_len != 0)
2270 match_buf_len--;
2271 }
2272 match_buf[match_buf_len] = '\0';
2273 break;
2274
2275 default:
2276 if (ic < ' '
2277 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2278 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2279 ) {
2280 goto ret;
2281 }
2282
2283 /* Append this char */
2284#if ENABLE_UNICODE_SUPPORT
2285 if (unicode_status == UNICODE_ON) {
2286 mbstate_t mbstate = { 0 };
2287 char buf[MB_CUR_MAX + 1];
2288 int len = wcrtomb(buf, ic, &mbstate);
2289 if (len > 0) {
2290 buf[len] = '\0';
2291 if (match_buf_len + len < sizeof(match_buf))
2292 strcpy(match_buf + match_buf_len, buf);
2293 }
2294 } else
2295#endif
2296 if (match_buf_len < sizeof(match_buf) - 1) {
2297 match_buf[match_buf_len] = ic;
2298 match_buf[match_buf_len + 1] = '\0';
2299 }
2300 break;
2301 } /* switch (ic) */
2302
2303 /* Search in history for match_buf */
2304 h = state->cur_history;
2305 if (ic == CTRL('R'))
2306 h--;
2307 while (h >= 0) {
2308 if (state->history[h]) {
2309 char *match = strstr(state->history[h], match_buf);
2310 if (match) {
2311 state->cur_history = h;
2312 matched_history_line = state->history[h];
2313 command_len = load_string(matched_history_line);
2314 cursor = match - matched_history_line;
2315//FIXME: cursor position for Unicode case
2316
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002317 free((char*)prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002318 set_prompt:
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002319 prompt_last_line = xasprintf("(reverse-i-search)'%s': ", match_buf);
2320 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002321 goto do_redraw;
2322 }
2323 }
2324 h--;
2325 }
2326
2327 /* Not found */
2328 match_buf[match_buf_len] = '\0';
2329 beep();
2330 continue;
2331
2332 do_redraw:
2333 redraw(cmdedit_y, command_len - cursor);
2334 } /* while (1) */
2335
2336 ret:
2337 if (matched_history_line)
2338 command_len = load_string(matched_history_line);
2339
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002340 free((char*)prompt_last_line);
2341 prompt_last_line = saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002342 cmdedit_prmt_len = saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002343 redraw(cmdedit_y, command_len - cursor);
2344
2345 return ic;
2346}
2347#endif
2348
Denys Vlasenko23427a62018-12-08 15:45:46 +01002349#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002350static void sigaction2(int sig, struct sigaction *act)
2351{
2352 // Grr... gcc 8.1.1:
2353 // "passing argument 3 to restrict-qualified parameter aliases with argument 2"
2354 // dance around that...
2355 struct sigaction *oact FIX_ALIASING;
2356 oact = act;
2357 sigaction(sig, act, oact);
2358}
Denys Vlasenko23427a62018-12-08 15:45:46 +01002359#endif
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002360
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002361/* maxsize must be >= 2.
2362 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002363 * -1 on read errors or EOF, or on bare Ctrl-D,
2364 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002365 * (in both cases the cursor remains on the input line, '\n' is not printed)
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002366 * >0 length of input string, including terminating '\n'
2367 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002368int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize)
Erik Andersen13456d12000-03-16 08:09:57 +00002369{
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002370 int len, n;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002371 int timeout;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002372#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002373 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002374#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002375 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002376#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002377 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002378#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002379 struct termios initial_settings;
2380 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002381 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002382
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002383 INIT_S();
2384
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002385 n = get_termios_and_make_raw(STDIN_FILENO, &new_settings, &initial_settings, 0
2386 | TERMIOS_CLEAR_ISIG /* turn off INTR (ctrl-C), QUIT, SUSP */
2387 );
2388 if (n != 0 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON) {
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002389 /* Happens when e.g. stty -echo was run before.
2390 * But if ICANON is not set, we don't come here.
2391 * (example: interactive python ^Z-backgrounded,
2392 * tty is still in "raw mode").
2393 */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002394 parse_and_put_prompt(prompt);
Denys Vlasenko038a9772016-11-28 01:10:16 +01002395 fflush_all();
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002396 if (fgets(command, maxsize, stdin) == NULL)
2397 len = -1; /* EOF or error */
2398 else
2399 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002400 DEINIT_S();
2401 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002402 }
2403
Denys Vlasenko28055022010-01-04 20:49:58 +01002404 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002405
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002406// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002407 if (maxsize > MAX_LINELEN)
2408 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002409 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002410
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002411 timeout = -1;
2412 /* Make state->flags == 0 if st is NULL.
2413 * With zeroed flags, no other fields are ever referenced.
2414 */
2415 state = (line_input_t*) &const_int_0;
2416 if (st) {
2417 state = st;
2418 timeout = st->timeout;
2419 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002420#if MAX_HISTORY > 0
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002421 if (state->flags & DO_HISTORY) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002422# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002423 if (state->hist_file)
2424 if (state->cnt_history == 0)
2425 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002426# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002427 state->cur_history = state->cnt_history;
Denys Vlasenko779f96a2019-02-04 16:16:30 +01002428 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002429#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002430
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002431 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002432 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002433 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002434#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002435 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2436#else
Mark Whitley4e338752001-01-26 20:42:23 +00002437 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002438 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002439#endif
2440#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002441
Denis Vlasenko202ac502008-11-05 13:20:58 +00002442 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002443
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002444#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002445 {
2446 struct passwd *entry;
2447
2448 entry = getpwuid(geteuid());
2449 if (entry) {
2450 user_buf = xstrdup(entry->pw_name);
2451 home_pwd_buf = xstrdup(entry->pw_dir);
2452 }
2453 }
2454#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002455
2456#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002457 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002458 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002459 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2460#endif
2461
Denys Vlasenko0a677222017-11-08 13:38:12 +01002462 /* Get width (before printing prompt) */
2463 cmdedit_termw = get_terminal_width(STDIN_FILENO);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002464 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002465 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002466 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002467
Ron Yorston23286902018-02-25 20:09:54 +01002468#if ENABLE_FEATURE_EDITING_WINCH
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002469 /* Install window resize handler (NB: after *all* init is complete) */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002470 S.SIGWINCH_handler.sa_handler = win_changed;
2471 S.SIGWINCH_handler.sa_flags = SA_RESTART;
Denys Vlasenko136fe9b2018-12-08 13:49:15 +01002472 sigaction2(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002473#endif
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002474 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002475 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002476 /*
2477 * The emacs and vi modes share much of the code in the big
2478 * command loop. Commands entered when in vi's command mode
2479 * (aka "escape mode") get an extra bit added to distinguish
2480 * them - this keeps them from being self-inserted. This
2481 * clutters the big switch a bit, but keeps all the code
2482 * in one place.
2483 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002484 int32_t ic, ic_raw;
Ron Yorston23286902018-02-25 20:09:54 +01002485#if ENABLE_FEATURE_EDITING_WINCH
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002486 unsigned count;
2487
2488 count = S.SIGWINCH_count;
2489 if (S.SIGWINCH_saved != count) {
2490 S.SIGWINCH_saved = count;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002491 cmdedit_setwidth();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002492 }
Ron Yorston23286902018-02-25 20:09:54 +01002493#endif
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002494 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002495
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002496#if ENABLE_FEATURE_REVERSE_SEARCH
2497 again:
2498#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002499#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002500 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002501 if (vi_cmdmode) {
2502 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2503 * change ic if it contains one of them: */
2504 ic |= VI_CMDMODE_BIT;
2505 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002506#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002507
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002508 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002509 case '\n':
2510 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002511 vi_case('\n'|VI_CMDMODE_BIT:)
2512 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002513 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002514 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002515 break_out = 1;
2516 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002517 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002518 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002519 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002520 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002521 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002522 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002523 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002524 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002525 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002526 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002527 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002528 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002529 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002530 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002531 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002532 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002533 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002534 vi_case('l'|VI_CMDMODE_BIT:)
2535 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002536 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002537 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002538 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002539 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002540 if (!isrtl_str())
2541 input_backspace();
2542 else
2543 input_delete(0);
2544 break;
2545 case KEYCODE_DELETE:
2546 if (!isrtl_str())
2547 input_delete(0);
2548 else
2549 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002550 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002551#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002552 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002553 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002554 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002555#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002556 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002557 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002558 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002559 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002560 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002561 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002562 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002563 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002564 /* Control-l -- clear screen */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002565 /* cursor to top,left; clear to the end of screen */
2566 printf(ESC"[H" ESC"[J");
2567 draw_full(command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002568 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002569#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002570 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002571 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2572 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002573 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002574 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002575 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002576 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002577 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002578 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2579 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002580 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002581 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002582 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002583 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002584#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002585 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002586 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002587 /* Control-U -- Clear line before cursor */
2588 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002589 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002590 memmove(command_ps, command_ps + cursor,
2591 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002592 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002593 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002594 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002595 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002596 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002597 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002598 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002599 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002600 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002601 input_backspace();
2602 break;
Rostislav Skudnov2e4ef382016-11-24 15:04:00 +01002603 case KEYCODE_ALT_D: {
2604 /* Delete word forward */
2605 int nc, sc = cursor;
2606 ctrl_right();
2607 nc = cursor - sc;
2608 input_backward(nc);
2609 while (--nc >= 0)
2610 input_delete(1);
2611 break;
2612 }
2613 case KEYCODE_ALT_BACKSPACE: {
2614 /* Delete word backward */
2615 int sc = cursor;
2616 ctrl_left();
2617 while (sc-- > cursor)
2618 input_delete(1);
2619 break;
2620 }
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002621#if ENABLE_FEATURE_REVERSE_SEARCH
2622 case CTRL('R'):
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002623 ic = ic_raw = reverse_i_search(timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002624 goto again;
2625#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002626
Denis Vlasenko38f63192007-01-22 09:03:07 +00002627#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002628 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002629 vi_cmdmode = 0;
2630 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002631 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002632 input_backward(cursor);
2633 vi_cmdmode = 0;
2634 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002635 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002636 input_forward();
2637 vi_cmdmode = 0;
2638 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002639 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002640 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002641 vi_cmdmode = 0;
2642 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002643 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002644 input_delete(1);
2645 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002646 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002647 if (cursor > 0) {
2648 input_backward(1);
2649 input_delete(1);
2650 }
2651 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002652 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002653 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002654 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002655 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002656 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002657 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002658 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002659 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002660 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002661 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002662 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002663 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002664 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002665 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002666 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002667 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002668 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002669 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002670 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002671 vi_cmdmode = 0;
2672 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002673 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002674 goto clear_to_eol;
2675
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002676 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002677 vi_cmdmode = 0;
2678 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002679 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002680 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002681
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002682 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002683 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002684 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002685 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002686 input_backward(cursor);
2687 goto clear_to_eol;
2688 break;
2689 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002690
2691 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002692 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002693 case 'w':
2694 case 'W':
2695 case 'e':
2696 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002697 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002698 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002699 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002700 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002701 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002702 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002703 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002704 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002705 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002706 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002707 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002708 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002709 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002710 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002711 break;
2712 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002713 nc = cursor;
2714 input_backward(cursor - sc);
2715 while (nc-- > cursor)
2716 input_delete(1);
2717 break;
2718 case 'b': /* "db", "cb" */
2719 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002720 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002721 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002722 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002723 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002724 while (sc-- > cursor)
2725 input_delete(1);
2726 break;
2727 case ' ': /* "d ", "c " */
2728 input_delete(1);
2729 break;
2730 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002731 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002732 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002733 input_delete(1);
2734 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002735 }
2736 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002737 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002738 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002739 input_forward();
2740 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002741 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002742 put();
2743 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002744 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002745//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002746 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002747 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002748 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002749 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002750 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002751 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002752 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002753 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002754 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002755 }
2756 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002757 case '\x1b': /* ESC */
2758 if (state->flags & VI_MODE) {
2759 /* insert mode --> command mode */
2760 vi_cmdmode = 1;
2761 input_backward(1);
2762 }
2763 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002764#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002765
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002766#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002767 case KEYCODE_UP:
2768 if (get_previous_history())
2769 goto rewrite_line;
2770 beep();
2771 break;
2772 case KEYCODE_DOWN:
2773 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002774 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002775 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002776 /* Rewrite the line with the selected history item */
2777 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002778 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002779 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002780 /* redraw and go to eol (bol, in vi) */
2781 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2782 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002783#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002784 case KEYCODE_RIGHT:
2785 input_forward();
2786 break;
2787 case KEYCODE_LEFT:
2788 input_backward(1);
2789 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002790 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002791 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002792 ctrl_left();
2793 break;
2794 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002795 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002796 ctrl_right();
2797 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002798 case KEYCODE_HOME:
2799 input_backward(cursor);
2800 break;
2801 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002802 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002803 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002804
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002805 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002806 if (initial_settings.c_cc[VINTR] != 0
2807 && ic_raw == initial_settings.c_cc[VINTR]
2808 ) {
2809 /* Ctrl-C (usually) - stop gathering input */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002810 command_len = 0;
2811 break_out = -1; /* "do not append '\n'" */
2812 break;
2813 }
2814 if (initial_settings.c_cc[VEOF] != 0
2815 && ic_raw == initial_settings.c_cc[VEOF]
2816 ) {
2817 /* Ctrl-D (usually) - delete one character,
2818 * or exit if len=0 and no chars to delete */
2819 if (command_len == 0) {
2820 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002821
2822 case -1: /* error (e.g. EIO when tty is destroyed) */
2823 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002824 break_out = command_len = -1;
2825 break;
2826 }
2827 input_delete(0);
2828 break;
2829 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002830// /* Control-V -- force insert of next char */
2831// if (c == CTRL('V')) {
2832// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002833// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002834// if (c == 0) {
2835// beep();
2836// break;
2837// }
2838// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002839 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002840 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2841 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002842 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002843 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002844 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002845 * Otherwise, we are here if ic is a
2846 * control char or an unhandled ESC sequence,
2847 * which is also ignored.
2848 */
2849 break;
2850 }
2851 if ((int)command_len >= (maxsize - 2)) {
2852 /* Not enough space for the char and EOL */
2853 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002854 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002855
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002856 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002857 if (cursor == (command_len - 1)) {
2858 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002859 command_ps[cursor] = ic;
2860 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002861 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002862 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002863 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002864 } else {
2865 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002866 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002867
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002868 memmove(command_ps + sc + 1, command_ps + sc,
2869 (command_len - sc) * sizeof(command_ps[0]));
2870 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002871 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2872 if (!isrtl_str())
2873 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002874 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002875 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002876 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002877 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002878 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002879 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002880
2881 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002882 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002883
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002884#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002885 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002886 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002887#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002888 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002889
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002890#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002891 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002892 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2893 * We sent "ESC [ 6 n", but got '\n' first, and
2894 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2895 * It's bad already and not much can be done with it
2896 * (it _will_ be visible for the next process to read stdin),
2897 * but without this delay it even shows up on the screen
2898 * as garbage because we restore echo settings with tcsetattr
2899 * before it comes in. UGLY!
2900 */
2901 usleep(20*1000);
2902 }
2903#endif
2904
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002905/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002906#undef command
2907
Denys Vlasenko19158a82010-03-26 14:06:56 +01002908#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002909 command[0] = '\0';
2910 if (command_len > 0)
2911 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002912 free(command_ps);
2913#endif
2914
Flemming Madsend96ffda2013-04-07 18:47:24 +02002915 if (command_len > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002916 remember_in_history(command);
Flemming Madsend96ffda2013-04-07 18:47:24 +02002917 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002918
Eric Andersen27bb7902003-12-23 20:24:51 +00002919 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002920 command[command_len++] = '\n';
2921 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002922 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002923
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002924#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002925 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002926#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002927
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002928 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002929 tcsetattr_stdin_TCSANOW(&initial_settings);
Ron Yorston23286902018-02-25 20:09:54 +01002930#if ENABLE_FEATURE_EDITING_WINCH
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002931 /* restore SIGWINCH handler */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002932 sigaction_set(SIGWINCH, &S.SIGWINCH_handler);
Ron Yorston23286902018-02-25 20:09:54 +01002933#endif
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002934 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002935
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002936 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002937 DEINIT_S();
2938
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002939 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002940}
2941
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002942#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002943
2944#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002945int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002946{
2947 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002948 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002949 if (!fgets(command, maxsize, stdin))
2950 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002951 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002952}
2953
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002954#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002955
2956
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002957/*
2958 * Testing
2959 */
2960
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002961#ifdef TEST
2962
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002963#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002964
2965const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002966
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002967int main(int argc, char **argv)
2968{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002969 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002970 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002971#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002972 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2973 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
Denys Vlasenko8187e012017-09-13 22:48:30 +02002974 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002975#else
2976 "% ";
2977#endif
2978
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002979 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002980 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002981 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002982 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002983 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002984 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002985 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002986 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002987 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002988 return 0;
2989}
2990
Eric Andersenc470f442003-07-28 09:56:35 +00002991#endif /* TEST */