blob: 56e81404e0e032b1e53852dc4ddaacd622ec410a [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 Vlasenkoa17eeb82009-10-25 23:50:56 +010073static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010074# if ENABLE_FEATURE_EDITING_VI
Natanael Copa7e6f9312016-08-14 23:30:29 +020075static bool BB_isalnum_or_underscore(CHAR_T c) {
76 return ((unsigned)c < 256 && isalnum(c)) || c == '_';
77}
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010078# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010079static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020080# undef isspace
81# undef isalnum
82# undef ispunct
83# undef isprint
84# define isspace isspace_must_not_be_used
85# define isalnum isalnum_must_not_be_used
86# define ispunct ispunct_must_not_be_used
87# define isprint isprint_must_not_be_used
88#else
89# define BB_NUL '\0'
90# define CHAR_T char
91# define BB_isspace(c) isspace(c)
Natanael Copa7e6f9312016-08-14 23:30:29 +020092# if ENABLE_FEATURE_EDITING_VI
93static bool BB_isalnum_or_underscore(CHAR_T c) {
94 return ((unsigned)c < 256 && isalnum(c)) || c == '_';
95}
96# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020097# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020098#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020099#if ENABLE_UNICODE_PRESERVE_BROKEN
100# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
101# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
102#else
103# define unicode_is_raw_byte(wc) 0
104#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200105
106
Marek Polacek7b181072010-10-28 21:34:56 +0200107#define ESC "\033"
108
109#define SEQ_CLEAR_TILL_END_OF_SCREEN ESC"[J"
110//#define SEQ_CLEAR_TILL_END_OF_LINE ESC"[K"
Tomas Heinricha659b812010-04-29 13:43:39 +0200111
112
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000113enum {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000114 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000115 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000116 : 0x7ff0
117};
Robert Griebl350d26b2002-12-03 22:45:46 +0000118
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200119#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000120static const char null_str[] ALIGN1 = "";
121#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000122
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000123/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000124struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000125 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000126
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100127 unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
Mark Whitley4e338752001-01-26 20:42:23 +0000128
Denys Vlasenko020f4062009-05-17 16:44:54 +0200129 unsigned cmdedit_x; /* real x (col) terminal position */
130 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200131 unsigned cmdedit_prmt_len; /* on-screen length of last/sole prompt line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000132
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000133 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200134 int command_len; /* must be signed */
135 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200136 * to _not_ be promoted to unsigned */
137 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200138 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000139
140 const char *cmdedit_prompt;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200141 const char *prompt_last_line; /* last/sole prompt line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000142
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200143#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000144 char *user_buf;
145 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000146#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000147
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000148#if ENABLE_FEATURE_TAB_COMPLETION
149 char **matches;
150 unsigned num_matches;
151#endif
152
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100153 unsigned SIGWINCH_saved;
154 volatile unsigned SIGWINCH_count;
155 volatile smallint ok_to_redraw;
156
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000157#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200158# define DELBUFSIZ 128
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000159 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100160 CHAR_T *delptr;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200161 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000162#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100163#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100164 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100165#endif
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100166
167 /* Largish struct, keeping it last results in smaller code */
168 struct sigaction SIGWINCH_handler;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000169};
170
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000171/* See lineedit_ptr_hack.c */
172extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000173
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000174#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000175#define state (S.state )
176#define cmdedit_termw (S.cmdedit_termw )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000177#define cmdedit_x (S.cmdedit_x )
178#define cmdedit_y (S.cmdedit_y )
179#define cmdedit_prmt_len (S.cmdedit_prmt_len)
180#define cursor (S.cursor )
181#define command_len (S.command_len )
182#define command_ps (S.command_ps )
183#define cmdedit_prompt (S.cmdedit_prompt )
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200184#define prompt_last_line (S.prompt_last_line)
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000185#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000186#define home_pwd_buf (S.home_pwd_buf )
187#define matches (S.matches )
188#define num_matches (S.num_matches )
189#define delptr (S.delptr )
190#define newdelflag (S.newdelflag )
191#define delbuf (S.delbuf )
192
193#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000194 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000195 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000196 cmdedit_termw = 80; \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200197 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Shawn J. Goff46031da2013-02-27 18:30:05 +0100198 IF_FEATURE_EDITING_VI(delptr = delbuf;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000199} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200200
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000201static void deinit_S(void)
202{
203#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000204 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200205 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000206 free((char*)cmdedit_prompt);
207#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200208#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000209 free(user_buf);
210 if (home_pwd_buf != null_str)
211 free(home_pwd_buf);
212#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000213 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000214}
215#define DEINIT_S() deinit_S()
216
Denis Vlasenko2c844952008-04-25 18:44:35 +0000217
Denys Vlasenko19158a82010-03-26 14:06:56 +0100218#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200219static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200220{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100221 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200222 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100223 if (len < 0)
224 len = 0;
225 command_ps[len] = BB_NUL;
226 return len;
227 } else {
228 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200229 while (src[i] && i < S.maxsize - 1) {
230 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100231 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200232 }
233 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100234 return i;
235 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200236}
Tomas Heinricha659b812010-04-29 13:43:39 +0200237static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200238{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100239 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200240# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100241 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
242 if (len < 0)
243 len = 0;
244 dst[len] = '\0';
245 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200246# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100247 unsigned dstpos = 0;
248 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200249
Denys Vlasenko353680a2011-03-27 01:18:07 +0100250 maxsize--;
251 while (dstpos < maxsize) {
252 wchar_t wc;
253 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200254
Denys Vlasenko353680a2011-03-27 01:18:07 +0100255 /* Convert up to 1st invalid byte (or up to end) */
256 while ((wc = command_ps[srcpos]) != BB_NUL
257 && !unicode_is_raw_byte(wc)
258 ) {
259 srcpos++;
260 }
261 command_ps[srcpos] = BB_NUL;
262 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
263 if (n < 0) /* should not happen */
264 break;
265 dstpos += n;
266 if (wc == BB_NUL) /* usually is */
267 break;
268
269 /* We do have invalid byte here! */
270 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200271 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100272 if (dstpos == maxsize)
273 break;
274 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200275 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100276 dst[dstpos] = '\0';
277 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200278# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100279 } else {
280 unsigned i = 0;
281 while ((dst[i] = command_ps[i]) != 0)
282 i++;
283 return i;
284 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200285}
286/* I thought just fputwc(c, stdout) would work. But no... */
287static void BB_PUTCHAR(wchar_t c)
288{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100289 if (unicode_status == UNICODE_ON) {
290 char buf[MB_CUR_MAX + 1];
291 mbstate_t mbst = { 0 };
292 ssize_t len = wcrtomb(buf, c, &mbst);
293 if (len > 0) {
294 buf[len] = '\0';
295 fputs(buf, stdout);
296 }
297 } else {
298 /* In this case, c is always one byte */
299 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200300 }
301}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200302# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
303static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
304# else
305static wchar_t adjust_width_and_validate_wc(wchar_t wc)
306# define adjust_width_and_validate_wc(width_adj, wc) \
307 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
308# endif
309{
310 int w = 1;
311
312 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200313 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
314 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200315 goto subst;
316 }
317 w = wcwidth(wc);
318 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
319 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
320 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
321 ) {
322 subst:
323 w = 1;
324 wc = CONFIG_SUBST_WCHAR;
325 }
326 }
327
328# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
329 *width_adj += w;
330#endif
331 return wc;
332}
333#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200334static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200335{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200336 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200337 return strlen(command_ps);
338}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200339# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200340static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200341{
342 safe_strncpy(dst, command_ps, maxsize);
343}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200344# endif
345# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200346/* Should never be called: */
347int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200348#endif
349
350
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000351/* Put 'command_ps[cursor]', cursor++.
352 * Advance cursor on screen. If we reached right margin, scroll text up
353 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000354#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200355static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000356{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200357 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200358 unsigned width = 0;
359 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000360
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200361 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000362 /* erase character after end of input string */
363 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200364 } else {
365 /* advance cursor only if we aren't at the end yet */
366 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200367 if (unicode_status == UNICODE_ON) {
368 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
369 c = adjust_width_and_validate_wc(&cmdedit_x, c);
370 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
371 } else {
372 cmdedit_x++;
373 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000374 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200375
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200376 ofs_to_right = cmdedit_x - cmdedit_termw;
377 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
378 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200379 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000380 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200381
382 if (ofs_to_right >= 0) {
383 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000384#if HACK_FOR_WRONG_WIDTH
385 /* This works better if our idea of term width is wrong
386 * and it is actually wider (often happens on serial lines).
387 * Printing CR,LF *forces* cursor to next line.
388 * OTOH if terminal width is correct AND terminal does NOT
389 * have automargin (IOW: it is moving cursor to next line
390 * by itself (which is wrong for VT-10x terminals)),
391 * this will break things: there will be one extra empty line */
392 puts("\r"); /* + implicit '\n' */
393#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200394 /* VT-10x terminals don't wrap cursor to next line when last char
395 * on the line is printed - cursor stays "over" this char.
396 * Need to print _next_ char too (first one to appear on next line)
397 * to make cursor move down to next line.
398 */
399 /* Works ok only if cmdedit_termw is correct. */
400 c = command_ps[cursor];
401 if (c == BB_NUL)
402 c = ' ';
403 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000404 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000405#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200406 cmdedit_y++;
407 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
408 width = 0;
409 } else { /* ofs_to_right > 0 */
410 /* wide char c didn't fit on prev line */
411 BB_PUTCHAR(c);
412 }
413 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000414 }
Erik Andersen13456d12000-03-16 08:09:57 +0000415}
416
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000417/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200418static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000419{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000420 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200421 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000422}
423
424/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000425static void goto_new_line(void)
426{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200427 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200428 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000429 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000430}
431
Rob Landley88621d72006-08-29 19:41:06 +0000432static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000433{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000434 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000435}
436
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200437/* Full or last/sole prompt line, reset edit cursor, calculate terminal cursor.
438 * cmdedit_y is always calculated for the last/sole prompt line.
439 */
440static void put_prompt_custom(bool is_full)
Denys Vlasenko248c3242010-05-17 00:45:44 +0200441{
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200442 fputs((is_full ? cmdedit_prompt : prompt_last_line), stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200443 cursor = 0;
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100444 cmdedit_y = cmdedit_prmt_len / cmdedit_termw; /* new quasireal y */
445 cmdedit_x = cmdedit_prmt_len % cmdedit_termw;
Denys Vlasenko248c3242010-05-17 00:45:44 +0200446}
447
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200448#define put_prompt_last_line() put_prompt_custom(0)
449#define put_prompt() put_prompt_custom(1)
450
Eric Andersenaff114c2004-04-14 17:51:38 +0000451/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000452/* (optimized for slow terminals) */
453static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000454{
455 if (num > cursor)
456 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200457 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000458 return;
459 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000460
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200461 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
462 && unicode_status == UNICODE_ON
463 ) {
464 /* correct NUM to be equal to _screen_ width */
465 int n = num;
466 num = 0;
467 while (--n >= 0)
468 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
469 if (num == 0)
470 return;
471 }
472
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000473 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000474 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000475 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000476 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000477 * Also gets miscompiled for ARM users
478 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000479 * printf(("\b\b\b\b" + 4) - num);
480 * return;
481 */
482 do {
483 bb_putchar('\b');
484 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000485 return;
486 }
Marek Polacek7b181072010-10-28 21:34:56 +0200487 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000488 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000489 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000490
491 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200492 if (ENABLE_UNICODE_WIDE_WCHARS) {
493 /* With wide chars, it is hard to "backtrack"
494 * and reliably figure out where to put cursor.
495 * Example (<> is a wide char; # is an ordinary char, _ cursor):
496 * |prompt: <><> |
497 * |<><><><><><> |
498 * |_ |
499 * and user presses left arrow. num = 1, cmdedit_x = 0,
500 * We need to go up one line, and then - how do we know that
501 * we need to go *10* positions to the right? Because
502 * |prompt: <>#<>|
503 * |<><><>#<><><>|
504 * |_ |
505 * in this situation we need to go *11* positions to the right.
506 *
507 * A simpler thing to do is to redraw everything from the start
508 * up to new cursor position (which is already known):
509 */
510 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200511 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200512 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200513 cmdedit_y = 0;
514 sv_cursor = cursor;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200515 put_prompt_last_line(); /* sets cursor to 0 */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200516 while (cursor < sv_cursor)
517 put_cur_glyph_and_inc_cursor();
518 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200519 int lines_up;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200520 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200521 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200522 /* num=1...w: one line up, w+1...2w: two, etc: */
Denys Vlasenkobff71d32016-11-27 22:25:07 +0100523 lines_up = 1 + (num - 1) / cmdedit_termw;
524 cmdedit_x = (cmdedit_termw * cmdedit_y - num) % cmdedit_termw;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200525 cmdedit_y -= lines_up;
526 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200527 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200528 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200529 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
530 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200531 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200532 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000533 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000534}
535
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200536/* See redraw and draw_full below */
537static void draw_custom(int y, int back_cursor, bool is_full)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000538{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200539 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200540 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000541 bb_putchar('\r');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200542 put_prompt_custom(is_full);
Denys Vlasenko94043e82010-05-11 14:49:13 +0200543 put_till_end_and_adv_cursor();
544 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000545 input_backward(back_cursor);
546}
547
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +0200548/* Move y lines up, draw last/sole prompt line, editor line[s], and clear tail.
549 * goal: redraw the prompt+input+cursor in-place, overwriting the previous */
550#define redraw(y, back_cursor) draw_custom((y), (back_cursor), 0)
551
552/* Like above, but without moving up, and while using all the prompt lines.
553 * goal: draw a full prompt+input+cursor unrelated to a previous position.
554 * note: cmdedit_y always ends up relating to the last/sole prompt line */
555#define draw_full(back_cursor) draw_custom(0, (back_cursor), 1)
556
Paul Fox3f11b1b2005-08-04 19:04:46 +0000557/* Delete the char in front of the cursor, optionally saving it
558 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000559#if !ENABLE_FEATURE_EDITING_VI
560static void input_delete(void)
561#define input_delete(save) input_delete()
562#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000563static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000564#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000565{
Mark Whitley4e338752001-01-26 20:42:23 +0000566 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000567
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000568 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000569 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000570
Denis Vlasenko38f63192007-01-22 09:03:07 +0000571#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000572 if (save) {
573 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000574 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000575 newdelflag = 0;
576 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000577 if ((delptr - delbuf) < DELBUFSIZ)
578 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000579 }
580#endif
581
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200582 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200583 /* (command_len + 1 [because of NUL]) - (j + 1)
584 * simplified into (command_len - j) */
585 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000586 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200587 put_till_end_and_adv_cursor();
588 /* Last char is still visible, erase it (and more) */
589 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000590 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000591}
592
Denis Vlasenko38f63192007-01-22 09:03:07 +0000593#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000594static void put(void)
595{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000596 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000597 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000598
Paul Fox3f11b1b2005-08-04 19:04:46 +0000599 if (j == 0)
600 return;
601 ocursor = cursor;
602 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200603 memmove(command_ps + cursor + j, command_ps + cursor,
604 (command_len - cursor + 1) * sizeof(command_ps[0]));
605 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000606 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200607 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000608 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000609}
610#endif
611
Mark Whitley4e338752001-01-26 20:42:23 +0000612/* Delete the char in back of the cursor */
613static void input_backspace(void)
614{
615 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000616 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000617 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000618 }
619}
620
Eric Andersenaff114c2004-04-14 17:51:38 +0000621/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000622static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000623{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000624 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200625 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000626}
627
Denis Vlasenko38f63192007-01-22 09:03:07 +0000628#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000629
Mike Shalf3763032010-11-22 03:49:18 +0100630//FIXME:
631//needs to be more clever: currently it thinks that "foo\ b<TAB>
632//matches the file named "foo bar", which is untrue.
633//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
634//not "foo bar <cursor>...
635
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000636static void free_tab_completion_data(void)
637{
638 if (matches) {
639 while (num_matches)
640 free(matches[--num_matches]);
641 free(matches);
642 matches = NULL;
643 }
644}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000645
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000646static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000647{
Denys Vlasenkoc3797d42017-11-07 18:09:29 +0100648 unsigned char *p = (unsigned char*)matched;
649 while (*p) {
650 /* ESC attack fix: drop any string with control chars */
651 if (*p < ' '
652 || (!ENABLE_UNICODE_SUPPORT && *p >= 0x7f)
653 || (ENABLE_UNICODE_SUPPORT && *p == 0x7f)
654 ) {
655 free(matched);
656 return;
657 }
658 p++;
659 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000660 matches = xrealloc_vector(matches, 4, num_matches);
661 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000662 num_matches++;
663}
664
Mike Shalf3763032010-11-22 03:49:18 +0100665# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200666/* Replace "~user/..." with "/homedir/...".
667 * The parameter is malloced, free it or return it
668 * unchanged if no user is matched.
669 */
670static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000671{
672 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200673 char *tilde_name = ud;
674 char *home = NULL;
675
676 ud++; /* skip ~ */
677 if (*ud == '/') { /* "~/..." */
678 home = home_pwd_buf;
679 } else {
680 /* "~user/..." */
681 ud = strchr(ud, '/');
682 *ud = '\0'; /* "~user" */
683 entry = getpwnam(tilde_name + 1);
684 *ud = '/'; /* restore "~user/..." */
685 if (entry)
686 home = entry->pw_dir;
687 }
688 if (home) {
689 ud = concat_path_file(home, ud);
690 free(tilde_name);
691 tilde_name = ud;
692 }
693 return tilde_name;
694}
695
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200696/* ~use<tab> - find all users with this prefix.
697 * Return the length of the prefix used for matching.
698 */
699static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200700{
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100701 struct passwd *pw;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200702 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000703
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200704 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000705 userlen = strlen(ud);
706
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200707 setpwent();
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100708 while ((pw = getpwent()) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200709 /* Null usernames should result in all users as possible completions. */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100710 if (/* !ud[0] || */ is_prefixed_with(pw->pw_name, ud)) {
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100711 add_match(xasprintf("~%s/", pw->pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000712 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000713 }
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100714 endpwent(); /* don't keep password file open */
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200715
716 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000717}
Mike Shalf3763032010-11-22 03:49:18 +0100718# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000719
720enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000721 FIND_EXE_ONLY = 0,
722 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000723 FIND_FILE_ONLY = 2,
724};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000725
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200726static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000727{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000728 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000729 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000730 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000731 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000732
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000733 if (state->flags & WITH_PATH_LOOKUP)
734 pth = state->path_lookup;
735 else
736 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200737
738 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000739 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
740 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000741
Denis Vlasenko253ce002007-01-22 08:34:44 +0000742 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000743 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000744 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000745 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000746 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000747 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200748 tmp++;
749 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000750 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000751 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000752 }
753
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200754 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000755 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000756 npth = 1;
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;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000761 *tmp++ = '\0'; /* ':' -> '\0' */
762 if (*tmp == '\0')
763 break; /* :<empty> */
764 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000765 }
Mark Whitley4e338752001-01-26 20:42:23 +0000766 return npth;
767}
768
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200769/* Complete command, directory or file name.
770 * Return the length of the prefix used for matching.
771 */
772static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000773{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000774 char *path1[1];
775 char **paths = path1;
776 int npaths;
777 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200778 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200779 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200780 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000781
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000782 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000783 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000784
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200785 pfind = strrchr(command, '/');
786 if (!pfind) {
787 if (type == FIND_EXE_ONLY)
788 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000789 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000790 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000791 /* point to 'l' in "..../last_component" */
792 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200793 /* dirbuf = ".../.../.../" */
794 dirbuf = xstrndup(command, pfind - command);
Mike Shalf3763032010-11-22 03:49:18 +0100795# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200796 if (dirbuf[0] == '~') /* ~/... or ~user/... */
797 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100798# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200799 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000800 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200801 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000802
Denys Vlasenkof128bdb2017-07-29 00:59:24 +0200803# if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
Denys Vlasenko13360522016-10-24 01:25:05 +0200804 if (type == FIND_EXE_ONLY && !dirbuf) {
Ron Yorstonf23264b2015-05-29 11:31:40 +0100805 const char *p = applet_names;
806
Ron Yorston2b919582016-04-08 11:57:20 +0100807 while (*p) {
Ron Yorstonf23264b2015-05-29 11:31:40 +0100808 if (strncmp(pfind, p, pf_len) == 0)
809 add_match(xstrdup(p));
Ron Yorston2b919582016-04-08 11:57:20 +0100810 while (*p++ != '\0')
811 continue;
Ron Yorstonf23264b2015-05-29 11:31:40 +0100812 }
813 }
Denys Vlasenkof128bdb2017-07-29 00:59:24 +0200814# endif
Ron Yorstonf23264b2015-05-29 11:31:40 +0100815
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000816 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200817 DIR *dir;
818 struct dirent *next;
819 struct stat st;
820 char *found;
821
Mark Whitley4e338752001-01-26 20:42:23 +0000822 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000823 if (!dir)
824 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000825
826 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200827 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200828 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000829
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200830 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
831 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000832 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200833 /* match? */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100834 if (!is_prefixed_with(name_found, pfind))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200835 continue; /* no */
836
837 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000838 /* NB: stat() first so that we see is it a directory;
839 * but if that fails, use lstat() so that
840 * we still match dangling links */
841 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200842 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000843
Denys Vlasenko39263632010-09-03 14:11:08 +0200844 /* Save only name */
845 len = strlen(name_found);
846 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
847 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000848
Mark Whitley4e338752001-01-26 20:42:23 +0000849 if (S_ISDIR(st.st_mode)) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200850 /* name is a directory, add slash */
851 found[len] = '/';
852 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000853 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200854 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000855 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000856 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000857 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200858 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000859 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000860 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000861 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000862 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000863 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000864 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200865 } /* for every path */
866
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000867 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000868 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000869 free(paths);
870 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200871 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200872
873 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000874}
Erik Andersenf0657d32000-04-12 17:49:52 +0000875
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200876/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200877 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200878 * was pressed. This function looks at it, figures out what part of it
879 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200880 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200881 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200882#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200883/* Helpers: */
884/* QUOT is used on elements of int_buf[], which are bytes,
885 * not Unicode chars. Therefore it works correctly even in Unicode mode.
886 */
887#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200888static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200889{
890 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200891 if (beg == end)
892 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200893
894 while ((int_buf[beg] = int_buf[end]) != 0)
895 beg++, end++;
896
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200897 if (dbg_bmp) {
898 int i;
899 for (i = 0; int_buf[i]; i++)
900 bb_putchar((unsigned char)int_buf[i]);
901 bb_putchar('\n');
902 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200903}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200904/* Caller ensures that match_buf points to a malloced buffer
905 * big enough to hold strlen(match_buf)*2 + 2
906 */
907static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000908{
909 int i, j;
910 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200911 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000912
Denys Vlasenko76939e72010-09-03 14:09:24 +0200913 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200914
Denys Vlasenko76939e72010-09-03 14:09:24 +0200915 /* Copy in reverse order, since they overlap */
916 i = strlen(match_buf);
917 do {
918 int_buf[i] = (unsigned char)match_buf[i];
919 i--;
920 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000921
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200922 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200923 for (i = 0; int_buf[i]; i++) {
924 if (int_buf[i] == '\\') {
925 remove_chunk(int_buf, i, i + 1);
926 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000927 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200928 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200929 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200930 {
931 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200932 i = 0;
933 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200934 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200935 if (!cur)
936 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200937 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200938 if (!in_quote || (cur == in_quote)) {
939 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200940 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200941 continue;
942 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000943 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200944 if (in_quote)
945 int_buf[i] = cur | QUOT;
946 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200947 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000948 }
949
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200950 /* Remove everything up to command delimiters:
951 * ';' ';;' '&' '|' '&&' '||',
952 * but careful with '>&' '<&' '>|'
953 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000954 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200955 int cur = int_buf[i];
956 if (cur == ';' || cur == '&' || cur == '|') {
957 int prev = i ? int_buf[i - 1] : 0;
958 if (cur == '&' && (prev == '>' || prev == '<')) {
959 continue;
960 } else if (cur == '|' && prev == '>') {
961 continue;
962 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200963 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200964 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000965 }
966 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200967 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200968 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000969 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200970 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000971 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200972 /* `cmd` should count as a word:
973 * `cmd` c<tab> should search for files c*,
974 * not commands c*. Therefore we don't drop
975 * `cmd` entirely, we replace it with single `.
976 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200977 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200978 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000979 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200980 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200981 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200982 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200983 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200984 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000985 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200986 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000987
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200988 /* Remove "cmd (" and "cmd {"
989 * Example: "if { c<tab>"
990 * In this example, c should be matched as command pfx.
991 */
992 for (i = 0; int_buf[i]; i++) {
993 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200994 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +0200995 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000996 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200997 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000998
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200999 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001000 for (i = 0; int_buf[i]; i++)
1001 if (int_buf[i] != ' ')
1002 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001003 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001004
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001005 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001006 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001007 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001008 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001009 if (int_buf[i] == ' '
1010 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001011 && (char)int_buf[0] == 'c'
1012 && (char)int_buf[1] == 'd'
1013 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001014 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001015 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001016 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001017 command_mode = FIND_FILE_ONLY;
1018 break;
1019 }
1020 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001021 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001022 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001023
1024 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001025 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
1026 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001027 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001028 int cur = int_buf[i];
1029 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001030 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001031 break;
1032 }
1033 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001034
Denys Vlasenko76939e72010-09-03 14:09:24 +02001035 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001036 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001037 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001038 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001039
Denys Vlasenko76939e72010-09-03 14:09:24 +02001040 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001041
1042 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001043}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001044
Glenn L McGrath4d001292003-01-06 01:11:50 +00001045/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001046 * Display by column (original idea from ls applet,
1047 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001048 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001049static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001050{
1051 int ncols, row;
1052 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001053 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001054 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001055 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001056
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001057 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001058 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001059 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001060 if (column_width < l)
1061 column_width = l;
1062 }
1063 column_width += 2; /* min space for columns */
1064 ncols = cmdedit_termw / column_width;
1065
1066 if (ncols > 1) {
1067 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001068 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001069 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001070 } else {
1071 ncols = 1;
1072 }
1073 for (row = 0; row < nrows; row++) {
1074 int n = row;
1075 int nc;
1076
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001077 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001078 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001079 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001080 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001081 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001082 if (ENABLE_UNICODE_SUPPORT)
1083 puts(printable_string(NULL, matches[n]));
1084 else
1085 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001086 }
1087}
1088
Mike Shalf3763032010-11-22 03:49:18 +01001089static const char *is_special_char(char c)
1090{
1091 return strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", c);
1092}
1093
1094static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001095{
1096 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001097 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001098
1099 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001100 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001101 s[l++] = '\\';
1102 s[l++] = *found++;
1103 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001104 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001105 return s;
1106}
1107
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001108/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001109static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001110{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001111 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001112 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001113 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001114 /* Length of string used for matching */
1115 unsigned match_pfx_len = match_pfx_len;
1116 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001117# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001118 /* cursor pos in command converted to multibyte form */
1119 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001120# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001121 if (!(state->flags & TAB_COMPLETION))
1122 return;
1123
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001124 if (*lastWasTab) {
1125 /* The last char was a TAB too.
1126 * Print a list of all the available choices.
1127 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001128 if (num_matches > 0) {
1129 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001130 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001131 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001132 showfiles();
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001133 draw_full(command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001134 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001135 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001136 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001137
1138 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001139 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001140
Denys Vlasenko76939e72010-09-03 14:09:24 +02001141 /* Make a local copy of the string up to the position of the cursor.
1142 * build_match_prefix will expand it into int16_t's, need to allocate
1143 * twice as much as the string_len+1.
1144 * (we then also (ab)use this extra space later - see (**))
1145 */
1146 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001147# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001148 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001149# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001150 {
1151 CHAR_T wc = command_ps[cursor];
1152 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001153 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001154 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001155 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001156 }
Mike Shalf3763032010-11-22 03:49:18 +01001157# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001158 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001159
1160 /* Free up any memory already allocated */
1161 free_tab_completion_data();
1162
Mike Shalf3763032010-11-22 03:49:18 +01001163# if ENABLE_FEATURE_USERNAME_COMPLETION
1164 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001165 * then try completing this word as a username. */
1166 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001167 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1168 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001169# endif
1170 /* If complete_username() did not match,
1171 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001172 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001173 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001174
1175 /* Account for backslashes which will be inserted
1176 * by quote_special_chars() later */
1177 {
1178 const char *e = match_buf + strlen(match_buf);
1179 const char *s = e - match_pfx_len;
1180 while (s < e)
1181 if (is_special_char(*s++))
1182 match_pfx_len++;
1183 }
1184
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001185 /* Remove duplicates */
1186 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001187 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001188 qsort_string_vector(matches, num_matches);
1189 for (i = 0; i < num_matches - 1; ++i) {
1190 //if (matches[i] && matches[i+1]) { /* paranoia */
1191 if (strcmp(matches[i], matches[i+1]) == 0) {
1192 free(matches[i]);
1193 //matches[i] = NULL; /* paranoia */
1194 } else {
1195 matches[n++] = matches[i];
1196 }
1197 //}
1198 }
1199 matches[n++] = matches[i];
1200 num_matches = n;
1201 }
Mike Shalf3763032010-11-22 03:49:18 +01001202
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001203 /* Did we find exactly one match? */
1204 if (num_matches != 1) { /* no */
1205 char *cp;
1206 beep();
1207 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001208 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001209 /* Find common prefix */
1210 chosen_match = xstrdup(matches[0]);
1211 for (cp = chosen_match; *cp; cp++) {
1212 unsigned n;
1213 for (n = 1; n < num_matches; n++) {
1214 if (matches[n][cp - chosen_match] != *cp) {
1215 goto stop;
1216 }
1217 }
1218 }
1219 stop:
1220 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001221 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001222 }
1223 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001224 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001225 free(chosen_match);
1226 chosen_match = cp;
1227 len_found = strlen(chosen_match);
1228 } else { /* exactly one match */
1229 /* Next <tab> is not a double-tab */
1230 *lastWasTab = 0;
1231
Mike Shalf3763032010-11-22 03:49:18 +01001232 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001233 len_found = strlen(chosen_match);
1234 if (chosen_match[len_found-1] != '/') {
1235 chosen_match[len_found] = ' ';
1236 chosen_match[++len_found] = '\0';
1237 }
1238 }
1239
Mike Shalf3763032010-11-22 03:49:18 +01001240# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001241 /* Have space to place the match? */
1242 /* The result consists of three parts with these lengths: */
1243 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1244 /* it simplifies into: */
1245 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1246 int pos;
1247 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001248 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001249 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001250 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001251 command_len = strlen(command_ps);
1252 /* new pos */
1253 pos = cursor + len_found - match_pfx_len;
1254 /* write out the matched command */
1255 redraw(cmdedit_y, command_len - pos);
1256 }
Mike Shalf3763032010-11-22 03:49:18 +01001257# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001258 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001259 /* Use 2nd half of match_buf as scratch space - see (**) */
1260 char *command = match_buf + MAX_LINELEN;
1261 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001262 /* Have space to place the match? */
1263 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1264 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1265 int pos;
1266 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001267 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001268 /* where do we want to have cursor after all? */
1269 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001270 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001271 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001272 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001273 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001274 /* write out the matched command */
1275 /* paranoia: load_string can return 0 on conv error,
1276 * prevent passing pos = (0 - 12) to redraw */
1277 pos = command_len - len;
1278 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1279 }
1280 }
Mike Shalf3763032010-11-22 03:49:18 +01001281# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001282 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001283 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001284 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001285}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001286
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001287#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001288
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001289
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001290line_input_t* FAST_FUNC new_line_input_t(int flags)
1291{
1292 line_input_t *n = xzalloc(sizeof(*n));
1293 n->flags = flags;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02001294 n->timeout = -1;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001295#if MAX_HISTORY > 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001296 n->max_history = MAX_HISTORY;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001297#endif
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001298 return n;
1299}
1300
1301
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001302#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001303
Flemming Madsend96ffda2013-04-07 18:47:24 +02001304unsigned FAST_FUNC size_from_HISTFILESIZE(const char *hp)
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001305{
1306 int size = MAX_HISTORY;
1307 if (hp) {
1308 size = atoi(hp);
1309 if (size <= 0)
1310 return 1;
1311 if (size > MAX_HISTORY)
1312 return MAX_HISTORY;
1313 }
1314 return size;
1315}
1316
Denis Vlasenko682ad302008-09-27 01:28:56 +00001317static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001318{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001319 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001320 int cur = state->cur_history;
1321 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001322
Denys Vlasenko19158a82010-03-26 14:06:56 +01001323# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001324 {
1325 char tbuf[MAX_LINELEN];
1326 save_string(tbuf, sizeof(tbuf));
1327 state->history[cur] = xstrdup(tbuf);
1328 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001329# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001330 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001331# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001332 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001333}
1334
1335/* state->flags is already checked to be nonzero */
1336static int get_previous_history(void)
1337{
1338 if ((state->flags & DO_HISTORY) && state->cur_history) {
1339 save_command_ps_at_cur_history();
1340 state->cur_history--;
1341 return 1;
1342 }
1343 beep();
1344 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001345}
1346
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001347static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001348{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001349 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001350 if (state->cur_history < state->cnt_history) {
1351 save_command_ps_at_cur_history(); /* save the current history line */
1352 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001353 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001354 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001355 beep();
1356 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001357}
Robert Griebl350d26b2002-12-03 22:45:46 +00001358
Flemming Madsend96ffda2013-04-07 18:47:24 +02001359/* Lists command history. Used by shell 'history' builtins */
1360void FAST_FUNC show_history(const line_input_t *st)
1361{
1362 int i;
1363
1364 if (!st)
1365 return;
1366 for (i = 0; i < st->cnt_history; i++)
1367 printf("%4d %s\n", i, st->history[i]);
1368}
1369
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001370# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001371/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001372 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001373 * Otherwise shell users get unhappy.
1374 *
1375 * History file is trimmed lazily, when it grows several times longer
1376 * than configured MAX_HISTORY lines.
1377 */
1378
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001379static void free_line_input_t(line_input_t *n)
1380{
1381 int i = n->cnt_history;
1382 while (i > 0)
1383 free(n->history[--i]);
1384 free(n);
1385}
1386
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001387/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001388static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001389{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001390 char *temp_h[MAX_HISTORY];
1391 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001392 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001393 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001394
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001395 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001396
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001397 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001398 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001399 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001400 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001401 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001402 free(st_parm->history[idx]);
1403 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001404 }
1405
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001406 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1407 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001408 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001409 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001410 while ((line = xmalloc_fgetline(fp)) != NULL) {
1411 if (line[0] == '\0') {
1412 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001413 continue;
1414 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001415 free(temp_h[idx]);
1416 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001417 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001418 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001419 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001420 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001421 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001422 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001423
1424 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001425 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001426 while (temp_h[idx] == NULL) {
1427 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001428 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001429 idx = 0;
1430 }
1431 }
1432
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001433 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001434 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001435 line = temp_h[idx];
1436 if (!line)
1437 break;
1438 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001439 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001440 idx = 0;
1441 line_len = strlen(line);
1442 if (line_len >= MAX_LINELEN)
1443 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001444 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001445 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001446 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001447 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1448 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001449 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001450}
1451
Denys Vlasenkobede2152011-09-04 16:12:33 +02001452# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1453void save_history(line_input_t *st)
1454{
1455 FILE *fp;
1456
Denys Vlasenkobede2152011-09-04 16:12:33 +02001457 if (!st->hist_file)
1458 return;
1459 if (st->cnt_history <= st->cnt_history_in_file)
1460 return;
1461
1462 fp = fopen(st->hist_file, "a");
1463 if (fp) {
1464 int i, fd;
1465 char *new_name;
1466 line_input_t *st_temp;
1467
1468 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1469 fprintf(fp, "%s\n", st->history[i]);
1470 fclose(fp);
1471
1472 /* we may have concurrently written entries from others.
1473 * load them */
1474 st_temp = new_line_input_t(st->flags);
1475 st_temp->hist_file = st->hist_file;
1476 st_temp->max_history = st->max_history;
1477 load_history(st_temp);
1478
1479 /* write out temp file and replace hist_file atomically */
1480 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1481 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1482 if (fd >= 0) {
1483 fp = xfdopen_for_write(fd);
1484 for (i = 0; i < st_temp->cnt_history; i++)
1485 fprintf(fp, "%s\n", st_temp->history[i]);
1486 fclose(fp);
1487 if (rename(new_name, st->hist_file) == 0)
1488 st->cnt_history_in_file = st_temp->cnt_history;
1489 }
1490 free(new_name);
1491 free_line_input_t(st_temp);
1492 }
1493}
1494# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001495static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001496{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001497 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001498 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001499
Denys Vlasenkobede2152011-09-04 16:12:33 +02001500 if (!state->hist_file)
1501 return;
1502
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001503 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001504 if (fd < 0)
1505 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001506 xlseek(fd, 0, SEEK_END); /* paranoia */
1507 len = strlen(str);
1508 str[len] = '\n'; /* we (try to) do atomic write */
1509 len2 = full_write(fd, str, len + 1);
1510 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001511 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001512 if (len2 != len + 1)
1513 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001514
1515 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001516 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001517 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001518 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001519 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001520
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001521 /* we may have concurrently written entries from others.
1522 * load them */
1523 st_temp = new_line_input_t(state->flags);
1524 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001525 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001526 load_history(st_temp);
1527
1528 /* write out temp file and replace hist_file atomically */
1529 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001530 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001531 if (fd >= 0) {
1532 FILE *fp;
1533 int i;
1534
1535 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001536 for (i = 0; i < st_temp->cnt_history; i++)
1537 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001538 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001539 if (rename(new_name, state->hist_file) == 0)
1540 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001541 }
1542 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001543 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001544 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001545}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001546# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001547# else
1548# define load_history(a) ((void)0)
1549# define save_history(a) ((void)0)
1550# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001551
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001552static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001553{
1554 int i;
1555
1556 if (!(state->flags & DO_HISTORY))
1557 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001558 if (str[0] == '\0')
1559 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001560 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001561 /* Don't save dupes */
1562 if (i && strcmp(state->history[i-1], str) == 0)
1563 return;
1564
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001565 free(state->history[state->max_history]); /* redundant, paranoia */
1566 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001567
1568 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001569 /* we need to keep history[state->max_history] empty, hence >=, not > */
1570 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001571 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001572 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001573 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001574 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001575# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1576 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001577 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001578# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001579 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001580 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001581 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001582 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001583 state->cur_history = i;
1584 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001585# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1586 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001587# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001588}
1589
1590#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001591# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001592#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001593
1594
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001595#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001596/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001597 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001598 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001599static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001600vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001601{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001602 CHAR_T *command = command_ps;
1603
1604 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001605 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001606 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001607 input_forward();
1608}
1609
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001610static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001611vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001612{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001613 CHAR_T *command = command_ps;
1614
Natanael Copa7e6f9312016-08-14 23:30:29 +02001615 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001616 while (cursor < command_len
Natanael Copa7e6f9312016-08-14 23:30:29 +02001617 && (BB_isalnum_or_underscore(command[cursor+1]))
Denys Vlasenko13028922009-07-12 00:51:15 +02001618 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001619 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001620 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001621 } else if (BB_ispunct(command[cursor])) {
1622 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001623 input_forward();
1624 }
1625
Denis Vlasenko253ce002007-01-22 08:34:44 +00001626 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001627 input_forward();
1628
Denys Vlasenko13028922009-07-12 00:51:15 +02001629 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001630 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001631 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001632 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001633}
1634
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001635static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001636vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001637{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001638 CHAR_T *command = command_ps;
1639
Paul Fox3f11b1b2005-08-04 19:04:46 +00001640 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001641 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001642 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001643 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001644 input_forward();
1645}
1646
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001647static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001648vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001649{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001650 CHAR_T *command = command_ps;
1651
Denis Vlasenko253ce002007-01-22 08:34:44 +00001652 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001653 return;
1654 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001655 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001656 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001657 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001658 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001659 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001660 while (cursor < command_len-1
Natanael Copa7e6f9312016-08-14 23:30:29 +02001661 && (BB_isalnum_or_underscore(command[cursor+1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001662 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001663 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001664 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001665 } else if (BB_ispunct(command[cursor])) {
1666 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001667 input_forward();
1668 }
1669}
1670
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001671static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001672vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001673{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001674 CHAR_T *command = command_ps;
1675
1676 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001677 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001678 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001679 input_backward(1);
1680}
1681
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001682static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001683vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001684{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001685 CHAR_T *command = command_ps;
1686
Paul Fox3f11b1b2005-08-04 19:04:46 +00001687 if (cursor <= 0)
1688 return;
1689 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001690 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001691 input_backward(1);
1692 if (cursor <= 0)
1693 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001694 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001695 while (cursor > 0
Natanael Copa7e6f9312016-08-14 23:30:29 +02001696 && (BB_isalnum_or_underscore(command[cursor-1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001697 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001698 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001699 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001700 } else if (BB_ispunct(command[cursor])) {
1701 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001702 input_backward(1);
1703 }
1704}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001705#endif
1706
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001707/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1708static void ctrl_left(void)
1709{
1710 CHAR_T *command = command_ps;
1711
1712 while (1) {
1713 CHAR_T c;
1714
1715 input_backward(1);
1716 if (cursor == 0)
1717 break;
1718 c = command[cursor];
1719 if (c != ' ' && !BB_ispunct(c)) {
1720 /* we reached a "word" delimited by spaces/punct.
1721 * go to its beginning */
1722 while (1) {
1723 c = command[cursor - 1];
1724 if (c == ' ' || BB_ispunct(c))
1725 break;
1726 input_backward(1);
1727 if (cursor == 0)
1728 break;
1729 }
1730 break;
1731 }
1732 }
1733}
1734static void ctrl_right(void)
1735{
1736 CHAR_T *command = command_ps;
1737
1738 while (1) {
1739 CHAR_T c;
1740
1741 c = command[cursor];
1742 if (c == BB_NUL)
1743 break;
1744 if (c != ' ' && !BB_ispunct(c)) {
1745 /* we reached a "word" delimited by spaces/punct.
1746 * go to its end + 1 */
1747 while (1) {
1748 input_forward();
1749 c = command[cursor];
1750 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1751 break;
1752 }
1753 break;
1754 }
1755 input_forward();
1756 }
1757}
1758
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001759
1760/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001761 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001762 */
1763
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001764#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1765static void ask_terminal(void)
1766{
1767 /* Ask terminal where is the cursor now.
1768 * lineedit_read_key handles response and corrects
1769 * our idea of current cursor position.
1770 * Testcase: run "echo -n long_line_long_line_long_line",
1771 * then type in a long, wrapping command and try to
1772 * delete it using backspace key.
1773 * Note: we print it _after_ prompt, because
1774 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1775 */
1776 /* Problem: if there is buffered input on stdin,
1777 * the response will be delivered later,
1778 * possibly to an unsuspecting application.
1779 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1780 * Result:
1781 * ~/srcdevel/bbox/fix/busybox.t4 #
1782 * ~/srcdevel/bbox/fix/busybox.t4 #
1783 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1784 * ~/srcdevel/bbox/fix/busybox.t4 #
1785 *
1786 * Checking for input with poll only makes the race narrower,
1787 * I still can trigger it. Strace:
1788 *
1789 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1790 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1791 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001792 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001793 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1794 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001795 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001796
Denys Vlasenko451add42010-07-25 00:06:41 +02001797 pfd.fd = STDIN_FILENO;
1798 pfd.events = POLLIN;
1799 if (safe_poll(&pfd, 1, 0) == 0) {
1800 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001801 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001802 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001803 }
1804}
1805#else
1806#define ask_terminal() ((void)0)
1807#endif
1808
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001809/* Note about multi-line PS1 (e.g. "\n\w \u@\h\n> ") and prompt redrawing:
1810 *
1811 * If the prompt has any newlines, after we print it once we use only its last
1812 * line to redraw in-place, which makes it simpler to calculate how many lines
1813 * we should move the cursor up to align the redraw (cmdedit_y). The earlier
1814 * prompt lines just stay on screen and we redraw below them.
1815 *
1816 * Use cases for all prompt lines beyond the initial draw:
1817 * - After clear-screen (^L) or after displaying tab-completion choices, we
1818 * print the full prompt, as it isn't redrawn in-place.
1819 * - During terminal resize we could try to redraw all lines, but we don't,
1820 * because it requires delicate alignment, it's good enough with only the
1821 * last line, and doing it wrong is arguably worse than not doing it at all.
1822 *
1823 * Terminology wise, if it doesn't mention "full", then it means the last/sole
1824 * prompt line. We use the prompt (last/sole line) while redrawing in-place,
1825 * and the full where we need a fresh one unrelated to an earlier position.
1826 *
1827 * If PS1 is not multiline, the last/sole line and the full are the same string.
1828 */
1829
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001830/* Called just once at read_line_input() init time */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001831#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001832static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001833{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001834 const char *p;
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001835 cmdedit_prompt = prompt_last_line = prmt_ptr;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001836 p = strrchr(prmt_ptr, '\n');
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02001837 if (p)
1838 prompt_last_line = p + 1;
1839 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001840 put_prompt();
1841}
1842#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001843static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001844{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001845 int prmt_size = 0;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001846 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001847# if ENABLE_USERNAME_OR_HOMEDIR
1848 char *cwd_buf = NULL;
1849# endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001850 char flg_not_length = '[';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001851 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001852
Denys Vlasenko7a180432013-08-19 16:44:05 +02001853 /*cmdedit_prmt_len = 0; - already is */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001854
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001855 cbuf[1] = '\0'; /* never changes */
1856
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001857 while (*prmt_ptr) {
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001858 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001859 char *free_me = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001860 char *pbuf;
1861 char c;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001862
1863 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001864 c = *prmt_ptr++;
1865 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001866 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001867 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001868/*
1869 * Supported via bb_process_escape_sequence:
1870 * \a ASCII bell character (07)
1871 * \e ASCII escape character (033)
1872 * \n newline
1873 * \r carriage return
1874 * \\ backslash
1875 * \nnn char with octal code nnn
1876 * Supported:
1877 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001878 * \w current working directory, with $HOME abbreviated with a tilde
1879 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001880 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001881 * \h hostname up to the first '.'
1882 * \H hostname
1883 * \u username
1884 * \[ begin a sequence of non-printing characters
1885 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001886 * \T current time in 12-hour HH:MM:SS format
1887 * \@ current time in 12-hour am/pm format
1888 * \A current time in 24-hour HH:MM format
1889 * \t current time in 24-hour HH:MM:SS format
1890 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001891 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001892 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001893 * \# command number of this command
1894 * \j number of jobs currently managed by the shell
1895 * \l basename of the shell's terminal device name
1896 * \s name of the shell, the basename of $0 (the portion following the final slash)
1897 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001898 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1899 * \D{format}
1900 * format is passed to strftime(3).
1901 * An empty format results in a locale-specific time representation.
1902 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001903 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001904 * \v version of bash (e.g., 2.00)
1905 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01001906 cp = prmt_ptr;
1907 c = *cp;
1908 if (c != 't') /* don't treat \t as tab */
1909 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001910 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001911 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001912 break;
1913 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001914
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001915 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001916# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001917 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001918 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001919 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001920# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001921 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001922 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001923 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001924 if (c == 'h')
1925 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001926 break;
1927 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001928 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001929 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001930 case 'T': /* 12-hour HH:MM:SS format */
1931 case '@': /* 12-hour am/pm format */
1932 case 'A': /* 24-hour HH:MM format */
1933 case 't': /* 24-hour HH:MM:SS format */
1934 /* We show all of them as 24-hour HH:MM */
1935 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
1936 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001937 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001938# if ENABLE_USERNAME_OR_HOMEDIR
1939 case 'w': /* current dir */
1940 case 'W': /* basename of cur dir */
1941 if (!cwd_buf) {
1942 cwd_buf = xrealloc_getcwd_or_warn(NULL);
1943 if (!cwd_buf)
1944 cwd_buf = (char *)bb_msg_unknown;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001945 else if (home_pwd_buf[0]) {
1946 char *after_home_user;
1947
Denys Vlasenko1d145692013-03-29 13:09:05 +01001948 /* /home/user[/something] -> ~[/something] */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001949 after_home_user = is_prefixed_with(cwd_buf, home_pwd_buf);
1950 if (after_home_user
1951 && (*after_home_user == '/' || *after_home_user == '\0')
Denys Vlasenko1d145692013-03-29 13:09:05 +01001952 ) {
1953 cwd_buf[0] = '~';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001954 overlapping_strcpy(cwd_buf + 1, after_home_user);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001955 }
1956 }
1957 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001958 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001959 if (c == 'w')
1960 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001961 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01001962 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01001963 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001964 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001965# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001966// bb_process_escape_sequence does this now:
1967// case 'e': case 'E': /* \e \E = \033 */
1968// c = '\033';
1969// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001970 case 'x': case 'X': {
1971 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001972 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001973 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001974 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001975 buf2[l] = '\0';
1976 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001977 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001978 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001979 break;
1980 }
1981 prmt_ptr++;
1982 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001983 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001984 if (c == 0)
1985 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001986 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001987 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001988 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001989 case '[': case ']':
1990 if (c == flg_not_length) {
Denys Vlasenko7a180432013-08-19 16:44:05 +02001991 /* Toggle '['/']' hex 5b/5d */
1992 flg_not_length ^= 6;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001993 continue;
1994 }
1995 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001996 } /* switch */
1997 } /* if */
1998 } /* if */
1999 cbuf[0] = c;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002000 {
2001 int n = strlen(pbuf);
2002 prmt_size += n;
2003 if (c == '\n')
2004 cmdedit_prmt_len = 0;
2005 else if (flg_not_length != ']') {
2006#if 0 /*ENABLE_UNICODE_SUPPORT*/
2007/* Won't work, pbuf is one BYTE string here instead of an one Unicode char string. */
2008/* FIXME */
Denys Vlasenko1b9ac212013-08-20 16:13:05 +02002009 cmdedit_prmt_len += unicode_strwidth(pbuf);
Denys Vlasenko7a180432013-08-19 16:44:05 +02002010#else
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002011 cmdedit_prmt_len += n;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002012#endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002013 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02002014 }
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02002015 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_size+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002016 free(free_me);
2017 } /* while */
2018
Denys Vlasenko1d145692013-03-29 13:09:05 +01002019# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00002020 if (cwd_buf != (char *)bb_msg_unknown)
2021 free(cwd_buf);
Denys Vlasenko1d145692013-03-29 13:09:05 +01002022# endif
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002023 /* see comment (above this function) about multiline prompt redrawing */
2024 cmdedit_prompt = prompt_last_line = prmt_mem_ptr;
2025 prmt_ptr = strrchr(cmdedit_prompt, '\n');
2026 if (prmt_ptr)
2027 prompt_last_line = prmt_ptr + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002028 put_prompt();
2029}
Paul Fox3f11b1b2005-08-04 19:04:46 +00002030#endif
2031
Denys Vlasenko038a9772016-11-28 01:10:16 +01002032static void cmdedit_setwidth(void)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002033{
Denys Vlasenko038a9772016-11-28 01:10:16 +01002034 int new_y;
2035
2036 cmdedit_termw = get_terminal_width(STDIN_FILENO);
2037 /* new y for current cursor */
2038 new_y = (cursor + cmdedit_prmt_len) / cmdedit_termw;
2039 /* redraw */
2040 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002041}
2042
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002043static void win_changed(int nsig UNUSED_PARAM)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002044{
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002045 if (S.ok_to_redraw) {
2046 /* We are in read_key(), safe to redraw immediately */
2047 int sv_errno = errno;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002048 cmdedit_setwidth();
2049 fflush_all();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002050 errno = sv_errno;
2051 } else {
2052 /* Signal main loop that redraw is necessary */
2053 S.SIGWINCH_count++;
2054 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002055}
2056
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002057static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002058{
Denys Vlasenko020f4062009-05-17 16:44:54 +02002059 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002060#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002061 char unicode_buf[MB_CUR_MAX + 1];
2062 int unicode_idx = 0;
2063#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02002064
Denys Vlasenko038a9772016-11-28 01:10:16 +01002065 fflush_all();
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002066 while (1) {
2067 /* Wait for input. TIMEOUT = -1 makes read_key wait even
2068 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
2069 * insist on full MB_CUR_MAX buffer to declare input like
2070 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
2071 *
2072 * Note: read_key sets errno to 0 on success.
2073 */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002074 S.ok_to_redraw = 1;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002075 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002076 S.ok_to_redraw = 0;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002077 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01002078#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002079 if (errno == EAGAIN && unicode_idx != 0)
2080 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01002081#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002082 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02002083 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002084
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002085#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2086 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002087 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02002088 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002089 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002090 if (cursor == 0) { /* otherwise it may be bogus */
2091 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002092 /*
2093 * Is col > cmdedit_prmt_len?
2094 * If yes (terminal says cursor is farther to the right
2095 * of where we think it should be),
2096 * the prompt wasn't printed starting at col 1,
2097 * there was additional text before it.
2098 */
2099 if ((int)(col - cmdedit_prmt_len) > 0) {
2100 /* Fix our understanding of current x position */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002101 cmdedit_x += (col - cmdedit_prmt_len);
2102 while (cmdedit_x >= cmdedit_termw) {
2103 cmdedit_x -= cmdedit_termw;
2104 cmdedit_y++;
2105 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02002106 }
2107 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002108 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02002109 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002110#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002111
Denys Vlasenko19158a82010-03-26 14:06:56 +01002112#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002113 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002114 wchar_t wc;
2115
2116 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002117 break;
2118 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002119
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002120 unicode_buf[unicode_idx++] = ic;
2121 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002122 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2123 /* Not (yet?) a valid unicode char */
2124 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002125 timeout = 50;
2126 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002127 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002128 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002129 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002130 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002131# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002132 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002133# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002134 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002135# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002136 } else {
2137 /* Valid unicode char, return its code */
2138 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002139 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002140 }
2141#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002142 break;
2143 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002144
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002145 return ic;
2146}
2147
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002148#if ENABLE_UNICODE_BIDI_SUPPORT
2149static int isrtl_str(void)
2150{
2151 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002152
2153 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002154 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002155 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002156}
2157#else
2158# define isrtl_str() 0
2159#endif
2160
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002161/* leave out the "vi-mode"-only case labels if vi editing isn't
2162 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002163#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002164
2165/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002166#undef CTRL
2167#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002168
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002169enum {
2170 VI_CMDMODE_BIT = 0x40000000,
2171 /* 0x80000000 bit flags KEYCODE_xxx */
2172};
2173
2174#if ENABLE_FEATURE_REVERSE_SEARCH
2175/* Mimic readline Ctrl-R reverse history search.
2176 * When invoked, it shows the following prompt:
2177 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2178 * and typing results in search being performed:
2179 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2180 * Search is performed by looking at progressively older lines in history.
2181 * Ctrl-R again searches for the next match in history.
2182 * Backspace deletes last matched char.
2183 * Control keys exit search and return to normal editing (at current history line).
2184 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002185static int32_t reverse_i_search(int timeout)
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002186{
2187 char match_buf[128]; /* for user input */
2188 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2189 const char *matched_history_line;
2190 const char *saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002191 unsigned saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002192 int32_t ic;
2193
2194 matched_history_line = NULL;
2195 read_key_buffer[0] = 0;
2196 match_buf[0] = '\0';
2197
2198 /* Save and replace the prompt */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002199 saved_prompt = prompt_last_line;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002200 saved_prmt_len = cmdedit_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002201 goto set_prompt;
2202
2203 while (1) {
2204 int h;
2205 unsigned match_buf_len = strlen(match_buf);
2206
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002207//FIXME: correct timeout? (i.e. count it down?)
2208 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002209
2210 switch (ic) {
2211 case CTRL('R'): /* searching for the next match */
2212 break;
2213
2214 case '\b':
2215 case '\x7f':
2216 /* Backspace */
2217 if (unicode_status == UNICODE_ON) {
2218 while (match_buf_len != 0) {
2219 uint8_t c = match_buf[--match_buf_len];
2220 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2221 break; /* yes */
2222 }
2223 } else {
2224 if (match_buf_len != 0)
2225 match_buf_len--;
2226 }
2227 match_buf[match_buf_len] = '\0';
2228 break;
2229
2230 default:
2231 if (ic < ' '
2232 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2233 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2234 ) {
2235 goto ret;
2236 }
2237
2238 /* Append this char */
2239#if ENABLE_UNICODE_SUPPORT
2240 if (unicode_status == UNICODE_ON) {
2241 mbstate_t mbstate = { 0 };
2242 char buf[MB_CUR_MAX + 1];
2243 int len = wcrtomb(buf, ic, &mbstate);
2244 if (len > 0) {
2245 buf[len] = '\0';
2246 if (match_buf_len + len < sizeof(match_buf))
2247 strcpy(match_buf + match_buf_len, buf);
2248 }
2249 } else
2250#endif
2251 if (match_buf_len < sizeof(match_buf) - 1) {
2252 match_buf[match_buf_len] = ic;
2253 match_buf[match_buf_len + 1] = '\0';
2254 }
2255 break;
2256 } /* switch (ic) */
2257
2258 /* Search in history for match_buf */
2259 h = state->cur_history;
2260 if (ic == CTRL('R'))
2261 h--;
2262 while (h >= 0) {
2263 if (state->history[h]) {
2264 char *match = strstr(state->history[h], match_buf);
2265 if (match) {
2266 state->cur_history = h;
2267 matched_history_line = state->history[h];
2268 command_len = load_string(matched_history_line);
2269 cursor = match - matched_history_line;
2270//FIXME: cursor position for Unicode case
2271
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002272 free((char*)prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002273 set_prompt:
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002274 prompt_last_line = xasprintf("(reverse-i-search)'%s': ", match_buf);
2275 cmdedit_prmt_len = unicode_strwidth(prompt_last_line);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002276 goto do_redraw;
2277 }
2278 }
2279 h--;
2280 }
2281
2282 /* Not found */
2283 match_buf[match_buf_len] = '\0';
2284 beep();
2285 continue;
2286
2287 do_redraw:
2288 redraw(cmdedit_y, command_len - cursor);
2289 } /* while (1) */
2290
2291 ret:
2292 if (matched_history_line)
2293 command_len = load_string(matched_history_line);
2294
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002295 free((char*)prompt_last_line);
2296 prompt_last_line = saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002297 cmdedit_prmt_len = saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002298 redraw(cmdedit_y, command_len - cursor);
2299
2300 return ic;
2301}
2302#endif
2303
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002304/* maxsize must be >= 2.
2305 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002306 * -1 on read errors or EOF, or on bare Ctrl-D,
2307 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002308 * (in both cases the cursor remains on the input line, '\n' is not printed)
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002309 * >0 length of input string, including terminating '\n'
2310 */
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002311int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize)
Erik Andersen13456d12000-03-16 08:09:57 +00002312{
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002313 int len, n;
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002314 int timeout;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002315#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002316 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002317#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002318 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002319#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002320 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002321#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002322 struct termios initial_settings;
2323 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002324 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002325
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002326 INIT_S();
2327
Denys Vlasenkoaaaaaa52017-09-15 17:14:01 +02002328 n = get_termios_and_make_raw(STDIN_FILENO, &new_settings, &initial_settings, 0
2329 | TERMIOS_CLEAR_ISIG /* turn off INTR (ctrl-C), QUIT, SUSP */
2330 );
2331 if (n != 0 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON) {
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002332 /* Happens when e.g. stty -echo was run before.
2333 * But if ICANON is not set, we don't come here.
2334 * (example: interactive python ^Z-backgrounded,
2335 * tty is still in "raw mode").
2336 */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002337 parse_and_put_prompt(prompt);
Denys Vlasenko038a9772016-11-28 01:10:16 +01002338 fflush_all();
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002339 if (fgets(command, maxsize, stdin) == NULL)
2340 len = -1; /* EOF or error */
2341 else
2342 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002343 DEINIT_S();
2344 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002345 }
2346
Denys Vlasenko28055022010-01-04 20:49:58 +01002347 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002348
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002349// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002350 if (maxsize > MAX_LINELEN)
2351 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002352 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002353
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002354 timeout = -1;
2355 /* Make state->flags == 0 if st is NULL.
2356 * With zeroed flags, no other fields are ever referenced.
2357 */
2358 state = (line_input_t*) &const_int_0;
2359 if (st) {
2360 state = st;
2361 timeout = st->timeout;
2362 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002363#if MAX_HISTORY > 0
2364# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02002365 if (state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00002366 if (state->cnt_history == 0)
2367 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002368# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002369 if (state->flags & DO_HISTORY)
2370 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002371#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002372
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002373 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002374 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002375 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002376#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002377 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2378#else
Mark Whitley4e338752001-01-26 20:42:23 +00002379 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002380 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002381#endif
2382#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002383
Denis Vlasenko202ac502008-11-05 13:20:58 +00002384 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002385
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002386#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002387 {
2388 struct passwd *entry;
2389
2390 entry = getpwuid(geteuid());
2391 if (entry) {
2392 user_buf = xstrdup(entry->pw_name);
2393 home_pwd_buf = xstrdup(entry->pw_dir);
2394 }
2395 }
2396#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002397
2398#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002399 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002400 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002401 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2402#endif
2403
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002404 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002405 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002406 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002407
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002408 /* Install window resize handler (NB: after *all* init is complete) */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002409 S.SIGWINCH_handler.sa_handler = win_changed;
2410 S.SIGWINCH_handler.sa_flags = SA_RESTART;
2411 sigaction(SIGWINCH, &S.SIGWINCH_handler, &S.SIGWINCH_handler);
2412
Denys Vlasenko038a9772016-11-28 01:10:16 +01002413 cmdedit_termw = get_terminal_width(STDIN_FILENO);
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002414
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002415 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002416 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002417 /*
2418 * The emacs and vi modes share much of the code in the big
2419 * command loop. Commands entered when in vi's command mode
2420 * (aka "escape mode") get an extra bit added to distinguish
2421 * them - this keeps them from being self-inserted. This
2422 * clutters the big switch a bit, but keeps all the code
2423 * in one place.
2424 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002425 int32_t ic, ic_raw;
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002426 unsigned count;
2427
2428 count = S.SIGWINCH_count;
2429 if (S.SIGWINCH_saved != count) {
2430 S.SIGWINCH_saved = count;
Denys Vlasenko038a9772016-11-28 01:10:16 +01002431 cmdedit_setwidth();
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002432 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002433
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002434 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002435
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002436#if ENABLE_FEATURE_REVERSE_SEARCH
2437 again:
2438#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002439#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002440 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002441 if (vi_cmdmode) {
2442 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2443 * change ic if it contains one of them: */
2444 ic |= VI_CMDMODE_BIT;
2445 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002446#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002447
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002448 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002449 case '\n':
2450 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002451 vi_case('\n'|VI_CMDMODE_BIT:)
2452 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002453 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002454 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002455 break_out = 1;
2456 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002457 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002458 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002459 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002460 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002461 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002462 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002463 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002464 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002465 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002466 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002467 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002468 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002469 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002470 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002471 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002472 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002473 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002474 vi_case('l'|VI_CMDMODE_BIT:)
2475 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002476 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002477 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002478 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002479 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002480 if (!isrtl_str())
2481 input_backspace();
2482 else
2483 input_delete(0);
2484 break;
2485 case KEYCODE_DELETE:
2486 if (!isrtl_str())
2487 input_delete(0);
2488 else
2489 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002490 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002491#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002492 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002493 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002494 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002495#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002496 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002497 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002498 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002499 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002500 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002501 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002502 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002503 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002504 /* Control-l -- clear screen */
Avi Halachmi0fd5dbb2017-10-12 16:38:35 +02002505 /* cursor to top,left; clear to the end of screen */
2506 printf(ESC"[H" ESC"[J");
2507 draw_full(command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002508 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002509#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002510 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002511 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2512 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002513 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002514 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002515 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002516 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002517 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002518 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2519 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002520 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002521 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002522 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002523 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002524#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002525 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002526 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002527 /* Control-U -- Clear line before cursor */
2528 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002529 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002530 memmove(command_ps, command_ps + cursor,
2531 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002532 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002533 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002534 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002535 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002536 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002537 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002538 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002539 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002540 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002541 input_backspace();
2542 break;
Rostislav Skudnov2e4ef382016-11-24 15:04:00 +01002543 case KEYCODE_ALT_D: {
2544 /* Delete word forward */
2545 int nc, sc = cursor;
2546 ctrl_right();
2547 nc = cursor - sc;
2548 input_backward(nc);
2549 while (--nc >= 0)
2550 input_delete(1);
2551 break;
2552 }
2553 case KEYCODE_ALT_BACKSPACE: {
2554 /* Delete word backward */
2555 int sc = cursor;
2556 ctrl_left();
2557 while (sc-- > cursor)
2558 input_delete(1);
2559 break;
2560 }
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002561#if ENABLE_FEATURE_REVERSE_SEARCH
2562 case CTRL('R'):
Denys Vlasenko84ea60e2017-08-02 17:27:28 +02002563 ic = ic_raw = reverse_i_search(timeout);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002564 goto again;
2565#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002566
Denis Vlasenko38f63192007-01-22 09:03:07 +00002567#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002568 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002569 vi_cmdmode = 0;
2570 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002571 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002572 input_backward(cursor);
2573 vi_cmdmode = 0;
2574 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002575 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002576 input_forward();
2577 vi_cmdmode = 0;
2578 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002579 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002580 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002581 vi_cmdmode = 0;
2582 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002583 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002584 input_delete(1);
2585 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002586 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002587 if (cursor > 0) {
2588 input_backward(1);
2589 input_delete(1);
2590 }
2591 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002592 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002593 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002594 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002595 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002596 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002597 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002598 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002599 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002600 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002601 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002602 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002603 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002604 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002605 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002606 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002607 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002608 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002609 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002610 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002611 vi_cmdmode = 0;
2612 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002613 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002614 goto clear_to_eol;
2615
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002616 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002617 vi_cmdmode = 0;
2618 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002619 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002620 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002621
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002622 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002623 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002624 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002625 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002626 input_backward(cursor);
2627 goto clear_to_eol;
2628 break;
2629 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002630
2631 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002632 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002633 case 'w':
2634 case 'W':
2635 case 'e':
2636 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002637 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002638 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002639 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002640 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002641 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002642 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002643 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002644 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002645 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002646 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002647 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002648 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002649 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002650 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002651 break;
2652 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002653 nc = cursor;
2654 input_backward(cursor - sc);
2655 while (nc-- > cursor)
2656 input_delete(1);
2657 break;
2658 case 'b': /* "db", "cb" */
2659 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002660 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002661 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002662 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002663 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002664 while (sc-- > cursor)
2665 input_delete(1);
2666 break;
2667 case ' ': /* "d ", "c " */
2668 input_delete(1);
2669 break;
2670 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002671 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002672 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002673 input_delete(1);
2674 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002675 }
2676 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002677 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002678 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002679 input_forward();
2680 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002681 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002682 put();
2683 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002684 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002685//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002686 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002687 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002688 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002689 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002690 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002691 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002692 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002693 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002694 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002695 }
2696 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002697 case '\x1b': /* ESC */
2698 if (state->flags & VI_MODE) {
2699 /* insert mode --> command mode */
2700 vi_cmdmode = 1;
2701 input_backward(1);
2702 }
2703 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002704#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002705
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002706#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002707 case KEYCODE_UP:
2708 if (get_previous_history())
2709 goto rewrite_line;
2710 beep();
2711 break;
2712 case KEYCODE_DOWN:
2713 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002714 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002715 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002716 /* Rewrite the line with the selected history item */
2717 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002718 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002719 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002720 /* redraw and go to eol (bol, in vi) */
2721 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2722 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002723#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002724 case KEYCODE_RIGHT:
2725 input_forward();
2726 break;
2727 case KEYCODE_LEFT:
2728 input_backward(1);
2729 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002730 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002731 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002732 ctrl_left();
2733 break;
2734 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002735 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002736 ctrl_right();
2737 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002738 case KEYCODE_HOME:
2739 input_backward(cursor);
2740 break;
2741 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002742 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002743 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002744
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002745 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002746 if (initial_settings.c_cc[VINTR] != 0
2747 && ic_raw == initial_settings.c_cc[VINTR]
2748 ) {
2749 /* Ctrl-C (usually) - stop gathering input */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002750 command_len = 0;
2751 break_out = -1; /* "do not append '\n'" */
2752 break;
2753 }
2754 if (initial_settings.c_cc[VEOF] != 0
2755 && ic_raw == initial_settings.c_cc[VEOF]
2756 ) {
2757 /* Ctrl-D (usually) - delete one character,
2758 * or exit if len=0 and no chars to delete */
2759 if (command_len == 0) {
2760 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002761
2762 case -1: /* error (e.g. EIO when tty is destroyed) */
2763 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002764 break_out = command_len = -1;
2765 break;
2766 }
2767 input_delete(0);
2768 break;
2769 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002770// /* Control-V -- force insert of next char */
2771// if (c == CTRL('V')) {
2772// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002773// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002774// if (c == 0) {
2775// beep();
2776// break;
2777// }
2778// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002779 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002780 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2781 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002782 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002783 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002784 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002785 * Otherwise, we are here if ic is a
2786 * control char or an unhandled ESC sequence,
2787 * which is also ignored.
2788 */
2789 break;
2790 }
2791 if ((int)command_len >= (maxsize - 2)) {
2792 /* Not enough space for the char and EOL */
2793 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002794 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002795
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002796 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002797 if (cursor == (command_len - 1)) {
2798 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002799 command_ps[cursor] = ic;
2800 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002801 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002802 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002803 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002804 } else {
2805 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002806 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002807
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002808 memmove(command_ps + sc + 1, command_ps + sc,
2809 (command_len - sc) * sizeof(command_ps[0]));
2810 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002811 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2812 if (!isrtl_str())
2813 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002814 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002815 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002816 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002817 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002818 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002819 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002820
2821 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002822 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002823
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002824#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002825 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002826 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002827#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002828 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002829
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002830#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002831 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002832 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2833 * We sent "ESC [ 6 n", but got '\n' first, and
2834 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2835 * It's bad already and not much can be done with it
2836 * (it _will_ be visible for the next process to read stdin),
2837 * but without this delay it even shows up on the screen
2838 * as garbage because we restore echo settings with tcsetattr
2839 * before it comes in. UGLY!
2840 */
2841 usleep(20*1000);
2842 }
2843#endif
2844
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002845/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002846#undef command
2847
Denys Vlasenko19158a82010-03-26 14:06:56 +01002848#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002849 command[0] = '\0';
2850 if (command_len > 0)
2851 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002852 free(command_ps);
2853#endif
2854
Flemming Madsend96ffda2013-04-07 18:47:24 +02002855 if (command_len > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002856 remember_in_history(command);
Flemming Madsend96ffda2013-04-07 18:47:24 +02002857 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002858
Eric Andersen27bb7902003-12-23 20:24:51 +00002859 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002860 command[command_len++] = '\n';
2861 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002862 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002863
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002864#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002865 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002866#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002867
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002868 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002869 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002870 /* restore SIGWINCH handler */
Denys Vlasenkobff71d32016-11-27 22:25:07 +01002871 sigaction_set(SIGWINCH, &S.SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002872 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002873
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002874 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002875 DEINIT_S();
2876
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002877 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002878}
2879
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002880#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002881
2882#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002883int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002884{
2885 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002886 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002887 if (!fgets(command, maxsize, stdin))
2888 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002889 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002890}
2891
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002892#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002893
2894
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002895/*
2896 * Testing
2897 */
2898
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002899#ifdef TEST
2900
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002901#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002902
2903const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002904
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002905int main(int argc, char **argv)
2906{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002907 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002908 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002909#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002910 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2911 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
Denys Vlasenko8187e012017-09-13 22:48:30 +02002912 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002913#else
2914 "% ";
2915#endif
2916
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002917 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002918 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002919 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002920 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002921 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002922 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002923 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002924 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002925 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002926 return 0;
2927}
2928
Eric Andersenc470f442003-07-28 09:56:35 +00002929#endif /* TEST */