blob: 0563e6d011599e6dbf08f4e13579e3b1cee3cdac [file] [log] [blame]
Erik Andersenc7c634b2000-03-19 05:28:55 +00001/* vi: set sw=4 ts=4: */
Erik Andersen13456d12000-03-16 08:09:57 +00002/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02003 * Command line editing.
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Eric Andersen81fe1232003-07-29 06:38:40 +00005 * Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license.
Eric Andersen7467c8d2001-07-12 20:26:32 +00006 * Written by: Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersen5f2c79d2001-02-16 18:36:04 +00007 *
8 * Used ideas:
9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995
Eric Andersen81fe1232003-07-29 06:38:40 +000012 * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000013 *
Erik Andersen13456d12000-03-16 08:09:57 +000014 * This code is 'as is' with no warranty.
Erik Andersen13456d12000-03-16 08:09:57 +000015 */
16
17/*
Denis Vlasenko78ff8192008-06-28 21:03:43 +000018 * Usage and known bugs:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010019 * Terminal key codes are not extensive, more needs to be added.
20 * This version was created on Debian GNU/Linux 2.x.
Denis Vlasenko78ff8192008-06-28 21:03:43 +000021 * Delete, Backspace, Home, End, and the arrow keys were tested
22 * to work in an Xterm and console. Ctrl-A also works as Home.
23 * Ctrl-E also works as End.
24 *
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010025 * The following readline-like commands are not implemented:
26 * ESC-b -- Move back one word
27 * ESC-f -- Move forward one word
28 * ESC-d -- Delete forward one word
29 * CTL-t -- Transpose two characters
30 *
Denis Vlasenko78ff8192008-06-28 21:03:43 +000031 * lineedit does not know that the terminal escape sequences do not
32 * take up space on the screen. The redisplay code assumes, unless
33 * told otherwise, that each character in the prompt is a printable
34 * character that takes up one character position on the screen.
35 * You need to tell lineedit that some sequences of characters
36 * in the prompt take up no screen space. Compatibly with readline,
37 * use the \[ escape to begin a sequence of non-printing characters,
38 * and the \] escape to signal the end of such a sequence. Example:
39 *
40 * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
Erik Andersen13456d12000-03-16 08:09:57 +000041 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000042#include "libbb.h"
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020043#include "unicode.h"
Glenn L McGrath475820c2004-01-22 12:42:23 +000044
Glenn L McGrath3b251852004-01-03 12:07:32 +000045#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020046# define ENABLE_FEATURE_EDITING 0
47# define ENABLE_FEATURE_TAB_COMPLETION 0
48# define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020049#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000050
Eric Andersen5165fbe2001-02-20 06:42:29 +000051
Denis Vlasenko82b39e82007-01-21 19:18:19 +000052/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000053#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000054
Denis Vlasenko82b39e82007-01-21 19:18:19 +000055
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020056#define ENABLE_USERNAME_OR_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000057 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020058#define IF_USERNAME_OR_HOMEDIR(...)
59#if ENABLE_USERNAME_OR_HOMEDIR
60# undef IF_USERNAME_OR_HOMEDIR
61# define IF_USERNAME_OR_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000062#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000063
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020064
65#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010066#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020067# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020068# define CHAR_T wchar_t
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010069static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010070# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010071static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010072# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010073static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020074# undef isspace
75# undef isalnum
76# undef ispunct
77# undef isprint
78# define isspace isspace_must_not_be_used
79# define isalnum isalnum_must_not_be_used
80# define ispunct ispunct_must_not_be_used
81# define isprint isprint_must_not_be_used
82#else
83# define BB_NUL '\0'
84# define CHAR_T char
85# define BB_isspace(c) isspace(c)
86# define BB_isalnum(c) isalnum(c)
87# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020088#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020089#if ENABLE_UNICODE_PRESERVE_BROKEN
90# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
91# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
92#else
93# define unicode_is_raw_byte(wc) 0
94#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020095
96
Marek Polacek7b181072010-10-28 21:34:56 +020097#define ESC "\033"
98
99#define SEQ_CLEAR_TILL_END_OF_SCREEN ESC"[J"
100//#define SEQ_CLEAR_TILL_END_OF_LINE ESC"[K"
Tomas Heinricha659b812010-04-29 13:43:39 +0200101
102
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000103enum {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000104 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000105 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000106 : 0x7ff0
107};
Robert Griebl350d26b2002-12-03 22:45:46 +0000108
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200109#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000110static const char null_str[] ALIGN1 = "";
111#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000112
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000113/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000114struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000115 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000116
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000117 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
118 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000119
Denys Vlasenko020f4062009-05-17 16:44:54 +0200120 unsigned cmdedit_x; /* real x (col) terminal position */
121 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000122 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000123
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000124 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200125 int command_len; /* must be signed */
126 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200127 * to _not_ be promoted to unsigned */
128 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200129 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000130
131 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000132#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000133 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000134#endif
135
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200136#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000137 char *user_buf;
138 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000139#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000140
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000141#if ENABLE_FEATURE_TAB_COMPLETION
142 char **matches;
143 unsigned num_matches;
144#endif
145
146#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200147# define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200148 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000149 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200150 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000151#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100152#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100153 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100154#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000155};
156
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000157/* See lineedit_ptr_hack.c */
158extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000159
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000160#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000161#define state (S.state )
162#define cmdedit_termw (S.cmdedit_termw )
163#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
164#define cmdedit_x (S.cmdedit_x )
165#define cmdedit_y (S.cmdedit_y )
166#define cmdedit_prmt_len (S.cmdedit_prmt_len)
167#define cursor (S.cursor )
168#define command_len (S.command_len )
169#define command_ps (S.command_ps )
170#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000171#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000172#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000173#define home_pwd_buf (S.home_pwd_buf )
174#define matches (S.matches )
175#define num_matches (S.num_matches )
176#define delptr (S.delptr )
177#define newdelflag (S.newdelflag )
178#define delbuf (S.delbuf )
179
180#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000181 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000182 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000183 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000184 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200185 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000186} while (0)
187static void deinit_S(void)
188{
189#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000190 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200191 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000192 free((char*)cmdedit_prompt);
193#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200194#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000195 free(user_buf);
196 if (home_pwd_buf != null_str)
197 free(home_pwd_buf);
198#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000199 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000200}
201#define DEINIT_S() deinit_S()
202
Denis Vlasenko2c844952008-04-25 18:44:35 +0000203
Denys Vlasenko19158a82010-03-26 14:06:56 +0100204#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200205static size_t load_string(const char *src, int maxsize)
206{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100207 if (unicode_status == UNICODE_ON) {
208 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
209 if (len < 0)
210 len = 0;
211 command_ps[len] = BB_NUL;
212 return len;
213 } else {
214 unsigned i = 0;
215 while ((command_ps[i] = src[i]) != 0)
216 i++;
217 return i;
218 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200219}
Tomas Heinricha659b812010-04-29 13:43:39 +0200220static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200221{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100222 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200223# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100224 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
225 if (len < 0)
226 len = 0;
227 dst[len] = '\0';
228 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200229# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100230 unsigned dstpos = 0;
231 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200232
Denys Vlasenko353680a2011-03-27 01:18:07 +0100233 maxsize--;
234 while (dstpos < maxsize) {
235 wchar_t wc;
236 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200237
Denys Vlasenko353680a2011-03-27 01:18:07 +0100238 /* Convert up to 1st invalid byte (or up to end) */
239 while ((wc = command_ps[srcpos]) != BB_NUL
240 && !unicode_is_raw_byte(wc)
241 ) {
242 srcpos++;
243 }
244 command_ps[srcpos] = BB_NUL;
245 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
246 if (n < 0) /* should not happen */
247 break;
248 dstpos += n;
249 if (wc == BB_NUL) /* usually is */
250 break;
251
252 /* We do have invalid byte here! */
253 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200254 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100255 if (dstpos == maxsize)
256 break;
257 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200258 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100259 dst[dstpos] = '\0';
260 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200261# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100262 } else {
263 unsigned i = 0;
264 while ((dst[i] = command_ps[i]) != 0)
265 i++;
266 return i;
267 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200268}
269/* I thought just fputwc(c, stdout) would work. But no... */
270static void BB_PUTCHAR(wchar_t c)
271{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100272 if (unicode_status == UNICODE_ON) {
273 char buf[MB_CUR_MAX + 1];
274 mbstate_t mbst = { 0 };
275 ssize_t len = wcrtomb(buf, c, &mbst);
276 if (len > 0) {
277 buf[len] = '\0';
278 fputs(buf, stdout);
279 }
280 } else {
281 /* In this case, c is always one byte */
282 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200283 }
284}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200285# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
286static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
287# else
288static wchar_t adjust_width_and_validate_wc(wchar_t wc)
289# define adjust_width_and_validate_wc(width_adj, wc) \
290 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
291# endif
292{
293 int w = 1;
294
295 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200296 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
297 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200298 goto subst;
299 }
300 w = wcwidth(wc);
301 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
302 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
303 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
304 ) {
305 subst:
306 w = 1;
307 wc = CONFIG_SUBST_WCHAR;
308 }
309 }
310
311# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
312 *width_adj += w;
313#endif
314 return wc;
315}
316#else /* !UNICODE */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200317static size_t load_string(const char *src, int maxsize)
318{
319 safe_strncpy(command_ps, src, maxsize);
320 return strlen(command_ps);
321}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200322# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200323static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200324{
325 safe_strncpy(dst, command_ps, maxsize);
326}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200327# endif
328# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200329/* Should never be called: */
330int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200331#endif
332
333
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000334/* Put 'command_ps[cursor]', cursor++.
335 * Advance cursor on screen. If we reached right margin, scroll text up
336 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000337#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200338static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000339{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200340 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200341 unsigned width = 0;
342 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000343
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200344 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000345 /* erase character after end of input string */
346 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200347 } else {
348 /* advance cursor only if we aren't at the end yet */
349 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200350 if (unicode_status == UNICODE_ON) {
351 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
352 c = adjust_width_and_validate_wc(&cmdedit_x, c);
353 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
354 } else {
355 cmdedit_x++;
356 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000357 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200358
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200359 ofs_to_right = cmdedit_x - cmdedit_termw;
360 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
361 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200362 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000363 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200364
365 if (ofs_to_right >= 0) {
366 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000367#if HACK_FOR_WRONG_WIDTH
368 /* This works better if our idea of term width is wrong
369 * and it is actually wider (often happens on serial lines).
370 * Printing CR,LF *forces* cursor to next line.
371 * OTOH if terminal width is correct AND terminal does NOT
372 * have automargin (IOW: it is moving cursor to next line
373 * by itself (which is wrong for VT-10x terminals)),
374 * this will break things: there will be one extra empty line */
375 puts("\r"); /* + implicit '\n' */
376#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200377 /* VT-10x terminals don't wrap cursor to next line when last char
378 * on the line is printed - cursor stays "over" this char.
379 * Need to print _next_ char too (first one to appear on next line)
380 * to make cursor move down to next line.
381 */
382 /* Works ok only if cmdedit_termw is correct. */
383 c = command_ps[cursor];
384 if (c == BB_NUL)
385 c = ' ';
386 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000387 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000388#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200389 cmdedit_y++;
390 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
391 width = 0;
392 } else { /* ofs_to_right > 0 */
393 /* wide char c didn't fit on prev line */
394 BB_PUTCHAR(c);
395 }
396 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000397 }
Erik Andersen13456d12000-03-16 08:09:57 +0000398}
399
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000400/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200401static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000402{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000403 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200404 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000405}
406
407/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000408static void goto_new_line(void)
409{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200410 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200411 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000412 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000413}
414
Rob Landley88621d72006-08-29 19:41:06 +0000415static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000416{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000417 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000418}
419
Denys Vlasenko248c3242010-05-17 00:45:44 +0200420static void put_prompt(void)
421{
422 unsigned w;
423
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200424 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200425 fflush_all();
426 cursor = 0;
427 w = cmdedit_termw; /* read volatile var once */
428 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
429 cmdedit_x = cmdedit_prmt_len % w;
430}
431
Eric Andersenaff114c2004-04-14 17:51:38 +0000432/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000433/* (optimized for slow terminals) */
434static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000435{
436 if (num > cursor)
437 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200438 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000439 return;
440 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000441
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200442 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
443 && unicode_status == UNICODE_ON
444 ) {
445 /* correct NUM to be equal to _screen_ width */
446 int n = num;
447 num = 0;
448 while (--n >= 0)
449 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
450 if (num == 0)
451 return;
452 }
453
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000454 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000455 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000456 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000457 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000458 * Also gets miscompiled for ARM users
459 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000460 * printf(("\b\b\b\b" + 4) - num);
461 * return;
462 */
463 do {
464 bb_putchar('\b');
465 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000466 return;
467 }
Marek Polacek7b181072010-10-28 21:34:56 +0200468 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000469 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000470 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000471
472 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200473 if (ENABLE_UNICODE_WIDE_WCHARS) {
474 /* With wide chars, it is hard to "backtrack"
475 * and reliably figure out where to put cursor.
476 * Example (<> is a wide char; # is an ordinary char, _ cursor):
477 * |prompt: <><> |
478 * |<><><><><><> |
479 * |_ |
480 * and user presses left arrow. num = 1, cmdedit_x = 0,
481 * We need to go up one line, and then - how do we know that
482 * we need to go *10* positions to the right? Because
483 * |prompt: <>#<>|
484 * |<><><>#<><><>|
485 * |_ |
486 * in this situation we need to go *11* positions to the right.
487 *
488 * A simpler thing to do is to redraw everything from the start
489 * up to new cursor position (which is already known):
490 */
491 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200492 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200493 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200494 cmdedit_y = 0;
495 sv_cursor = cursor;
496 put_prompt(); /* sets cursor to 0 */
497 while (cursor < sv_cursor)
498 put_cur_glyph_and_inc_cursor();
499 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200500 int lines_up;
501 unsigned width;
502 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200503 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200504 width = cmdedit_termw; /* read volatile var once */
505 /* num=1...w: one line up, w+1...2w: two, etc: */
506 lines_up = 1 + (num - 1) / width;
507 cmdedit_x = (width * cmdedit_y - num) % width;
508 cmdedit_y -= lines_up;
509 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200510 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200511 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200512 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
513 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200514 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200515 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000516 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000517}
518
Eric Andersenaff114c2004-04-14 17:51:38 +0000519/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000520static void redraw(int y, int back_cursor)
521{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200522 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200523 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000524 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000525 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200526 put_till_end_and_adv_cursor();
527 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000528 input_backward(back_cursor);
529}
530
Paul Fox3f11b1b2005-08-04 19:04:46 +0000531/* Delete the char in front of the cursor, optionally saving it
532 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000533#if !ENABLE_FEATURE_EDITING_VI
534static void input_delete(void)
535#define input_delete(save) input_delete()
536#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000537static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000538#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000539{
Mark Whitley4e338752001-01-26 20:42:23 +0000540 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000541
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000542 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000543 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000544
Denis Vlasenko38f63192007-01-22 09:03:07 +0000545#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000546 if (save) {
547 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000548 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000549 newdelflag = 0;
550 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000551 if ((delptr - delbuf) < DELBUFSIZ)
552 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000553 }
554#endif
555
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200556 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200557 /* (command_len + 1 [because of NUL]) - (j + 1)
558 * simplified into (command_len - j) */
559 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000560 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200561 put_till_end_and_adv_cursor();
562 /* Last char is still visible, erase it (and more) */
563 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000564 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000565}
566
Denis Vlasenko38f63192007-01-22 09:03:07 +0000567#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000568static void put(void)
569{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000570 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000571 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000572
Paul Fox3f11b1b2005-08-04 19:04:46 +0000573 if (j == 0)
574 return;
575 ocursor = cursor;
576 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200577 memmove(command_ps + cursor + j, command_ps + cursor,
578 (command_len - cursor + 1) * sizeof(command_ps[0]));
579 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000580 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200581 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000582 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000583}
584#endif
585
Mark Whitley4e338752001-01-26 20:42:23 +0000586/* Delete the char in back of the cursor */
587static void input_backspace(void)
588{
589 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000590 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000591 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000592 }
593}
594
Eric Andersenaff114c2004-04-14 17:51:38 +0000595/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000596static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000597{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000598 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200599 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000600}
601
Denis Vlasenko38f63192007-01-22 09:03:07 +0000602#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000603
Mike Shalf3763032010-11-22 03:49:18 +0100604//FIXME:
605//needs to be more clever: currently it thinks that "foo\ b<TAB>
606//matches the file named "foo bar", which is untrue.
607//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
608//not "foo bar <cursor>...
609
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000610static void free_tab_completion_data(void)
611{
612 if (matches) {
613 while (num_matches)
614 free(matches[--num_matches]);
615 free(matches);
616 matches = NULL;
617 }
618}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000619
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000620static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000621{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000622 matches = xrealloc_vector(matches, 4, num_matches);
623 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000624 num_matches++;
625}
626
Mike Shalf3763032010-11-22 03:49:18 +0100627# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200628/* Replace "~user/..." with "/homedir/...".
629 * The parameter is malloced, free it or return it
630 * unchanged if no user is matched.
631 */
632static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000633{
634 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200635 char *tilde_name = ud;
636 char *home = NULL;
637
638 ud++; /* skip ~ */
639 if (*ud == '/') { /* "~/..." */
640 home = home_pwd_buf;
641 } else {
642 /* "~user/..." */
643 ud = strchr(ud, '/');
644 *ud = '\0'; /* "~user" */
645 entry = getpwnam(tilde_name + 1);
646 *ud = '/'; /* restore "~user/..." */
647 if (entry)
648 home = entry->pw_dir;
649 }
650 if (home) {
651 ud = concat_path_file(home, ud);
652 free(tilde_name);
653 tilde_name = ud;
654 }
655 return tilde_name;
656}
657
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200658/* ~use<tab> - find all users with this prefix.
659 * Return the length of the prefix used for matching.
660 */
661static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200662{
663 /* Using _r function to avoid pulling in static buffers */
664 char line_buff[256];
665 struct passwd pwd;
666 struct passwd *result;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200667 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000668
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200669 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000670 userlen = strlen(ud);
671
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200672 setpwent();
673 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
674 /* Null usernames should result in all users as possible completions. */
675 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
676 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000677 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000678 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200679 endpwent();
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200680
681 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000682}
Mike Shalf3763032010-11-22 03:49:18 +0100683# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000684
685enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000686 FIND_EXE_ONLY = 0,
687 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000688 FIND_FILE_ONLY = 2,
689};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000690
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200691static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000692{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000693 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000694 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000695 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000696 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000697
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000698 if (state->flags & WITH_PATH_LOOKUP)
699 pth = state->path_lookup;
700 else
701 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200702
703 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000704 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
705 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000706
Denis Vlasenko253ce002007-01-22 08:34:44 +0000707 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000708 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000709 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000710 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000711 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000712 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200713 tmp++;
714 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000715 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000716 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000717 }
718
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200719 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000720 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000721 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000722 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000723 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000724 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000725 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000726 *tmp++ = '\0'; /* ':' -> '\0' */
727 if (*tmp == '\0')
728 break; /* :<empty> */
729 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000730 }
Mark Whitley4e338752001-01-26 20:42:23 +0000731 return npth;
732}
733
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200734/* Complete command, directory or file name.
735 * Return the length of the prefix used for matching.
736 */
737static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000738{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000739 char *path1[1];
740 char **paths = path1;
741 int npaths;
742 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200743 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200744 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200745 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000746
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000747 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000748 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000749
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200750 pfind = strrchr(command, '/');
751 if (!pfind) {
752 if (type == FIND_EXE_ONLY)
753 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000754 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000755 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000756 /* point to 'l' in "..../last_component" */
757 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200758 /* dirbuf = ".../.../.../" */
759 dirbuf = xstrndup(command, pfind - command);
Mike Shalf3763032010-11-22 03:49:18 +0100760# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200761 if (dirbuf[0] == '~') /* ~/... or ~user/... */
762 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100763# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200764 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000765 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200766 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000767
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000768 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200769 DIR *dir;
770 struct dirent *next;
771 struct stat st;
772 char *found;
773
Mark Whitley4e338752001-01-26 20:42:23 +0000774 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000775 if (!dir)
776 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000777
778 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200779 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200780 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000781
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200782 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
783 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000784 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200785 /* match? */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200786 if (strncmp(name_found, pfind, pf_len) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200787 continue; /* no */
788
789 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000790 /* NB: stat() first so that we see is it a directory;
791 * but if that fails, use lstat() so that
792 * we still match dangling links */
793 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200794 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000795
Denys Vlasenko39263632010-09-03 14:11:08 +0200796 /* Save only name */
797 len = strlen(name_found);
798 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
799 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000800
Mark Whitley4e338752001-01-26 20:42:23 +0000801 if (S_ISDIR(st.st_mode)) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200802 /* name is a directory, add slash */
803 found[len] = '/';
804 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000805 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200806 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000807 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000808 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000809 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200810 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000811 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000812 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000813 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000814 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000815 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000816 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200817 } /* for every path */
818
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000819 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000820 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000821 free(paths);
822 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200823 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200824
825 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000826}
Erik Andersenf0657d32000-04-12 17:49:52 +0000827
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200828/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200829 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200830 * was pressed. This function looks at it, figures out what part of it
831 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200832 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200833 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200834#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200835/* Helpers: */
836/* QUOT is used on elements of int_buf[], which are bytes,
837 * not Unicode chars. Therefore it works correctly even in Unicode mode.
838 */
839#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200840static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200841{
842 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200843 if (beg == end)
844 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200845
846 while ((int_buf[beg] = int_buf[end]) != 0)
847 beg++, end++;
848
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200849 if (dbg_bmp) {
850 int i;
851 for (i = 0; int_buf[i]; i++)
852 bb_putchar((unsigned char)int_buf[i]);
853 bb_putchar('\n');
854 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200855}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200856/* Caller ensures that match_buf points to a malloced buffer
857 * big enough to hold strlen(match_buf)*2 + 2
858 */
859static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000860{
861 int i, j;
862 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200863 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000864
Denys Vlasenko76939e72010-09-03 14:09:24 +0200865 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200866
Denys Vlasenko76939e72010-09-03 14:09:24 +0200867 /* Copy in reverse order, since they overlap */
868 i = strlen(match_buf);
869 do {
870 int_buf[i] = (unsigned char)match_buf[i];
871 i--;
872 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000873
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200874 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200875 for (i = 0; int_buf[i]; i++) {
876 if (int_buf[i] == '\\') {
877 remove_chunk(int_buf, i, i + 1);
878 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000879 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200880 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200881 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200882 {
883 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200884 i = 0;
885 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200886 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200887 if (!cur)
888 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200889 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200890 if (!in_quote || (cur == in_quote)) {
891 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200892 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200893 continue;
894 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000895 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200896 if (in_quote)
897 int_buf[i] = cur | QUOT;
898 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200899 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000900 }
901
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200902 /* Remove everything up to command delimiters:
903 * ';' ';;' '&' '|' '&&' '||',
904 * but careful with '>&' '<&' '>|'
905 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000906 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200907 int cur = int_buf[i];
908 if (cur == ';' || cur == '&' || cur == '|') {
909 int prev = i ? int_buf[i - 1] : 0;
910 if (cur == '&' && (prev == '>' || prev == '<')) {
911 continue;
912 } else if (cur == '|' && prev == '>') {
913 continue;
914 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200915 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200916 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000917 }
918 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200919 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200920 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000921 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200922 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000923 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200924 /* `cmd` should count as a word:
925 * `cmd` c<tab> should search for files c*,
926 * not commands c*. Therefore we don't drop
927 * `cmd` entirely, we replace it with single `.
928 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200929 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200930 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000931 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200932 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200933 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200934 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200935 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200936 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000937 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200938 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000939
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200940 /* Remove "cmd (" and "cmd {"
941 * Example: "if { c<tab>"
942 * In this example, c should be matched as command pfx.
943 */
944 for (i = 0; int_buf[i]; i++) {
945 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200946 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +0200947 i = -1; /* back to square 1 */
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 Vlasenko9b56bf52010-09-03 13:02:47 +0200955 remove_chunk(int_buf, 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
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200963 && (char)int_buf[0] == 'c'
964 && (char)int_buf[1] == 'd'
965 && i == 2 /* -> int_buf[2] == ' ' */
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 == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200982 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000983 break;
984 }
985 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000986
Denys Vlasenko76939e72010-09-03 14:09:24 +0200987 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200988 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200989 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200990 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200991
Denys Vlasenko76939e72010-09-03 14:09:24 +0200992 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000993
994 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200995}
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000996
Glenn L McGrath4d001292003-01-06 01:11:50 +0000997/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200998 * Display by column (original idea from ls applet,
999 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001000 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001001static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001002{
1003 int ncols, row;
1004 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001005 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001006 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001007 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001008
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001009 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001010 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001011 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001012 if (column_width < l)
1013 column_width = l;
1014 }
1015 column_width += 2; /* min space for columns */
1016 ncols = cmdedit_termw / column_width;
1017
1018 if (ncols > 1) {
1019 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001020 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001021 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001022 } else {
1023 ncols = 1;
1024 }
1025 for (row = 0; row < nrows; row++) {
1026 int n = row;
1027 int nc;
1028
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001029 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001030 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001031 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001032 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001033 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001034 if (ENABLE_UNICODE_SUPPORT)
1035 puts(printable_string(NULL, matches[n]));
1036 else
1037 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001038 }
1039}
1040
Mike Shalf3763032010-11-22 03:49:18 +01001041static const char *is_special_char(char c)
1042{
1043 return strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", c);
1044}
1045
1046static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001047{
1048 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001049 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001050
1051 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001052 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001053 s[l++] = '\\';
1054 s[l++] = *found++;
1055 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001056 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001057 return s;
1058}
1059
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001060/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001061static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001062{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001063 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001064 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001065 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001066 /* Length of string used for matching */
1067 unsigned match_pfx_len = match_pfx_len;
1068 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001069# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001070 /* cursor pos in command converted to multibyte form */
1071 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001072# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001073 if (!(state->flags & TAB_COMPLETION))
1074 return;
1075
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001076 if (*lastWasTab) {
1077 /* The last char was a TAB too.
1078 * Print a list of all the available choices.
1079 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001080 if (num_matches > 0) {
1081 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001082 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001083 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001084 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001085 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001086 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001087 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001088 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001089
1090 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001091 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001092
Denys Vlasenko76939e72010-09-03 14:09:24 +02001093 /* Make a local copy of the string up to the position of the cursor.
1094 * build_match_prefix will expand it into int16_t's, need to allocate
1095 * twice as much as the string_len+1.
1096 * (we then also (ab)use this extra space later - see (**))
1097 */
1098 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001099# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001100 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001101# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001102 {
1103 CHAR_T wc = command_ps[cursor];
1104 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001105 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001106 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001107 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001108 }
Mike Shalf3763032010-11-22 03:49:18 +01001109# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001110 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001111
1112 /* Free up any memory already allocated */
1113 free_tab_completion_data();
1114
Mike Shalf3763032010-11-22 03:49:18 +01001115# if ENABLE_FEATURE_USERNAME_COMPLETION
1116 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001117 * then try completing this word as a username. */
1118 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001119 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1120 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001121# endif
1122 /* If complete_username() did not match,
1123 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001124 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001125 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001126
1127 /* Account for backslashes which will be inserted
1128 * by quote_special_chars() later */
1129 {
1130 const char *e = match_buf + strlen(match_buf);
1131 const char *s = e - match_pfx_len;
1132 while (s < e)
1133 if (is_special_char(*s++))
1134 match_pfx_len++;
1135 }
1136
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001137 /* Remove duplicates */
1138 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001139 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001140 qsort_string_vector(matches, num_matches);
1141 for (i = 0; i < num_matches - 1; ++i) {
1142 //if (matches[i] && matches[i+1]) { /* paranoia */
1143 if (strcmp(matches[i], matches[i+1]) == 0) {
1144 free(matches[i]);
1145 //matches[i] = NULL; /* paranoia */
1146 } else {
1147 matches[n++] = matches[i];
1148 }
1149 //}
1150 }
1151 matches[n++] = matches[i];
1152 num_matches = n;
1153 }
Mike Shalf3763032010-11-22 03:49:18 +01001154
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001155 /* Did we find exactly one match? */
1156 if (num_matches != 1) { /* no */
1157 char *cp;
1158 beep();
1159 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001160 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001161 /* Find common prefix */
1162 chosen_match = xstrdup(matches[0]);
1163 for (cp = chosen_match; *cp; cp++) {
1164 unsigned n;
1165 for (n = 1; n < num_matches; n++) {
1166 if (matches[n][cp - chosen_match] != *cp) {
1167 goto stop;
1168 }
1169 }
1170 }
1171 stop:
1172 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001173 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001174 }
1175 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001176 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001177 free(chosen_match);
1178 chosen_match = cp;
1179 len_found = strlen(chosen_match);
1180 } else { /* exactly one match */
1181 /* Next <tab> is not a double-tab */
1182 *lastWasTab = 0;
1183
Mike Shalf3763032010-11-22 03:49:18 +01001184 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001185 len_found = strlen(chosen_match);
1186 if (chosen_match[len_found-1] != '/') {
1187 chosen_match[len_found] = ' ';
1188 chosen_match[++len_found] = '\0';
1189 }
1190 }
1191
Mike Shalf3763032010-11-22 03:49:18 +01001192# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001193 /* Have space to place the match? */
1194 /* The result consists of three parts with these lengths: */
1195 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1196 /* it simplifies into: */
1197 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1198 int pos;
1199 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001200 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001201 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001202 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001203 command_len = strlen(command_ps);
1204 /* new pos */
1205 pos = cursor + len_found - match_pfx_len;
1206 /* write out the matched command */
1207 redraw(cmdedit_y, command_len - pos);
1208 }
Mike Shalf3763032010-11-22 03:49:18 +01001209# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001210 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001211 /* Use 2nd half of match_buf as scratch space - see (**) */
1212 char *command = match_buf + MAX_LINELEN;
1213 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001214 /* Have space to place the match? */
1215 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1216 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1217 int pos;
1218 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001219 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001220 /* where do we want to have cursor after all? */
1221 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
1222 len = load_string(command, S.maxsize);
1223 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001224 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001225 command_len = load_string(command, S.maxsize);
1226 /* write out the matched command */
1227 /* paranoia: load_string can return 0 on conv error,
1228 * prevent passing pos = (0 - 12) to redraw */
1229 pos = command_len - len;
1230 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1231 }
1232 }
Mike Shalf3763032010-11-22 03:49:18 +01001233# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001234 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001235 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001236 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001237}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001238
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001239#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001240
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001241
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001242line_input_t* FAST_FUNC new_line_input_t(int flags)
1243{
1244 line_input_t *n = xzalloc(sizeof(*n));
1245 n->flags = flags;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001246 n->max_history = MAX_HISTORY;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001247 return n;
1248}
1249
1250
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001251#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001252
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001253unsigned size_from_HISTFILESIZE(const char *hp)
1254{
1255 int size = MAX_HISTORY;
1256 if (hp) {
1257 size = atoi(hp);
1258 if (size <= 0)
1259 return 1;
1260 if (size > MAX_HISTORY)
1261 return MAX_HISTORY;
1262 }
1263 return size;
1264}
1265
Denis Vlasenko682ad302008-09-27 01:28:56 +00001266static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001267{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001268 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001269 int cur = state->cur_history;
1270 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001271
Denys Vlasenko19158a82010-03-26 14:06:56 +01001272# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001273 {
1274 char tbuf[MAX_LINELEN];
1275 save_string(tbuf, sizeof(tbuf));
1276 state->history[cur] = xstrdup(tbuf);
1277 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001278# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001279 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001280# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001281 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001282}
1283
1284/* state->flags is already checked to be nonzero */
1285static int get_previous_history(void)
1286{
1287 if ((state->flags & DO_HISTORY) && state->cur_history) {
1288 save_command_ps_at_cur_history();
1289 state->cur_history--;
1290 return 1;
1291 }
1292 beep();
1293 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001294}
1295
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001296static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001297{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001298 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001299 if (state->cur_history < state->cnt_history) {
1300 save_command_ps_at_cur_history(); /* save the current history line */
1301 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001302 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001303 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001304 beep();
1305 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001306}
Robert Griebl350d26b2002-12-03 22:45:46 +00001307
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001308# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001309/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001310 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001311 * Otherwise shell users get unhappy.
1312 *
1313 * History file is trimmed lazily, when it grows several times longer
1314 * than configured MAX_HISTORY lines.
1315 */
1316
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001317static void free_line_input_t(line_input_t *n)
1318{
1319 int i = n->cnt_history;
1320 while (i > 0)
1321 free(n->history[--i]);
1322 free(n);
1323}
1324
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001325/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001326static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001327{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001328 char *temp_h[MAX_HISTORY];
1329 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001330 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001331 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001332
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001333 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001334
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001335 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001336 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001337 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001338 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001339 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001340 free(st_parm->history[idx]);
1341 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001342 }
1343
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001344 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1345 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001346 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001347 while ((line = xmalloc_fgetline(fp)) != NULL) {
1348 if (line[0] == '\0') {
1349 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001350 continue;
1351 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001352 free(temp_h[idx]);
1353 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001354 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001355 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001356 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001357 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001358 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001359 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001360
1361 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001362 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001363 while (temp_h[idx] == NULL) {
1364 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001365 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001366 idx = 0;
1367 }
1368 }
1369
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001370 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001371 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001372 line = temp_h[idx];
1373 if (!line)
1374 break;
1375 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001376 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001377 idx = 0;
1378 line_len = strlen(line);
1379 if (line_len >= MAX_LINELEN)
1380 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001381 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001382 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001383 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001384 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001385}
1386
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001387/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001388static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001389{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001390 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001391 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001392
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001393 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001394 if (fd < 0)
1395 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001396 xlseek(fd, 0, SEEK_END); /* paranoia */
1397 len = strlen(str);
1398 str[len] = '\n'; /* we (try to) do atomic write */
1399 len2 = full_write(fd, str, len + 1);
1400 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001401 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001402 if (len2 != len + 1)
1403 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001404
1405 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001406 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001407 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001408 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001409 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001410
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001411 /* we may have concurrently written entries from others.
1412 * load them */
1413 st_temp = new_line_input_t(state->flags);
1414 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001415 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001416 load_history(st_temp);
1417
1418 /* write out temp file and replace hist_file atomically */
1419 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001420 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1421 if (fd >= 0) {
1422 FILE *fp;
1423 int i;
1424
1425 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001426 for (i = 0; i < st_temp->cnt_history; i++)
1427 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001428 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001429 if (rename(new_name, state->hist_file) == 0)
1430 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001431 }
1432 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001433 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001434 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001435}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001436# else
1437# define load_history(a) ((void)0)
1438# define save_history(a) ((void)0)
1439# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001440
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001441static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001442{
1443 int i;
1444
1445 if (!(state->flags & DO_HISTORY))
1446 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001447 if (str[0] == '\0')
1448 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001449 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001450 /* Don't save dupes */
1451 if (i && strcmp(state->history[i-1], str) == 0)
1452 return;
1453
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001454 free(state->history[state->max_history]); /* redundant, paranoia */
1455 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001456
1457 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001458 /* we need to keep history[state->max_history] empty, hence >=, not > */
1459 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001460 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001461 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001462 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001463 /* i == state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001464 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001465 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001466 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001467 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001468 state->cur_history = i;
1469 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001470# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001471 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001472 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001473# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001474 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001475}
1476
1477#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001478# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001479#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001480
1481
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001482#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001483/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001484 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001485 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001486static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001487vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001488{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001489 CHAR_T *command = command_ps;
1490
1491 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001492 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001493 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001494 input_forward();
1495}
1496
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001497static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001498vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001499{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001500 CHAR_T *command = command_ps;
1501
1502 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001503 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001504 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1505 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001506 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001507 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001508 } else if (BB_ispunct(command[cursor])) {
1509 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001510 input_forward();
1511 }
1512
Denis Vlasenko253ce002007-01-22 08:34:44 +00001513 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001514 input_forward();
1515
Denys Vlasenko13028922009-07-12 00:51:15 +02001516 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001517 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001518 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001519 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001520}
1521
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001522static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001523vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001524{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001525 CHAR_T *command = command_ps;
1526
Paul Fox3f11b1b2005-08-04 19:04:46 +00001527 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001528 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001529 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001530 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001531 input_forward();
1532}
1533
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001534static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001535vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001536{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001537 CHAR_T *command = command_ps;
1538
Denis Vlasenko253ce002007-01-22 08:34:44 +00001539 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001540 return;
1541 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001542 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001543 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001544 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001545 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001546 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001547 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001548 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001549 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001550 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001551 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001552 } else if (BB_ispunct(command[cursor])) {
1553 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001554 input_forward();
1555 }
1556}
1557
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001558static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001559vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001560{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001561 CHAR_T *command = command_ps;
1562
1563 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001564 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001565 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001566 input_backward(1);
1567}
1568
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001569static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001570vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001571{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001572 CHAR_T *command = command_ps;
1573
Paul Fox3f11b1b2005-08-04 19:04:46 +00001574 if (cursor <= 0)
1575 return;
1576 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001577 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001578 input_backward(1);
1579 if (cursor <= 0)
1580 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001581 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001582 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001583 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001584 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001585 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001586 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001587 } else if (BB_ispunct(command[cursor])) {
1588 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001589 input_backward(1);
1590 }
1591}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001592#endif
1593
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001594/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1595static void ctrl_left(void)
1596{
1597 CHAR_T *command = command_ps;
1598
1599 while (1) {
1600 CHAR_T c;
1601
1602 input_backward(1);
1603 if (cursor == 0)
1604 break;
1605 c = command[cursor];
1606 if (c != ' ' && !BB_ispunct(c)) {
1607 /* we reached a "word" delimited by spaces/punct.
1608 * go to its beginning */
1609 while (1) {
1610 c = command[cursor - 1];
1611 if (c == ' ' || BB_ispunct(c))
1612 break;
1613 input_backward(1);
1614 if (cursor == 0)
1615 break;
1616 }
1617 break;
1618 }
1619 }
1620}
1621static void ctrl_right(void)
1622{
1623 CHAR_T *command = command_ps;
1624
1625 while (1) {
1626 CHAR_T c;
1627
1628 c = command[cursor];
1629 if (c == BB_NUL)
1630 break;
1631 if (c != ' ' && !BB_ispunct(c)) {
1632 /* we reached a "word" delimited by spaces/punct.
1633 * go to its end + 1 */
1634 while (1) {
1635 input_forward();
1636 c = command[cursor];
1637 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1638 break;
1639 }
1640 break;
1641 }
1642 input_forward();
1643 }
1644}
1645
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001646
1647/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001648 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001649 */
1650
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001651#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1652static void ask_terminal(void)
1653{
1654 /* Ask terminal where is the cursor now.
1655 * lineedit_read_key handles response and corrects
1656 * our idea of current cursor position.
1657 * Testcase: run "echo -n long_line_long_line_long_line",
1658 * then type in a long, wrapping command and try to
1659 * delete it using backspace key.
1660 * Note: we print it _after_ prompt, because
1661 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1662 */
1663 /* Problem: if there is buffered input on stdin,
1664 * the response will be delivered later,
1665 * possibly to an unsuspecting application.
1666 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1667 * Result:
1668 * ~/srcdevel/bbox/fix/busybox.t4 #
1669 * ~/srcdevel/bbox/fix/busybox.t4 #
1670 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1671 * ~/srcdevel/bbox/fix/busybox.t4 #
1672 *
1673 * Checking for input with poll only makes the race narrower,
1674 * I still can trigger it. Strace:
1675 *
1676 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1677 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1678 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1679 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1680 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1681 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001682 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001683
Denys Vlasenko451add42010-07-25 00:06:41 +02001684 pfd.fd = STDIN_FILENO;
1685 pfd.events = POLLIN;
1686 if (safe_poll(&pfd, 1, 0) == 0) {
1687 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001688 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001689 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001690 }
1691}
1692#else
1693#define ask_terminal() ((void)0)
1694#endif
1695
Denis Vlasenko38f63192007-01-22 09:03:07 +00001696#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001697static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001698{
1699 cmdedit_prompt = prmt_ptr;
1700 cmdedit_prmt_len = strlen(prmt_ptr);
1701 put_prompt();
1702}
1703#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001704static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001705{
1706 int prmt_len = 0;
1707 size_t cur_prmt_len = 0;
1708 char flg_not_length = '[';
1709 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001710 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1711 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001712 char c;
1713 char *pbuf;
1714
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001715 cmdedit_prmt_len = 0;
1716
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001717 if (!cwd_buf) {
1718 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001719 }
1720
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001721 cbuf[1] = '\0'; /* never changes */
1722
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001723 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001724 char *free_me = NULL;
1725
1726 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001727 c = *prmt_ptr++;
1728 if (c == '\\') {
1729 const char *cp = prmt_ptr;
1730 int l;
1731
1732 c = bb_process_escape_sequence(&prmt_ptr);
1733 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001734 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001735 break;
1736 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001737
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001738 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001739# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001740 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001741 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001742 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001743# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001744 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001745 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001746 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001747 break;
1748 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001749 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001750 break;
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001751# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001752 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001753 /* /home/user[/something] -> ~[/something] */
1754 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001755 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001756 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001757 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1758 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1759 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001760 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001761 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001762 }
1763 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001764# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001765 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001766 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001767 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001768 if (cp != NULL && cp != pbuf)
1769 pbuf += (cp-pbuf) + 1;
1770 break;
1771 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001772 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001773 break;
1774 case 'e': case 'E': /* \e \E = \033 */
1775 c = '\033';
1776 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001777 case 'x': case 'X': {
1778 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001779 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001780 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001781 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001782 buf2[l] = '\0';
1783 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001784 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001785 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001786 break;
1787 }
1788 prmt_ptr++;
1789 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001790 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001791 if (c == 0)
1792 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001793 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001794 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001795 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001796 case '[': case ']':
1797 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001798 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001799 continue;
1800 }
1801 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001802 } /* switch */
1803 } /* if */
1804 } /* if */
1805 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001806 cur_prmt_len = strlen(pbuf);
1807 prmt_len += cur_prmt_len;
1808 if (flg_not_length != ']')
1809 cmdedit_prmt_len += cur_prmt_len;
1810 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001811 free(free_me);
1812 } /* while */
1813
1814 if (cwd_buf != (char *)bb_msg_unknown)
1815 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001816 cmdedit_prompt = prmt_mem_ptr;
1817 put_prompt();
1818}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001819#endif
1820
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001821static void cmdedit_setwidth(unsigned w, int redraw_flg)
1822{
1823 cmdedit_termw = w;
1824 if (redraw_flg) {
1825 /* new y for current cursor */
1826 int new_y = (cursor + cmdedit_prmt_len) / w;
1827 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001828 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001829 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001830 }
1831}
1832
1833static void win_changed(int nsig)
1834{
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001835 int sv_errno = errno;
Denis Vlasenko55995022008-05-18 22:28:26 +00001836 unsigned width;
Denys Vlasenko451add42010-07-25 00:06:41 +02001837 get_terminal_width_height(0, &width, NULL);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001838 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1839 if (nsig == SIGWINCH)
1840 signal(SIGWINCH, win_changed); /* rearm ourself */
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001841 errno = sv_errno;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001842}
1843
Denys Vlasenko66c5b122011-02-08 05:07:02 +01001844static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001845{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001846 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001847#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001848 char unicode_buf[MB_CUR_MAX + 1];
1849 int unicode_idx = 0;
1850#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001851
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001852 while (1) {
1853 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1854 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1855 * insist on full MB_CUR_MAX buffer to declare input like
1856 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1857 *
1858 * Note: read_key sets errno to 0 on success.
1859 */
1860 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1861 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001862#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001863 if (errno == EAGAIN && unicode_idx != 0)
1864 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001865#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001866 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001867 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001868
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001869#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1870 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001871 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001872 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001873 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001874 if (cursor == 0) { /* otherwise it may be bogus */
1875 int col = ((ic >> 32) & 0x7fff) - 1;
1876 if (col > cmdedit_prmt_len) {
1877 cmdedit_x += (col - cmdedit_prmt_len);
1878 while (cmdedit_x >= cmdedit_termw) {
1879 cmdedit_x -= cmdedit_termw;
1880 cmdedit_y++;
1881 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001882 }
1883 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001884 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001885 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001886#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001887
Denys Vlasenko19158a82010-03-26 14:06:56 +01001888#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001889 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001890 wchar_t wc;
1891
1892 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001893 break;
1894 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001895
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001896 unicode_buf[unicode_idx++] = ic;
1897 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001898 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1899 /* Not (yet?) a valid unicode char */
1900 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001901 timeout = 50;
1902 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001903 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001904 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001905 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001906 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001907# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001908 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001909# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001910 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001911# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001912 } else {
1913 /* Valid unicode char, return its code */
1914 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001915 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001916 }
1917#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001918 break;
1919 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001920
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001921 return ic;
1922}
1923
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001924#if ENABLE_UNICODE_BIDI_SUPPORT
1925static int isrtl_str(void)
1926{
1927 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001928
1929 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001930 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001931 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001932}
1933#else
1934# define isrtl_str() 0
1935#endif
1936
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001937/* leave out the "vi-mode"-only case labels if vi editing isn't
1938 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001939#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001940
1941/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001942#undef CTRL
1943#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001944
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001945/* maxsize must be >= 2.
1946 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001947 * -1 on read errors or EOF, or on bare Ctrl-D,
1948 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001949 * >0 length of input string, including terminating '\n'
1950 */
Denys Vlasenko66c5b122011-02-08 05:07:02 +01001951int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize, int timeout)
Erik Andersen13456d12000-03-16 08:09:57 +00001952{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001953 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001954#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001955 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001956#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001957 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001958#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001959 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001960#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001961 struct termios initial_settings;
1962 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001963 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001964
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001965 INIT_S();
1966
1967 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1968 || !(initial_settings.c_lflag & ECHO)
1969 ) {
1970 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001971 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001972 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001973 if (fgets(command, maxsize, stdin) == NULL)
1974 len = -1; /* EOF or error */
1975 else
1976 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001977 DEINIT_S();
1978 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001979 }
1980
Denys Vlasenko28055022010-01-04 20:49:58 +01001981 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001982
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001983// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001984 if (maxsize > MAX_LINELEN)
1985 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001986 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001987
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001988 /* With zero flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001989 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001990#if MAX_HISTORY > 0
1991# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001992 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001993 if (state->cnt_history == 0)
1994 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001995# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001996 if (state->flags & DO_HISTORY)
1997 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001998#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001999
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002000 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002001 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002002 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002003#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002004 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2005#else
Mark Whitley4e338752001-01-26 20:42:23 +00002006 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002007 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002008#endif
2009#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002010
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002011 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00002012 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
2013 /* Turn off echoing and CTRL-C, so we can trap it */
2014 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002015 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00002016 new_settings.c_cc[VMIN] = 1;
2017 new_settings.c_cc[VTIME] = 0;
2018 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002019#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002020# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002021#endif
Eric Andersenc470f442003-07-28 09:56:35 +00002022 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00002023 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002024
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002025 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
2026 win_changed(0); /* do initial resizing */
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002027#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002028 {
2029 struct passwd *entry;
2030
2031 entry = getpwuid(geteuid());
2032 if (entry) {
2033 user_buf = xstrdup(entry->pw_name);
2034 home_pwd_buf = xstrdup(entry->pw_dir);
2035 }
2036 }
2037#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002038
2039#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002040 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002041 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002042 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2043#endif
2044
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002045 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002046 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002047 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002048
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002049 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002050 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002051 /*
2052 * The emacs and vi modes share much of the code in the big
2053 * command loop. Commands entered when in vi's command mode
2054 * (aka "escape mode") get an extra bit added to distinguish
2055 * them - this keeps them from being self-inserted. This
2056 * clutters the big switch a bit, but keeps all the code
2057 * in one place.
2058 */
2059 enum {
2060 VI_CMDMODE_BIT = 0x40000000,
2061 /* 0x80000000 bit flags KEYCODE_xxx */
2062 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002063 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002064
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002065 fflush_all();
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002066 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002067
Denis Vlasenko38f63192007-01-22 09:03:07 +00002068#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002069 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002070 if (vi_cmdmode) {
2071 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2072 * change ic if it contains one of them: */
2073 ic |= VI_CMDMODE_BIT;
2074 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002075#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002076
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002077 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002078 case '\n':
2079 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002080 vi_case('\n'|VI_CMDMODE_BIT:)
2081 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002082 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002083 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002084 break_out = 1;
2085 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002086 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002087 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002088 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002089 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002090 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002091 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002092 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002093 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002094 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002095 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002096 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002097 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002098 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002099 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002100 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002101 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002102 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002103 vi_case('l'|VI_CMDMODE_BIT:)
2104 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002105 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002106 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002107 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002108 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002109 if (!isrtl_str())
2110 input_backspace();
2111 else
2112 input_delete(0);
2113 break;
2114 case KEYCODE_DELETE:
2115 if (!isrtl_str())
2116 input_delete(0);
2117 else
2118 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002119 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002120#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002121 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002122 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002123 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002124#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002125 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002126 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002127 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002128 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002129 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002130 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002131 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002132 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002133 /* Control-l -- clear screen */
Marek Polacek7b181072010-10-28 21:34:56 +02002134 printf(ESC"[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002135 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002136 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002137#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002138 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002139 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2140 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002141 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002142 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002143 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002144 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002145 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002146 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2147 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002148 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002149 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002150 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002151 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002152#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002153 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002154 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002155 /* Control-U -- Clear line before cursor */
2156 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002157 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002158 memmove(command_ps, command_ps + cursor,
2159 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002160 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002161 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002162 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002163 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002164 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002165 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002166 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002167 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002168 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002169 input_backspace();
2170 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002171
Denis Vlasenko38f63192007-01-22 09:03:07 +00002172#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002173 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002174 vi_cmdmode = 0;
2175 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002176 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002177 input_backward(cursor);
2178 vi_cmdmode = 0;
2179 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002180 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002181 input_forward();
2182 vi_cmdmode = 0;
2183 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002184 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002185 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002186 vi_cmdmode = 0;
2187 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002188 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002189 input_delete(1);
2190 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002191 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002192 if (cursor > 0) {
2193 input_backward(1);
2194 input_delete(1);
2195 }
2196 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002197 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002198 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002199 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002200 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002201 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002202 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002203 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002204 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002205 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002206 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002207 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002208 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002209 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002210 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002211 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002212 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002213 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002214 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002215 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002216 vi_cmdmode = 0;
2217 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002218 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002219 goto clear_to_eol;
2220
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002221 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002222 vi_cmdmode = 0;
2223 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002224 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002225 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002226
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002227 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002228 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002229 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002230 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002231 input_backward(cursor);
2232 goto clear_to_eol;
2233 break;
2234 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002235
2236 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002237 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002238 case 'w':
2239 case 'W':
2240 case 'e':
2241 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002242 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002243 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002244 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002245 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002246 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002247 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002248 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002249 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002250 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002251 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002252 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002253 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002254 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002255 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002256 break;
2257 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002258 nc = cursor;
2259 input_backward(cursor - sc);
2260 while (nc-- > cursor)
2261 input_delete(1);
2262 break;
2263 case 'b': /* "db", "cb" */
2264 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002265 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002266 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002267 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002268 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002269 while (sc-- > cursor)
2270 input_delete(1);
2271 break;
2272 case ' ': /* "d ", "c " */
2273 input_delete(1);
2274 break;
2275 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002276 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002277 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002278 input_delete(1);
2279 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002280 }
2281 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002282 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002283 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002284 input_forward();
2285 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002286 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002287 put();
2288 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002289 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002290//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002291 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002292 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002293 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002294 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002295 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002296 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002297 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002298 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002299 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002300 }
2301 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002302 case '\x1b': /* ESC */
2303 if (state->flags & VI_MODE) {
2304 /* insert mode --> command mode */
2305 vi_cmdmode = 1;
2306 input_backward(1);
2307 }
2308 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002309#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002310
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002311#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002312 case KEYCODE_UP:
2313 if (get_previous_history())
2314 goto rewrite_line;
2315 beep();
2316 break;
2317 case KEYCODE_DOWN:
2318 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002319 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002320 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002321 /* Rewrite the line with the selected history item */
2322 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002323 command_len = load_string(state->history[state->cur_history] ?
2324 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002325 /* redraw and go to eol (bol, in vi) */
2326 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2327 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002328#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002329 case KEYCODE_RIGHT:
2330 input_forward();
2331 break;
2332 case KEYCODE_LEFT:
2333 input_backward(1);
2334 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002335 case KEYCODE_CTRL_LEFT:
2336 ctrl_left();
2337 break;
2338 case KEYCODE_CTRL_RIGHT:
2339 ctrl_right();
2340 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002341 case KEYCODE_HOME:
2342 input_backward(cursor);
2343 break;
2344 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002345 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002346 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002347
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002348 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002349 if (initial_settings.c_cc[VINTR] != 0
2350 && ic_raw == initial_settings.c_cc[VINTR]
2351 ) {
2352 /* Ctrl-C (usually) - stop gathering input */
2353 goto_new_line();
2354 command_len = 0;
2355 break_out = -1; /* "do not append '\n'" */
2356 break;
2357 }
2358 if (initial_settings.c_cc[VEOF] != 0
2359 && ic_raw == initial_settings.c_cc[VEOF]
2360 ) {
2361 /* Ctrl-D (usually) - delete one character,
2362 * or exit if len=0 and no chars to delete */
2363 if (command_len == 0) {
2364 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002365
2366 case -1: /* error (e.g. EIO when tty is destroyed) */
2367 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002368 break_out = command_len = -1;
2369 break;
2370 }
2371 input_delete(0);
2372 break;
2373 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002374// /* Control-V -- force insert of next char */
2375// if (c == CTRL('V')) {
2376// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002377// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002378// if (c == 0) {
2379// beep();
2380// break;
2381// }
2382// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002383 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002384 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2385 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002386 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002387 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002388 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002389 * Otherwise, we are here if ic is a
2390 * control char or an unhandled ESC sequence,
2391 * which is also ignored.
2392 */
2393 break;
2394 }
2395 if ((int)command_len >= (maxsize - 2)) {
2396 /* Not enough space for the char and EOL */
2397 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002398 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002399
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002400 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002401 if (cursor == (command_len - 1)) {
2402 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002403 command_ps[cursor] = ic;
2404 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002405 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002406 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002407 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002408 } else {
2409 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002410 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002411
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002412 memmove(command_ps + sc + 1, command_ps + sc,
2413 (command_len - sc) * sizeof(command_ps[0]));
2414 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002415 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2416 if (!isrtl_str())
2417 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002418 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002419 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002420 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002421 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002422 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002423 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002424
2425 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002426 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002427
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002428#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002429 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002430 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002431#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002432 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002433
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002434#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002435 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002436 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2437 * We sent "ESC [ 6 n", but got '\n' first, and
2438 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2439 * It's bad already and not much can be done with it
2440 * (it _will_ be visible for the next process to read stdin),
2441 * but without this delay it even shows up on the screen
2442 * as garbage because we restore echo settings with tcsetattr
2443 * before it comes in. UGLY!
2444 */
2445 usleep(20*1000);
2446 }
2447#endif
2448
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002449/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002450#undef command
2451
Denys Vlasenko19158a82010-03-26 14:06:56 +01002452#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002453 command[0] = '\0';
2454 if (command_len > 0)
2455 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002456 free(command_ps);
2457#endif
2458
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002459 if (command_len > 0)
2460 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002461
Eric Andersen27bb7902003-12-23 20:24:51 +00002462 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002463 command[command_len++] = '\n';
2464 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002465 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002466
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002467#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002468 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002469#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002470
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002471 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002472 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002473 /* restore SIGWINCH handler */
2474 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002475 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002476
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002477 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002478 DEINIT_S();
2479
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002480 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002481}
2482
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002483#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002484
2485#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002486int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002487{
2488 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002489 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002490 fgets(command, maxsize, stdin);
2491 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002492}
2493
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002494#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002495
2496
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002497/*
2498 * Testing
2499 */
2500
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002501#ifdef TEST
2502
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002503#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002504
2505const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002506
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002507int main(int argc, char **argv)
2508{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002509 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002510 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002511#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002512 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2513 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2514 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002515#else
2516 "% ";
2517#endif
2518
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002519 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002520 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002521 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002522 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002523 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002524 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002525 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002526 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002527 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002528 return 0;
2529}
2530
Eric Andersenc470f442003-07-28 09:56:35 +00002531#endif /* TEST */