blob: d6c33541ecafb15fcba1e2dc189b48ed01a54c69 [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 */
16
17/*
Denis Vlasenko78ff8192008-06-28 21:03:43 +000018 * Usage and known bugs:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010019 * Terminal key codes are not extensive, more needs to be added.
20 * This version was created on Debian GNU/Linux 2.x.
Denis Vlasenko78ff8192008-06-28 21:03:43 +000021 * Delete, Backspace, Home, End, and the arrow keys were tested
22 * to work in an Xterm and console. Ctrl-A also works as Home.
23 * Ctrl-E also works as End.
24 *
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010025 * The following readline-like commands are not implemented:
26 * ESC-b -- Move back one word
27 * ESC-f -- Move forward one word
28 * ESC-d -- Delete forward one word
29 * CTL-t -- Transpose two characters
30 *
Denis Vlasenko78ff8192008-06-28 21:03:43 +000031 * lineedit does not know that the terminal escape sequences do not
32 * take up space on the screen. The redisplay code assumes, unless
33 * told otherwise, that each character in the prompt is a printable
34 * character that takes up one character position on the screen.
35 * You need to tell lineedit that some sequences of characters
36 * in the prompt take up no screen space. Compatibly with readline,
37 * use the \[ escape to begin a sequence of non-printing characters,
38 * and the \] escape to signal the end of such a sequence. Example:
39 *
40 * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
Erik Andersen13456d12000-03-16 08:09:57 +000041 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000042#include "libbb.h"
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020043#include "unicode.h"
Glenn L McGrath475820c2004-01-22 12:42:23 +000044
Glenn L McGrath3b251852004-01-03 12:07:32 +000045#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020046# define ENABLE_FEATURE_EDITING 0
47# define ENABLE_FEATURE_TAB_COMPLETION 0
48# define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020049#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000050
Eric Andersen5165fbe2001-02-20 06:42:29 +000051
Denis Vlasenko82b39e82007-01-21 19:18:19 +000052/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000053#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000054
Denis Vlasenko82b39e82007-01-21 19:18:19 +000055
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020056#define ENABLE_USERNAME_OR_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000057 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020058#define IF_USERNAME_OR_HOMEDIR(...)
59#if ENABLE_USERNAME_OR_HOMEDIR
60# undef IF_USERNAME_OR_HOMEDIR
61# define IF_USERNAME_OR_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000062#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000063
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020064
65#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010066#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020067# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020068# define CHAR_T wchar_t
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010069static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010070# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010071static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010072# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010073static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020074# undef isspace
75# undef isalnum
76# undef ispunct
77# undef isprint
78# define isspace isspace_must_not_be_used
79# define isalnum isalnum_must_not_be_used
80# define ispunct ispunct_must_not_be_used
81# define isprint isprint_must_not_be_used
82#else
83# define BB_NUL '\0'
84# define CHAR_T char
85# define BB_isspace(c) isspace(c)
86# define BB_isalnum(c) isalnum(c)
87# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020088#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020089#if ENABLE_UNICODE_PRESERVE_BROKEN
90# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
91# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
92#else
93# define unicode_is_raw_byte(wc) 0
94#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020095
96
Marek Polacek7b181072010-10-28 21:34:56 +020097#define ESC "\033"
98
99#define SEQ_CLEAR_TILL_END_OF_SCREEN ESC"[J"
100//#define SEQ_CLEAR_TILL_END_OF_LINE ESC"[K"
Tomas Heinricha659b812010-04-29 13:43:39 +0200101
102
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000103enum {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000104 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000105 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000106 : 0x7ff0
107};
Robert Griebl350d26b2002-12-03 22:45:46 +0000108
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200109#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000110static const char null_str[] ALIGN1 = "";
111#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000112
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000113/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000114struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000115 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000116
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000117 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
118 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000119
Denys Vlasenko020f4062009-05-17 16:44:54 +0200120 unsigned cmdedit_x; /* real x (col) terminal position */
121 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000122 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000123
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000124 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200125 int command_len; /* must be signed */
126 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200127 * to _not_ be promoted to unsigned */
128 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200129 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000130
131 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000132#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000133 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000134#endif
135
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200136#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000137 char *user_buf;
138 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000139#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000140
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000141#if ENABLE_FEATURE_TAB_COMPLETION
142 char **matches;
143 unsigned num_matches;
144#endif
145
146#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200147# define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200148 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000149 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200150 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000151#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100152#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100153 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100154#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000155};
156
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000157/* See lineedit_ptr_hack.c */
158extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000159
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000160#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000161#define state (S.state )
162#define cmdedit_termw (S.cmdedit_termw )
163#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
164#define cmdedit_x (S.cmdedit_x )
165#define cmdedit_y (S.cmdedit_y )
166#define cmdedit_prmt_len (S.cmdedit_prmt_len)
167#define cursor (S.cursor )
168#define command_len (S.command_len )
169#define command_ps (S.command_ps )
170#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000171#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000172#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000173#define home_pwd_buf (S.home_pwd_buf )
174#define matches (S.matches )
175#define num_matches (S.num_matches )
176#define delptr (S.delptr )
177#define newdelflag (S.newdelflag )
178#define delbuf (S.delbuf )
179
180#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000181 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000182 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000183 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000184 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200185 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000186} while (0)
187static void deinit_S(void)
188{
189#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000190 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200191 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000192 free((char*)cmdedit_prompt);
193#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200194#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000195 free(user_buf);
196 if (home_pwd_buf != null_str)
197 free(home_pwd_buf);
198#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000199 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000200}
201#define DEINIT_S() deinit_S()
202
Denis Vlasenko2c844952008-04-25 18:44:35 +0000203
Denys Vlasenko19158a82010-03-26 14:06:56 +0100204#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200205static size_t load_string(const char *src, int maxsize)
206{
207 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
208 if (len < 0)
209 len = 0;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200210 command_ps[len] = BB_NUL;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200211 return len;
212}
Tomas Heinricha659b812010-04-29 13:43:39 +0200213static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200214{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200215# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200216 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
217 if (len < 0)
218 len = 0;
219 dst[len] = '\0';
220 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200221# else
Tomas Heinricha659b812010-04-29 13:43:39 +0200222 unsigned dstpos = 0;
223 unsigned srcpos = 0;
224
225 maxsize--;
226 while (dstpos < maxsize) {
227 wchar_t wc;
228 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200229
230 /* Convert up to 1st invalid byte (or up to end) */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200231 while ((wc = command_ps[srcpos]) != BB_NUL
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200232 && !unicode_is_raw_byte(wc)
Tomas Heinricha659b812010-04-29 13:43:39 +0200233 ) {
234 srcpos++;
235 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200236 command_ps[srcpos] = BB_NUL;
Tomas Heinricha659b812010-04-29 13:43:39 +0200237 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
238 if (n < 0) /* should not happen */
239 break;
240 dstpos += n;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200241 if (wc == BB_NUL) /* usually is */
Tomas Heinricha659b812010-04-29 13:43:39 +0200242 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200243
Tomas Heinricha659b812010-04-29 13:43:39 +0200244 /* We do have invalid byte here! */
245 command_ps[srcpos] = wc; /* restore it */
246 srcpos++;
247 if (dstpos == maxsize)
248 break;
249 dst[dstpos++] = (char) wc;
250 }
251 dst[dstpos] = '\0';
252 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200253# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200254}
255/* I thought just fputwc(c, stdout) would work. But no... */
256static void BB_PUTCHAR(wchar_t c)
257{
258 char buf[MB_CUR_MAX + 1];
259 mbstate_t mbst = { 0 };
Tomas Heinricha659b812010-04-29 13:43:39 +0200260 ssize_t len;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200261
Tomas Heinricha659b812010-04-29 13:43:39 +0200262 len = wcrtomb(buf, c, &mbst);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200263 if (len > 0) {
264 buf[len] = '\0';
265 fputs(buf, stdout);
266 }
267}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200268# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
269static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
270# else
271static wchar_t adjust_width_and_validate_wc(wchar_t wc)
272# define adjust_width_and_validate_wc(width_adj, wc) \
273 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
274# endif
275{
276 int w = 1;
277
278 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200279 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
280 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200281 goto subst;
282 }
283 w = wcwidth(wc);
284 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
285 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
286 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
287 ) {
288 subst:
289 w = 1;
290 wc = CONFIG_SUBST_WCHAR;
291 }
292 }
293
294# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
295 *width_adj += w;
296#endif
297 return wc;
298}
299#else /* !UNICODE */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200300static size_t load_string(const char *src, int maxsize)
301{
302 safe_strncpy(command_ps, src, maxsize);
303 return strlen(command_ps);
304}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200305# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200306static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200307{
308 safe_strncpy(dst, command_ps, maxsize);
309}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200310# endif
311# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200312/* Should never be called: */
313int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200314#endif
315
316
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000317/* Put 'command_ps[cursor]', cursor++.
318 * Advance cursor on screen. If we reached right margin, scroll text up
319 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000320#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200321static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000322{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200323 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200324 unsigned width = 0;
325 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000326
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200327 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000328 /* erase character after end of input string */
329 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200330 } else {
331 /* advance cursor only if we aren't at the end yet */
332 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200333 if (unicode_status == UNICODE_ON) {
334 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
335 c = adjust_width_and_validate_wc(&cmdedit_x, c);
336 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
337 } else {
338 cmdedit_x++;
339 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000340 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200341
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200342 ofs_to_right = cmdedit_x - cmdedit_termw;
343 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
344 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200345 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000346 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200347
348 if (ofs_to_right >= 0) {
349 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000350#if HACK_FOR_WRONG_WIDTH
351 /* This works better if our idea of term width is wrong
352 * and it is actually wider (often happens on serial lines).
353 * Printing CR,LF *forces* cursor to next line.
354 * OTOH if terminal width is correct AND terminal does NOT
355 * have automargin (IOW: it is moving cursor to next line
356 * by itself (which is wrong for VT-10x terminals)),
357 * this will break things: there will be one extra empty line */
358 puts("\r"); /* + implicit '\n' */
359#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200360 /* VT-10x terminals don't wrap cursor to next line when last char
361 * on the line is printed - cursor stays "over" this char.
362 * Need to print _next_ char too (first one to appear on next line)
363 * to make cursor move down to next line.
364 */
365 /* Works ok only if cmdedit_termw is correct. */
366 c = command_ps[cursor];
367 if (c == BB_NUL)
368 c = ' ';
369 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000370 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000371#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200372 cmdedit_y++;
373 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
374 width = 0;
375 } else { /* ofs_to_right > 0 */
376 /* wide char c didn't fit on prev line */
377 BB_PUTCHAR(c);
378 }
379 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000380 }
Erik Andersen13456d12000-03-16 08:09:57 +0000381}
382
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000383/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200384static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000385{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000386 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200387 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000388}
389
390/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000391static void goto_new_line(void)
392{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200393 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200394 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000395 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000396}
397
Rob Landley88621d72006-08-29 19:41:06 +0000398static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000399{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000400 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000401}
402
Denys Vlasenko248c3242010-05-17 00:45:44 +0200403static void put_prompt(void)
404{
405 unsigned w;
406
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200407 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200408 fflush_all();
409 cursor = 0;
410 w = cmdedit_termw; /* read volatile var once */
411 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
412 cmdedit_x = cmdedit_prmt_len % w;
413}
414
Eric Andersenaff114c2004-04-14 17:51:38 +0000415/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000416/* (optimized for slow terminals) */
417static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000418{
419 if (num > cursor)
420 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200421 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000422 return;
423 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000424
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200425 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
426 && unicode_status == UNICODE_ON
427 ) {
428 /* correct NUM to be equal to _screen_ width */
429 int n = num;
430 num = 0;
431 while (--n >= 0)
432 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
433 if (num == 0)
434 return;
435 }
436
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000437 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000438 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000439 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000440 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000441 * Also gets miscompiled for ARM users
442 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000443 * printf(("\b\b\b\b" + 4) - num);
444 * return;
445 */
446 do {
447 bb_putchar('\b');
448 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000449 return;
450 }
Marek Polacek7b181072010-10-28 21:34:56 +0200451 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000452 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000453 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000454
455 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200456 if (ENABLE_UNICODE_WIDE_WCHARS) {
457 /* With wide chars, it is hard to "backtrack"
458 * and reliably figure out where to put cursor.
459 * Example (<> is a wide char; # is an ordinary char, _ cursor):
460 * |prompt: <><> |
461 * |<><><><><><> |
462 * |_ |
463 * and user presses left arrow. num = 1, cmdedit_x = 0,
464 * We need to go up one line, and then - how do we know that
465 * we need to go *10* positions to the right? Because
466 * |prompt: <>#<>|
467 * |<><><>#<><><>|
468 * |_ |
469 * in this situation we need to go *11* positions to the right.
470 *
471 * A simpler thing to do is to redraw everything from the start
472 * up to new cursor position (which is already known):
473 */
474 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200475 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200476 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200477 cmdedit_y = 0;
478 sv_cursor = cursor;
479 put_prompt(); /* sets cursor to 0 */
480 while (cursor < sv_cursor)
481 put_cur_glyph_and_inc_cursor();
482 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200483 int lines_up;
484 unsigned width;
485 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200486 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200487 width = cmdedit_termw; /* read volatile var once */
488 /* num=1...w: one line up, w+1...2w: two, etc: */
489 lines_up = 1 + (num - 1) / width;
490 cmdedit_x = (width * cmdedit_y - num) % width;
491 cmdedit_y -= lines_up;
492 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200493 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200494 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200495 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
496 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200497 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200498 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000499 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000500}
501
Eric Andersenaff114c2004-04-14 17:51:38 +0000502/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000503static void redraw(int y, int back_cursor)
504{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200505 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200506 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000507 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000508 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200509 put_till_end_and_adv_cursor();
510 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000511 input_backward(back_cursor);
512}
513
Paul Fox3f11b1b2005-08-04 19:04:46 +0000514/* Delete the char in front of the cursor, optionally saving it
515 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000516#if !ENABLE_FEATURE_EDITING_VI
517static void input_delete(void)
518#define input_delete(save) input_delete()
519#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000520static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000521#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000522{
Mark Whitley4e338752001-01-26 20:42:23 +0000523 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000524
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000525 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000526 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000527
Denis Vlasenko38f63192007-01-22 09:03:07 +0000528#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000529 if (save) {
530 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000531 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000532 newdelflag = 0;
533 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000534 if ((delptr - delbuf) < DELBUFSIZ)
535 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000536 }
537#endif
538
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200539 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200540 /* (command_len + 1 [because of NUL]) - (j + 1)
541 * simplified into (command_len - j) */
542 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000543 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200544 put_till_end_and_adv_cursor();
545 /* Last char is still visible, erase it (and more) */
546 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000547 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000548}
549
Denis Vlasenko38f63192007-01-22 09:03:07 +0000550#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000551static void put(void)
552{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000553 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000554 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000555
Paul Fox3f11b1b2005-08-04 19:04:46 +0000556 if (j == 0)
557 return;
558 ocursor = cursor;
559 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200560 memmove(command_ps + cursor + j, command_ps + cursor,
561 (command_len - cursor + 1) * sizeof(command_ps[0]));
562 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000563 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200564 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000565 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000566}
567#endif
568
Mark Whitley4e338752001-01-26 20:42:23 +0000569/* Delete the char in back of the cursor */
570static void input_backspace(void)
571{
572 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000573 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000574 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000575 }
576}
577
Eric Andersenaff114c2004-04-14 17:51:38 +0000578/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000579static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000580{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000581 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200582 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000583}
584
Denis Vlasenko38f63192007-01-22 09:03:07 +0000585#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000586
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000587static void free_tab_completion_data(void)
588{
589 if (matches) {
590 while (num_matches)
591 free(matches[--num_matches]);
592 free(matches);
593 matches = NULL;
594 }
595}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000596
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000597static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000598{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000599 matches = xrealloc_vector(matches, 4, num_matches);
600 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000601 num_matches++;
602}
603
Denis Vlasenko38f63192007-01-22 09:03:07 +0000604#if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200605/* Replace "~user/..." with "/homedir/...".
606 * The parameter is malloced, free it or return it
607 * unchanged if no user is matched.
608 */
609static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000610{
611 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200612 char *tilde_name = ud;
613 char *home = NULL;
614
615 ud++; /* skip ~ */
616 if (*ud == '/') { /* "~/..." */
617 home = home_pwd_buf;
618 } else {
619 /* "~user/..." */
620 ud = strchr(ud, '/');
621 *ud = '\0'; /* "~user" */
622 entry = getpwnam(tilde_name + 1);
623 *ud = '/'; /* restore "~user/..." */
624 if (entry)
625 home = entry->pw_dir;
626 }
627 if (home) {
628 ud = concat_path_file(home, ud);
629 free(tilde_name);
630 tilde_name = ud;
631 }
632 return tilde_name;
633}
634
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200635/* ~use<tab> - find all users with this prefix.
636 * Return the length of the prefix used for matching.
637 */
638static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200639{
640 /* Using _r function to avoid pulling in static buffers */
641 char line_buff[256];
642 struct passwd pwd;
643 struct passwd *result;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200644 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000645
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200646 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000647 userlen = strlen(ud);
648
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200649 setpwent();
650 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
651 /* Null usernames should result in all users as possible completions. */
652 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
653 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000654 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000655 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200656 endpwent();
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200657
658 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000659}
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200660#endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000661
662enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000663 FIND_EXE_ONLY = 0,
664 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000665 FIND_FILE_ONLY = 2,
666};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000667
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200668static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000669{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000670 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000671 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000672 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000673 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000674
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000675 if (state->flags & WITH_PATH_LOOKUP)
676 pth = state->path_lookup;
677 else
678 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200679
680 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000681 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
682 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000683
Denis Vlasenko253ce002007-01-22 08:34:44 +0000684 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000685 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000686 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000687 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000688 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000689 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200690 tmp++;
691 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000692 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000693 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000694 }
695
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200696 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000697 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000698 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000699 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000700 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000701 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000702 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000703 *tmp++ = '\0'; /* ':' -> '\0' */
704 if (*tmp == '\0')
705 break; /* :<empty> */
706 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000707 }
Mark Whitley4e338752001-01-26 20:42:23 +0000708 return npth;
709}
710
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200711/* Complete command, directory or file name.
712 * Return the length of the prefix used for matching.
713 */
714static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000715{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000716 char *path1[1];
717 char **paths = path1;
718 int npaths;
719 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200720 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200721 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200722 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000723
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000724 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000725 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000726
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200727 pfind = strrchr(command, '/');
728 if (!pfind) {
729 if (type == FIND_EXE_ONLY)
730 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000731 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000732 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000733 /* point to 'l' in "..../last_component" */
734 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200735 /* dirbuf = ".../.../.../" */
736 dirbuf = xstrndup(command, pfind - command);
737#if ENABLE_FEATURE_USERNAME_COMPLETION
738 if (dirbuf[0] == '~') /* ~/... or ~user/... */
739 dirbuf = username_path_completion(dirbuf);
740#endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200741 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000742 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200743 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000744
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000745 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200746 DIR *dir;
747 struct dirent *next;
748 struct stat st;
749 char *found;
750
Mark Whitley4e338752001-01-26 20:42:23 +0000751 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000752 if (!dir)
753 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000754
755 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200756 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200757 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000758
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200759 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
760 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000761 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200762 /* match? */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200763 if (strncmp(name_found, pfind, pf_len) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200764 continue; /* no */
765
766 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000767 /* NB: stat() first so that we see is it a directory;
768 * but if that fails, use lstat() so that
769 * we still match dangling links */
770 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200771 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000772
Denys Vlasenko39263632010-09-03 14:11:08 +0200773 /* Save only name */
774 len = strlen(name_found);
775 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
776 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000777
Mark Whitley4e338752001-01-26 20:42:23 +0000778 if (S_ISDIR(st.st_mode)) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200779 /* name is a directory, add slash */
780 found[len] = '/';
781 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000782 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200783 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000784 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000785 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000786 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200787 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000788 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000789 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000790 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000791 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000792 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000793 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200794 } /* for every path */
795
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000796 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000797 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000798 free(paths);
799 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200800 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200801
802 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000803}
Erik Andersenf0657d32000-04-12 17:49:52 +0000804
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200805/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200806 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200807 * was pressed. This function looks at it, figures out what part of it
808 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200809 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200810 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200811#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200812/* Helpers: */
813/* QUOT is used on elements of int_buf[], which are bytes,
814 * not Unicode chars. Therefore it works correctly even in Unicode mode.
815 */
816#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200817static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200818{
819 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200820 if (beg == end)
821 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200822
823 while ((int_buf[beg] = int_buf[end]) != 0)
824 beg++, end++;
825
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200826 if (dbg_bmp) {
827 int i;
828 for (i = 0; int_buf[i]; i++)
829 bb_putchar((unsigned char)int_buf[i]);
830 bb_putchar('\n');
831 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200832}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200833/* Caller ensures that match_buf points to a malloced buffer
834 * big enough to hold strlen(match_buf)*2 + 2
835 */
836static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000837{
838 int i, j;
839 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200840 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000841
Denys Vlasenko76939e72010-09-03 14:09:24 +0200842 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200843
Denys Vlasenko76939e72010-09-03 14:09:24 +0200844 /* Copy in reverse order, since they overlap */
845 i = strlen(match_buf);
846 do {
847 int_buf[i] = (unsigned char)match_buf[i];
848 i--;
849 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000850
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200851 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200852 for (i = 0; int_buf[i]; i++) {
853 if (int_buf[i] == '\\') {
854 remove_chunk(int_buf, i, i + 1);
855 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000856 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200857 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200858 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200859 {
860 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200861 i = 0;
862 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200863 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200864 if (!cur)
865 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200866 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200867 if (!in_quote || (cur == in_quote)) {
868 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200869 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200870 continue;
871 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000872 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200873 if (in_quote)
874 int_buf[i] = cur | QUOT;
875 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200876 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000877 }
878
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200879 /* Remove everything up to command delimiters:
880 * ';' ';;' '&' '|' '&&' '||',
881 * but careful with '>&' '<&' '>|'
882 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000883 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200884 int cur = int_buf[i];
885 if (cur == ';' || cur == '&' || cur == '|') {
886 int prev = i ? int_buf[i - 1] : 0;
887 if (cur == '&' && (prev == '>' || prev == '<')) {
888 continue;
889 } else if (cur == '|' && prev == '>') {
890 continue;
891 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200892 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200893 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000894 }
895 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200896 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200897 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000898 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200899 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000900 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200901 /* `cmd` should count as a word:
902 * `cmd` c<tab> should search for files c*,
903 * not commands c*. Therefore we don't drop
904 * `cmd` entirely, we replace it with single `.
905 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200906 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200907 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000908 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200909 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200910 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200911 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200912 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200913 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000914 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200915 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000916
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200917 /* Remove "cmd (" and "cmd {"
918 * Example: "if { c<tab>"
919 * In this example, c should be matched as command pfx.
920 */
921 for (i = 0; int_buf[i]; i++) {
922 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200923 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +0200924 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000925 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200926 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000927
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200928 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000929 for (i = 0; int_buf[i]; i++)
930 if (int_buf[i] != ' ')
931 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200932 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000933
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200934 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000935 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200936 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000937 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200938 if (int_buf[i] == ' '
939 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200940 && (char)int_buf[0] == 'c'
941 && (char)int_buf[1] == 'd'
942 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000943 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000944 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000945 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000946 command_mode = FIND_FILE_ONLY;
947 break;
948 }
949 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200950 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200951 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200952
953 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200954 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
955 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000956 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200957 int cur = int_buf[i];
958 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200959 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000960 break;
961 }
962 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000963
Denys Vlasenko76939e72010-09-03 14:09:24 +0200964 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200965 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200966 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200967 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200968
Denys Vlasenko76939e72010-09-03 14:09:24 +0200969 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000970
971 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200972}
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000973
Glenn L McGrath4d001292003-01-06 01:11:50 +0000974/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200975 * Display by column (original idea from ls applet,
976 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000977 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000978static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000979{
980 int ncols, row;
981 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000982 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000983 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000984 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000985
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200986 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000987 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +0200988 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000989 if (column_width < l)
990 column_width = l;
991 }
992 column_width += 2; /* min space for columns */
993 ncols = cmdedit_termw / column_width;
994
995 if (ncols > 1) {
996 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000997 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000998 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000999 } else {
1000 ncols = 1;
1001 }
1002 for (row = 0; row < nrows; row++) {
1003 int n = row;
1004 int nc;
1005
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001006 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001007 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001008 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001009 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001010 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001011 if (ENABLE_UNICODE_SUPPORT)
1012 puts(printable_string(NULL, matches[n]));
1013 else
1014 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001015 }
1016}
1017
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001018static char *add_quote_for_spec_chars(char *found)
1019{
1020 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001021 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001022
1023 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001024 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001025 s[l++] = '\\';
1026 s[l++] = *found++;
1027 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001028 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001029 return s;
1030}
1031
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001032/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001033static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001034{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001035 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001036 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001037 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001038 /* Length of string used for matching */
1039 unsigned match_pfx_len = match_pfx_len;
1040 int find_type;
1041#if ENABLE_UNICODE_SUPPORT
1042 /* cursor pos in command converted to multibyte form */
1043 int cursor_mb;
1044#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001045 if (!(state->flags & TAB_COMPLETION))
1046 return;
1047
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001048 if (*lastWasTab) {
1049 /* The last char was a TAB too.
1050 * Print a list of all the available choices.
1051 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001052 if (num_matches > 0) {
1053 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001054 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001055 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001056 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001057 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001058 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001059 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001060 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001061
1062 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001063 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001064
Denys Vlasenko76939e72010-09-03 14:09:24 +02001065 /* Make a local copy of the string up to the position of the cursor.
1066 * build_match_prefix will expand it into int16_t's, need to allocate
1067 * twice as much as the string_len+1.
1068 * (we then also (ab)use this extra space later - see (**))
1069 */
1070 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001071#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001072 save_string(match_buf, cursor + 1); /* +1 for NUL */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001073#else
1074 {
1075 CHAR_T wc = command_ps[cursor];
1076 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001077 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001078 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001079 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001080 }
1081#endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001082 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001083
1084 /* Free up any memory already allocated */
1085 free_tab_completion_data();
1086
1087#if ENABLE_FEATURE_USERNAME_COMPLETION
1088 /* If the word starts with `~' and there is no slash in the word,
1089 * then try completing this word as a username. */
1090 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001091 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1092 match_pfx_len = complete_username(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001093#endif
1094 /* Try to match a command in $PATH, or a directory, or a file */
1095 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001096 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001097 /* Remove duplicates */
1098 if (matches) {
1099 unsigned i;
1100 unsigned n = 0;
1101 qsort_string_vector(matches, num_matches);
1102 for (i = 0; i < num_matches - 1; ++i) {
1103 //if (matches[i] && matches[i+1]) { /* paranoia */
1104 if (strcmp(matches[i], matches[i+1]) == 0) {
1105 free(matches[i]);
1106 //matches[i] = NULL; /* paranoia */
1107 } else {
1108 matches[n++] = matches[i];
1109 }
1110 //}
1111 }
1112 matches[n++] = matches[i];
1113 num_matches = n;
1114 }
1115 /* Did we find exactly one match? */
1116 if (num_matches != 1) { /* no */
1117 char *cp;
1118 beep();
1119 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001120 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001121 /* Find common prefix */
1122 chosen_match = xstrdup(matches[0]);
1123 for (cp = chosen_match; *cp; cp++) {
1124 unsigned n;
1125 for (n = 1; n < num_matches; n++) {
1126 if (matches[n][cp - chosen_match] != *cp) {
1127 goto stop;
1128 }
1129 }
1130 }
1131 stop:
1132 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001133 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001134 }
1135 *cp = '\0';
1136 cp = add_quote_for_spec_chars(chosen_match);
1137 free(chosen_match);
1138 chosen_match = cp;
1139 len_found = strlen(chosen_match);
1140 } else { /* exactly one match */
1141 /* Next <tab> is not a double-tab */
1142 *lastWasTab = 0;
1143
1144 chosen_match = add_quote_for_spec_chars(matches[0]);
1145 len_found = strlen(chosen_match);
1146 if (chosen_match[len_found-1] != '/') {
1147 chosen_match[len_found] = ' ';
1148 chosen_match[++len_found] = '\0';
1149 }
1150 }
1151
1152#if !ENABLE_UNICODE_SUPPORT
1153 /* Have space to place the match? */
1154 /* The result consists of three parts with these lengths: */
1155 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1156 /* it simplifies into: */
1157 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1158 int pos;
1159 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001160 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001161 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001162 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001163 command_len = strlen(command_ps);
1164 /* new pos */
1165 pos = cursor + len_found - match_pfx_len;
1166 /* write out the matched command */
1167 redraw(cmdedit_y, command_len - pos);
1168 }
1169#else
1170 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001171 /* Use 2nd half of match_buf as scratch space - see (**) */
1172 char *command = match_buf + MAX_LINELEN;
1173 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001174 /* Have space to place the match? */
1175 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1176 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1177 int pos;
1178 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001179 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001180 /* where do we want to have cursor after all? */
1181 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
1182 len = load_string(command, S.maxsize);
1183 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001184 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001185 command_len = load_string(command, S.maxsize);
1186 /* write out the matched command */
1187 /* paranoia: load_string can return 0 on conv error,
1188 * prevent passing pos = (0 - 12) to redraw */
1189 pos = command_len - len;
1190 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1191 }
1192 }
1193#endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001194 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001195 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001196 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001197}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001198
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001199#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001200
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001201
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001202line_input_t* FAST_FUNC new_line_input_t(int flags)
1203{
1204 line_input_t *n = xzalloc(sizeof(*n));
1205 n->flags = flags;
1206 return n;
1207}
1208
1209
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001210#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001211
Denis Vlasenko682ad302008-09-27 01:28:56 +00001212static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001213{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001214 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001215 int cur = state->cur_history;
1216 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001217
Denys Vlasenko19158a82010-03-26 14:06:56 +01001218# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001219 {
1220 char tbuf[MAX_LINELEN];
1221 save_string(tbuf, sizeof(tbuf));
1222 state->history[cur] = xstrdup(tbuf);
1223 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001224# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001225 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001226# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001227 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001228}
1229
1230/* state->flags is already checked to be nonzero */
1231static int get_previous_history(void)
1232{
1233 if ((state->flags & DO_HISTORY) && state->cur_history) {
1234 save_command_ps_at_cur_history();
1235 state->cur_history--;
1236 return 1;
1237 }
1238 beep();
1239 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001240}
1241
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001242static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001243{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001244 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001245 if (state->cur_history < state->cnt_history) {
1246 save_command_ps_at_cur_history(); /* save the current history line */
1247 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001248 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001249 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001250 beep();
1251 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001252}
Robert Griebl350d26b2002-12-03 22:45:46 +00001253
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001254# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001255/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001256 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001257 * Otherwise shell users get unhappy.
1258 *
1259 * History file is trimmed lazily, when it grows several times longer
1260 * than configured MAX_HISTORY lines.
1261 */
1262
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001263static void free_line_input_t(line_input_t *n)
1264{
1265 int i = n->cnt_history;
1266 while (i > 0)
1267 free(n->history[--i]);
1268 free(n);
1269}
1270
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001271/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001272static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001273{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001274 char *temp_h[MAX_HISTORY];
1275 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001276 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001277 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001278
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001279 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001280
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001281 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001282 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001283 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001284 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001285 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001286 free(st_parm->history[idx]);
1287 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001288 }
1289
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001290 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1291 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001292 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001293 while ((line = xmalloc_fgetline(fp)) != NULL) {
1294 if (line[0] == '\0') {
1295 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001296 continue;
1297 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001298 free(temp_h[idx]);
1299 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001300 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001301 idx++;
1302 if (idx == MAX_HISTORY)
1303 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001304 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001305 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001306
1307 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001308 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001309 while (temp_h[idx] == NULL) {
1310 idx++;
1311 if (idx == MAX_HISTORY)
1312 idx = 0;
1313 }
1314 }
1315
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001316 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001317 for (i = 0; i < MAX_HISTORY;) {
1318 line = temp_h[idx];
1319 if (!line)
1320 break;
1321 idx++;
1322 if (idx == MAX_HISTORY)
1323 idx = 0;
1324 line_len = strlen(line);
1325 if (line_len >= MAX_LINELEN)
1326 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001327 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001328 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001329 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001330 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001331}
1332
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001333/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001334static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001335{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001336 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001337 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001338
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001339 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001340 if (fd < 0)
1341 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001342 xlseek(fd, 0, SEEK_END); /* paranoia */
1343 len = strlen(str);
1344 str[len] = '\n'; /* we (try to) do atomic write */
1345 len2 = full_write(fd, str, len + 1);
1346 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001347 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001348 if (len2 != len + 1)
1349 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001350
1351 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001352 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001353 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001354 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001355 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001356
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001357 /* we may have concurrently written entries from others.
1358 * load them */
1359 st_temp = new_line_input_t(state->flags);
1360 st_temp->hist_file = state->hist_file;
1361 load_history(st_temp);
1362
1363 /* write out temp file and replace hist_file atomically */
1364 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001365 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1366 if (fd >= 0) {
1367 FILE *fp;
1368 int i;
1369
1370 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001371 for (i = 0; i < st_temp->cnt_history; i++)
1372 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001373 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001374 if (rename(new_name, state->hist_file) == 0)
1375 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001376 }
1377 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001378 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001379 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001380}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001381# else
1382# define load_history(a) ((void)0)
1383# define save_history(a) ((void)0)
1384# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001385
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001386static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001387{
1388 int i;
1389
1390 if (!(state->flags & DO_HISTORY))
1391 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001392 if (str[0] == '\0')
1393 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001394 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001395 /* Don't save dupes */
1396 if (i && strcmp(state->history[i-1], str) == 0)
1397 return;
1398
1399 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1400 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1401
1402 /* If history[] is full, remove the oldest command */
1403 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001404 if (i >= MAX_HISTORY) {
1405 free(state->history[0]);
1406 for (i = 0; i < MAX_HISTORY-1; i++)
1407 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001408 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001409 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001410 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001411 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001412 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001413 state->cur_history = i;
1414 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001415# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001416 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001417 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001418# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001419 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001420}
1421
1422#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001423# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001424#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001425
1426
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001427#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001428/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001429 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001430 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001431static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001432vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001433{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001434 CHAR_T *command = command_ps;
1435
1436 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001437 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001438 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001439 input_forward();
1440}
1441
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001442static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001443vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001444{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001445 CHAR_T *command = command_ps;
1446
1447 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001448 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001449 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1450 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001451 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001452 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001453 } else if (BB_ispunct(command[cursor])) {
1454 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001455 input_forward();
1456 }
1457
Denis Vlasenko253ce002007-01-22 08:34:44 +00001458 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001459 input_forward();
1460
Denys Vlasenko13028922009-07-12 00:51:15 +02001461 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001462 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001463 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001464 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001465}
1466
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001467static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001468vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001469{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001470 CHAR_T *command = command_ps;
1471
Paul Fox3f11b1b2005-08-04 19:04:46 +00001472 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001473 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001474 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001475 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001476 input_forward();
1477}
1478
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001479static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001480vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001481{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001482 CHAR_T *command = command_ps;
1483
Denis Vlasenko253ce002007-01-22 08:34:44 +00001484 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001485 return;
1486 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001487 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001488 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001489 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001490 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001491 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001492 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001493 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001494 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001495 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001496 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001497 } else if (BB_ispunct(command[cursor])) {
1498 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001499 input_forward();
1500 }
1501}
1502
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001503static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001504vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001505{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001506 CHAR_T *command = command_ps;
1507
1508 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001509 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001510 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001511 input_backward(1);
1512}
1513
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001514static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001515vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001516{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001517 CHAR_T *command = command_ps;
1518
Paul Fox3f11b1b2005-08-04 19:04:46 +00001519 if (cursor <= 0)
1520 return;
1521 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001522 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001523 input_backward(1);
1524 if (cursor <= 0)
1525 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001526 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001527 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001528 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001529 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001530 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001531 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001532 } else if (BB_ispunct(command[cursor])) {
1533 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001534 input_backward(1);
1535 }
1536}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001537#endif
1538
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001539/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1540static void ctrl_left(void)
1541{
1542 CHAR_T *command = command_ps;
1543
1544 while (1) {
1545 CHAR_T c;
1546
1547 input_backward(1);
1548 if (cursor == 0)
1549 break;
1550 c = command[cursor];
1551 if (c != ' ' && !BB_ispunct(c)) {
1552 /* we reached a "word" delimited by spaces/punct.
1553 * go to its beginning */
1554 while (1) {
1555 c = command[cursor - 1];
1556 if (c == ' ' || BB_ispunct(c))
1557 break;
1558 input_backward(1);
1559 if (cursor == 0)
1560 break;
1561 }
1562 break;
1563 }
1564 }
1565}
1566static void ctrl_right(void)
1567{
1568 CHAR_T *command = command_ps;
1569
1570 while (1) {
1571 CHAR_T c;
1572
1573 c = command[cursor];
1574 if (c == BB_NUL)
1575 break;
1576 if (c != ' ' && !BB_ispunct(c)) {
1577 /* we reached a "word" delimited by spaces/punct.
1578 * go to its end + 1 */
1579 while (1) {
1580 input_forward();
1581 c = command[cursor];
1582 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1583 break;
1584 }
1585 break;
1586 }
1587 input_forward();
1588 }
1589}
1590
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001591
1592/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001593 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001594 */
1595
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001596#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1597static void ask_terminal(void)
1598{
1599 /* Ask terminal where is the cursor now.
1600 * lineedit_read_key handles response and corrects
1601 * our idea of current cursor position.
1602 * Testcase: run "echo -n long_line_long_line_long_line",
1603 * then type in a long, wrapping command and try to
1604 * delete it using backspace key.
1605 * Note: we print it _after_ prompt, because
1606 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1607 */
1608 /* Problem: if there is buffered input on stdin,
1609 * the response will be delivered later,
1610 * possibly to an unsuspecting application.
1611 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1612 * Result:
1613 * ~/srcdevel/bbox/fix/busybox.t4 #
1614 * ~/srcdevel/bbox/fix/busybox.t4 #
1615 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1616 * ~/srcdevel/bbox/fix/busybox.t4 #
1617 *
1618 * Checking for input with poll only makes the race narrower,
1619 * I still can trigger it. Strace:
1620 *
1621 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1622 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1623 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1624 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1625 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1626 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001627 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001628
Denys Vlasenko451add42010-07-25 00:06:41 +02001629 pfd.fd = STDIN_FILENO;
1630 pfd.events = POLLIN;
1631 if (safe_poll(&pfd, 1, 0) == 0) {
1632 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001633 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001634 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001635 }
1636}
1637#else
1638#define ask_terminal() ((void)0)
1639#endif
1640
Denis Vlasenko38f63192007-01-22 09:03:07 +00001641#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001642static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001643{
1644 cmdedit_prompt = prmt_ptr;
1645 cmdedit_prmt_len = strlen(prmt_ptr);
1646 put_prompt();
1647}
1648#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001649static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001650{
1651 int prmt_len = 0;
1652 size_t cur_prmt_len = 0;
1653 char flg_not_length = '[';
1654 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001655 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1656 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001657 char c;
1658 char *pbuf;
1659
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001660 cmdedit_prmt_len = 0;
1661
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001662 if (!cwd_buf) {
1663 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001664 }
1665
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001666 cbuf[1] = '\0'; /* never changes */
1667
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001668 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001669 char *free_me = NULL;
1670
1671 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001672 c = *prmt_ptr++;
1673 if (c == '\\') {
1674 const char *cp = prmt_ptr;
1675 int l;
1676
1677 c = bb_process_escape_sequence(&prmt_ptr);
1678 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001679 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001680 break;
1681 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001682
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001683 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001684# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001685 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001686 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001687 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001688# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001689 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001690 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001691 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001692 break;
1693 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001694 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001695 break;
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001696# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001697 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001698 /* /home/user[/something] -> ~[/something] */
1699 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001700 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001701 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001702 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1703 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1704 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001705 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001706 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001707 }
1708 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001709# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001710 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001711 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001712 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001713 if (cp != NULL && cp != pbuf)
1714 pbuf += (cp-pbuf) + 1;
1715 break;
1716 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001717 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001718 break;
1719 case 'e': case 'E': /* \e \E = \033 */
1720 c = '\033';
1721 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001722 case 'x': case 'X': {
1723 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001724 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001725 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001726 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001727 buf2[l] = '\0';
1728 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001729 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001730 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001731 break;
1732 }
1733 prmt_ptr++;
1734 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001735 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001736 if (c == 0)
1737 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001738 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001739 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001740 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001741 case '[': case ']':
1742 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001743 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001744 continue;
1745 }
1746 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001747 } /* switch */
1748 } /* if */
1749 } /* if */
1750 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001751 cur_prmt_len = strlen(pbuf);
1752 prmt_len += cur_prmt_len;
1753 if (flg_not_length != ']')
1754 cmdedit_prmt_len += cur_prmt_len;
1755 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001756 free(free_me);
1757 } /* while */
1758
1759 if (cwd_buf != (char *)bb_msg_unknown)
1760 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001761 cmdedit_prompt = prmt_mem_ptr;
1762 put_prompt();
1763}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001764#endif
1765
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001766static void cmdedit_setwidth(unsigned w, int redraw_flg)
1767{
1768 cmdedit_termw = w;
1769 if (redraw_flg) {
1770 /* new y for current cursor */
1771 int new_y = (cursor + cmdedit_prmt_len) / w;
1772 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001773 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001774 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001775 }
1776}
1777
1778static void win_changed(int nsig)
1779{
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001780 int sv_errno = errno;
Denis Vlasenko55995022008-05-18 22:28:26 +00001781 unsigned width;
Denys Vlasenko451add42010-07-25 00:06:41 +02001782 get_terminal_width_height(0, &width, NULL);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001783 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1784 if (nsig == SIGWINCH)
1785 signal(SIGWINCH, win_changed); /* rearm ourself */
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001786 errno = sv_errno;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001787}
1788
Denys Vlasenko020f4062009-05-17 16:44:54 +02001789static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001790{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001791 int64_t ic;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001792 int timeout = -1;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001793#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001794 char unicode_buf[MB_CUR_MAX + 1];
1795 int unicode_idx = 0;
1796#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001797
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001798 while (1) {
1799 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1800 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1801 * insist on full MB_CUR_MAX buffer to declare input like
1802 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1803 *
1804 * Note: read_key sets errno to 0 on success.
1805 */
1806 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1807 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001808#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001809 if (errno == EAGAIN && unicode_idx != 0)
1810 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001811#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001812 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001813 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001814
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001815#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1816 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001817 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001818 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001819 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001820 if (cursor == 0) { /* otherwise it may be bogus */
1821 int col = ((ic >> 32) & 0x7fff) - 1;
1822 if (col > cmdedit_prmt_len) {
1823 cmdedit_x += (col - cmdedit_prmt_len);
1824 while (cmdedit_x >= cmdedit_termw) {
1825 cmdedit_x -= cmdedit_termw;
1826 cmdedit_y++;
1827 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001828 }
1829 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001830 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001831 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001832#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001833
Denys Vlasenko19158a82010-03-26 14:06:56 +01001834#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001835 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001836 wchar_t wc;
1837
1838 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001839 break;
1840 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001841
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001842 unicode_buf[unicode_idx++] = ic;
1843 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001844 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1845 /* Not (yet?) a valid unicode char */
1846 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001847 timeout = 50;
1848 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001849 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001850 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001851 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001852 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001853# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001854 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001855# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001856 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001857# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001858 } else {
1859 /* Valid unicode char, return its code */
1860 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001861 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001862 }
1863#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001864 break;
1865 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001866
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001867 return ic;
1868}
1869
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001870#if ENABLE_UNICODE_BIDI_SUPPORT
1871static int isrtl_str(void)
1872{
1873 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001874
1875 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001876 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001877 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001878}
1879#else
1880# define isrtl_str() 0
1881#endif
1882
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001883/* leave out the "vi-mode"-only case labels if vi editing isn't
1884 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001885#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001886
1887/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001888#undef CTRL
1889#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001890
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001891/* maxsize must be >= 2.
1892 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001893 * -1 on read errors or EOF, or on bare Ctrl-D,
1894 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001895 * >0 length of input string, including terminating '\n'
1896 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001897int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001898{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001899 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001900#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001901 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001902#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001903 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001904#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001905 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001906#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001907 struct termios initial_settings;
1908 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001909 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001910
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001911 INIT_S();
1912
1913 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1914 || !(initial_settings.c_lflag & ECHO)
1915 ) {
1916 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001917 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001918 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001919 if (fgets(command, maxsize, stdin) == NULL)
1920 len = -1; /* EOF or error */
1921 else
1922 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001923 DEINIT_S();
1924 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001925 }
1926
Denys Vlasenko28055022010-01-04 20:49:58 +01001927 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001928
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001929// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001930 if (maxsize > MAX_LINELEN)
1931 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001932 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001933
1934 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001935 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001936#if MAX_HISTORY > 0
1937# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001938 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001939 if (state->cnt_history == 0)
1940 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001941# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001942 if (state->flags & DO_HISTORY)
1943 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001944#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001945
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001946 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001947 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001948 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001949#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001950 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1951#else
Mark Whitley4e338752001-01-26 20:42:23 +00001952 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001953 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001954#endif
1955#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001956
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001957 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001958 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1959 /* Turn off echoing and CTRL-C, so we can trap it */
1960 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001961 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001962 new_settings.c_cc[VMIN] = 1;
1963 new_settings.c_cc[VTIME] = 0;
1964 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001965#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001966# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001967#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001968 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001969 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001970
Eric Andersen6faae7d2001-02-16 20:09:17 +00001971 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001972 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1973 win_changed(0); /* do initial resizing */
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001974#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001975 {
1976 struct passwd *entry;
1977
1978 entry = getpwuid(geteuid());
1979 if (entry) {
1980 user_buf = xstrdup(entry->pw_name);
1981 home_pwd_buf = xstrdup(entry->pw_dir);
1982 }
1983 }
1984#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001985
1986#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001987 for (i = 0; i <= MAX_HISTORY; i++)
1988 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001989 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1990#endif
1991
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001992 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001993 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001994 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001995
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001996 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001997 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001998 /*
1999 * The emacs and vi modes share much of the code in the big
2000 * command loop. Commands entered when in vi's command mode
2001 * (aka "escape mode") get an extra bit added to distinguish
2002 * them - this keeps them from being self-inserted. This
2003 * clutters the big switch a bit, but keeps all the code
2004 * in one place.
2005 */
2006 enum {
2007 VI_CMDMODE_BIT = 0x40000000,
2008 /* 0x80000000 bit flags KEYCODE_xxx */
2009 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002010 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002011
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002012 fflush_all();
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002013 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002014
Denis Vlasenko38f63192007-01-22 09:03:07 +00002015#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002016 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002017 if (vi_cmdmode) {
2018 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2019 * change ic if it contains one of them: */
2020 ic |= VI_CMDMODE_BIT;
2021 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002022#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002023
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002024 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002025 case '\n':
2026 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002027 vi_case('\n'|VI_CMDMODE_BIT:)
2028 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002029 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002030 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002031 break_out = 1;
2032 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002033 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002034 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002035 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002036 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002037 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002038 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002039 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002040 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002041 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002042 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002043 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002044 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002045 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002046 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002047 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002048 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002049 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002050 vi_case('l'|VI_CMDMODE_BIT:)
2051 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002052 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002053 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002054 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002055 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002056 if (!isrtl_str())
2057 input_backspace();
2058 else
2059 input_delete(0);
2060 break;
2061 case KEYCODE_DELETE:
2062 if (!isrtl_str())
2063 input_delete(0);
2064 else
2065 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002066 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002067#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002068 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002069 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002070 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002071#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002072 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002073 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002074 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002075 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002076 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002077 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002078 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002079 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002080 /* Control-l -- clear screen */
Marek Polacek7b181072010-10-28 21:34:56 +02002081 printf(ESC"[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002082 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002083 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002084#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002085 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002086 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2087 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002088 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002089 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002090 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002091 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002092 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002093 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2094 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002095 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002096 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002097 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002098 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002099#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002100 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002101 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002102 /* Control-U -- Clear line before cursor */
2103 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002104 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002105 memmove(command_ps, command_ps + cursor,
2106 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002107 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002108 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002109 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002110 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002111 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002112 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002113 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002114 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002115 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002116 input_backspace();
2117 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002118
Denis Vlasenko38f63192007-01-22 09:03:07 +00002119#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002120 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002121 vi_cmdmode = 0;
2122 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002123 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002124 input_backward(cursor);
2125 vi_cmdmode = 0;
2126 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002127 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002128 input_forward();
2129 vi_cmdmode = 0;
2130 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002131 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002132 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002133 vi_cmdmode = 0;
2134 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002135 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002136 input_delete(1);
2137 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002138 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002139 if (cursor > 0) {
2140 input_backward(1);
2141 input_delete(1);
2142 }
2143 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002144 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002145 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002146 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002147 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002148 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002149 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002150 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002151 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002152 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002153 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002154 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002155 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002156 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002157 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002158 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002159 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002160 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002161 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002162 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002163 vi_cmdmode = 0;
2164 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002165 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002166 goto clear_to_eol;
2167
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002168 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002169 vi_cmdmode = 0;
2170 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002171 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002172 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002173
Denys Vlasenko020f4062009-05-17 16:44:54 +02002174 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002175 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002176 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002177 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002178 input_backward(cursor);
2179 goto clear_to_eol;
2180 break;
2181 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002182
2183 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002184 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002185 case 'w':
2186 case 'W':
2187 case 'e':
2188 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002189 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002190 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002191 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002192 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002193 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002194 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002195 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002196 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002197 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002198 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002199 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002200 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002201 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002202 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002203 break;
2204 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002205 nc = cursor;
2206 input_backward(cursor - sc);
2207 while (nc-- > cursor)
2208 input_delete(1);
2209 break;
2210 case 'b': /* "db", "cb" */
2211 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002212 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002213 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002214 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002215 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002216 while (sc-- > cursor)
2217 input_delete(1);
2218 break;
2219 case ' ': /* "d ", "c " */
2220 input_delete(1);
2221 break;
2222 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002223 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002224 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002225 input_delete(1);
2226 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002227 }
2228 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002229 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002230 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002231 input_forward();
2232 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002233 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002234 put();
2235 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002236 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002237//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002238 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002239 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002240 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002241 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002242 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002243 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002244 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002245 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002246 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002247 }
2248 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002249 case '\x1b': /* ESC */
2250 if (state->flags & VI_MODE) {
2251 /* insert mode --> command mode */
2252 vi_cmdmode = 1;
2253 input_backward(1);
2254 }
2255 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002256#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002257
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002258#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002259 case KEYCODE_UP:
2260 if (get_previous_history())
2261 goto rewrite_line;
2262 beep();
2263 break;
2264 case KEYCODE_DOWN:
2265 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002266 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002267 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002268 /* Rewrite the line with the selected history item */
2269 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002270 command_len = load_string(state->history[state->cur_history] ?
2271 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002272 /* redraw and go to eol (bol, in vi) */
2273 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2274 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002275#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002276 case KEYCODE_RIGHT:
2277 input_forward();
2278 break;
2279 case KEYCODE_LEFT:
2280 input_backward(1);
2281 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002282 case KEYCODE_CTRL_LEFT:
2283 ctrl_left();
2284 break;
2285 case KEYCODE_CTRL_RIGHT:
2286 ctrl_right();
2287 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002288 case KEYCODE_HOME:
2289 input_backward(cursor);
2290 break;
2291 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002292 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002293 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002294
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002295 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002296 if (initial_settings.c_cc[VINTR] != 0
2297 && ic_raw == initial_settings.c_cc[VINTR]
2298 ) {
2299 /* Ctrl-C (usually) - stop gathering input */
2300 goto_new_line();
2301 command_len = 0;
2302 break_out = -1; /* "do not append '\n'" */
2303 break;
2304 }
2305 if (initial_settings.c_cc[VEOF] != 0
2306 && ic_raw == initial_settings.c_cc[VEOF]
2307 ) {
2308 /* Ctrl-D (usually) - delete one character,
2309 * or exit if len=0 and no chars to delete */
2310 if (command_len == 0) {
2311 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002312
2313 case -1: /* error (e.g. EIO when tty is destroyed) */
2314 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002315 break_out = command_len = -1;
2316 break;
2317 }
2318 input_delete(0);
2319 break;
2320 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002321// /* Control-V -- force insert of next char */
2322// if (c == CTRL('V')) {
2323// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002324// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002325// if (c == 0) {
2326// beep();
2327// break;
2328// }
2329// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002330 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002331 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2332 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002333 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002334 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002335 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002336 * Otherwise, we are here if ic is a
2337 * control char or an unhandled ESC sequence,
2338 * which is also ignored.
2339 */
2340 break;
2341 }
2342 if ((int)command_len >= (maxsize - 2)) {
2343 /* Not enough space for the char and EOL */
2344 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002345 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002346
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002347 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002348 if (cursor == (command_len - 1)) {
2349 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002350 command_ps[cursor] = ic;
2351 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002352 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002353 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002354 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002355 } else {
2356 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002357 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002358
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002359 memmove(command_ps + sc + 1, command_ps + sc,
2360 (command_len - sc) * sizeof(command_ps[0]));
2361 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002362 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2363 if (!isrtl_str())
2364 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002365 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002366 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002367 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002368 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002369 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002370 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002371
2372 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002373 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002374
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002375#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002376 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002377 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002378#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002379 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002380
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002381#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002382 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002383 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2384 * We sent "ESC [ 6 n", but got '\n' first, and
2385 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2386 * It's bad already and not much can be done with it
2387 * (it _will_ be visible for the next process to read stdin),
2388 * but without this delay it even shows up on the screen
2389 * as garbage because we restore echo settings with tcsetattr
2390 * before it comes in. UGLY!
2391 */
2392 usleep(20*1000);
2393 }
2394#endif
2395
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002396/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002397#undef command
2398
Denys Vlasenko19158a82010-03-26 14:06:56 +01002399#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002400 command[0] = '\0';
2401 if (command_len > 0)
2402 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002403 free(command_ps);
2404#endif
2405
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002406 if (command_len > 0)
2407 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002408
Eric Andersen27bb7902003-12-23 20:24:51 +00002409 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002410 command[command_len++] = '\n';
2411 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002412 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002413
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002414#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002415 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002416#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002417
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002418 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002419 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002420 /* restore SIGWINCH handler */
2421 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002422 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002423
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002424 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002425 DEINIT_S();
2426
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002427 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002428}
2429
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002430#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002431
2432#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002433int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002434{
2435 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002436 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002437 fgets(command, maxsize, stdin);
2438 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002439}
2440
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002441#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002442
2443
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002444/*
2445 * Testing
2446 */
2447
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002448#ifdef TEST
2449
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002450#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002451
2452const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002453
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002454int main(int argc, char **argv)
2455{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002456 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002457 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002458#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002459 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2460 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2461 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002462#else
2463 "% ";
2464#endif
2465
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002466 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002467 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002468 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002469 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002470 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002471 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002472 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002473 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002474 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002475 return 0;
2476}
2477
Eric Andersenc470f442003-07-28 09:56:35 +00002478#endif /* TEST */