blob: fff5c1a89c55a810cdbcdff6e013f8b225828e05 [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
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020097#define SEQ_CLEAR_TILL_END_OF_SCREEN "\033[J"
98//#define SEQ_CLEAR_TILL_END_OF_LINE "\033[K"
Tomas Heinricha659b812010-04-29 13:43:39 +020099
100
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000101enum {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000102 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000103 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000104 : 0x7ff0
105};
Robert Griebl350d26b2002-12-03 22:45:46 +0000106
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200107#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000108static const char null_str[] ALIGN1 = "";
109#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000110
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000111/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000112struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000113 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000114
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000115 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
116 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000117
Denys Vlasenko020f4062009-05-17 16:44:54 +0200118 unsigned cmdedit_x; /* real x (col) terminal position */
119 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000120 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000121
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000122 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200123 int command_len; /* must be signed */
124 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200125 * to _not_ be promoted to unsigned */
126 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200127 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000128
129 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000130#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000131 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000132#endif
133
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200134#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000135 char *user_buf;
136 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000137#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000138
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000139#if ENABLE_FEATURE_TAB_COMPLETION
140 char **matches;
141 unsigned num_matches;
142#endif
143
144#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200145# define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200146 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000147 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200148 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000149#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100150#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100151 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100152#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000153
154 /* Formerly these were big buffers on stack: */
155#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000156 char input_tab__matchBuf[MAX_LINELEN];
157 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000158#endif
159};
160
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000161/* See lineedit_ptr_hack.c */
162extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000163
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000164#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000165#define state (S.state )
166#define cmdedit_termw (S.cmdedit_termw )
167#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
168#define cmdedit_x (S.cmdedit_x )
169#define cmdedit_y (S.cmdedit_y )
170#define cmdedit_prmt_len (S.cmdedit_prmt_len)
171#define cursor (S.cursor )
172#define command_len (S.command_len )
173#define command_ps (S.command_ps )
174#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000175#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000176#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000177#define home_pwd_buf (S.home_pwd_buf )
178#define matches (S.matches )
179#define num_matches (S.num_matches )
180#define delptr (S.delptr )
181#define newdelflag (S.newdelflag )
182#define delbuf (S.delbuf )
183
184#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000185 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000186 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000187 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000188 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200189 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000190} while (0)
191static void deinit_S(void)
192{
193#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000194 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200195 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000196 free((char*)cmdedit_prompt);
197#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200198#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000199 free(user_buf);
200 if (home_pwd_buf != null_str)
201 free(home_pwd_buf);
202#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000203 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000204}
205#define DEINIT_S() deinit_S()
206
Denis Vlasenko2c844952008-04-25 18:44:35 +0000207
Denys Vlasenko19158a82010-03-26 14:06:56 +0100208#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200209static size_t load_string(const char *src, int maxsize)
210{
211 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
212 if (len < 0)
213 len = 0;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200214 command_ps[len] = BB_NUL;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200215 return len;
216}
Tomas Heinricha659b812010-04-29 13:43:39 +0200217static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200218{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200219# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200220 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
221 if (len < 0)
222 len = 0;
223 dst[len] = '\0';
224 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200225# else
Tomas Heinricha659b812010-04-29 13:43:39 +0200226 unsigned dstpos = 0;
227 unsigned srcpos = 0;
228
229 maxsize--;
230 while (dstpos < maxsize) {
231 wchar_t wc;
232 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200233
234 /* Convert up to 1st invalid byte (or up to end) */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200235 while ((wc = command_ps[srcpos]) != BB_NUL
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200236 && !unicode_is_raw_byte(wc)
Tomas Heinricha659b812010-04-29 13:43:39 +0200237 ) {
238 srcpos++;
239 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200240 command_ps[srcpos] = BB_NUL;
Tomas Heinricha659b812010-04-29 13:43:39 +0200241 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
242 if (n < 0) /* should not happen */
243 break;
244 dstpos += n;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200245 if (wc == BB_NUL) /* usually is */
Tomas Heinricha659b812010-04-29 13:43:39 +0200246 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200247
Tomas Heinricha659b812010-04-29 13:43:39 +0200248 /* We do have invalid byte here! */
249 command_ps[srcpos] = wc; /* restore it */
250 srcpos++;
251 if (dstpos == maxsize)
252 break;
253 dst[dstpos++] = (char) wc;
254 }
255 dst[dstpos] = '\0';
256 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200257# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200258}
259/* I thought just fputwc(c, stdout) would work. But no... */
260static void BB_PUTCHAR(wchar_t c)
261{
262 char buf[MB_CUR_MAX + 1];
263 mbstate_t mbst = { 0 };
Tomas Heinricha659b812010-04-29 13:43:39 +0200264 ssize_t len;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200265
Tomas Heinricha659b812010-04-29 13:43:39 +0200266 len = wcrtomb(buf, c, &mbst);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200267 if (len > 0) {
268 buf[len] = '\0';
269 fputs(buf, stdout);
270 }
271}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200272# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
273static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
274# else
275static wchar_t adjust_width_and_validate_wc(wchar_t wc)
276# define adjust_width_and_validate_wc(width_adj, wc) \
277 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
278# endif
279{
280 int w = 1;
281
282 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200283 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
284 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200285 goto subst;
286 }
287 w = wcwidth(wc);
288 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
289 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
290 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
291 ) {
292 subst:
293 w = 1;
294 wc = CONFIG_SUBST_WCHAR;
295 }
296 }
297
298# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
299 *width_adj += w;
300#endif
301 return wc;
302}
303#else /* !UNICODE */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200304static size_t load_string(const char *src, int maxsize)
305{
306 safe_strncpy(command_ps, src, maxsize);
307 return strlen(command_ps);
308}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200309# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200310static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200311{
312 safe_strncpy(dst, command_ps, maxsize);
313}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200314# endif
315# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200316/* Should never be called: */
317int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200318#endif
319
320
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000321/* Put 'command_ps[cursor]', cursor++.
322 * Advance cursor on screen. If we reached right margin, scroll text up
323 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000324#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200325static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000326{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200327 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200328 unsigned width = 0;
329 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000330
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200331 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000332 /* erase character after end of input string */
333 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200334 } else {
335 /* advance cursor only if we aren't at the end yet */
336 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200337 if (unicode_status == UNICODE_ON) {
338 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
339 c = adjust_width_and_validate_wc(&cmdedit_x, c);
340 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
341 } else {
342 cmdedit_x++;
343 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000344 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200345
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200346 ofs_to_right = cmdedit_x - cmdedit_termw;
347 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
348 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200349 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000350 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200351
352 if (ofs_to_right >= 0) {
353 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000354#if HACK_FOR_WRONG_WIDTH
355 /* This works better if our idea of term width is wrong
356 * and it is actually wider (often happens on serial lines).
357 * Printing CR,LF *forces* cursor to next line.
358 * OTOH if terminal width is correct AND terminal does NOT
359 * have automargin (IOW: it is moving cursor to next line
360 * by itself (which is wrong for VT-10x terminals)),
361 * this will break things: there will be one extra empty line */
362 puts("\r"); /* + implicit '\n' */
363#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200364 /* VT-10x terminals don't wrap cursor to next line when last char
365 * on the line is printed - cursor stays "over" this char.
366 * Need to print _next_ char too (first one to appear on next line)
367 * to make cursor move down to next line.
368 */
369 /* Works ok only if cmdedit_termw is correct. */
370 c = command_ps[cursor];
371 if (c == BB_NUL)
372 c = ' ';
373 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000374 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000375#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200376 cmdedit_y++;
377 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
378 width = 0;
379 } else { /* ofs_to_right > 0 */
380 /* wide char c didn't fit on prev line */
381 BB_PUTCHAR(c);
382 }
383 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000384 }
Erik Andersen13456d12000-03-16 08:09:57 +0000385}
386
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000387/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200388static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000389{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000390 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200391 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000392}
393
394/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000395static void goto_new_line(void)
396{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200397 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200398 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000399 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000400}
401
Rob Landley88621d72006-08-29 19:41:06 +0000402static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000403{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000404 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000405}
406
Denys Vlasenko248c3242010-05-17 00:45:44 +0200407static void put_prompt(void)
408{
409 unsigned w;
410
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200411 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200412 fflush_all();
413 cursor = 0;
414 w = cmdedit_termw; /* read volatile var once */
415 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
416 cmdedit_x = cmdedit_prmt_len % w;
417}
418
Eric Andersenaff114c2004-04-14 17:51:38 +0000419/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000420/* (optimized for slow terminals) */
421static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000422{
423 if (num > cursor)
424 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200425 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000426 return;
427 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000428
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200429 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
430 && unicode_status == UNICODE_ON
431 ) {
432 /* correct NUM to be equal to _screen_ width */
433 int n = num;
434 num = 0;
435 while (--n >= 0)
436 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
437 if (num == 0)
438 return;
439 }
440
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000441 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000442 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000443 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000444 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000445 * Also gets miscompiled for ARM users
446 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000447 * printf(("\b\b\b\b" + 4) - num);
448 * return;
449 */
450 do {
451 bb_putchar('\b');
452 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000453 return;
454 }
455 printf("\033[%uD", num);
456 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000457 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000458
459 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200460 if (ENABLE_UNICODE_WIDE_WCHARS) {
461 /* With wide chars, it is hard to "backtrack"
462 * and reliably figure out where to put cursor.
463 * Example (<> is a wide char; # is an ordinary char, _ cursor):
464 * |prompt: <><> |
465 * |<><><><><><> |
466 * |_ |
467 * and user presses left arrow. num = 1, cmdedit_x = 0,
468 * We need to go up one line, and then - how do we know that
469 * we need to go *10* positions to the right? Because
470 * |prompt: <>#<>|
471 * |<><><>#<><><>|
472 * |_ |
473 * in this situation we need to go *11* positions to the right.
474 *
475 * A simpler thing to do is to redraw everything from the start
476 * up to new cursor position (which is already known):
477 */
478 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200479 /* go to 1st column; go up to first line */
480 printf("\r" "\033[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200481 cmdedit_y = 0;
482 sv_cursor = cursor;
483 put_prompt(); /* sets cursor to 0 */
484 while (cursor < sv_cursor)
485 put_cur_glyph_and_inc_cursor();
486 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200487 int lines_up;
488 unsigned width;
489 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200490 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200491 width = cmdedit_termw; /* read volatile var once */
492 /* num=1...w: one line up, w+1...2w: two, etc: */
493 lines_up = 1 + (num - 1) / width;
494 cmdedit_x = (width * cmdedit_y - num) % width;
495 cmdedit_y -= lines_up;
496 /* go to 1st column; go up */
497 printf("\r" "\033[%uA", lines_up);
498 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200499 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
500 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200501 if (cmdedit_x)
502 printf("\033[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000503 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000504}
505
Eric Andersenaff114c2004-04-14 17:51:38 +0000506/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000507static void redraw(int y, int back_cursor)
508{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200509 if (y > 0) /* up y lines */
Denys Vlasenko044b1802009-07-12 02:50:35 +0200510 printf("\033[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000511 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000512 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200513 put_till_end_and_adv_cursor();
514 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000515 input_backward(back_cursor);
516}
517
Paul Fox3f11b1b2005-08-04 19:04:46 +0000518/* Delete the char in front of the cursor, optionally saving it
519 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000520#if !ENABLE_FEATURE_EDITING_VI
521static void input_delete(void)
522#define input_delete(save) input_delete()
523#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000524static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000525#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000526{
Mark Whitley4e338752001-01-26 20:42:23 +0000527 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000528
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000529 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000530 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000531
Denis Vlasenko38f63192007-01-22 09:03:07 +0000532#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000533 if (save) {
534 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000535 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000536 newdelflag = 0;
537 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000538 if ((delptr - delbuf) < DELBUFSIZ)
539 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000540 }
541#endif
542
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200543 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200544 /* (command_len + 1 [because of NUL]) - (j + 1)
545 * simplified into (command_len - j) */
546 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000547 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200548 put_till_end_and_adv_cursor();
549 /* Last char is still visible, erase it (and more) */
550 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000551 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000552}
553
Denis Vlasenko38f63192007-01-22 09:03:07 +0000554#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000555static void put(void)
556{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000557 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000558 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000559
Paul Fox3f11b1b2005-08-04 19:04:46 +0000560 if (j == 0)
561 return;
562 ocursor = cursor;
563 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200564 memmove(command_ps + cursor + j, command_ps + cursor,
565 (command_len - cursor + 1) * sizeof(command_ps[0]));
566 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000567 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200568 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000569 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000570}
571#endif
572
Mark Whitley4e338752001-01-26 20:42:23 +0000573/* Delete the char in back of the cursor */
574static void input_backspace(void)
575{
576 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000577 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000578 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000579 }
580}
581
Eric Andersenaff114c2004-04-14 17:51:38 +0000582/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000583static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000584{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000585 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200586 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000587}
588
Denis Vlasenko38f63192007-01-22 09:03:07 +0000589#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000590
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000591static void free_tab_completion_data(void)
592{
593 if (matches) {
594 while (num_matches)
595 free(matches[--num_matches]);
596 free(matches);
597 matches = NULL;
598 }
599}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000600
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000601static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000602{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000603 matches = xrealloc_vector(matches, 4, num_matches);
604 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000605 num_matches++;
606}
607
Denis Vlasenko38f63192007-01-22 09:03:07 +0000608#if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200609/* Replace "~user/..." with "/homedir/...".
610 * The parameter is malloced, free it or return it
611 * unchanged if no user is matched.
612 */
613static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000614{
615 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200616 char *tilde_name = ud;
617 char *home = NULL;
618
619 ud++; /* skip ~ */
620 if (*ud == '/') { /* "~/..." */
621 home = home_pwd_buf;
622 } else {
623 /* "~user/..." */
624 ud = strchr(ud, '/');
625 *ud = '\0'; /* "~user" */
626 entry = getpwnam(tilde_name + 1);
627 *ud = '/'; /* restore "~user/..." */
628 if (entry)
629 home = entry->pw_dir;
630 }
631 if (home) {
632 ud = concat_path_file(home, ud);
633 free(tilde_name);
634 tilde_name = ud;
635 }
636 return tilde_name;
637}
638
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200639/* ~use<tab> - find all users with this prefix.
640 * Return the length of the prefix used for matching.
641 */
642static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200643{
644 /* Using _r function to avoid pulling in static buffers */
645 char line_buff[256];
646 struct passwd pwd;
647 struct passwd *result;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200648 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000649
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200650 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000651 userlen = strlen(ud);
652
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200653 setpwent();
654 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
655 /* Null usernames should result in all users as possible completions. */
656 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
657 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000658 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000659 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200660 endpwent();
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200661
662 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000663}
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200664#endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000665
666enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000667 FIND_EXE_ONLY = 0,
668 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000669 FIND_FILE_ONLY = 2,
670};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000671
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200672static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000673{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000674 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000675 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000676 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000677 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000678
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000679 if (state->flags & WITH_PATH_LOOKUP)
680 pth = state->path_lookup;
681 else
682 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200683
684 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000685 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
686 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000687
Denis Vlasenko253ce002007-01-22 08:34:44 +0000688 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000689 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000690 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000691 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000692 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000693 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200694 tmp++;
695 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000696 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000697 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000698 }
699
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200700 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000701 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000702 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000703 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000704 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000705 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000706 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000707 *tmp++ = '\0'; /* ':' -> '\0' */
708 if (*tmp == '\0')
709 break; /* :<empty> */
710 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000711 }
Mark Whitley4e338752001-01-26 20:42:23 +0000712 return npth;
713}
714
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200715/* Complete command, directory or file name.
716 * Return the length of the prefix used for matching.
717 */
718static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000719{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000720 char *path1[1];
721 char **paths = path1;
722 int npaths;
723 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200724 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200725 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200726 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000727
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000728 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000729 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000730
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200731 pfind = strrchr(command, '/');
732 if (!pfind) {
733 if (type == FIND_EXE_ONLY)
734 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000735 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000736 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000737 /* point to 'l' in "..../last_component" */
738 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200739 /* dirbuf = ".../.../.../" */
740 dirbuf = xstrndup(command, pfind - command);
741#if ENABLE_FEATURE_USERNAME_COMPLETION
742 if (dirbuf[0] == '~') /* ~/... or ~user/... */
743 dirbuf = username_path_completion(dirbuf);
744#endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200745 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000746 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200747 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000748
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000749 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200750 DIR *dir;
751 struct dirent *next;
752 struct stat st;
753 char *found;
754
Mark Whitley4e338752001-01-26 20:42:23 +0000755 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000756 if (!dir)
757 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000758
759 while ((next = readdir(dir)) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200760 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000761
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200762 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
763 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000764 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200765 /* match? */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200766 if (strncmp(name_found, pfind, pf_len) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200767 continue; /* no */
768
769 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000770 /* NB: stat() first so that we see is it a directory;
771 * but if that fails, use lstat() so that
772 * we still match dangling links */
773 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200774 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000775
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200776 /* save only name if we scan PATH */
777 if (paths[i] != dirbuf)
778 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000779
Mark Whitley4e338752001-01-26 20:42:23 +0000780 if (S_ISDIR(st.st_mode)) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200781 unsigned len1 = strlen(found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000782 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000783 if (found[len1-1] != '/') {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200784 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000785 found[len1] = '/';
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200786 found[len1 + 1] = '\0';
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000787 }
Mark Whitley4e338752001-01-26 20:42:23 +0000788 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200789 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000790 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000791 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000792 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200793 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000794 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000795 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000796 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000797 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000798 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000799 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200800 } /* for every path */
801
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000802 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000803 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000804 free(paths);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200805 } else if (dirbuf) {
806 pf_len += strlen(dirbuf);
807 free(dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000808 }
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200809
810 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000811}
Erik Andersenf0657d32000-04-12 17:49:52 +0000812
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200813/* build_match_prefix:
814 * On entry, matchBuf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200815 * was pressed. This function looks at it, figures out what part of it
816 * constitutes the command/file/directory prefix to use for completion,
817 * and rewrites matchBuf to contain only that part.
818 */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200819/* Helpers: */
820/* QUOT is used on elements of int_buf[], which are bytes,
821 * not Unicode chars. Therefore it works correctly even in Unicode mode.
822 */
823#define QUOT (UCHAR_MAX+1)
824#define int_buf (S.find_match__int_buf)
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200825#define dbg_bmp 0
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200826static void remove_chunk(int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200827{
828 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200829 if (beg == end)
830 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200831
832 while ((int_buf[beg] = int_buf[end]) != 0)
833 beg++, end++;
834
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200835 if (dbg_bmp) {
836 int i;
837 for (i = 0; int_buf[i]; i++)
838 bb_putchar((unsigned char)int_buf[i]);
839 bb_putchar('\n');
840 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200841}
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200842static NOINLINE int build_match_prefix(char *matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000843{
844 int i, j;
845 int command_mode;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200846/* Were local, but it used too much stack */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000847/* int16_t int_buf[MAX_LINELEN + 1]; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000848
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200849 if (dbg_bmp) printf("\n%s\n", matchBuf);
850
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200851 i = 0;
852 while ((int_buf[i] = (unsigned char)matchBuf[i]) != '\0')
853 i++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000854
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200855 /* Mark every \c as "quoted c" */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200856 for (i = j = 0; matchBuf[i]; i++, j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000857 if (matchBuf[i] == '\\') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200858 remove_chunk(j, j + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000859 int_buf[j] |= QUOT;
860 i++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000861 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200862 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200863 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200864 {
865 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200866 i = 0;
867 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200868 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200869 if (!cur)
870 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200871 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200872 if (!in_quote || (cur == in_quote)) {
873 in_quote ^= cur;
874 remove_chunk(i, i + 1);
875 continue;
876 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000877 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200878 if (in_quote)
879 int_buf[i] = cur | QUOT;
880 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200881 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000882 }
883
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200884 /* Remove everything up to command delimiters:
885 * ';' ';;' '&' '|' '&&' '||',
886 * but careful with '>&' '<&' '>|'
887 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000888 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200889 int cur = int_buf[i];
890 if (cur == ';' || cur == '&' || cur == '|') {
891 int prev = i ? int_buf[i - 1] : 0;
892 if (cur == '&' && (prev == '>' || prev == '<')) {
893 continue;
894 } else if (cur == '|' && prev == '>') {
895 continue;
896 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200897 remove_chunk(0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200898 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000899 }
900 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200901 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200902 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000903 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200904 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000905 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200906 /* `cmd` should count as a word:
907 * `cmd` c<tab> should search for files c*,
908 * not commands c*. Therefore we don't drop
909 * `cmd` entirely, we replace it with single `.
910 */
911 remove_chunk(i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200912 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000913 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200914 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200915 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200916 remove_chunk(0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200917 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200918 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000919 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200920 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000921
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200922 /* Remove "cmd (" and "cmd {"
923 * Example: "if { c<tab>"
924 * In this example, c should be matched as command pfx.
925 */
926 for (i = 0; int_buf[i]; i++) {
927 if (int_buf[i] == '(' || int_buf[i] == '{') {
928 remove_chunk(0, i + 1);
929 i = -1; /* hack increment */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000930 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200931 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000932
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200933 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000934 for (i = 0; int_buf[i]; i++)
935 if (int_buf[i] != ' ')
936 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200937 remove_chunk(0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000938
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200939 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000940 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200941 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000942 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200943 if (int_buf[i] == ' '
944 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200945 && (char)int_buf[0] == 'c'
946 && (char)int_buf[1] == 'd'
947 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000948 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000949 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000950 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000951 command_mode = FIND_FILE_ONLY;
952 break;
953 }
954 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200955 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200956 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200957
958 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200959 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
960 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000961 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200962 int cur = int_buf[i];
963 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200964 remove_chunk(0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000965 break;
966 }
967 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000968
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200969 /* Store only match prefix */
970 i = 0;
971 while ((matchBuf[i] = int_buf[i]) != '\0')
972 i++;
973 if (dbg_bmp) printf("final matchBuf:'%s'\n", matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000974
975 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200976}
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000977#undef int_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000978
Glenn L McGrath4d001292003-01-06 01:11:50 +0000979/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200980 * Display by column (original idea from ls applet,
981 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000982 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000983static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000984{
985 int ncols, row;
986 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000987 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000988 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000989 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000990
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200991 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000992 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +0200993 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000994 if (column_width < l)
995 column_width = l;
996 }
997 column_width += 2; /* min space for columns */
998 ncols = cmdedit_termw / column_width;
999
1000 if (ncols > 1) {
1001 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001002 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001003 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001004 } else {
1005 ncols = 1;
1006 }
1007 for (row = 0; row < nrows; row++) {
1008 int n = row;
1009 int nc;
1010
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001011 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001012 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001013 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001014 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001015 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001016 if (ENABLE_UNICODE_SUPPORT)
1017 puts(printable_string(NULL, matches[n]));
1018 else
1019 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001020 }
1021}
1022
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001023static char *add_quote_for_spec_chars(char *found)
1024{
1025 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001026 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001027
1028 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001029 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001030 s[l++] = '\\';
1031 s[l++] = *found++;
1032 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001033 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001034 return s;
1035}
1036
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001037/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001038static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001039{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001040 if (!(state->flags & TAB_COMPLETION))
1041 return;
1042
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001043 if (!*lastWasTab) {
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001044 char *tmp;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +00001045 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001046/* char matchBuf[MAX_LINELEN]; */
1047#define matchBuf (S.input_tab__matchBuf)
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001048 /* Length of string used for matching */
1049 unsigned match_pfx_len = match_pfx_len;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001050 int find_type;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001051#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001052 /* cursor pos in command converted to multibyte form */
1053 int cursor_mb;
1054#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001055
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001056 *lastWasTab = 1;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001057
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001058 /* Make a local copy of the string --
1059 * up to the position of the cursor */
Denys Vlasenko61a36af2010-09-02 12:03:11 +02001060#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001061 save_string(matchBuf, cursor + 1);
Denys Vlasenko61a36af2010-09-02 12:03:11 +02001062#else
1063 {
1064 CHAR_T wc = command_ps[cursor];
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001065 command_ps[cursor] = BB_NUL;
Denys Vlasenko61a36af2010-09-02 12:03:11 +02001066 save_string(matchBuf, MAX_LINELEN);
1067 command_ps[cursor] = wc;
1068 cursor_mb = strlen(matchBuf);
1069 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001070#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001071 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001072
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001073 find_type = build_match_prefix(matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001074
1075 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001076 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +00001077
Denis Vlasenko38f63192007-01-22 09:03:07 +00001078#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001079 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001080 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001081 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +02001082 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001083 match_pfx_len = complete_username(matchBuf);
Mark Whitley4e338752001-01-26 20:42:23 +00001084#endif
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001085 /* Try to match a command in $PATH, or a directory, or a file */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001086 if (!matches)
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001087 match_pfx_len = complete_cmd_dir_file(matchBuf, find_type);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001088 /* Remove duplicates */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001089 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001090 unsigned i;
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001091 unsigned n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +00001092 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001093 for (i = 0; i < num_matches - 1; ++i) {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001094 //if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001095 if (strcmp(matches[i], matches[i+1]) == 0) {
1096 free(matches[i]);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001097 //matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001098 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001099 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +00001100 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001101 //}
Denis Vlasenko92758142006-10-03 19:56:34 +00001102 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001103 matches[n++] = matches[i];
1104 num_matches = n;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001105 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001106 /* Did we find exactly one match? */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001107 if (num_matches != 1) { /* no */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001108 char *tmp1;
Mark Whitley4e338752001-01-26 20:42:23 +00001109 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001110 if (!matches)
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001111 return; /* no matches at all */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001112 /* Find common prefix */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001113 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001114 for (tmp = tmp1; *tmp; tmp++) {
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001115 unsigned n;
1116 for (n = 1; n < num_matches; n++) {
1117 if (matches[n][tmp - tmp1] != *tmp) {
1118 goto stop;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001119 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001120 }
1121 }
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001122 stop:
1123 if (tmp1 == tmp) { /* have unique prefix? */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001124 free(tmp1); /* no */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001125 return;
1126 }
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001127 *tmp = '\0';
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001128 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001129 free(tmp1);
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001130 len_found = strlen(tmp);
1131 } else { /* exactly one match */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001132 /* Next <tab> is not a double-tab */
1133 *lastWasTab = 0;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001134
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001135 tmp = add_quote_for_spec_chars(matches[0]);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001136 len_found = strlen(tmp);
1137 if (tmp[len_found-1] != '/') {
1138 tmp[len_found] = ' ';
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001139 tmp[++len_found] = '\0';
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001140 }
Mark Whitley4e338752001-01-26 20:42:23 +00001141 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001142
Denys Vlasenko19158a82010-03-26 14:06:56 +01001143#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001144 /* Have space to place the match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001145 /* The result consists of three parts with these lengths: */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001146 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001147 /* it simplifies into: */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001148 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1149 int pos;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001150 /* save tail */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001151 strcpy(matchBuf, &command_ps[cursor]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001152 /* add match and tail */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001153 sprintf(&command_ps[cursor], "%s%s", tmp + match_pfx_len, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001154 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001155 /* new pos */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001156 pos = cursor + len_found - match_pfx_len;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001157 /* write out the matched command */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001158 redraw(cmdedit_y, command_len - pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001159 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001160#else
1161 {
1162 char command[MAX_LINELEN];
1163 int len = save_string(command, sizeof(command));
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001164 /* Have space to place the match? */
1165 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1166 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1167 int pos;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001168 /* save tail */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001169 strcpy(matchBuf, &command[cursor_mb]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001170 /* where do we want to have cursor after all? */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001171 strcpy(&command[cursor_mb], tmp + match_pfx_len);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001172 len = load_string(command, S.maxsize);
1173 /* add match and tail */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001174 sprintf(&command[cursor_mb], "%s%s", tmp + match_pfx_len, matchBuf);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001175 command_len = load_string(command, S.maxsize);
1176 /* write out the matched command */
Denys Vlasenko61a36af2010-09-02 12:03:11 +02001177 /* paranoia: load_string can return 0 on conv error,
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001178 * prevent passing pos = (0 - 12) to redraw */
1179 pos = command_len - len;
1180 redraw(cmdedit_y, pos >= 0 ? pos : 0);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001181 }
1182 }
1183#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001184 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001185#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001186 } else {
1187 /* Ok -- the last char was a TAB. Since they
1188 * just hit TAB again, print a list of all the
1189 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001190 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001191 /* changed by goto_new_line() */
1192 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001193
1194 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001195 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001196 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001197 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001198 }
1199 }
1200}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001201
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001202#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001203
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001204
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001205line_input_t* FAST_FUNC new_line_input_t(int flags)
1206{
1207 line_input_t *n = xzalloc(sizeof(*n));
1208 n->flags = flags;
1209 return n;
1210}
1211
1212
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001213#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001214
Denis Vlasenko682ad302008-09-27 01:28:56 +00001215static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001216{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001217 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001218 int cur = state->cur_history;
1219 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001220
Denys Vlasenko19158a82010-03-26 14:06:56 +01001221# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001222 {
1223 char tbuf[MAX_LINELEN];
1224 save_string(tbuf, sizeof(tbuf));
1225 state->history[cur] = xstrdup(tbuf);
1226 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001227# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001228 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001229# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001230 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001231}
1232
1233/* state->flags is already checked to be nonzero */
1234static int get_previous_history(void)
1235{
1236 if ((state->flags & DO_HISTORY) && state->cur_history) {
1237 save_command_ps_at_cur_history();
1238 state->cur_history--;
1239 return 1;
1240 }
1241 beep();
1242 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001243}
1244
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001245static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001246{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001247 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001248 if (state->cur_history < state->cnt_history) {
1249 save_command_ps_at_cur_history(); /* save the current history line */
1250 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001251 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001252 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001253 beep();
1254 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001255}
Robert Griebl350d26b2002-12-03 22:45:46 +00001256
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001257# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001258/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001259 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001260 * Otherwise shell users get unhappy.
1261 *
1262 * History file is trimmed lazily, when it grows several times longer
1263 * than configured MAX_HISTORY lines.
1264 */
1265
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001266static void free_line_input_t(line_input_t *n)
1267{
1268 int i = n->cnt_history;
1269 while (i > 0)
1270 free(n->history[--i]);
1271 free(n);
1272}
1273
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001274/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001275static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001276{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001277 char *temp_h[MAX_HISTORY];
1278 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001279 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001280 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001281
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001282 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001283
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001284 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001285 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001286 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001287 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001288 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001289 free(st_parm->history[idx]);
1290 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001291 }
1292
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001293 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1294 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001295 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001296 while ((line = xmalloc_fgetline(fp)) != NULL) {
1297 if (line[0] == '\0') {
1298 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001299 continue;
1300 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001301 free(temp_h[idx]);
1302 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001303 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001304 idx++;
1305 if (idx == MAX_HISTORY)
1306 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001307 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001308 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001309
1310 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001311 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001312 while (temp_h[idx] == NULL) {
1313 idx++;
1314 if (idx == MAX_HISTORY)
1315 idx = 0;
1316 }
1317 }
1318
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001319 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001320 for (i = 0; i < MAX_HISTORY;) {
1321 line = temp_h[idx];
1322 if (!line)
1323 break;
1324 idx++;
1325 if (idx == MAX_HISTORY)
1326 idx = 0;
1327 line_len = strlen(line);
1328 if (line_len >= MAX_LINELEN)
1329 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001330 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001331 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001332 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001333 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001334}
1335
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001336/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001337static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001338{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001339 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001340 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001341
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001342 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1343 if (fd < 0)
1344 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001345 xlseek(fd, 0, SEEK_END); /* paranoia */
1346 len = strlen(str);
1347 str[len] = '\n'; /* we (try to) do atomic write */
1348 len2 = full_write(fd, str, len + 1);
1349 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001350 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001351 if (len2 != len + 1)
1352 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001353
1354 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001355 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001356 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1357 FILE *fp;
1358 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001359 line_input_t *st_temp;
1360 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001361
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001362 /* we may have concurrently written entries from others.
1363 * load them */
1364 st_temp = new_line_input_t(state->flags);
1365 st_temp->hist_file = state->hist_file;
1366 load_history(st_temp);
1367
1368 /* write out temp file and replace hist_file atomically */
1369 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001370 fp = fopen_for_write(new_name);
1371 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001372 for (i = 0; i < st_temp->cnt_history; i++)
1373 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001374 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001375 if (rename(new_name, state->hist_file) == 0)
1376 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001377 }
1378 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001379 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001380 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001381}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001382# else
1383# define load_history(a) ((void)0)
1384# define save_history(a) ((void)0)
1385# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001386
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001387static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001388{
1389 int i;
1390
1391 if (!(state->flags & DO_HISTORY))
1392 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001393 if (str[0] == '\0')
1394 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001395 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001396 /* Don't save dupes */
1397 if (i && strcmp(state->history[i-1], str) == 0)
1398 return;
1399
1400 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1401 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1402
1403 /* If history[] is full, remove the oldest command */
1404 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001405 if (i >= MAX_HISTORY) {
1406 free(state->history[0]);
1407 for (i = 0; i < MAX_HISTORY-1; i++)
1408 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001409 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001410 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001411 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001412 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001413 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001414 state->cur_history = i;
1415 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001416# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001417 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001418 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001419# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001420 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001421}
1422
1423#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001424# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001425#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001426
1427
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001428#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001429/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001430 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001431 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001432static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001433vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001434{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001435 CHAR_T *command = command_ps;
1436
1437 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001438 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001439 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001440 input_forward();
1441}
1442
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001443static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001444vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001445{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001446 CHAR_T *command = command_ps;
1447
1448 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001449 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001450 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1451 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001452 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001453 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001454 } else if (BB_ispunct(command[cursor])) {
1455 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001456 input_forward();
1457 }
1458
Denis Vlasenko253ce002007-01-22 08:34:44 +00001459 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001460 input_forward();
1461
Denys Vlasenko13028922009-07-12 00:51:15 +02001462 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001463 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001464 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001465 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001466}
1467
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001468static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001469vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001470{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001471 CHAR_T *command = command_ps;
1472
Paul Fox3f11b1b2005-08-04 19:04:46 +00001473 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001474 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001475 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001476 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001477 input_forward();
1478}
1479
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001480static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001481vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001482{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001483 CHAR_T *command = command_ps;
1484
Denis Vlasenko253ce002007-01-22 08:34:44 +00001485 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001486 return;
1487 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001488 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001489 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001490 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001491 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001492 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001493 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001494 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001495 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001496 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001497 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001498 } else if (BB_ispunct(command[cursor])) {
1499 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001500 input_forward();
1501 }
1502}
1503
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001504static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001505vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001506{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001507 CHAR_T *command = command_ps;
1508
1509 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001510 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001511 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001512 input_backward(1);
1513}
1514
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001515static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001516vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001517{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001518 CHAR_T *command = command_ps;
1519
Paul Fox3f11b1b2005-08-04 19:04:46 +00001520 if (cursor <= 0)
1521 return;
1522 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001523 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001524 input_backward(1);
1525 if (cursor <= 0)
1526 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001527 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001528 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001529 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001530 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001531 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001532 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001533 } else if (BB_ispunct(command[cursor])) {
1534 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001535 input_backward(1);
1536 }
1537}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001538#endif
1539
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001540/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1541static void ctrl_left(void)
1542{
1543 CHAR_T *command = command_ps;
1544
1545 while (1) {
1546 CHAR_T c;
1547
1548 input_backward(1);
1549 if (cursor == 0)
1550 break;
1551 c = command[cursor];
1552 if (c != ' ' && !BB_ispunct(c)) {
1553 /* we reached a "word" delimited by spaces/punct.
1554 * go to its beginning */
1555 while (1) {
1556 c = command[cursor - 1];
1557 if (c == ' ' || BB_ispunct(c))
1558 break;
1559 input_backward(1);
1560 if (cursor == 0)
1561 break;
1562 }
1563 break;
1564 }
1565 }
1566}
1567static void ctrl_right(void)
1568{
1569 CHAR_T *command = command_ps;
1570
1571 while (1) {
1572 CHAR_T c;
1573
1574 c = command[cursor];
1575 if (c == BB_NUL)
1576 break;
1577 if (c != ' ' && !BB_ispunct(c)) {
1578 /* we reached a "word" delimited by spaces/punct.
1579 * go to its end + 1 */
1580 while (1) {
1581 input_forward();
1582 c = command[cursor];
1583 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1584 break;
1585 }
1586 break;
1587 }
1588 input_forward();
1589 }
1590}
1591
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001592
1593/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001594 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001595 */
1596
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001597#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1598static void ask_terminal(void)
1599{
1600 /* Ask terminal where is the cursor now.
1601 * lineedit_read_key handles response and corrects
1602 * our idea of current cursor position.
1603 * Testcase: run "echo -n long_line_long_line_long_line",
1604 * then type in a long, wrapping command and try to
1605 * delete it using backspace key.
1606 * Note: we print it _after_ prompt, because
1607 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1608 */
1609 /* Problem: if there is buffered input on stdin,
1610 * the response will be delivered later,
1611 * possibly to an unsuspecting application.
1612 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1613 * Result:
1614 * ~/srcdevel/bbox/fix/busybox.t4 #
1615 * ~/srcdevel/bbox/fix/busybox.t4 #
1616 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1617 * ~/srcdevel/bbox/fix/busybox.t4 #
1618 *
1619 * Checking for input with poll only makes the race narrower,
1620 * I still can trigger it. Strace:
1621 *
1622 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1623 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1624 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1625 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1626 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1627 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001628 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001629
Denys Vlasenko451add42010-07-25 00:06:41 +02001630 pfd.fd = STDIN_FILENO;
1631 pfd.events = POLLIN;
1632 if (safe_poll(&pfd, 1, 0) == 0) {
1633 S.sent_ESC_br6n = 1;
1634 fputs("\033" "[6n", stdout);
1635 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001636 }
1637}
1638#else
1639#define ask_terminal() ((void)0)
1640#endif
1641
Denis Vlasenko38f63192007-01-22 09:03:07 +00001642#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001643static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001644{
1645 cmdedit_prompt = prmt_ptr;
1646 cmdedit_prmt_len = strlen(prmt_ptr);
1647 put_prompt();
1648}
1649#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001650static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001651{
1652 int prmt_len = 0;
1653 size_t cur_prmt_len = 0;
1654 char flg_not_length = '[';
1655 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001656 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1657 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001658 char c;
1659 char *pbuf;
1660
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001661 cmdedit_prmt_len = 0;
1662
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001663 if (!cwd_buf) {
1664 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001665 }
1666
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001667 cbuf[1] = '\0'; /* never changes */
1668
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001669 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001670 char *free_me = NULL;
1671
1672 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001673 c = *prmt_ptr++;
1674 if (c == '\\') {
1675 const char *cp = prmt_ptr;
1676 int l;
1677
1678 c = bb_process_escape_sequence(&prmt_ptr);
1679 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001680 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001681 break;
1682 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001683
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001684 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001685# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001686 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001687 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001688 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001689# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001690 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001691 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001692 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001693 break;
1694 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001695 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001696 break;
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001697# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001698 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001699 /* /home/user[/something] -> ~[/something] */
1700 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001701 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001702 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001703 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1704 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1705 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001706 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001707 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001708 }
1709 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001710# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001711 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001712 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001713 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001714 if (cp != NULL && cp != pbuf)
1715 pbuf += (cp-pbuf) + 1;
1716 break;
1717 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001718 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001719 break;
1720 case 'e': case 'E': /* \e \E = \033 */
1721 c = '\033';
1722 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001723 case 'x': case 'X': {
1724 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001725 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001726 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001727 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001728 buf2[l] = '\0';
1729 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001730 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001731 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001732 break;
1733 }
1734 prmt_ptr++;
1735 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001736 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001737 if (c == 0)
1738 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001739 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001740 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001741 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001742 case '[': case ']':
1743 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001744 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001745 continue;
1746 }
1747 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001748 } /* switch */
1749 } /* if */
1750 } /* if */
1751 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001752 cur_prmt_len = strlen(pbuf);
1753 prmt_len += cur_prmt_len;
1754 if (flg_not_length != ']')
1755 cmdedit_prmt_len += cur_prmt_len;
1756 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001757 free(free_me);
1758 } /* while */
1759
1760 if (cwd_buf != (char *)bb_msg_unknown)
1761 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001762 cmdedit_prompt = prmt_mem_ptr;
1763 put_prompt();
1764}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001765#endif
1766
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001767static void cmdedit_setwidth(unsigned w, int redraw_flg)
1768{
1769 cmdedit_termw = w;
1770 if (redraw_flg) {
1771 /* new y for current cursor */
1772 int new_y = (cursor + cmdedit_prmt_len) / w;
1773 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001774 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001775 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001776 }
1777}
1778
1779static void win_changed(int nsig)
1780{
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001781 int sv_errno = errno;
Denis Vlasenko55995022008-05-18 22:28:26 +00001782 unsigned width;
Denys Vlasenko451add42010-07-25 00:06:41 +02001783 get_terminal_width_height(0, &width, NULL);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001784 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1785 if (nsig == SIGWINCH)
1786 signal(SIGWINCH, win_changed); /* rearm ourself */
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001787 errno = sv_errno;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001788}
1789
Denys Vlasenko020f4062009-05-17 16:44:54 +02001790static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001791{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001792 int64_t ic;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001793 int timeout = -1;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001794#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001795 char unicode_buf[MB_CUR_MAX + 1];
1796 int unicode_idx = 0;
1797#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001798
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001799 while (1) {
1800 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1801 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1802 * insist on full MB_CUR_MAX buffer to declare input like
1803 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1804 *
1805 * Note: read_key sets errno to 0 on success.
1806 */
1807 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1808 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001809#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001810 if (errno == EAGAIN && unicode_idx != 0)
1811 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001812#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001813 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001814 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001815
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001816#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1817 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001818 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001819 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001820 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001821 if (cursor == 0) { /* otherwise it may be bogus */
1822 int col = ((ic >> 32) & 0x7fff) - 1;
1823 if (col > cmdedit_prmt_len) {
1824 cmdedit_x += (col - cmdedit_prmt_len);
1825 while (cmdedit_x >= cmdedit_termw) {
1826 cmdedit_x -= cmdedit_termw;
1827 cmdedit_y++;
1828 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001829 }
1830 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001831 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001832 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001833#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001834
Denys Vlasenko19158a82010-03-26 14:06:56 +01001835#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001836 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001837 wchar_t wc;
1838
1839 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001840 break;
1841 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001842
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001843 unicode_buf[unicode_idx++] = ic;
1844 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001845 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1846 /* Not (yet?) a valid unicode char */
1847 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001848 timeout = 50;
1849 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001850 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001851 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001852 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001853 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001854# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001855 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001856# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001857 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001858# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001859 } else {
1860 /* Valid unicode char, return its code */
1861 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001862 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001863 }
1864#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001865 break;
1866 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001867
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001868 return ic;
1869}
1870
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001871#if ENABLE_UNICODE_BIDI_SUPPORT
1872static int isrtl_str(void)
1873{
1874 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001875
1876 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001877 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001878 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001879}
1880#else
1881# define isrtl_str() 0
1882#endif
1883
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001884/* leave out the "vi-mode"-only case labels if vi editing isn't
1885 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001886#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001887
1888/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001889#undef CTRL
1890#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001891
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001892/* maxsize must be >= 2.
1893 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001894 * -1 on read errors or EOF, or on bare Ctrl-D,
1895 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001896 * >0 length of input string, including terminating '\n'
1897 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001898int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001899{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001900 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001901#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001902 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001903#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001904 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001905#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001906 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001907#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001908 struct termios initial_settings;
1909 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001910 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001911
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001912 INIT_S();
1913
1914 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1915 || !(initial_settings.c_lflag & ECHO)
1916 ) {
1917 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001918 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001919 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001920 if (fgets(command, maxsize, stdin) == NULL)
1921 len = -1; /* EOF or error */
1922 else
1923 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001924 DEINIT_S();
1925 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001926 }
1927
Denys Vlasenko28055022010-01-04 20:49:58 +01001928 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001929
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001930// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001931 if (maxsize > MAX_LINELEN)
1932 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001933 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001934
1935 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001936 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001937#if MAX_HISTORY > 0
1938# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001939 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001940 if (state->cnt_history == 0)
1941 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001942# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001943 if (state->flags & DO_HISTORY)
1944 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001945#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001946
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001947 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001948 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001949 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001950#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001951 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1952#else
Mark Whitley4e338752001-01-26 20:42:23 +00001953 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001954 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001955#endif
1956#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001957
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001958 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001959 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1960 /* Turn off echoing and CTRL-C, so we can trap it */
1961 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001962 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001963 new_settings.c_cc[VMIN] = 1;
1964 new_settings.c_cc[VTIME] = 0;
1965 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001966#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001967# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001968#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001969 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001970 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001971
Eric Andersen6faae7d2001-02-16 20:09:17 +00001972 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001973 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1974 win_changed(0); /* do initial resizing */
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001975#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001976 {
1977 struct passwd *entry;
1978
1979 entry = getpwuid(geteuid());
1980 if (entry) {
1981 user_buf = xstrdup(entry->pw_name);
1982 home_pwd_buf = xstrdup(entry->pw_dir);
1983 }
1984 }
1985#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001986
1987#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001988 for (i = 0; i <= MAX_HISTORY; i++)
1989 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001990 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1991#endif
1992
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001993 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001994 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001995 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001996
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001997 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001998 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001999 /*
2000 * The emacs and vi modes share much of the code in the big
2001 * command loop. Commands entered when in vi's command mode
2002 * (aka "escape mode") get an extra bit added to distinguish
2003 * them - this keeps them from being self-inserted. This
2004 * clutters the big switch a bit, but keeps all the code
2005 * in one place.
2006 */
2007 enum {
2008 VI_CMDMODE_BIT = 0x40000000,
2009 /* 0x80000000 bit flags KEYCODE_xxx */
2010 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002011 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002012
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002013 fflush_all();
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002014 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002015
Denis Vlasenko38f63192007-01-22 09:03:07 +00002016#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002017 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002018 if (vi_cmdmode) {
2019 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2020 * change ic if it contains one of them: */
2021 ic |= VI_CMDMODE_BIT;
2022 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002023#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002024
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002025 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002026 case '\n':
2027 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002028 vi_case('\n'|VI_CMDMODE_BIT:)
2029 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002030 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002031 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002032 break_out = 1;
2033 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002034 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002035 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002036 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002037 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002038 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002039 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002040 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002041 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002042 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002043 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002044 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002045 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002046 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002047 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002048 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002049 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002050 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002051 vi_case('l'|VI_CMDMODE_BIT:)
2052 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002053 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002054 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002055 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002056 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002057 if (!isrtl_str())
2058 input_backspace();
2059 else
2060 input_delete(0);
2061 break;
2062 case KEYCODE_DELETE:
2063 if (!isrtl_str())
2064 input_delete(0);
2065 else
2066 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002067 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002068#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002069 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002070 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002071 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002072#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002073 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002074 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002075 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002076 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002077 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002078 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002079 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002080 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002081 /* Control-l -- clear screen */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002082 printf("\033[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002083 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002084 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002085#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002086 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002087 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2088 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002089 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002090 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002091 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002092 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002093 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002094 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2095 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002096 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002097 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002098 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002099 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002100#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002101 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002102 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002103 /* Control-U -- Clear line before cursor */
2104 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002105 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002106 memmove(command_ps, command_ps + cursor,
2107 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002108 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002109 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002110 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002111 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002112 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002113 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002114 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002115 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002116 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002117 input_backspace();
2118 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002119
Denis Vlasenko38f63192007-01-22 09:03:07 +00002120#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002121 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002122 vi_cmdmode = 0;
2123 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002124 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002125 input_backward(cursor);
2126 vi_cmdmode = 0;
2127 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002128 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002129 input_forward();
2130 vi_cmdmode = 0;
2131 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002132 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002133 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002134 vi_cmdmode = 0;
2135 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002136 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002137 input_delete(1);
2138 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002139 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002140 if (cursor > 0) {
2141 input_backward(1);
2142 input_delete(1);
2143 }
2144 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002145 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002146 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002147 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002148 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002149 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002150 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002151 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002152 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002153 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002154 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002155 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002156 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002157 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002158 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002159 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002160 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002161 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002162 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002163 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002164 vi_cmdmode = 0;
2165 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002166 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002167 goto clear_to_eol;
2168
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002169 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002170 vi_cmdmode = 0;
2171 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002172 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002173 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002174
Denys Vlasenko020f4062009-05-17 16:44:54 +02002175 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002176 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002177 goto prepare_to_die;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002178 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002179 input_backward(cursor);
2180 goto clear_to_eol;
2181 break;
2182 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002183
2184 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002185 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002186 case 'w':
2187 case 'W':
2188 case 'e':
2189 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002190 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002191 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002192 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002193 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002194 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002195 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002196 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002197 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002198 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002199 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002200 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002201 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002202 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002203 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002204 break;
2205 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002206 nc = cursor;
2207 input_backward(cursor - sc);
2208 while (nc-- > cursor)
2209 input_delete(1);
2210 break;
2211 case 'b': /* "db", "cb" */
2212 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002213 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002214 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002215 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002216 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002217 while (sc-- > cursor)
2218 input_delete(1);
2219 break;
2220 case ' ': /* "d ", "c " */
2221 input_delete(1);
2222 break;
2223 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002224 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002225 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002226 input_delete(1);
2227 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002228 }
2229 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002230 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002231 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002232 input_forward();
2233 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002234 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002235 put();
2236 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002237 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002238//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002239 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002240 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002241 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002242 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002243 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002244 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002245 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002246 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002247 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002248 }
2249 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002250 case '\x1b': /* ESC */
2251 if (state->flags & VI_MODE) {
2252 /* insert mode --> command mode */
2253 vi_cmdmode = 1;
2254 input_backward(1);
2255 }
2256 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002257#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002258
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002259#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002260 case KEYCODE_UP:
2261 if (get_previous_history())
2262 goto rewrite_line;
2263 beep();
2264 break;
2265 case KEYCODE_DOWN:
2266 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002267 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002268 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002269 /* Rewrite the line with the selected history item */
2270 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002271 command_len = load_string(state->history[state->cur_history] ?
2272 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002273 /* redraw and go to eol (bol, in vi) */
2274 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2275 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002276#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002277 case KEYCODE_RIGHT:
2278 input_forward();
2279 break;
2280 case KEYCODE_LEFT:
2281 input_backward(1);
2282 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002283 case KEYCODE_CTRL_LEFT:
2284 ctrl_left();
2285 break;
2286 case KEYCODE_CTRL_RIGHT:
2287 ctrl_right();
2288 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002289 case KEYCODE_HOME:
2290 input_backward(cursor);
2291 break;
2292 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002293 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002294 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002295
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002296 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002297 if (initial_settings.c_cc[VINTR] != 0
2298 && ic_raw == initial_settings.c_cc[VINTR]
2299 ) {
2300 /* Ctrl-C (usually) - stop gathering input */
2301 goto_new_line();
2302 command_len = 0;
2303 break_out = -1; /* "do not append '\n'" */
2304 break;
2305 }
2306 if (initial_settings.c_cc[VEOF] != 0
2307 && ic_raw == initial_settings.c_cc[VEOF]
2308 ) {
2309 /* Ctrl-D (usually) - delete one character,
2310 * or exit if len=0 and no chars to delete */
2311 if (command_len == 0) {
2312 errno = 0;
2313#if ENABLE_FEATURE_EDITING_VI
2314 prepare_to_die:
2315#endif
2316 break_out = command_len = -1;
2317 break;
2318 }
2319 input_delete(0);
2320 break;
2321 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002322// /* Control-V -- force insert of next char */
2323// if (c == CTRL('V')) {
2324// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2325// goto prepare_to_die;
2326// if (c == 0) {
2327// beep();
2328// break;
2329// }
2330// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002331 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002332 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2333 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002334 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002335 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002336 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002337 * Otherwise, we are here if ic is a
2338 * control char or an unhandled ESC sequence,
2339 * which is also ignored.
2340 */
2341 break;
2342 }
2343 if ((int)command_len >= (maxsize - 2)) {
2344 /* Not enough space for the char and EOL */
2345 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002346 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002347
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002348 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002349 if (cursor == (command_len - 1)) {
2350 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002351 command_ps[cursor] = ic;
2352 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002353 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002354 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002355 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002356 } else {
2357 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002358 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002359
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002360 memmove(command_ps + sc + 1, command_ps + sc,
2361 (command_len - sc) * sizeof(command_ps[0]));
2362 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002363 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2364 if (!isrtl_str())
2365 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002366 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002367 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002368 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002369 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002370 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002371 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002372
2373 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002374 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002375
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002376#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002377 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002378 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002379#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002380 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002381
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002382#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002383 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002384 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2385 * We sent "ESC [ 6 n", but got '\n' first, and
2386 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2387 * It's bad already and not much can be done with it
2388 * (it _will_ be visible for the next process to read stdin),
2389 * but without this delay it even shows up on the screen
2390 * as garbage because we restore echo settings with tcsetattr
2391 * before it comes in. UGLY!
2392 */
2393 usleep(20*1000);
2394 }
2395#endif
2396
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002397/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002398#undef command
2399
Denys Vlasenko19158a82010-03-26 14:06:56 +01002400#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002401 command[0] = '\0';
2402 if (command_len > 0)
2403 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002404 free(command_ps);
2405#endif
2406
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002407 if (command_len > 0)
2408 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002409
Eric Andersen27bb7902003-12-23 20:24:51 +00002410 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002411 command[command_len++] = '\n';
2412 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002413 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002414
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002415#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002416 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002417#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002418
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002419 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002420 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002421 /* restore SIGWINCH handler */
2422 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002423 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002424
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002425 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002426 DEINIT_S();
2427
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002428 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002429}
2430
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002431#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002432
2433#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002434int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002435{
2436 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002437 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002438 fgets(command, maxsize, stdin);
2439 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002440}
2441
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002442#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002443
2444
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002445/*
2446 * Testing
2447 */
2448
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002449#ifdef TEST
2450
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002451#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002452
2453const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002454
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002455int main(int argc, char **argv)
2456{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002457 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002458 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002459#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002460 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2461 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2462 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002463#else
2464 "% ";
2465#endif
2466
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002467 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002468 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002469 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002470 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002471 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002472 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002473 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002474 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002475 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002476 return 0;
2477}
2478
Eric Andersenc470f442003-07-28 09:56:35 +00002479#endif /* TEST */