blob: e40917f620a00138623b0bde2ef7d0fca61529f3 [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 {
102 /* We use int16_t for positions, need to limit line len */
103 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000104 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000105 : 0x7ff0
106};
Robert Griebl350d26b2002-12-03 22:45:46 +0000107
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200108#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000109static const char null_str[] ALIGN1 = "";
110#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000111
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000112/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000113struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000114 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000115
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000116 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
117 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000118
Denys Vlasenko020f4062009-05-17 16:44:54 +0200119 unsigned cmdedit_x; /* real x (col) terminal position */
120 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000121 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000122
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000123 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200124 int command_len; /* must be signed */
125 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200126 * to _not_ be promoted to unsigned */
127 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200128 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000129
130 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000131#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000132 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000133#endif
134
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200135#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000136 char *user_buf;
137 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000138#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000139
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000140#if ENABLE_FEATURE_TAB_COMPLETION
141 char **matches;
142 unsigned num_matches;
143#endif
144
145#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200146# define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200147 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000148 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200149 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000150#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100151#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100152 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100153#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000154
155 /* Formerly these were big buffers on stack: */
156#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000157 char input_tab__matchBuf[MAX_LINELEN];
158 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
159 int16_t find_match__pos_buf[MAX_LINELEN + 1];
160#endif
161};
162
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000163/* See lineedit_ptr_hack.c */
164extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000165
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000166#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000167#define state (S.state )
168#define cmdedit_termw (S.cmdedit_termw )
169#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
170#define cmdedit_x (S.cmdedit_x )
171#define cmdedit_y (S.cmdedit_y )
172#define cmdedit_prmt_len (S.cmdedit_prmt_len)
173#define cursor (S.cursor )
174#define command_len (S.command_len )
175#define command_ps (S.command_ps )
176#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000177#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000178#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000179#define home_pwd_buf (S.home_pwd_buf )
180#define matches (S.matches )
181#define num_matches (S.num_matches )
182#define delptr (S.delptr )
183#define newdelflag (S.newdelflag )
184#define delbuf (S.delbuf )
185
186#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000187 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000188 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000189 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000190 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200191 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000192} while (0)
193static void deinit_S(void)
194{
195#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000196 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200197 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000198 free((char*)cmdedit_prompt);
199#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200200#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000201 free(user_buf);
202 if (home_pwd_buf != null_str)
203 free(home_pwd_buf);
204#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000205 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000206}
207#define DEINIT_S() deinit_S()
208
Denis Vlasenko2c844952008-04-25 18:44:35 +0000209
Denys Vlasenko19158a82010-03-26 14:06:56 +0100210#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200211static size_t load_string(const char *src, int maxsize)
212{
213 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
214 if (len < 0)
215 len = 0;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200216 command_ps[len] = BB_NUL;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200217 return len;
218}
Tomas Heinricha659b812010-04-29 13:43:39 +0200219static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200220{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200221# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200222 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
223 if (len < 0)
224 len = 0;
225 dst[len] = '\0';
226 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200227# else
Tomas Heinricha659b812010-04-29 13:43:39 +0200228 unsigned dstpos = 0;
229 unsigned srcpos = 0;
230
231 maxsize--;
232 while (dstpos < maxsize) {
233 wchar_t wc;
234 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200235
236 /* Convert up to 1st invalid byte (or up to end) */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200237 while ((wc = command_ps[srcpos]) != BB_NUL
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200238 && !unicode_is_raw_byte(wc)
Tomas Heinricha659b812010-04-29 13:43:39 +0200239 ) {
240 srcpos++;
241 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200242 command_ps[srcpos] = BB_NUL;
Tomas Heinricha659b812010-04-29 13:43:39 +0200243 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
244 if (n < 0) /* should not happen */
245 break;
246 dstpos += n;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200247 if (wc == BB_NUL) /* usually is */
Tomas Heinricha659b812010-04-29 13:43:39 +0200248 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200249
Tomas Heinricha659b812010-04-29 13:43:39 +0200250 /* We do have invalid byte here! */
251 command_ps[srcpos] = wc; /* restore it */
252 srcpos++;
253 if (dstpos == maxsize)
254 break;
255 dst[dstpos++] = (char) wc;
256 }
257 dst[dstpos] = '\0';
258 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200259# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200260}
261/* I thought just fputwc(c, stdout) would work. But no... */
262static void BB_PUTCHAR(wchar_t c)
263{
264 char buf[MB_CUR_MAX + 1];
265 mbstate_t mbst = { 0 };
Tomas Heinricha659b812010-04-29 13:43:39 +0200266 ssize_t len;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200267
Tomas Heinricha659b812010-04-29 13:43:39 +0200268 len = wcrtomb(buf, c, &mbst);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200269 if (len > 0) {
270 buf[len] = '\0';
271 fputs(buf, stdout);
272 }
273}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200274# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
275static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
276# else
277static wchar_t adjust_width_and_validate_wc(wchar_t wc)
278# define adjust_width_and_validate_wc(width_adj, wc) \
279 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
280# endif
281{
282 int w = 1;
283
284 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200285 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
286 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200287 goto subst;
288 }
289 w = wcwidth(wc);
290 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
291 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
292 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
293 ) {
294 subst:
295 w = 1;
296 wc = CONFIG_SUBST_WCHAR;
297 }
298 }
299
300# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
301 *width_adj += w;
302#endif
303 return wc;
304}
305#else /* !UNICODE */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200306static size_t load_string(const char *src, int maxsize)
307{
308 safe_strncpy(command_ps, src, maxsize);
309 return strlen(command_ps);
310}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200311# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200312static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200313{
314 safe_strncpy(dst, command_ps, maxsize);
315}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200316# endif
317# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200318/* Should never be called: */
319int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200320#endif
321
322
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000323/* Put 'command_ps[cursor]', cursor++.
324 * Advance cursor on screen. If we reached right margin, scroll text up
325 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000326#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200327static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000328{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200329 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200330 unsigned width = 0;
331 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000332
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200333 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000334 /* erase character after end of input string */
335 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200336 } else {
337 /* advance cursor only if we aren't at the end yet */
338 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200339 if (unicode_status == UNICODE_ON) {
340 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
341 c = adjust_width_and_validate_wc(&cmdedit_x, c);
342 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
343 } else {
344 cmdedit_x++;
345 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000346 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200347
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200348 ofs_to_right = cmdedit_x - cmdedit_termw;
349 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
350 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200351 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000352 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200353
354 if (ofs_to_right >= 0) {
355 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000356#if HACK_FOR_WRONG_WIDTH
357 /* This works better if our idea of term width is wrong
358 * and it is actually wider (often happens on serial lines).
359 * Printing CR,LF *forces* cursor to next line.
360 * OTOH if terminal width is correct AND terminal does NOT
361 * have automargin (IOW: it is moving cursor to next line
362 * by itself (which is wrong for VT-10x terminals)),
363 * this will break things: there will be one extra empty line */
364 puts("\r"); /* + implicit '\n' */
365#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200366 /* VT-10x terminals don't wrap cursor to next line when last char
367 * on the line is printed - cursor stays "over" this char.
368 * Need to print _next_ char too (first one to appear on next line)
369 * to make cursor move down to next line.
370 */
371 /* Works ok only if cmdedit_termw is correct. */
372 c = command_ps[cursor];
373 if (c == BB_NUL)
374 c = ' ';
375 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000376 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000377#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200378 cmdedit_y++;
379 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
380 width = 0;
381 } else { /* ofs_to_right > 0 */
382 /* wide char c didn't fit on prev line */
383 BB_PUTCHAR(c);
384 }
385 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000386 }
Erik Andersen13456d12000-03-16 08:09:57 +0000387}
388
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000389/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200390static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000391{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000392 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200393 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000394}
395
396/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000397static void goto_new_line(void)
398{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200399 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200400 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000401 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000402}
403
Rob Landley88621d72006-08-29 19:41:06 +0000404static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000405{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000406 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000407}
408
Denys Vlasenko248c3242010-05-17 00:45:44 +0200409static void put_prompt(void)
410{
411 unsigned w;
412
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200413 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200414 fflush_all();
415 cursor = 0;
416 w = cmdedit_termw; /* read volatile var once */
417 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
418 cmdedit_x = cmdedit_prmt_len % w;
419}
420
Eric Andersenaff114c2004-04-14 17:51:38 +0000421/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000422/* (optimized for slow terminals) */
423static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000424{
425 if (num > cursor)
426 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200427 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000428 return;
429 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000430
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200431 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
432 && unicode_status == UNICODE_ON
433 ) {
434 /* correct NUM to be equal to _screen_ width */
435 int n = num;
436 num = 0;
437 while (--n >= 0)
438 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
439 if (num == 0)
440 return;
441 }
442
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000443 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000444 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000445 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000446 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000447 * Also gets miscompiled for ARM users
448 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000449 * printf(("\b\b\b\b" + 4) - num);
450 * return;
451 */
452 do {
453 bb_putchar('\b');
454 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000455 return;
456 }
457 printf("\033[%uD", num);
458 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000459 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000460
461 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200462 if (ENABLE_UNICODE_WIDE_WCHARS) {
463 /* With wide chars, it is hard to "backtrack"
464 * and reliably figure out where to put cursor.
465 * Example (<> is a wide char; # is an ordinary char, _ cursor):
466 * |prompt: <><> |
467 * |<><><><><><> |
468 * |_ |
469 * and user presses left arrow. num = 1, cmdedit_x = 0,
470 * We need to go up one line, and then - how do we know that
471 * we need to go *10* positions to the right? Because
472 * |prompt: <>#<>|
473 * |<><><>#<><><>|
474 * |_ |
475 * in this situation we need to go *11* positions to the right.
476 *
477 * A simpler thing to do is to redraw everything from the start
478 * up to new cursor position (which is already known):
479 */
480 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200481 /* go to 1st column; go up to first line */
482 printf("\r" "\033[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200483 cmdedit_y = 0;
484 sv_cursor = cursor;
485 put_prompt(); /* sets cursor to 0 */
486 while (cursor < sv_cursor)
487 put_cur_glyph_and_inc_cursor();
488 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200489 int lines_up;
490 unsigned width;
491 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200492 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200493 width = cmdedit_termw; /* read volatile var once */
494 /* num=1...w: one line up, w+1...2w: two, etc: */
495 lines_up = 1 + (num - 1) / width;
496 cmdedit_x = (width * cmdedit_y - num) % width;
497 cmdedit_y -= lines_up;
498 /* go to 1st column; go up */
499 printf("\r" "\033[%uA", lines_up);
500 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200501 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
502 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200503 if (cmdedit_x)
504 printf("\033[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000505 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000506}
507
Eric Andersenaff114c2004-04-14 17:51:38 +0000508/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000509static void redraw(int y, int back_cursor)
510{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200511 if (y > 0) /* up y lines */
Denys Vlasenko044b1802009-07-12 02:50:35 +0200512 printf("\033[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000513 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000514 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200515 put_till_end_and_adv_cursor();
516 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000517 input_backward(back_cursor);
518}
519
Paul Fox3f11b1b2005-08-04 19:04:46 +0000520/* Delete the char in front of the cursor, optionally saving it
521 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000522#if !ENABLE_FEATURE_EDITING_VI
523static void input_delete(void)
524#define input_delete(save) input_delete()
525#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000526static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000527#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000528{
Mark Whitley4e338752001-01-26 20:42:23 +0000529 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000530
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000531 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000532 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000533
Denis Vlasenko38f63192007-01-22 09:03:07 +0000534#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000535 if (save) {
536 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000537 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000538 newdelflag = 0;
539 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000540 if ((delptr - delbuf) < DELBUFSIZ)
541 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000542 }
543#endif
544
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200545 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200546 /* (command_len + 1 [because of NUL]) - (j + 1)
547 * simplified into (command_len - j) */
548 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000549 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200550 put_till_end_and_adv_cursor();
551 /* Last char is still visible, erase it (and more) */
552 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000553 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000554}
555
Denis Vlasenko38f63192007-01-22 09:03:07 +0000556#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000557static void put(void)
558{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000559 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000560 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000561
Paul Fox3f11b1b2005-08-04 19:04:46 +0000562 if (j == 0)
563 return;
564 ocursor = cursor;
565 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200566 memmove(command_ps + cursor + j, command_ps + cursor,
567 (command_len - cursor + 1) * sizeof(command_ps[0]));
568 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000569 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200570 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000571 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000572}
573#endif
574
Mark Whitley4e338752001-01-26 20:42:23 +0000575/* Delete the char in back of the cursor */
576static void input_backspace(void)
577{
578 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000579 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000580 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000581 }
582}
583
Eric Andersenaff114c2004-04-14 17:51:38 +0000584/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000585static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000586{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000587 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200588 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000589}
590
Denis Vlasenko38f63192007-01-22 09:03:07 +0000591#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000592
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000593static void free_tab_completion_data(void)
594{
595 if (matches) {
596 while (num_matches)
597 free(matches[--num_matches]);
598 free(matches);
599 matches = NULL;
600 }
601}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000602
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000603static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000604{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000605 matches = xrealloc_vector(matches, 4, num_matches);
606 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000607 num_matches++;
608}
609
Denis Vlasenko38f63192007-01-22 09:03:07 +0000610#if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200611/* Replace "~user/..." with "/homedir/...".
612 * The parameter is malloced, free it or return it
613 * unchanged if no user is matched.
614 */
615static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000616{
617 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200618 char *tilde_name = ud;
619 char *home = NULL;
620
621 ud++; /* skip ~ */
622 if (*ud == '/') { /* "~/..." */
623 home = home_pwd_buf;
624 } else {
625 /* "~user/..." */
626 ud = strchr(ud, '/');
627 *ud = '\0'; /* "~user" */
628 entry = getpwnam(tilde_name + 1);
629 *ud = '/'; /* restore "~user/..." */
630 if (entry)
631 home = entry->pw_dir;
632 }
633 if (home) {
634 ud = concat_path_file(home, ud);
635 free(tilde_name);
636 tilde_name = ud;
637 }
638 return tilde_name;
639}
640
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200641/* ~use<tab> - find all users with this prefix.
642 * Return the length of the prefix used for matching.
643 */
644static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200645{
646 /* Using _r function to avoid pulling in static buffers */
647 char line_buff[256];
648 struct passwd pwd;
649 struct passwd *result;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200650 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000651
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200652 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000653 userlen = strlen(ud);
654
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200655 setpwent();
656 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
657 /* Null usernames should result in all users as possible completions. */
658 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
659 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000660 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000661 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200662 endpwent();
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200663
664 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000665}
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200666#endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000667
668enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000669 FIND_EXE_ONLY = 0,
670 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000671 FIND_FILE_ONLY = 2,
672};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000673
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200674static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000675{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000676 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000677 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000678 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000679 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000680
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000681 if (state->flags & WITH_PATH_LOOKUP)
682 pth = state->path_lookup;
683 else
684 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200685
686 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000687 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
688 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000689
Denis Vlasenko253ce002007-01-22 08:34:44 +0000690 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000691 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000692 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000693 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000694 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000695 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200696 tmp++;
697 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000698 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000699 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000700 }
701
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200702 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000703 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000704 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000705 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000706 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000707 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000708 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000709 *tmp++ = '\0'; /* ':' -> '\0' */
710 if (*tmp == '\0')
711 break; /* :<empty> */
712 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000713 }
Mark Whitley4e338752001-01-26 20:42:23 +0000714 return npth;
715}
716
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200717/* Complete command, directory or file name.
718 * Return the length of the prefix used for matching.
719 */
720static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000721{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000722 char *path1[1];
723 char **paths = path1;
724 int npaths;
725 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200726 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200727 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200728 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000729
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000730 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000731 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000732
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200733 pfind = strrchr(command, '/');
734 if (!pfind) {
735 if (type == FIND_EXE_ONLY)
736 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000737 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000738 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000739 /* point to 'l' in "..../last_component" */
740 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200741 /* dirbuf = ".../.../.../" */
742 dirbuf = xstrndup(command, pfind - command);
743#if ENABLE_FEATURE_USERNAME_COMPLETION
744 if (dirbuf[0] == '~') /* ~/... or ~user/... */
745 dirbuf = username_path_completion(dirbuf);
746#endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200747 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000748 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200749 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000750
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000751 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200752 DIR *dir;
753 struct dirent *next;
754 struct stat st;
755 char *found;
756
Mark Whitley4e338752001-01-26 20:42:23 +0000757 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000758 if (!dir)
759 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000760
761 while ((next = readdir(dir)) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200762 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000763
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200764 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
765 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000766 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200767 /* match? */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200768 if (strncmp(name_found, pfind, pf_len) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200769 continue; /* no */
770
771 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000772 /* NB: stat() first so that we see is it a directory;
773 * but if that fails, use lstat() so that
774 * we still match dangling links */
775 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200776 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000777
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200778 /* save only name if we scan PATH */
779 if (paths[i] != dirbuf)
780 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000781
Mark Whitley4e338752001-01-26 20:42:23 +0000782 if (S_ISDIR(st.st_mode)) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200783 unsigned len1 = strlen(found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000784 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000785 if (found[len1-1] != '/') {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200786 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000787 found[len1] = '/';
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200788 found[len1 + 1] = '\0';
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000789 }
Mark Whitley4e338752001-01-26 20:42:23 +0000790 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200791 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000792 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000793 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000794 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200795 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000796 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000797 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000798 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000799 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000800 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000801 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200802 } /* for every path */
803
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000804 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000805 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000806 free(paths);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200807 } else if (dirbuf) {
808 pf_len += strlen(dirbuf);
809 free(dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000810 }
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200811
812 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000813}
Erik Andersenf0657d32000-04-12 17:49:52 +0000814
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200815/* build_match_prefix:
816 * On entry, matchBuf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200817 * was pressed. This function looks at it, figures out what part of it
818 * constitutes the command/file/directory prefix to use for completion,
819 * and rewrites matchBuf to contain only that part.
820 */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200821/* Helpers: */
822/* QUOT is used on elements of int_buf[], which are bytes,
823 * not Unicode chars. Therefore it works correctly even in Unicode mode.
824 */
825#define QUOT (UCHAR_MAX+1)
826#define int_buf (S.find_match__int_buf)
827#define pos_buf (S.find_match__pos_buf)
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200828#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200829static void collapse_pos(int beg, int end)
830{
831 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200832 if (beg == end)
833 return;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200834 memmove(int_buf+beg, int_buf+end, (MAX_LINELEN+1-end) * sizeof(int_buf[0]));
835 memmove(pos_buf+beg, pos_buf+end, (MAX_LINELEN+1-end) * sizeof(pos_buf[0]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200836 if (dbg_bmp) {
837 int i;
838 for (i = 0; int_buf[i]; i++)
839 bb_putchar((unsigned char)int_buf[i]);
840 bb_putchar('\n');
841 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200842}
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200843static NOINLINE int build_match_prefix(char *matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000844{
845 int i, j;
846 int command_mode;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200847/* Were local, but it used too much stack */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000848/* int16_t int_buf[MAX_LINELEN + 1]; */
849/* int16_t pos_buf[MAX_LINELEN + 1]; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000850
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200851 if (dbg_bmp) printf("\n%s\n", matchBuf);
852
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000853 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000854 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000855 if (int_buf[i] == 0) {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200856 pos_buf[i] = -1; /* end-of-line indicator */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000857 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000858 }
859 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000860 }
861
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200862 /* Mark every \c as "quoted c" */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200863 for (i = j = 0; matchBuf[i]; i++, j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000864 if (matchBuf[i] == '\\') {
865 collapse_pos(j, j + 1);
866 int_buf[j] |= QUOT;
867 i++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000868 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200869 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200870 /* Quote-mark "chars" and 'chars' */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200871 {
872 int in_quote = 0;
873 for (i = 0; int_buf[i]; i++) {
874 int cur = int_buf[i];
875 if (cur == '\'' || cur == '"') {
876 if (!in_quote)
877 in_quote = cur;
878 else if (cur == in_quote)
879 in_quote = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000880 else
881 int_buf[i] |= QUOT;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200882 } else if (in_quote && cur != '$') {
883 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000884 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200885 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000886 }
887
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200888 /* Remove everything up to command delimiters:
889 * ';' ';;' '&' '|' '&&' '||',
890 * but careful with '>&' '<&' '>|'
891 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000892 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200893 int cur = int_buf[i];
894 if (cur == ';' || cur == '&' || cur == '|') {
895 int prev = i ? int_buf[i - 1] : 0;
896 if (cur == '&' && (prev == '>' || prev == '<')) {
897 continue;
898 } else if (cur == '|' && prev == '>') {
899 continue;
900 }
901 collapse_pos(0, i + 1 + (cur == int_buf[i + 1]));
902 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000903 }
904 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200905 /* Remove all `cmd` */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200906//BUG: `cmd` should count as a word: `cmd` c<tab> should search for files c*, not commands c*
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200907 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000908 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200909 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000910 if (int_buf[j] == '`') {
911 collapse_pos(i, j + 1);
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 ` */
916 collapse_pos(0, i + 1);
917 break;
918 next:
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200919 i--; /* hack increment */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000920 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200921 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000922
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200923 /* Remove (command...(command...)...) and {command...{command...}...} */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200924 {
925 int paren_lvl = 0;
926 int curly_lvl = 0;
927 for (i = 0; int_buf[i]; i++) {
928 if (int_buf[i] == '(' || int_buf[i] == '{') {
929 if (int_buf[i] == '(')
930 paren_lvl++;
931 else
932 curly_lvl++;
933 collapse_pos(0, i + 1);
934 i = -1; /* hack increment */
935 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000936 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200937 for (i = 0; pos_buf[i] >= 0 && (paren_lvl > 0 || curly_lvl > 0); i++) {
938 if ((int_buf[i] == ')' && paren_lvl > 0)
939 || (int_buf[i] == '}' && curly_lvl > 0)
940 ) {
941 if (int_buf[i] == ')')
942 paren_lvl--;
943 else
944 curly_lvl--;
945 collapse_pos(0, i + 1);
946 i = -1; /* hack increment */
947 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000948 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200949 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000950
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200951 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000952 for (i = 0; int_buf[i]; i++)
953 if (int_buf[i] != ' ')
954 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200955 collapse_pos(0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000956
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200957 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000958 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200959 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000960 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200961 if (int_buf[i] == ' '
962 && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000963 && matchBuf[pos_buf[0]] == 'c'
964 && matchBuf[pos_buf[1]] == 'd'
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200965//BUG: must check "cd ", not "cd"
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000966 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000967 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000968 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000969 command_mode = FIND_FILE_ONLY;
970 break;
971 }
972 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200973 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200974 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200975
976 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200977 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
978 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000979 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200980 int cur = int_buf[i];
981 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000982 collapse_pos(0, i + 1);
983 break;
984 }
985 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200986 /* Skip all leading unquoted ' or " */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200987//BUG: bash doesn't do this
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000988 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200989 continue;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200990 /* Skip quoted or unquoted // or /~ */
991//BUG: bash doesn't do this
992 while ((char)int_buf[i] == '/'
993 && ((char)int_buf[i+1] == '/' || (char)int_buf[i+1] == '~')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000994 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000995 i++;
996 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000997
998 /* set only match and destroy quotes */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200999 {
1000 int pos = 0;
1001 for (j = 0; pos_buf[i] >= 0; i++) {
1002 matchBuf[j++] = matchBuf[pos_buf[i]];
1003 pos = pos_buf[i] + 1;
1004 }
1005 matchBuf[j] = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001006 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001007
1008 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001009}
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001010#undef int_buf
1011#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001012
Glenn L McGrath4d001292003-01-06 01:11:50 +00001013/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001014 * Display by column (original idea from ls applet,
1015 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001016 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001017static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001018{
1019 int ncols, row;
1020 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001021 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001022 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001023 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001024
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001025 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001026 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001027 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001028 if (column_width < l)
1029 column_width = l;
1030 }
1031 column_width += 2; /* min space for columns */
1032 ncols = cmdedit_termw / column_width;
1033
1034 if (ncols > 1) {
1035 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001036 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001037 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001038 } else {
1039 ncols = 1;
1040 }
1041 for (row = 0; row < nrows; row++) {
1042 int n = row;
1043 int nc;
1044
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001045 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001046 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001047 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001048 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001049 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001050 if (ENABLE_UNICODE_SUPPORT)
1051 puts(printable_string(NULL, matches[n]));
1052 else
1053 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001054 }
1055}
1056
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001057static char *add_quote_for_spec_chars(char *found)
1058{
1059 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001060 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001061
1062 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001063 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001064 s[l++] = '\\';
1065 s[l++] = *found++;
1066 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001067 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001068 return s;
1069}
1070
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001071/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001072static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001073{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001074 if (!(state->flags & TAB_COMPLETION))
1075 return;
1076
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001077 if (!*lastWasTab) {
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001078 char *tmp;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +00001079 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001080/* char matchBuf[MAX_LINELEN]; */
1081#define matchBuf (S.input_tab__matchBuf)
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001082 /* Length of string used for matching */
1083 unsigned match_pfx_len = match_pfx_len;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001084 int find_type;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001085#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001086 /* cursor pos in command converted to multibyte form */
1087 int cursor_mb;
1088#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001089
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001090 *lastWasTab = 1;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001091
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001092 /* Make a local copy of the string --
1093 * up to the position of the cursor */
Denys Vlasenko61a36af2010-09-02 12:03:11 +02001094#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001095 save_string(matchBuf, cursor + 1);
Denys Vlasenko61a36af2010-09-02 12:03:11 +02001096#else
1097 {
1098 CHAR_T wc = command_ps[cursor];
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001099 command_ps[cursor] = BB_NUL;
Denys Vlasenko61a36af2010-09-02 12:03:11 +02001100 save_string(matchBuf, MAX_LINELEN);
1101 command_ps[cursor] = wc;
1102 cursor_mb = strlen(matchBuf);
1103 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001104#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001105 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001106
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001107 find_type = build_match_prefix(matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001108
1109 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001110 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +00001111
Denis Vlasenko38f63192007-01-22 09:03:07 +00001112#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001113 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001114 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001115 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +02001116 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001117 match_pfx_len = complete_username(matchBuf);
Mark Whitley4e338752001-01-26 20:42:23 +00001118#endif
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001119 /* Try to match a command in $PATH, or a directory, or a file */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001120 if (!matches)
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001121 match_pfx_len = complete_cmd_dir_file(matchBuf, find_type);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001122 /* Remove duplicates */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001123 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001124 unsigned i;
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001125 unsigned n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +00001126 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001127 for (i = 0; i < num_matches - 1; ++i) {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001128 //if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001129 if (strcmp(matches[i], matches[i+1]) == 0) {
1130 free(matches[i]);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001131 //matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001132 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001133 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +00001134 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001135 //}
Denis Vlasenko92758142006-10-03 19:56:34 +00001136 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001137 matches[n++] = matches[i];
1138 num_matches = n;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001139 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001140 /* Did we find exactly one match? */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001141 if (num_matches != 1) { /* no */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001142 char *tmp1;
Mark Whitley4e338752001-01-26 20:42:23 +00001143 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001144 if (!matches)
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001145 return; /* no matches at all */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001146 /* Find common prefix */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001147 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001148 for (tmp = tmp1; *tmp; tmp++) {
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001149 unsigned n;
1150 for (n = 1; n < num_matches; n++) {
1151 if (matches[n][tmp - tmp1] != *tmp) {
1152 goto stop;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001153 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001154 }
1155 }
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001156 stop:
1157 if (tmp1 == tmp) { /* have unique prefix? */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001158 free(tmp1); /* no */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001159 return;
1160 }
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001161 *tmp = '\0';
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001162 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001163 free(tmp1);
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001164 len_found = strlen(tmp);
1165 } else { /* exactly one match */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001166 /* Next <tab> is not a double-tab */
1167 *lastWasTab = 0;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001168
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001169 tmp = add_quote_for_spec_chars(matches[0]);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001170 len_found = strlen(tmp);
1171 if (tmp[len_found-1] != '/') {
1172 tmp[len_found] = ' ';
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001173 tmp[++len_found] = '\0';
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001174 }
Mark Whitley4e338752001-01-26 20:42:23 +00001175 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001176
Denys Vlasenko19158a82010-03-26 14:06:56 +01001177#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001178 /* Have space to place the match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001179 /* The result consists of three parts with these lengths: */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001180 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001181 /* it simplifies into: */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001182 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1183 int pos;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001184 /* save tail */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001185 strcpy(matchBuf, &command_ps[cursor]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001186 /* add match and tail */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001187 sprintf(&command_ps[cursor], "%s%s", tmp + match_pfx_len, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001188 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001189 /* new pos */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001190 pos = cursor + len_found - match_pfx_len;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001191 /* write out the matched command */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001192 redraw(cmdedit_y, command_len - pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001193 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001194#else
1195 {
1196 char command[MAX_LINELEN];
1197 int len = save_string(command, sizeof(command));
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001198 /* Have space to place the match? */
1199 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1200 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1201 int pos;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001202 /* save tail */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001203 strcpy(matchBuf, &command[cursor_mb]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001204 /* where do we want to have cursor after all? */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001205 strcpy(&command[cursor_mb], tmp + match_pfx_len);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001206 len = load_string(command, S.maxsize);
1207 /* add match and tail */
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001208 sprintf(&command[cursor_mb], "%s%s", tmp + match_pfx_len, matchBuf);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001209 command_len = load_string(command, S.maxsize);
1210 /* write out the matched command */
Denys Vlasenko61a36af2010-09-02 12:03:11 +02001211 /* paranoia: load_string can return 0 on conv error,
Denys Vlasenko3c460b02010-09-03 12:56:36 +02001212 * prevent passing pos = (0 - 12) to redraw */
1213 pos = command_len - len;
1214 redraw(cmdedit_y, pos >= 0 ? pos : 0);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001215 }
1216 }
1217#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001218 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001219#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001220 } else {
1221 /* Ok -- the last char was a TAB. Since they
1222 * just hit TAB again, print a list of all the
1223 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001224 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001225 /* changed by goto_new_line() */
1226 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001227
1228 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001229 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001230 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001231 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001232 }
1233 }
1234}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001235
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001236#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001237
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001238
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001239line_input_t* FAST_FUNC new_line_input_t(int flags)
1240{
1241 line_input_t *n = xzalloc(sizeof(*n));
1242 n->flags = flags;
1243 return n;
1244}
1245
1246
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001247#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001248
Denis Vlasenko682ad302008-09-27 01:28:56 +00001249static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001250{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001251 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001252 int cur = state->cur_history;
1253 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001254
Denys Vlasenko19158a82010-03-26 14:06:56 +01001255# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001256 {
1257 char tbuf[MAX_LINELEN];
1258 save_string(tbuf, sizeof(tbuf));
1259 state->history[cur] = xstrdup(tbuf);
1260 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001261# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001262 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001263# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001264 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001265}
1266
1267/* state->flags is already checked to be nonzero */
1268static int get_previous_history(void)
1269{
1270 if ((state->flags & DO_HISTORY) && state->cur_history) {
1271 save_command_ps_at_cur_history();
1272 state->cur_history--;
1273 return 1;
1274 }
1275 beep();
1276 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001277}
1278
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001279static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001280{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001281 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001282 if (state->cur_history < state->cnt_history) {
1283 save_command_ps_at_cur_history(); /* save the current history line */
1284 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001285 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001286 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001287 beep();
1288 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001289}
Robert Griebl350d26b2002-12-03 22:45:46 +00001290
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001291# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001292/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001293 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001294 * Otherwise shell users get unhappy.
1295 *
1296 * History file is trimmed lazily, when it grows several times longer
1297 * than configured MAX_HISTORY lines.
1298 */
1299
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001300static void free_line_input_t(line_input_t *n)
1301{
1302 int i = n->cnt_history;
1303 while (i > 0)
1304 free(n->history[--i]);
1305 free(n);
1306}
1307
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001308/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001309static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001310{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001311 char *temp_h[MAX_HISTORY];
1312 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001313 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001314 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001315
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001316 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001317
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001318 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001319 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001320 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001321 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001322 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001323 free(st_parm->history[idx]);
1324 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001325 }
1326
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001327 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1328 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001329 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001330 while ((line = xmalloc_fgetline(fp)) != NULL) {
1331 if (line[0] == '\0') {
1332 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001333 continue;
1334 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001335 free(temp_h[idx]);
1336 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001337 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001338 idx++;
1339 if (idx == MAX_HISTORY)
1340 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001341 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001342 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001343
1344 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001345 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001346 while (temp_h[idx] == NULL) {
1347 idx++;
1348 if (idx == MAX_HISTORY)
1349 idx = 0;
1350 }
1351 }
1352
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001353 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001354 for (i = 0; i < MAX_HISTORY;) {
1355 line = temp_h[idx];
1356 if (!line)
1357 break;
1358 idx++;
1359 if (idx == MAX_HISTORY)
1360 idx = 0;
1361 line_len = strlen(line);
1362 if (line_len >= MAX_LINELEN)
1363 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001364 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001365 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001366 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001367 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001368}
1369
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001370/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001371static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001372{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001373 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001374 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001375
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001376 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1377 if (fd < 0)
1378 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001379 xlseek(fd, 0, SEEK_END); /* paranoia */
1380 len = strlen(str);
1381 str[len] = '\n'; /* we (try to) do atomic write */
1382 len2 = full_write(fd, str, len + 1);
1383 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001384 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001385 if (len2 != len + 1)
1386 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001387
1388 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001389 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001390 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1391 FILE *fp;
1392 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001393 line_input_t *st_temp;
1394 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001395
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001396 /* we may have concurrently written entries from others.
1397 * load them */
1398 st_temp = new_line_input_t(state->flags);
1399 st_temp->hist_file = state->hist_file;
1400 load_history(st_temp);
1401
1402 /* write out temp file and replace hist_file atomically */
1403 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001404 fp = fopen_for_write(new_name);
1405 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001406 for (i = 0; i < st_temp->cnt_history; i++)
1407 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001408 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001409 if (rename(new_name, state->hist_file) == 0)
1410 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001411 }
1412 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001413 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001414 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001415}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001416# else
1417# define load_history(a) ((void)0)
1418# define save_history(a) ((void)0)
1419# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001420
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001421static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001422{
1423 int i;
1424
1425 if (!(state->flags & DO_HISTORY))
1426 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001427 if (str[0] == '\0')
1428 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001429 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001430 /* Don't save dupes */
1431 if (i && strcmp(state->history[i-1], str) == 0)
1432 return;
1433
1434 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1435 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1436
1437 /* If history[] is full, remove the oldest command */
1438 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001439 if (i >= MAX_HISTORY) {
1440 free(state->history[0]);
1441 for (i = 0; i < MAX_HISTORY-1; i++)
1442 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001443 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001444 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001445 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001446 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001447 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001448 state->cur_history = i;
1449 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001450# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001451 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001452 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001453# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001454 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001455}
1456
1457#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001458# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001459#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001460
1461
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001462#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001463/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001464 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001465 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001466static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001467vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001468{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001469 CHAR_T *command = command_ps;
1470
1471 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001472 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001473 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001474 input_forward();
1475}
1476
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001477static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001478vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001479{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001480 CHAR_T *command = command_ps;
1481
1482 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001483 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001484 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1485 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001486 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001487 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001488 } else if (BB_ispunct(command[cursor])) {
1489 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001490 input_forward();
1491 }
1492
Denis Vlasenko253ce002007-01-22 08:34:44 +00001493 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001494 input_forward();
1495
Denys Vlasenko13028922009-07-12 00:51:15 +02001496 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001497 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001498 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001499 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001500}
1501
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001502static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001503vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001504{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001505 CHAR_T *command = command_ps;
1506
Paul Fox3f11b1b2005-08-04 19:04:46 +00001507 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001508 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001509 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001510 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001511 input_forward();
1512}
1513
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001514static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001515vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001516{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001517 CHAR_T *command = command_ps;
1518
Denis Vlasenko253ce002007-01-22 08:34:44 +00001519 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001520 return;
1521 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001522 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001523 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001524 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001525 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001526 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001527 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001528 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001529 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001530 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001531 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001532 } else if (BB_ispunct(command[cursor])) {
1533 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001534 input_forward();
1535 }
1536}
1537
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001538static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001539vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001540{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001541 CHAR_T *command = command_ps;
1542
1543 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001544 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001545 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001546 input_backward(1);
1547}
1548
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001549static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001550vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001551{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001552 CHAR_T *command = command_ps;
1553
Paul Fox3f11b1b2005-08-04 19:04:46 +00001554 if (cursor <= 0)
1555 return;
1556 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001557 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001558 input_backward(1);
1559 if (cursor <= 0)
1560 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001561 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001562 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001563 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001564 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001565 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001566 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001567 } else if (BB_ispunct(command[cursor])) {
1568 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001569 input_backward(1);
1570 }
1571}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001572#endif
1573
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001574/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1575static void ctrl_left(void)
1576{
1577 CHAR_T *command = command_ps;
1578
1579 while (1) {
1580 CHAR_T c;
1581
1582 input_backward(1);
1583 if (cursor == 0)
1584 break;
1585 c = command[cursor];
1586 if (c != ' ' && !BB_ispunct(c)) {
1587 /* we reached a "word" delimited by spaces/punct.
1588 * go to its beginning */
1589 while (1) {
1590 c = command[cursor - 1];
1591 if (c == ' ' || BB_ispunct(c))
1592 break;
1593 input_backward(1);
1594 if (cursor == 0)
1595 break;
1596 }
1597 break;
1598 }
1599 }
1600}
1601static void ctrl_right(void)
1602{
1603 CHAR_T *command = command_ps;
1604
1605 while (1) {
1606 CHAR_T c;
1607
1608 c = command[cursor];
1609 if (c == BB_NUL)
1610 break;
1611 if (c != ' ' && !BB_ispunct(c)) {
1612 /* we reached a "word" delimited by spaces/punct.
1613 * go to its end + 1 */
1614 while (1) {
1615 input_forward();
1616 c = command[cursor];
1617 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1618 break;
1619 }
1620 break;
1621 }
1622 input_forward();
1623 }
1624}
1625
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001626
1627/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001628 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001629 */
1630
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001631#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1632static void ask_terminal(void)
1633{
1634 /* Ask terminal where is the cursor now.
1635 * lineedit_read_key handles response and corrects
1636 * our idea of current cursor position.
1637 * Testcase: run "echo -n long_line_long_line_long_line",
1638 * then type in a long, wrapping command and try to
1639 * delete it using backspace key.
1640 * Note: we print it _after_ prompt, because
1641 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1642 */
1643 /* Problem: if there is buffered input on stdin,
1644 * the response will be delivered later,
1645 * possibly to an unsuspecting application.
1646 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1647 * Result:
1648 * ~/srcdevel/bbox/fix/busybox.t4 #
1649 * ~/srcdevel/bbox/fix/busybox.t4 #
1650 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1651 * ~/srcdevel/bbox/fix/busybox.t4 #
1652 *
1653 * Checking for input with poll only makes the race narrower,
1654 * I still can trigger it. Strace:
1655 *
1656 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1657 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1658 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1659 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1660 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1661 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001662 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001663
Denys Vlasenko451add42010-07-25 00:06:41 +02001664 pfd.fd = STDIN_FILENO;
1665 pfd.events = POLLIN;
1666 if (safe_poll(&pfd, 1, 0) == 0) {
1667 S.sent_ESC_br6n = 1;
1668 fputs("\033" "[6n", stdout);
1669 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001670 }
1671}
1672#else
1673#define ask_terminal() ((void)0)
1674#endif
1675
Denis Vlasenko38f63192007-01-22 09:03:07 +00001676#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001677static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001678{
1679 cmdedit_prompt = prmt_ptr;
1680 cmdedit_prmt_len = strlen(prmt_ptr);
1681 put_prompt();
1682}
1683#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001684static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001685{
1686 int prmt_len = 0;
1687 size_t cur_prmt_len = 0;
1688 char flg_not_length = '[';
1689 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001690 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1691 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001692 char c;
1693 char *pbuf;
1694
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001695 cmdedit_prmt_len = 0;
1696
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001697 if (!cwd_buf) {
1698 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001699 }
1700
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001701 cbuf[1] = '\0'; /* never changes */
1702
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001703 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001704 char *free_me = NULL;
1705
1706 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001707 c = *prmt_ptr++;
1708 if (c == '\\') {
1709 const char *cp = prmt_ptr;
1710 int l;
1711
1712 c = bb_process_escape_sequence(&prmt_ptr);
1713 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001714 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001715 break;
1716 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001717
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001718 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001719# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001720 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001721 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001722 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001723# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001724 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001725 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001726 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001727 break;
1728 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001729 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001730 break;
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001731# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001732 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001733 /* /home/user[/something] -> ~[/something] */
1734 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001735 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001736 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001737 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1738 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1739 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001740 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001741 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001742 }
1743 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001744# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001745 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001746 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001747 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001748 if (cp != NULL && cp != pbuf)
1749 pbuf += (cp-pbuf) + 1;
1750 break;
1751 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001752 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001753 break;
1754 case 'e': case 'E': /* \e \E = \033 */
1755 c = '\033';
1756 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001757 case 'x': case 'X': {
1758 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001759 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001760 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001761 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001762 buf2[l] = '\0';
1763 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001764 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001765 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001766 break;
1767 }
1768 prmt_ptr++;
1769 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001770 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001771 if (c == 0)
1772 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001773 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001774 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001775 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001776 case '[': case ']':
1777 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001778 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001779 continue;
1780 }
1781 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001782 } /* switch */
1783 } /* if */
1784 } /* if */
1785 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001786 cur_prmt_len = strlen(pbuf);
1787 prmt_len += cur_prmt_len;
1788 if (flg_not_length != ']')
1789 cmdedit_prmt_len += cur_prmt_len;
1790 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001791 free(free_me);
1792 } /* while */
1793
1794 if (cwd_buf != (char *)bb_msg_unknown)
1795 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001796 cmdedit_prompt = prmt_mem_ptr;
1797 put_prompt();
1798}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001799#endif
1800
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001801static void cmdedit_setwidth(unsigned w, int redraw_flg)
1802{
1803 cmdedit_termw = w;
1804 if (redraw_flg) {
1805 /* new y for current cursor */
1806 int new_y = (cursor + cmdedit_prmt_len) / w;
1807 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001808 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001809 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001810 }
1811}
1812
1813static void win_changed(int nsig)
1814{
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001815 int sv_errno = errno;
Denis Vlasenko55995022008-05-18 22:28:26 +00001816 unsigned width;
Denys Vlasenko451add42010-07-25 00:06:41 +02001817 get_terminal_width_height(0, &width, NULL);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001818 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1819 if (nsig == SIGWINCH)
1820 signal(SIGWINCH, win_changed); /* rearm ourself */
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001821 errno = sv_errno;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001822}
1823
Denys Vlasenko020f4062009-05-17 16:44:54 +02001824static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001825{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001826 int64_t ic;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001827 int timeout = -1;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001828#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001829 char unicode_buf[MB_CUR_MAX + 1];
1830 int unicode_idx = 0;
1831#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001832
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001833 while (1) {
1834 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1835 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1836 * insist on full MB_CUR_MAX buffer to declare input like
1837 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1838 *
1839 * Note: read_key sets errno to 0 on success.
1840 */
1841 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1842 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001843#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001844 if (errno == EAGAIN && unicode_idx != 0)
1845 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001846#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001847 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001848 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001849
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001850#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1851 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001852 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001853 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001854 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001855 if (cursor == 0) { /* otherwise it may be bogus */
1856 int col = ((ic >> 32) & 0x7fff) - 1;
1857 if (col > cmdedit_prmt_len) {
1858 cmdedit_x += (col - cmdedit_prmt_len);
1859 while (cmdedit_x >= cmdedit_termw) {
1860 cmdedit_x -= cmdedit_termw;
1861 cmdedit_y++;
1862 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001863 }
1864 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001865 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001866 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001867#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001868
Denys Vlasenko19158a82010-03-26 14:06:56 +01001869#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001870 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001871 wchar_t wc;
1872
1873 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001874 break;
1875 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001876
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001877 unicode_buf[unicode_idx++] = ic;
1878 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001879 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1880 /* Not (yet?) a valid unicode char */
1881 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001882 timeout = 50;
1883 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001884 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001885 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001886 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001887 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001888# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001889 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001890# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001891 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001892# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001893 } else {
1894 /* Valid unicode char, return its code */
1895 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001896 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001897 }
1898#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001899 break;
1900 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001901
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001902 return ic;
1903}
1904
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001905#if ENABLE_UNICODE_BIDI_SUPPORT
1906static int isrtl_str(void)
1907{
1908 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001909
1910 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001911 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001912 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001913}
1914#else
1915# define isrtl_str() 0
1916#endif
1917
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001918/* leave out the "vi-mode"-only case labels if vi editing isn't
1919 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001920#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001921
1922/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001923#undef CTRL
1924#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001925
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001926/* maxsize must be >= 2.
1927 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001928 * -1 on read errors or EOF, or on bare Ctrl-D,
1929 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001930 * >0 length of input string, including terminating '\n'
1931 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001932int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001933{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001934 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001935#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001936 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001937#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001938 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001939#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001940 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001941#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001942 struct termios initial_settings;
1943 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001944 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001945
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001946 INIT_S();
1947
1948 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1949 || !(initial_settings.c_lflag & ECHO)
1950 ) {
1951 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001952 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001953 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001954 if (fgets(command, maxsize, stdin) == NULL)
1955 len = -1; /* EOF or error */
1956 else
1957 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001958 DEINIT_S();
1959 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001960 }
1961
Denys Vlasenko28055022010-01-04 20:49:58 +01001962 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001963
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001964// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001965 if (maxsize > MAX_LINELEN)
1966 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001967 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001968
1969 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001970 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001971#if MAX_HISTORY > 0
1972# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001973 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001974 if (state->cnt_history == 0)
1975 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001976# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001977 if (state->flags & DO_HISTORY)
1978 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001979#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001980
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001981 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001982 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001983 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001984#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001985 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1986#else
Mark Whitley4e338752001-01-26 20:42:23 +00001987 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001988 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001989#endif
1990#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001991
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001992 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001993 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1994 /* Turn off echoing and CTRL-C, so we can trap it */
1995 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001996 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001997 new_settings.c_cc[VMIN] = 1;
1998 new_settings.c_cc[VTIME] = 0;
1999 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002000#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002001# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002002#endif
Eric Andersenc470f442003-07-28 09:56:35 +00002003 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00002004 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002005
Eric Andersen6faae7d2001-02-16 20:09:17 +00002006 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002007 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
2008 win_changed(0); /* do initial resizing */
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002009#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002010 {
2011 struct passwd *entry;
2012
2013 entry = getpwuid(geteuid());
2014 if (entry) {
2015 user_buf = xstrdup(entry->pw_name);
2016 home_pwd_buf = xstrdup(entry->pw_dir);
2017 }
2018 }
2019#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002020
2021#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002022 for (i = 0; i <= MAX_HISTORY; i++)
2023 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002024 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2025#endif
2026
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002027 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002028 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002029 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002030
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002031 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002032 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002033 /*
2034 * The emacs and vi modes share much of the code in the big
2035 * command loop. Commands entered when in vi's command mode
2036 * (aka "escape mode") get an extra bit added to distinguish
2037 * them - this keeps them from being self-inserted. This
2038 * clutters the big switch a bit, but keeps all the code
2039 * in one place.
2040 */
2041 enum {
2042 VI_CMDMODE_BIT = 0x40000000,
2043 /* 0x80000000 bit flags KEYCODE_xxx */
2044 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002045 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002046
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002047 fflush_all();
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002048 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002049
Denis Vlasenko38f63192007-01-22 09:03:07 +00002050#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002051 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002052 if (vi_cmdmode) {
2053 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2054 * change ic if it contains one of them: */
2055 ic |= VI_CMDMODE_BIT;
2056 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002057#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002058
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002059 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002060 case '\n':
2061 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002062 vi_case('\n'|VI_CMDMODE_BIT:)
2063 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002064 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002065 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002066 break_out = 1;
2067 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002068 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002069 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002070 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002071 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002072 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002073 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002074 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002075 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002076 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002077 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002078 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002079 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002080 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002081 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002082 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002083 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002084 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002085 vi_case('l'|VI_CMDMODE_BIT:)
2086 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002087 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002088 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002089 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002090 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002091 if (!isrtl_str())
2092 input_backspace();
2093 else
2094 input_delete(0);
2095 break;
2096 case KEYCODE_DELETE:
2097 if (!isrtl_str())
2098 input_delete(0);
2099 else
2100 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002101 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002102#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002103 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002104 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002105 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002106#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002107 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002108 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002109 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002110 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002111 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002112 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002113 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002114 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002115 /* Control-l -- clear screen */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002116 printf("\033[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002117 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002118 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002119#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002120 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002121 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2122 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002123 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002124 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002125 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002126 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002127 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002128 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2129 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002130 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002131 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002132 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002133 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002134#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002135 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002136 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002137 /* Control-U -- Clear line before cursor */
2138 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002139 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002140 memmove(command_ps, command_ps + cursor,
2141 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002142 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002143 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002144 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002145 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002146 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002147 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002148 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002149 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002150 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002151 input_backspace();
2152 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002153
Denis Vlasenko38f63192007-01-22 09:03:07 +00002154#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002155 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002156 vi_cmdmode = 0;
2157 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002158 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002159 input_backward(cursor);
2160 vi_cmdmode = 0;
2161 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002162 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002163 input_forward();
2164 vi_cmdmode = 0;
2165 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002166 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002167 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002168 vi_cmdmode = 0;
2169 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002170 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002171 input_delete(1);
2172 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002173 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002174 if (cursor > 0) {
2175 input_backward(1);
2176 input_delete(1);
2177 }
2178 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002179 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002180 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002181 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002182 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002183 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002184 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002185 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002186 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002187 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002188 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002189 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002190 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002191 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002192 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002193 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002194 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002195 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002196 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002197 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002198 vi_cmdmode = 0;
2199 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002200 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002201 goto clear_to_eol;
2202
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002203 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002204 vi_cmdmode = 0;
2205 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002206 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002207 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002208
Denys Vlasenko020f4062009-05-17 16:44:54 +02002209 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002210 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002211 goto prepare_to_die;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002212 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002213 input_backward(cursor);
2214 goto clear_to_eol;
2215 break;
2216 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002217
2218 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002219 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002220 case 'w':
2221 case 'W':
2222 case 'e':
2223 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002224 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002225 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002226 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002227 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002228 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002229 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002230 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002231 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002232 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002233 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002234 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002235 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002236 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002237 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002238 break;
2239 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002240 nc = cursor;
2241 input_backward(cursor - sc);
2242 while (nc-- > cursor)
2243 input_delete(1);
2244 break;
2245 case 'b': /* "db", "cb" */
2246 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002247 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002248 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002249 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002250 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002251 while (sc-- > cursor)
2252 input_delete(1);
2253 break;
2254 case ' ': /* "d ", "c " */
2255 input_delete(1);
2256 break;
2257 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002258 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002259 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002260 input_delete(1);
2261 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002262 }
2263 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002264 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002265 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002266 input_forward();
2267 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002268 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002269 put();
2270 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002271 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002272//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002273 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002274 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002275 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002276 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002277 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002278 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002279 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002280 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002281 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002282 }
2283 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002284 case '\x1b': /* ESC */
2285 if (state->flags & VI_MODE) {
2286 /* insert mode --> command mode */
2287 vi_cmdmode = 1;
2288 input_backward(1);
2289 }
2290 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002291#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002292
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002293#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002294 case KEYCODE_UP:
2295 if (get_previous_history())
2296 goto rewrite_line;
2297 beep();
2298 break;
2299 case KEYCODE_DOWN:
2300 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002301 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002302 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002303 /* Rewrite the line with the selected history item */
2304 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002305 command_len = load_string(state->history[state->cur_history] ?
2306 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002307 /* redraw and go to eol (bol, in vi) */
2308 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2309 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002310#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002311 case KEYCODE_RIGHT:
2312 input_forward();
2313 break;
2314 case KEYCODE_LEFT:
2315 input_backward(1);
2316 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002317 case KEYCODE_CTRL_LEFT:
2318 ctrl_left();
2319 break;
2320 case KEYCODE_CTRL_RIGHT:
2321 ctrl_right();
2322 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002323 case KEYCODE_HOME:
2324 input_backward(cursor);
2325 break;
2326 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002327 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002328 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002329
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002330 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002331 if (initial_settings.c_cc[VINTR] != 0
2332 && ic_raw == initial_settings.c_cc[VINTR]
2333 ) {
2334 /* Ctrl-C (usually) - stop gathering input */
2335 goto_new_line();
2336 command_len = 0;
2337 break_out = -1; /* "do not append '\n'" */
2338 break;
2339 }
2340 if (initial_settings.c_cc[VEOF] != 0
2341 && ic_raw == initial_settings.c_cc[VEOF]
2342 ) {
2343 /* Ctrl-D (usually) - delete one character,
2344 * or exit if len=0 and no chars to delete */
2345 if (command_len == 0) {
2346 errno = 0;
2347#if ENABLE_FEATURE_EDITING_VI
2348 prepare_to_die:
2349#endif
2350 break_out = command_len = -1;
2351 break;
2352 }
2353 input_delete(0);
2354 break;
2355 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002356// /* Control-V -- force insert of next char */
2357// if (c == CTRL('V')) {
2358// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2359// goto prepare_to_die;
2360// if (c == 0) {
2361// beep();
2362// break;
2363// }
2364// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002365 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002366 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2367 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002368 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002369 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002370 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002371 * Otherwise, we are here if ic is a
2372 * control char or an unhandled ESC sequence,
2373 * which is also ignored.
2374 */
2375 break;
2376 }
2377 if ((int)command_len >= (maxsize - 2)) {
2378 /* Not enough space for the char and EOL */
2379 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002380 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002381
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002382 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002383 if (cursor == (command_len - 1)) {
2384 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002385 command_ps[cursor] = ic;
2386 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002387 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002388 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002389 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002390 } else {
2391 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002392 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002393
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002394 memmove(command_ps + sc + 1, command_ps + sc,
2395 (command_len - sc) * sizeof(command_ps[0]));
2396 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002397 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2398 if (!isrtl_str())
2399 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002400 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002401 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002402 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002403 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002404 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002405 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002406
2407 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002408 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002409
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002410#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002411 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002412 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002413#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002414 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002415
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002416#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002417 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002418 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2419 * We sent "ESC [ 6 n", but got '\n' first, and
2420 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2421 * It's bad already and not much can be done with it
2422 * (it _will_ be visible for the next process to read stdin),
2423 * but without this delay it even shows up on the screen
2424 * as garbage because we restore echo settings with tcsetattr
2425 * before it comes in. UGLY!
2426 */
2427 usleep(20*1000);
2428 }
2429#endif
2430
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002431/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002432#undef command
2433
Denys Vlasenko19158a82010-03-26 14:06:56 +01002434#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002435 command[0] = '\0';
2436 if (command_len > 0)
2437 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002438 free(command_ps);
2439#endif
2440
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002441 if (command_len > 0)
2442 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002443
Eric Andersen27bb7902003-12-23 20:24:51 +00002444 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002445 command[command_len++] = '\n';
2446 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002447 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002448
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002449#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002450 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002451#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002452
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002453 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002454 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002455 /* restore SIGWINCH handler */
2456 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002457 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002458
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002459 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002460 DEINIT_S();
2461
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002462 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002463}
2464
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002465#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002466
2467#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002468int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002469{
2470 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002471 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002472 fgets(command, maxsize, stdin);
2473 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002474}
2475
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002476#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002477
2478
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002479/*
2480 * Testing
2481 */
2482
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002483#ifdef TEST
2484
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002485#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002486
2487const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002488
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002489int main(int argc, char **argv)
2490{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002491 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002492 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002493#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002494 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2495 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2496 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002497#else
2498 "% ";
2499#endif
2500
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002501 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002502 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002503 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002504 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002505 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002506 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002507 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002508 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002509 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002510 return 0;
2511}
2512
Eric Andersenc470f442003-07-28 09:56:35 +00002513#endif /* TEST */