blob: 93ab86426b399afe2e36f79e61afae0fc8581fb1 [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"
Alexey Fomenko232ebaa2011-05-20 04:26:29 +020044#ifndef _POSIX_VDISABLE
45# define _POSIX_VDISABLE '\0'
46#endif
47
Glenn L McGrath475820c2004-01-22 12:42:23 +000048
Glenn L McGrath3b251852004-01-03 12:07:32 +000049#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020050# define ENABLE_FEATURE_EDITING 0
51# define ENABLE_FEATURE_TAB_COMPLETION 0
52# define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020053#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000054
Eric Andersen5165fbe2001-02-20 06:42:29 +000055
Denis Vlasenko82b39e82007-01-21 19:18:19 +000056/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000057#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000058
Denis Vlasenko82b39e82007-01-21 19:18:19 +000059
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020060#define ENABLE_USERNAME_OR_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000061 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020062#define IF_USERNAME_OR_HOMEDIR(...)
63#if ENABLE_USERNAME_OR_HOMEDIR
64# undef IF_USERNAME_OR_HOMEDIR
65# define IF_USERNAME_OR_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000066#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000067
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020068
69#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010070#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020071# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020072# define CHAR_T wchar_t
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010073static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010074# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010075static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010076# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010077static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020078# undef isspace
79# undef isalnum
80# undef ispunct
81# undef isprint
82# define isspace isspace_must_not_be_used
83# define isalnum isalnum_must_not_be_used
84# define ispunct ispunct_must_not_be_used
85# define isprint isprint_must_not_be_used
86#else
87# define BB_NUL '\0'
88# define CHAR_T char
89# define BB_isspace(c) isspace(c)
90# define BB_isalnum(c) isalnum(c)
91# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020092#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020093#if ENABLE_UNICODE_PRESERVE_BROKEN
94# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
95# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
96#else
97# define unicode_is_raw_byte(wc) 0
98#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020099
100
Marek Polacek7b181072010-10-28 21:34:56 +0200101#define ESC "\033"
102
103#define SEQ_CLEAR_TILL_END_OF_SCREEN ESC"[J"
104//#define SEQ_CLEAR_TILL_END_OF_LINE ESC"[K"
Tomas Heinricha659b812010-04-29 13:43:39 +0200105
106
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000107enum {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000108 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000109 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000110 : 0x7ff0
111};
Robert Griebl350d26b2002-12-03 22:45:46 +0000112
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200113#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000114static const char null_str[] ALIGN1 = "";
115#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000116
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000117/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000118struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000119 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000120
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000121 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
122 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000123
Denys Vlasenko020f4062009-05-17 16:44:54 +0200124 unsigned cmdedit_x; /* real x (col) terminal position */
125 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000126 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000127
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000128 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200129 int command_len; /* must be signed */
130 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200131 * to _not_ be promoted to unsigned */
132 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200133 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000134
135 const char *cmdedit_prompt;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000136
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200137#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000138 char *user_buf;
139 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000140#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000141
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000142#if ENABLE_FEATURE_TAB_COMPLETION
143 char **matches;
144 unsigned num_matches;
145#endif
146
147#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200148# define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200149 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000150 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200151 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000152#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100153#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100154 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100155#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000156};
157
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000158/* See lineedit_ptr_hack.c */
159extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000160
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000161#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000162#define state (S.state )
163#define cmdedit_termw (S.cmdedit_termw )
164#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
165#define cmdedit_x (S.cmdedit_x )
166#define cmdedit_y (S.cmdedit_y )
167#define cmdedit_prmt_len (S.cmdedit_prmt_len)
168#define cursor (S.cursor )
169#define command_len (S.command_len )
170#define command_ps (S.command_ps )
171#define cmdedit_prompt (S.cmdedit_prompt )
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; \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200184 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Shawn J. Goff46031da2013-02-27 18:30:05 +0100185 IF_FEATURE_EDITING_VI(delptr = delbuf;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000186} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200187
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000188static void deinit_S(void)
189{
190#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000191 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200192 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000193 free((char*)cmdedit_prompt);
194#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200195#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000196 free(user_buf);
197 if (home_pwd_buf != null_str)
198 free(home_pwd_buf);
199#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000200 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000201}
202#define DEINIT_S() deinit_S()
203
Denis Vlasenko2c844952008-04-25 18:44:35 +0000204
Denys Vlasenko19158a82010-03-26 14:06:56 +0100205#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200206static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200207{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100208 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200209 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100210 if (len < 0)
211 len = 0;
212 command_ps[len] = BB_NUL;
213 return len;
214 } else {
215 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200216 while (src[i] && i < S.maxsize - 1) {
217 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100218 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200219 }
220 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100221 return i;
222 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200223}
Tomas Heinricha659b812010-04-29 13:43:39 +0200224static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200225{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100226 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200227# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100228 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
229 if (len < 0)
230 len = 0;
231 dst[len] = '\0';
232 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200233# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100234 unsigned dstpos = 0;
235 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200236
Denys Vlasenko353680a2011-03-27 01:18:07 +0100237 maxsize--;
238 while (dstpos < maxsize) {
239 wchar_t wc;
240 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200241
Denys Vlasenko353680a2011-03-27 01:18:07 +0100242 /* Convert up to 1st invalid byte (or up to end) */
243 while ((wc = command_ps[srcpos]) != BB_NUL
244 && !unicode_is_raw_byte(wc)
245 ) {
246 srcpos++;
247 }
248 command_ps[srcpos] = BB_NUL;
249 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
250 if (n < 0) /* should not happen */
251 break;
252 dstpos += n;
253 if (wc == BB_NUL) /* usually is */
254 break;
255
256 /* We do have invalid byte here! */
257 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200258 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100259 if (dstpos == maxsize)
260 break;
261 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200262 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100263 dst[dstpos] = '\0';
264 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200265# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100266 } else {
267 unsigned i = 0;
268 while ((dst[i] = command_ps[i]) != 0)
269 i++;
270 return i;
271 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200272}
273/* I thought just fputwc(c, stdout) would work. But no... */
274static void BB_PUTCHAR(wchar_t c)
275{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100276 if (unicode_status == UNICODE_ON) {
277 char buf[MB_CUR_MAX + 1];
278 mbstate_t mbst = { 0 };
279 ssize_t len = wcrtomb(buf, c, &mbst);
280 if (len > 0) {
281 buf[len] = '\0';
282 fputs(buf, stdout);
283 }
284 } else {
285 /* In this case, c is always one byte */
286 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200287 }
288}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200289# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
290static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
291# else
292static wchar_t adjust_width_and_validate_wc(wchar_t wc)
293# define adjust_width_and_validate_wc(width_adj, wc) \
294 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
295# endif
296{
297 int w = 1;
298
299 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200300 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
301 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200302 goto subst;
303 }
304 w = wcwidth(wc);
305 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
306 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
307 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
308 ) {
309 subst:
310 w = 1;
311 wc = CONFIG_SUBST_WCHAR;
312 }
313 }
314
315# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
316 *width_adj += w;
317#endif
318 return wc;
319}
320#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200321static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200322{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200323 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200324 return strlen(command_ps);
325}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200326# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200327static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200328{
329 safe_strncpy(dst, command_ps, maxsize);
330}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200331# endif
332# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200333/* Should never be called: */
334int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200335#endif
336
337
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000338/* Put 'command_ps[cursor]', cursor++.
339 * Advance cursor on screen. If we reached right margin, scroll text up
340 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000341#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200342static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000343{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200344 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200345 unsigned width = 0;
346 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000347
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200348 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000349 /* erase character after end of input string */
350 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200351 } else {
352 /* advance cursor only if we aren't at the end yet */
353 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200354 if (unicode_status == UNICODE_ON) {
355 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
356 c = adjust_width_and_validate_wc(&cmdedit_x, c);
357 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
358 } else {
359 cmdedit_x++;
360 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000361 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200362
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200363 ofs_to_right = cmdedit_x - cmdedit_termw;
364 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
365 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200366 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000367 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200368
369 if (ofs_to_right >= 0) {
370 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000371#if HACK_FOR_WRONG_WIDTH
372 /* This works better if our idea of term width is wrong
373 * and it is actually wider (often happens on serial lines).
374 * Printing CR,LF *forces* cursor to next line.
375 * OTOH if terminal width is correct AND terminal does NOT
376 * have automargin (IOW: it is moving cursor to next line
377 * by itself (which is wrong for VT-10x terminals)),
378 * this will break things: there will be one extra empty line */
379 puts("\r"); /* + implicit '\n' */
380#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200381 /* VT-10x terminals don't wrap cursor to next line when last char
382 * on the line is printed - cursor stays "over" this char.
383 * Need to print _next_ char too (first one to appear on next line)
384 * to make cursor move down to next line.
385 */
386 /* Works ok only if cmdedit_termw is correct. */
387 c = command_ps[cursor];
388 if (c == BB_NUL)
389 c = ' ';
390 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000391 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000392#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200393 cmdedit_y++;
394 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
395 width = 0;
396 } else { /* ofs_to_right > 0 */
397 /* wide char c didn't fit on prev line */
398 BB_PUTCHAR(c);
399 }
400 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000401 }
Erik Andersen13456d12000-03-16 08:09:57 +0000402}
403
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000404/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200405static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000406{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000407 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200408 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000409}
410
411/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000412static void goto_new_line(void)
413{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200414 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200415 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000416 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000417}
418
Rob Landley88621d72006-08-29 19:41:06 +0000419static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000420{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000421 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000422}
423
Denys Vlasenko248c3242010-05-17 00:45:44 +0200424static void put_prompt(void)
425{
426 unsigned w;
427
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200428 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200429 fflush_all();
430 cursor = 0;
431 w = cmdedit_termw; /* read volatile var once */
432 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
433 cmdedit_x = cmdedit_prmt_len % w;
434}
435
Eric Andersenaff114c2004-04-14 17:51:38 +0000436/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000437/* (optimized for slow terminals) */
438static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000439{
440 if (num > cursor)
441 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200442 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000443 return;
444 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000445
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200446 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
447 && unicode_status == UNICODE_ON
448 ) {
449 /* correct NUM to be equal to _screen_ width */
450 int n = num;
451 num = 0;
452 while (--n >= 0)
453 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
454 if (num == 0)
455 return;
456 }
457
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000458 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000459 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000460 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000461 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000462 * Also gets miscompiled for ARM users
463 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000464 * printf(("\b\b\b\b" + 4) - num);
465 * return;
466 */
467 do {
468 bb_putchar('\b');
469 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000470 return;
471 }
Marek Polacek7b181072010-10-28 21:34:56 +0200472 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000473 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000474 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000475
476 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200477 if (ENABLE_UNICODE_WIDE_WCHARS) {
478 /* With wide chars, it is hard to "backtrack"
479 * and reliably figure out where to put cursor.
480 * Example (<> is a wide char; # is an ordinary char, _ cursor):
481 * |prompt: <><> |
482 * |<><><><><><> |
483 * |_ |
484 * and user presses left arrow. num = 1, cmdedit_x = 0,
485 * We need to go up one line, and then - how do we know that
486 * we need to go *10* positions to the right? Because
487 * |prompt: <>#<>|
488 * |<><><>#<><><>|
489 * |_ |
490 * in this situation we need to go *11* positions to the right.
491 *
492 * A simpler thing to do is to redraw everything from the start
493 * up to new cursor position (which is already known):
494 */
495 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200496 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200497 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200498 cmdedit_y = 0;
499 sv_cursor = cursor;
500 put_prompt(); /* sets cursor to 0 */
501 while (cursor < sv_cursor)
502 put_cur_glyph_and_inc_cursor();
503 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200504 int lines_up;
505 unsigned width;
506 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200507 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200508 width = cmdedit_termw; /* read volatile var once */
509 /* num=1...w: one line up, w+1...2w: two, etc: */
510 lines_up = 1 + (num - 1) / width;
511 cmdedit_x = (width * cmdedit_y - num) % width;
512 cmdedit_y -= lines_up;
513 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200514 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200515 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200516 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
517 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200518 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200519 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000520 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000521}
522
Eric Andersenaff114c2004-04-14 17:51:38 +0000523/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000524static void redraw(int y, int back_cursor)
525{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200526 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200527 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000528 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000529 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200530 put_till_end_and_adv_cursor();
531 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000532 input_backward(back_cursor);
533}
534
Paul Fox3f11b1b2005-08-04 19:04:46 +0000535/* Delete the char in front of the cursor, optionally saving it
536 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000537#if !ENABLE_FEATURE_EDITING_VI
538static void input_delete(void)
539#define input_delete(save) input_delete()
540#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000541static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000542#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000543{
Mark Whitley4e338752001-01-26 20:42:23 +0000544 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000545
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000546 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000547 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000548
Denis Vlasenko38f63192007-01-22 09:03:07 +0000549#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000550 if (save) {
551 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000552 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000553 newdelflag = 0;
554 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000555 if ((delptr - delbuf) < DELBUFSIZ)
556 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000557 }
558#endif
559
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200560 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200561 /* (command_len + 1 [because of NUL]) - (j + 1)
562 * simplified into (command_len - j) */
563 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000564 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200565 put_till_end_and_adv_cursor();
566 /* Last char is still visible, erase it (and more) */
567 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000568 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000569}
570
Denis Vlasenko38f63192007-01-22 09:03:07 +0000571#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000572static void put(void)
573{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000574 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000575 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000576
Paul Fox3f11b1b2005-08-04 19:04:46 +0000577 if (j == 0)
578 return;
579 ocursor = cursor;
580 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200581 memmove(command_ps + cursor + j, command_ps + cursor,
582 (command_len - cursor + 1) * sizeof(command_ps[0]));
583 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000584 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200585 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000586 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000587}
588#endif
589
Mark Whitley4e338752001-01-26 20:42:23 +0000590/* Delete the char in back of the cursor */
591static void input_backspace(void)
592{
593 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000594 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000595 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000596 }
597}
598
Eric Andersenaff114c2004-04-14 17:51:38 +0000599/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000600static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000601{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000602 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200603 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000604}
605
Denis Vlasenko38f63192007-01-22 09:03:07 +0000606#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000607
Mike Shalf3763032010-11-22 03:49:18 +0100608//FIXME:
609//needs to be more clever: currently it thinks that "foo\ b<TAB>
610//matches the file named "foo bar", which is untrue.
611//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
612//not "foo bar <cursor>...
613
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000614static void free_tab_completion_data(void)
615{
616 if (matches) {
617 while (num_matches)
618 free(matches[--num_matches]);
619 free(matches);
620 matches = NULL;
621 }
622}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000623
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000624static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000625{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000626 matches = xrealloc_vector(matches, 4, num_matches);
627 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000628 num_matches++;
629}
630
Mike Shalf3763032010-11-22 03:49:18 +0100631# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200632/* Replace "~user/..." with "/homedir/...".
633 * The parameter is malloced, free it or return it
634 * unchanged if no user is matched.
635 */
636static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000637{
638 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200639 char *tilde_name = ud;
640 char *home = NULL;
641
642 ud++; /* skip ~ */
643 if (*ud == '/') { /* "~/..." */
644 home = home_pwd_buf;
645 } else {
646 /* "~user/..." */
647 ud = strchr(ud, '/');
648 *ud = '\0'; /* "~user" */
649 entry = getpwnam(tilde_name + 1);
650 *ud = '/'; /* restore "~user/..." */
651 if (entry)
652 home = entry->pw_dir;
653 }
654 if (home) {
655 ud = concat_path_file(home, ud);
656 free(tilde_name);
657 tilde_name = ud;
658 }
659 return tilde_name;
660}
661
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200662/* ~use<tab> - find all users with this prefix.
663 * Return the length of the prefix used for matching.
664 */
665static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200666{
667 /* Using _r function to avoid pulling in static buffers */
668 char line_buff[256];
669 struct passwd pwd;
670 struct passwd *result;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200671 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000672
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200673 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000674 userlen = strlen(ud);
675
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200676 setpwent();
677 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
678 /* Null usernames should result in all users as possible completions. */
679 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
680 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000681 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000682 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200683 endpwent();
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200684
685 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000686}
Mike Shalf3763032010-11-22 03:49:18 +0100687# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000688
689enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000690 FIND_EXE_ONLY = 0,
691 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000692 FIND_FILE_ONLY = 2,
693};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000694
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200695static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000696{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000697 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000698 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000699 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000700 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000701
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000702 if (state->flags & WITH_PATH_LOOKUP)
703 pth = state->path_lookup;
704 else
705 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200706
707 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000708 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
709 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000710
Denis Vlasenko253ce002007-01-22 08:34:44 +0000711 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000712 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000713 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000714 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000715 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000716 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200717 tmp++;
718 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000719 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000720 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000721 }
722
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200723 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000724 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000725 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000726 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000727 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000728 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000729 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000730 *tmp++ = '\0'; /* ':' -> '\0' */
731 if (*tmp == '\0')
732 break; /* :<empty> */
733 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000734 }
Mark Whitley4e338752001-01-26 20:42:23 +0000735 return npth;
736}
737
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200738/* Complete command, directory or file name.
739 * Return the length of the prefix used for matching.
740 */
741static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000742{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000743 char *path1[1];
744 char **paths = path1;
745 int npaths;
746 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200747 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200748 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200749 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000750
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000751 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000752 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000753
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200754 pfind = strrchr(command, '/');
755 if (!pfind) {
756 if (type == FIND_EXE_ONLY)
757 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000758 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000759 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000760 /* point to 'l' in "..../last_component" */
761 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200762 /* dirbuf = ".../.../.../" */
763 dirbuf = xstrndup(command, pfind - command);
Mike Shalf3763032010-11-22 03:49:18 +0100764# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200765 if (dirbuf[0] == '~') /* ~/... or ~user/... */
766 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100767# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200768 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000769 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200770 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000771
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000772 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200773 DIR *dir;
774 struct dirent *next;
775 struct stat st;
776 char *found;
777
Mark Whitley4e338752001-01-26 20:42:23 +0000778 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000779 if (!dir)
780 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000781
782 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200783 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200784 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000785
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200786 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
787 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000788 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200789 /* match? */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200790 if (strncmp(name_found, pfind, pf_len) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200791 continue; /* no */
792
793 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000794 /* NB: stat() first so that we see is it a directory;
795 * but if that fails, use lstat() so that
796 * we still match dangling links */
797 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200798 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000799
Denys Vlasenko39263632010-09-03 14:11:08 +0200800 /* Save only name */
801 len = strlen(name_found);
802 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
803 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000804
Mark Whitley4e338752001-01-26 20:42:23 +0000805 if (S_ISDIR(st.st_mode)) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200806 /* name is a directory, add slash */
807 found[len] = '/';
808 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000809 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200810 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000811 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000812 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000813 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200814 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000815 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000816 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000817 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000818 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000819 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000820 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200821 } /* for every path */
822
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000823 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000824 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000825 free(paths);
826 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200827 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200828
829 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000830}
Erik Andersenf0657d32000-04-12 17:49:52 +0000831
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200832/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200833 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200834 * was pressed. This function looks at it, figures out what part of it
835 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200836 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200837 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200838#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200839/* Helpers: */
840/* QUOT is used on elements of int_buf[], which are bytes,
841 * not Unicode chars. Therefore it works correctly even in Unicode mode.
842 */
843#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200844static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200845{
846 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200847 if (beg == end)
848 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200849
850 while ((int_buf[beg] = int_buf[end]) != 0)
851 beg++, end++;
852
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200853 if (dbg_bmp) {
854 int i;
855 for (i = 0; int_buf[i]; i++)
856 bb_putchar((unsigned char)int_buf[i]);
857 bb_putchar('\n');
858 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200859}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200860/* Caller ensures that match_buf points to a malloced buffer
861 * big enough to hold strlen(match_buf)*2 + 2
862 */
863static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000864{
865 int i, j;
866 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200867 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000868
Denys Vlasenko76939e72010-09-03 14:09:24 +0200869 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200870
Denys Vlasenko76939e72010-09-03 14:09:24 +0200871 /* Copy in reverse order, since they overlap */
872 i = strlen(match_buf);
873 do {
874 int_buf[i] = (unsigned char)match_buf[i];
875 i--;
876 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000877
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200878 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200879 for (i = 0; int_buf[i]; i++) {
880 if (int_buf[i] == '\\') {
881 remove_chunk(int_buf, i, i + 1);
882 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000883 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200884 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200885 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200886 {
887 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200888 i = 0;
889 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200890 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200891 if (!cur)
892 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200893 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200894 if (!in_quote || (cur == in_quote)) {
895 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200896 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200897 continue;
898 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000899 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200900 if (in_quote)
901 int_buf[i] = cur | QUOT;
902 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200903 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000904 }
905
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200906 /* Remove everything up to command delimiters:
907 * ';' ';;' '&' '|' '&&' '||',
908 * but careful with '>&' '<&' '>|'
909 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000910 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200911 int cur = int_buf[i];
912 if (cur == ';' || cur == '&' || cur == '|') {
913 int prev = i ? int_buf[i - 1] : 0;
914 if (cur == '&' && (prev == '>' || prev == '<')) {
915 continue;
916 } else if (cur == '|' && prev == '>') {
917 continue;
918 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200919 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200920 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000921 }
922 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200923 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200924 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000925 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200926 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000927 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200928 /* `cmd` should count as a word:
929 * `cmd` c<tab> should search for files c*,
930 * not commands c*. Therefore we don't drop
931 * `cmd` entirely, we replace it with single `.
932 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200933 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200934 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000935 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200936 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200937 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200938 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200939 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200940 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000941 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200942 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000943
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200944 /* Remove "cmd (" and "cmd {"
945 * Example: "if { c<tab>"
946 * In this example, c should be matched as command pfx.
947 */
948 for (i = 0; int_buf[i]; i++) {
949 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200950 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +0200951 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000952 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200953 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000954
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200955 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000956 for (i = 0; int_buf[i]; i++)
957 if (int_buf[i] != ' ')
958 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200959 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000960
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200961 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000962 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200963 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000964 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200965 if (int_buf[i] == ' '
966 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200967 && (char)int_buf[0] == 'c'
968 && (char)int_buf[1] == 'd'
969 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000970 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000971 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000972 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000973 command_mode = FIND_FILE_ONLY;
974 break;
975 }
976 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200977 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200978 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200979
980 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200981 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
982 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000983 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200984 int cur = int_buf[i];
985 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200986 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000987 break;
988 }
989 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000990
Denys Vlasenko76939e72010-09-03 14:09:24 +0200991 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200992 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200993 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200994 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200995
Denys Vlasenko76939e72010-09-03 14:09:24 +0200996 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000997
998 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200999}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001000
Glenn L McGrath4d001292003-01-06 01:11:50 +00001001/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001002 * Display by column (original idea from ls applet,
1003 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001004 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001005static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001006{
1007 int ncols, row;
1008 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001009 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001010 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001011 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001012
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001013 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001014 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001015 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001016 if (column_width < l)
1017 column_width = l;
1018 }
1019 column_width += 2; /* min space for columns */
1020 ncols = cmdedit_termw / column_width;
1021
1022 if (ncols > 1) {
1023 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001024 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001025 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001026 } else {
1027 ncols = 1;
1028 }
1029 for (row = 0; row < nrows; row++) {
1030 int n = row;
1031 int nc;
1032
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001033 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001034 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001035 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001036 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001037 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001038 if (ENABLE_UNICODE_SUPPORT)
1039 puts(printable_string(NULL, matches[n]));
1040 else
1041 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001042 }
1043}
1044
Mike Shalf3763032010-11-22 03:49:18 +01001045static const char *is_special_char(char c)
1046{
1047 return strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", c);
1048}
1049
1050static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001051{
1052 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001053 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001054
1055 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001056 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001057 s[l++] = '\\';
1058 s[l++] = *found++;
1059 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001060 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001061 return s;
1062}
1063
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001064/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001065static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001066{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001067 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001068 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001069 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001070 /* Length of string used for matching */
1071 unsigned match_pfx_len = match_pfx_len;
1072 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001073# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001074 /* cursor pos in command converted to multibyte form */
1075 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001076# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001077 if (!(state->flags & TAB_COMPLETION))
1078 return;
1079
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001080 if (*lastWasTab) {
1081 /* The last char was a TAB too.
1082 * Print a list of all the available choices.
1083 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001084 if (num_matches > 0) {
1085 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001086 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001087 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001088 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001089 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001090 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001091 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001092 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001093
1094 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001095 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001096
Denys Vlasenko76939e72010-09-03 14:09:24 +02001097 /* Make a local copy of the string up to the position of the cursor.
1098 * build_match_prefix will expand it into int16_t's, need to allocate
1099 * twice as much as the string_len+1.
1100 * (we then also (ab)use this extra space later - see (**))
1101 */
1102 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001103# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001104 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001105# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001106 {
1107 CHAR_T wc = command_ps[cursor];
1108 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001109 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001110 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001111 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001112 }
Mike Shalf3763032010-11-22 03:49:18 +01001113# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001114 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001115
1116 /* Free up any memory already allocated */
1117 free_tab_completion_data();
1118
Mike Shalf3763032010-11-22 03:49:18 +01001119# if ENABLE_FEATURE_USERNAME_COMPLETION
1120 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001121 * then try completing this word as a username. */
1122 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001123 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1124 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001125# endif
1126 /* If complete_username() did not match,
1127 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001128 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001129 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001130
1131 /* Account for backslashes which will be inserted
1132 * by quote_special_chars() later */
1133 {
1134 const char *e = match_buf + strlen(match_buf);
1135 const char *s = e - match_pfx_len;
1136 while (s < e)
1137 if (is_special_char(*s++))
1138 match_pfx_len++;
1139 }
1140
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001141 /* Remove duplicates */
1142 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001143 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001144 qsort_string_vector(matches, num_matches);
1145 for (i = 0; i < num_matches - 1; ++i) {
1146 //if (matches[i] && matches[i+1]) { /* paranoia */
1147 if (strcmp(matches[i], matches[i+1]) == 0) {
1148 free(matches[i]);
1149 //matches[i] = NULL; /* paranoia */
1150 } else {
1151 matches[n++] = matches[i];
1152 }
1153 //}
1154 }
1155 matches[n++] = matches[i];
1156 num_matches = n;
1157 }
Mike Shalf3763032010-11-22 03:49:18 +01001158
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001159 /* Did we find exactly one match? */
1160 if (num_matches != 1) { /* no */
1161 char *cp;
1162 beep();
1163 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001164 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001165 /* Find common prefix */
1166 chosen_match = xstrdup(matches[0]);
1167 for (cp = chosen_match; *cp; cp++) {
1168 unsigned n;
1169 for (n = 1; n < num_matches; n++) {
1170 if (matches[n][cp - chosen_match] != *cp) {
1171 goto stop;
1172 }
1173 }
1174 }
1175 stop:
1176 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001177 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001178 }
1179 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001180 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001181 free(chosen_match);
1182 chosen_match = cp;
1183 len_found = strlen(chosen_match);
1184 } else { /* exactly one match */
1185 /* Next <tab> is not a double-tab */
1186 *lastWasTab = 0;
1187
Mike Shalf3763032010-11-22 03:49:18 +01001188 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001189 len_found = strlen(chosen_match);
1190 if (chosen_match[len_found-1] != '/') {
1191 chosen_match[len_found] = ' ';
1192 chosen_match[++len_found] = '\0';
1193 }
1194 }
1195
Mike Shalf3763032010-11-22 03:49:18 +01001196# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001197 /* Have space to place the match? */
1198 /* The result consists of three parts with these lengths: */
1199 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1200 /* it simplifies into: */
1201 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1202 int pos;
1203 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001204 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001205 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001206 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001207 command_len = strlen(command_ps);
1208 /* new pos */
1209 pos = cursor + len_found - match_pfx_len;
1210 /* write out the matched command */
1211 redraw(cmdedit_y, command_len - pos);
1212 }
Mike Shalf3763032010-11-22 03:49:18 +01001213# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001214 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001215 /* Use 2nd half of match_buf as scratch space - see (**) */
1216 char *command = match_buf + MAX_LINELEN;
1217 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001218 /* Have space to place the match? */
1219 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1220 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1221 int pos;
1222 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001223 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001224 /* where do we want to have cursor after all? */
1225 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001226 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001227 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001228 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001229 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001230 /* write out the matched command */
1231 /* paranoia: load_string can return 0 on conv error,
1232 * prevent passing pos = (0 - 12) to redraw */
1233 pos = command_len - len;
1234 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1235 }
1236 }
Mike Shalf3763032010-11-22 03:49:18 +01001237# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001238 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001239 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001240 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001241}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001242
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001243#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001244
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001245
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001246line_input_t* FAST_FUNC new_line_input_t(int flags)
1247{
1248 line_input_t *n = xzalloc(sizeof(*n));
1249 n->flags = flags;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001250 n->max_history = MAX_HISTORY;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001251 return n;
1252}
1253
1254
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001255#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001256
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001257unsigned size_from_HISTFILESIZE(const char *hp)
1258{
1259 int size = MAX_HISTORY;
1260 if (hp) {
1261 size = atoi(hp);
1262 if (size <= 0)
1263 return 1;
1264 if (size > MAX_HISTORY)
1265 return MAX_HISTORY;
1266 }
1267 return size;
1268}
1269
Denis Vlasenko682ad302008-09-27 01:28:56 +00001270static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001271{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001272 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001273 int cur = state->cur_history;
1274 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001275
Denys Vlasenko19158a82010-03-26 14:06:56 +01001276# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001277 {
1278 char tbuf[MAX_LINELEN];
1279 save_string(tbuf, sizeof(tbuf));
1280 state->history[cur] = xstrdup(tbuf);
1281 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001282# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001283 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001284# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001285 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001286}
1287
1288/* state->flags is already checked to be nonzero */
1289static int get_previous_history(void)
1290{
1291 if ((state->flags & DO_HISTORY) && state->cur_history) {
1292 save_command_ps_at_cur_history();
1293 state->cur_history--;
1294 return 1;
1295 }
1296 beep();
1297 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001298}
1299
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001300static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001301{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001302 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001303 if (state->cur_history < state->cnt_history) {
1304 save_command_ps_at_cur_history(); /* save the current history line */
1305 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001306 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001307 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001308 beep();
1309 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001310}
Robert Griebl350d26b2002-12-03 22:45:46 +00001311
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001312# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001313/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001314 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001315 * Otherwise shell users get unhappy.
1316 *
1317 * History file is trimmed lazily, when it grows several times longer
1318 * than configured MAX_HISTORY lines.
1319 */
1320
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001321static void free_line_input_t(line_input_t *n)
1322{
1323 int i = n->cnt_history;
1324 while (i > 0)
1325 free(n->history[--i]);
1326 free(n);
1327}
1328
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001329/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001330static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001331{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001332 char *temp_h[MAX_HISTORY];
1333 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001334 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001335 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001336
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001337 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001338
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001339 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001340 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001341 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001342 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001343 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001344 free(st_parm->history[idx]);
1345 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001346 }
1347
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001348 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1349 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001350 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001351 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001352 while ((line = xmalloc_fgetline(fp)) != NULL) {
1353 if (line[0] == '\0') {
1354 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001355 continue;
1356 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001357 free(temp_h[idx]);
1358 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001359 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001360 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001361 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001362 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001363 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001364 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001365
1366 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001367 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001368 while (temp_h[idx] == NULL) {
1369 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001370 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001371 idx = 0;
1372 }
1373 }
1374
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001375 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001376 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001377 line = temp_h[idx];
1378 if (!line)
1379 break;
1380 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001381 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001382 idx = 0;
1383 line_len = strlen(line);
1384 if (line_len >= MAX_LINELEN)
1385 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001386 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001387 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001388 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001389 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1390 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001391 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001392}
1393
Denys Vlasenkobede2152011-09-04 16:12:33 +02001394# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1395void save_history(line_input_t *st)
1396{
1397 FILE *fp;
1398
Denys Vlasenkobede2152011-09-04 16:12:33 +02001399 if (!st->hist_file)
1400 return;
1401 if (st->cnt_history <= st->cnt_history_in_file)
1402 return;
1403
1404 fp = fopen(st->hist_file, "a");
1405 if (fp) {
1406 int i, fd;
1407 char *new_name;
1408 line_input_t *st_temp;
1409
1410 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1411 fprintf(fp, "%s\n", st->history[i]);
1412 fclose(fp);
1413
1414 /* we may have concurrently written entries from others.
1415 * load them */
1416 st_temp = new_line_input_t(st->flags);
1417 st_temp->hist_file = st->hist_file;
1418 st_temp->max_history = st->max_history;
1419 load_history(st_temp);
1420
1421 /* write out temp file and replace hist_file atomically */
1422 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1423 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1424 if (fd >= 0) {
1425 fp = xfdopen_for_write(fd);
1426 for (i = 0; i < st_temp->cnt_history; i++)
1427 fprintf(fp, "%s\n", st_temp->history[i]);
1428 fclose(fp);
1429 if (rename(new_name, st->hist_file) == 0)
1430 st->cnt_history_in_file = st_temp->cnt_history;
1431 }
1432 free(new_name);
1433 free_line_input_t(st_temp);
1434 }
1435}
1436# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001437static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001438{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001439 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001440 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001441
Denys Vlasenkobede2152011-09-04 16:12:33 +02001442 if (!state->hist_file)
1443 return;
1444
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001445 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001446 if (fd < 0)
1447 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001448 xlseek(fd, 0, SEEK_END); /* paranoia */
1449 len = strlen(str);
1450 str[len] = '\n'; /* we (try to) do atomic write */
1451 len2 = full_write(fd, str, len + 1);
1452 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001453 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001454 if (len2 != len + 1)
1455 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001456
1457 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001458 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001459 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001460 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001461 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001462
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001463 /* we may have concurrently written entries from others.
1464 * load them */
1465 st_temp = new_line_input_t(state->flags);
1466 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001467 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001468 load_history(st_temp);
1469
1470 /* write out temp file and replace hist_file atomically */
1471 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001472 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001473 if (fd >= 0) {
1474 FILE *fp;
1475 int i;
1476
1477 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001478 for (i = 0; i < st_temp->cnt_history; i++)
1479 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001480 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001481 if (rename(new_name, state->hist_file) == 0)
1482 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001483 }
1484 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001485 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001486 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001487}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001488# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001489# else
1490# define load_history(a) ((void)0)
1491# define save_history(a) ((void)0)
1492# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001493
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001494static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001495{
1496 int i;
1497
1498 if (!(state->flags & DO_HISTORY))
1499 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001500 if (str[0] == '\0')
1501 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001502 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001503 /* Don't save dupes */
1504 if (i && strcmp(state->history[i-1], str) == 0)
1505 return;
1506
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001507 free(state->history[state->max_history]); /* redundant, paranoia */
1508 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001509
1510 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001511 /* we need to keep history[state->max_history] empty, hence >=, not > */
1512 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001513 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001514 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001515 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001516 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001517# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1518 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001519 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001520# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001521 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001522 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001523 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001524 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001525 state->cur_history = i;
1526 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001527# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1528 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001529# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001530}
1531
1532#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001533# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001534#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001535
1536
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001537#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001538/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001539 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001540 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001541static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001542vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001543{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001544 CHAR_T *command = command_ps;
1545
1546 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001547 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001548 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001549 input_forward();
1550}
1551
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001552static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001553vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001554{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001555 CHAR_T *command = command_ps;
1556
1557 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001558 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001559 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1560 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001561 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001562 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001563 } else if (BB_ispunct(command[cursor])) {
1564 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001565 input_forward();
1566 }
1567
Denis Vlasenko253ce002007-01-22 08:34:44 +00001568 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001569 input_forward();
1570
Denys Vlasenko13028922009-07-12 00:51:15 +02001571 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001572 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001573 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001574 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001575}
1576
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001577static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001578vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001579{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001580 CHAR_T *command = command_ps;
1581
Paul Fox3f11b1b2005-08-04 19:04:46 +00001582 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001583 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001584 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001585 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001586 input_forward();
1587}
1588
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001589static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001590vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001591{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001592 CHAR_T *command = command_ps;
1593
Denis Vlasenko253ce002007-01-22 08:34:44 +00001594 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001595 return;
1596 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001597 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001598 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001599 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001600 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001601 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001602 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001603 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001604 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001605 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001606 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001607 } else if (BB_ispunct(command[cursor])) {
1608 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001609 input_forward();
1610 }
1611}
1612
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001613static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001614vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001615{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001616 CHAR_T *command = command_ps;
1617
1618 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001619 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001620 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001621 input_backward(1);
1622}
1623
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001624static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001625vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001626{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001627 CHAR_T *command = command_ps;
1628
Paul Fox3f11b1b2005-08-04 19:04:46 +00001629 if (cursor <= 0)
1630 return;
1631 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001632 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001633 input_backward(1);
1634 if (cursor <= 0)
1635 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001636 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001637 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001638 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001639 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001640 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001641 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001642 } else if (BB_ispunct(command[cursor])) {
1643 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001644 input_backward(1);
1645 }
1646}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001647#endif
1648
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001649/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1650static void ctrl_left(void)
1651{
1652 CHAR_T *command = command_ps;
1653
1654 while (1) {
1655 CHAR_T c;
1656
1657 input_backward(1);
1658 if (cursor == 0)
1659 break;
1660 c = command[cursor];
1661 if (c != ' ' && !BB_ispunct(c)) {
1662 /* we reached a "word" delimited by spaces/punct.
1663 * go to its beginning */
1664 while (1) {
1665 c = command[cursor - 1];
1666 if (c == ' ' || BB_ispunct(c))
1667 break;
1668 input_backward(1);
1669 if (cursor == 0)
1670 break;
1671 }
1672 break;
1673 }
1674 }
1675}
1676static void ctrl_right(void)
1677{
1678 CHAR_T *command = command_ps;
1679
1680 while (1) {
1681 CHAR_T c;
1682
1683 c = command[cursor];
1684 if (c == BB_NUL)
1685 break;
1686 if (c != ' ' && !BB_ispunct(c)) {
1687 /* we reached a "word" delimited by spaces/punct.
1688 * go to its end + 1 */
1689 while (1) {
1690 input_forward();
1691 c = command[cursor];
1692 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1693 break;
1694 }
1695 break;
1696 }
1697 input_forward();
1698 }
1699}
1700
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001701
1702/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001703 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001704 */
1705
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001706#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1707static void ask_terminal(void)
1708{
1709 /* Ask terminal where is the cursor now.
1710 * lineedit_read_key handles response and corrects
1711 * our idea of current cursor position.
1712 * Testcase: run "echo -n long_line_long_line_long_line",
1713 * then type in a long, wrapping command and try to
1714 * delete it using backspace key.
1715 * Note: we print it _after_ prompt, because
1716 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1717 */
1718 /* Problem: if there is buffered input on stdin,
1719 * the response will be delivered later,
1720 * possibly to an unsuspecting application.
1721 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1722 * Result:
1723 * ~/srcdevel/bbox/fix/busybox.t4 #
1724 * ~/srcdevel/bbox/fix/busybox.t4 #
1725 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1726 * ~/srcdevel/bbox/fix/busybox.t4 #
1727 *
1728 * Checking for input with poll only makes the race narrower,
1729 * I still can trigger it. Strace:
1730 *
1731 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1732 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1733 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001734 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001735 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1736 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001737 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001738
Denys Vlasenko451add42010-07-25 00:06:41 +02001739 pfd.fd = STDIN_FILENO;
1740 pfd.events = POLLIN;
1741 if (safe_poll(&pfd, 1, 0) == 0) {
1742 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001743 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001744 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001745 }
1746}
1747#else
1748#define ask_terminal() ((void)0)
1749#endif
1750
Denis Vlasenko38f63192007-01-22 09:03:07 +00001751#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001752static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001753{
1754 cmdedit_prompt = prmt_ptr;
1755 cmdedit_prmt_len = strlen(prmt_ptr);
1756 put_prompt();
1757}
1758#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001759static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001760{
1761 int prmt_len = 0;
1762 size_t cur_prmt_len = 0;
1763 char flg_not_length = '[';
1764 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001765# if ENABLE_USERNAME_OR_HOMEDIR
1766 char *cwd_buf = NULL;
1767# endif
1768 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001769 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001770 char c;
1771 char *pbuf;
1772
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001773 cmdedit_prmt_len = 0;
1774
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001775 cbuf[1] = '\0'; /* never changes */
1776
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001777 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001778 char *free_me = NULL;
1779
1780 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001781 c = *prmt_ptr++;
1782 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001783 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001784 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001785/*
1786 * Supported via bb_process_escape_sequence:
1787 * \a ASCII bell character (07)
1788 * \e ASCII escape character (033)
1789 * \n newline
1790 * \r carriage return
1791 * \\ backslash
1792 * \nnn char with octal code nnn
1793 * Supported:
1794 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001795 * \w current working directory, with $HOME abbreviated with a tilde
1796 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001797 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001798 * \h hostname up to the first '.'
1799 * \H hostname
1800 * \u username
1801 * \[ begin a sequence of non-printing characters
1802 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001803 * \T current time in 12-hour HH:MM:SS format
1804 * \@ current time in 12-hour am/pm format
1805 * \A current time in 24-hour HH:MM format
1806 * \t current time in 24-hour HH:MM:SS format
1807 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001808 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001809 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001810 * \# command number of this command
1811 * \j number of jobs currently managed by the shell
1812 * \l basename of the shell's terminal device name
1813 * \s name of the shell, the basename of $0 (the portion following the final slash)
1814 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001815 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1816 * \D{format}
1817 * format is passed to strftime(3).
1818 * An empty format results in a locale-specific time representation.
1819 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001820 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001821 * \v version of bash (e.g., 2.00)
1822 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01001823 cp = prmt_ptr;
1824 c = *cp;
1825 if (c != 't') /* don't treat \t as tab */
1826 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001827 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001828 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001829 break;
1830 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001831
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001832 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001833# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001834 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001835 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001836 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001837# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001838 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001839 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001840 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001841 if (c == 'h')
1842 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001843 break;
1844 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001845 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001846 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001847 case 'T': /* 12-hour HH:MM:SS format */
1848 case '@': /* 12-hour am/pm format */
1849 case 'A': /* 24-hour HH:MM format */
1850 case 't': /* 24-hour HH:MM:SS format */
1851 /* We show all of them as 24-hour HH:MM */
1852 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
1853 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001854 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001855# if ENABLE_USERNAME_OR_HOMEDIR
1856 case 'w': /* current dir */
1857 case 'W': /* basename of cur dir */
1858 if (!cwd_buf) {
1859 cwd_buf = xrealloc_getcwd_or_warn(NULL);
1860 if (!cwd_buf)
1861 cwd_buf = (char *)bb_msg_unknown;
1862 else {
1863 /* /home/user[/something] -> ~[/something] */
1864 l = strlen(home_pwd_buf);
1865 if (l != 0
1866 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1867 && (cwd_buf[l] == '/' || cwd_buf[l] == '\0')
1868 ) {
1869 cwd_buf[0] = '~';
1870 overlapping_strcpy(cwd_buf + 1, cwd_buf + l);
1871 }
1872 }
1873 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001874 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001875 if (c == 'w')
1876 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001877 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01001878 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01001879 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001880 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001881# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001882// bb_process_escape_sequence does this now:
1883// case 'e': case 'E': /* \e \E = \033 */
1884// c = '\033';
1885// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001886 case 'x': case 'X': {
1887 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001888 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001889 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001890 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001891 buf2[l] = '\0';
1892 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001893 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001894 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001895 break;
1896 }
1897 prmt_ptr++;
1898 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001899 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001900 if (c == 0)
1901 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001902 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001903 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001904 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001905 case '[': case ']':
1906 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001907 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001908 continue;
1909 }
1910 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001911 } /* switch */
1912 } /* if */
1913 } /* if */
1914 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001915 cur_prmt_len = strlen(pbuf);
1916 prmt_len += cur_prmt_len;
1917 if (flg_not_length != ']')
1918 cmdedit_prmt_len += cur_prmt_len;
1919 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001920 free(free_me);
1921 } /* while */
1922
Denys Vlasenko1d145692013-03-29 13:09:05 +01001923# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001924 if (cwd_buf != (char *)bb_msg_unknown)
1925 free(cwd_buf);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001926# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001927 cmdedit_prompt = prmt_mem_ptr;
1928 put_prompt();
1929}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001930#endif
1931
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001932static void cmdedit_setwidth(unsigned w, int redraw_flg)
1933{
1934 cmdedit_termw = w;
1935 if (redraw_flg) {
1936 /* new y for current cursor */
1937 int new_y = (cursor + cmdedit_prmt_len) / w;
1938 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001939 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001940 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001941 }
1942}
1943
1944static void win_changed(int nsig)
1945{
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001946 int sv_errno = errno;
Denis Vlasenko55995022008-05-18 22:28:26 +00001947 unsigned width;
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001948
Denys Vlasenko451add42010-07-25 00:06:41 +02001949 get_terminal_width_height(0, &width, NULL);
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001950//FIXME: cmdedit_setwidth() -> redraw() -> printf() -> KABOOM! (we are in signal handler!)
1951 cmdedit_setwidth(width, /*redraw_flg:*/ nsig);
1952
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001953 errno = sv_errno;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001954}
1955
Denys Vlasenko66c5b122011-02-08 05:07:02 +01001956static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001957{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001958 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001959#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001960 char unicode_buf[MB_CUR_MAX + 1];
1961 int unicode_idx = 0;
1962#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001963
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001964 while (1) {
1965 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1966 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1967 * insist on full MB_CUR_MAX buffer to declare input like
1968 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1969 *
1970 * Note: read_key sets errno to 0 on success.
1971 */
1972 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1973 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001974#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001975 if (errno == EAGAIN && unicode_idx != 0)
1976 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001977#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001978 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001979 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001980
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001981#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1982 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001983 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001984 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001985 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001986 if (cursor == 0) { /* otherwise it may be bogus */
1987 int col = ((ic >> 32) & 0x7fff) - 1;
1988 if (col > cmdedit_prmt_len) {
1989 cmdedit_x += (col - cmdedit_prmt_len);
1990 while (cmdedit_x >= cmdedit_termw) {
1991 cmdedit_x -= cmdedit_termw;
1992 cmdedit_y++;
1993 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001994 }
1995 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001996 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001997 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001998#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001999
Denys Vlasenko19158a82010-03-26 14:06:56 +01002000#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002001 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002002 wchar_t wc;
2003
2004 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002005 break;
2006 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002007
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002008 unicode_buf[unicode_idx++] = ic;
2009 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002010 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2011 /* Not (yet?) a valid unicode char */
2012 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002013 timeout = 50;
2014 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002015 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002016 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002017 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002018 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002019# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002020 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002021# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002022 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002023# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002024 } else {
2025 /* Valid unicode char, return its code */
2026 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002027 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002028 }
2029#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002030 break;
2031 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002032
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002033 return ic;
2034}
2035
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002036#if ENABLE_UNICODE_BIDI_SUPPORT
2037static int isrtl_str(void)
2038{
2039 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002040
2041 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002042 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002043 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002044}
2045#else
2046# define isrtl_str() 0
2047#endif
2048
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002049/* leave out the "vi-mode"-only case labels if vi editing isn't
2050 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002051#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002052
2053/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002054#undef CTRL
2055#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002056
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002057enum {
2058 VI_CMDMODE_BIT = 0x40000000,
2059 /* 0x80000000 bit flags KEYCODE_xxx */
2060};
2061
2062#if ENABLE_FEATURE_REVERSE_SEARCH
2063/* Mimic readline Ctrl-R reverse history search.
2064 * When invoked, it shows the following prompt:
2065 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2066 * and typing results in search being performed:
2067 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2068 * Search is performed by looking at progressively older lines in history.
2069 * Ctrl-R again searches for the next match in history.
2070 * Backspace deletes last matched char.
2071 * Control keys exit search and return to normal editing (at current history line).
2072 */
2073static int32_t reverse_i_search(void)
2074{
2075 char match_buf[128]; /* for user input */
2076 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2077 const char *matched_history_line;
2078 const char *saved_prompt;
2079 int32_t ic;
2080
2081 matched_history_line = NULL;
2082 read_key_buffer[0] = 0;
2083 match_buf[0] = '\0';
2084
2085 /* Save and replace the prompt */
2086 saved_prompt = cmdedit_prompt;
2087 goto set_prompt;
2088
2089 while (1) {
2090 int h;
2091 unsigned match_buf_len = strlen(match_buf);
2092
2093 fflush_all();
2094//FIXME: correct timeout?
2095 ic = lineedit_read_key(read_key_buffer, -1);
2096
2097 switch (ic) {
2098 case CTRL('R'): /* searching for the next match */
2099 break;
2100
2101 case '\b':
2102 case '\x7f':
2103 /* Backspace */
2104 if (unicode_status == UNICODE_ON) {
2105 while (match_buf_len != 0) {
2106 uint8_t c = match_buf[--match_buf_len];
2107 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2108 break; /* yes */
2109 }
2110 } else {
2111 if (match_buf_len != 0)
2112 match_buf_len--;
2113 }
2114 match_buf[match_buf_len] = '\0';
2115 break;
2116
2117 default:
2118 if (ic < ' '
2119 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2120 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2121 ) {
2122 goto ret;
2123 }
2124
2125 /* Append this char */
2126#if ENABLE_UNICODE_SUPPORT
2127 if (unicode_status == UNICODE_ON) {
2128 mbstate_t mbstate = { 0 };
2129 char buf[MB_CUR_MAX + 1];
2130 int len = wcrtomb(buf, ic, &mbstate);
2131 if (len > 0) {
2132 buf[len] = '\0';
2133 if (match_buf_len + len < sizeof(match_buf))
2134 strcpy(match_buf + match_buf_len, buf);
2135 }
2136 } else
2137#endif
2138 if (match_buf_len < sizeof(match_buf) - 1) {
2139 match_buf[match_buf_len] = ic;
2140 match_buf[match_buf_len + 1] = '\0';
2141 }
2142 break;
2143 } /* switch (ic) */
2144
2145 /* Search in history for match_buf */
2146 h = state->cur_history;
2147 if (ic == CTRL('R'))
2148 h--;
2149 while (h >= 0) {
2150 if (state->history[h]) {
2151 char *match = strstr(state->history[h], match_buf);
2152 if (match) {
2153 state->cur_history = h;
2154 matched_history_line = state->history[h];
2155 command_len = load_string(matched_history_line);
2156 cursor = match - matched_history_line;
2157//FIXME: cursor position for Unicode case
2158
2159 free((char*)cmdedit_prompt);
2160 set_prompt:
2161 cmdedit_prompt = xasprintf("(reverse-i-search)'%s': ", match_buf);
2162 cmdedit_prmt_len = strlen(cmdedit_prompt);
2163 goto do_redraw;
2164 }
2165 }
2166 h--;
2167 }
2168
2169 /* Not found */
2170 match_buf[match_buf_len] = '\0';
2171 beep();
2172 continue;
2173
2174 do_redraw:
2175 redraw(cmdedit_y, command_len - cursor);
2176 } /* while (1) */
2177
2178 ret:
2179 if (matched_history_line)
2180 command_len = load_string(matched_history_line);
2181
2182 free((char*)cmdedit_prompt);
2183 cmdedit_prompt = saved_prompt;
2184 cmdedit_prmt_len = strlen(cmdedit_prompt);
2185 redraw(cmdedit_y, command_len - cursor);
2186
2187 return ic;
2188}
2189#endif
2190
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002191/* maxsize must be >= 2.
2192 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002193 * -1 on read errors or EOF, or on bare Ctrl-D,
2194 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002195 * >0 length of input string, including terminating '\n'
2196 */
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002197int 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 +00002198{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002199 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002200#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002201 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002202#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002203 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002204#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002205 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002206#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002207 struct termios initial_settings;
2208 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002209 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002210
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002211 INIT_S();
2212
2213 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
2214 || !(initial_settings.c_lflag & ECHO)
2215 ) {
2216 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002217 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002218 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002219 if (fgets(command, maxsize, stdin) == NULL)
2220 len = -1; /* EOF or error */
2221 else
2222 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002223 DEINIT_S();
2224 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002225 }
2226
Denys Vlasenko28055022010-01-04 20:49:58 +01002227 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002228
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002229// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002230 if (maxsize > MAX_LINELEN)
2231 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002232 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002233
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002234 /* With zero flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00002235 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002236#if MAX_HISTORY > 0
2237# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02002238 if (state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00002239 if (state->cnt_history == 0)
2240 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002241# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002242 if (state->flags & DO_HISTORY)
2243 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002244#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002245
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002246 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002247 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002248 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002249#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002250 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2251#else
Mark Whitley4e338752001-01-26 20:42:23 +00002252 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002253 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002254#endif
2255#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002256
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002257 new_settings = initial_settings;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002258 /* ~ICANON: unbuffered input (most c_cc[] are disabled, VMIN/VTIME are enabled) */
2259 /* ~ECHO, ~ECHONL: turn off echoing, including newline echoing */
2260 /* ~ISIG: turn off INTR (ctrl-C), QUIT, SUSP */
2261 new_settings.c_lflag &= ~(ICANON | ECHO | ECHONL | ISIG);
2262 /* reads would block only if < 1 char is available */
Eric Andersen34506362001-08-02 05:02:46 +00002263 new_settings.c_cc[VMIN] = 1;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002264 /* no timeout (reads block forever) */
Eric Andersen34506362001-08-02 05:02:46 +00002265 new_settings.c_cc[VTIME] = 0;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002266 /* Should be not needed if ISIG is off: */
2267 /* Turn off CTRL-C */
2268 /* new_settings.c_cc[VINTR] = _POSIX_VDISABLE; */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002269 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002270
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002271#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002272 {
2273 struct passwd *entry;
2274
2275 entry = getpwuid(geteuid());
2276 if (entry) {
2277 user_buf = xstrdup(entry->pw_name);
2278 home_pwd_buf = xstrdup(entry->pw_dir);
2279 }
2280 }
2281#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002282
2283#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002284 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002285 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002286 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2287#endif
2288
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002289 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002290 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002291 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002292
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002293 /* Install window resize handler (NB: after *all* init is complete) */
2294//FIXME: save entire sigaction!
2295 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
2296 win_changed(0); /* get initial window size */
2297
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002298 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002299 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002300 /*
2301 * The emacs and vi modes share much of the code in the big
2302 * command loop. Commands entered when in vi's command mode
2303 * (aka "escape mode") get an extra bit added to distinguish
2304 * them - this keeps them from being self-inserted. This
2305 * clutters the big switch a bit, but keeps all the code
2306 * in one place.
2307 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002308 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002309
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002310 fflush_all();
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002311 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002312
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002313#if ENABLE_FEATURE_REVERSE_SEARCH
2314 again:
2315#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002316#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002317 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002318 if (vi_cmdmode) {
2319 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2320 * change ic if it contains one of them: */
2321 ic |= VI_CMDMODE_BIT;
2322 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002323#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002324
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002325 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002326 case '\n':
2327 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002328 vi_case('\n'|VI_CMDMODE_BIT:)
2329 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002330 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002331 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002332 break_out = 1;
2333 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002334 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002335 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002336 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002337 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002338 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002339 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002340 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002341 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002342 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002343 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002344 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002345 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002346 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002347 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002348 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002349 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002350 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002351 vi_case('l'|VI_CMDMODE_BIT:)
2352 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002353 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002354 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002355 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002356 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002357 if (!isrtl_str())
2358 input_backspace();
2359 else
2360 input_delete(0);
2361 break;
2362 case KEYCODE_DELETE:
2363 if (!isrtl_str())
2364 input_delete(0);
2365 else
2366 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002367 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002368#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002369 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002370 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002371 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002372#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002373 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002374 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002375 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002376 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002377 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002378 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002379 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002380 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002381 /* Control-l -- clear screen */
Marek Polacek7b181072010-10-28 21:34:56 +02002382 printf(ESC"[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002383 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002384 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002385#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002386 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002387 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2388 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002389 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002390 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002391 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002392 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002393 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002394 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2395 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002396 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002397 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002398 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002399 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002400#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002401 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002402 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002403 /* Control-U -- Clear line before cursor */
2404 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002405 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002406 memmove(command_ps, command_ps + cursor,
2407 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002408 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002409 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002410 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002411 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002412 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002413 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002414 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002415 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002416 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002417 input_backspace();
2418 break;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002419#if ENABLE_FEATURE_REVERSE_SEARCH
2420 case CTRL('R'):
2421 ic = ic_raw = reverse_i_search();
2422 goto again;
2423#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002424
Denis Vlasenko38f63192007-01-22 09:03:07 +00002425#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002426 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002427 vi_cmdmode = 0;
2428 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002429 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002430 input_backward(cursor);
2431 vi_cmdmode = 0;
2432 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002433 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002434 input_forward();
2435 vi_cmdmode = 0;
2436 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002437 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002438 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002439 vi_cmdmode = 0;
2440 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002441 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002442 input_delete(1);
2443 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002444 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002445 if (cursor > 0) {
2446 input_backward(1);
2447 input_delete(1);
2448 }
2449 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002450 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002451 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002452 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002453 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002454 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002455 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002456 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002457 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002458 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002459 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002460 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002461 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002462 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002463 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002464 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002465 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002466 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002467 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002468 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002469 vi_cmdmode = 0;
2470 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002471 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002472 goto clear_to_eol;
2473
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002474 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002475 vi_cmdmode = 0;
2476 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002477 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002478 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002479
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002480 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002481 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002482 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002483 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002484 input_backward(cursor);
2485 goto clear_to_eol;
2486 break;
2487 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002488
2489 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002490 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002491 case 'w':
2492 case 'W':
2493 case 'e':
2494 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002495 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002496 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002497 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002498 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002499 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002500 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002501 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002502 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002503 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002504 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002505 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002506 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002507 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002508 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002509 break;
2510 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002511 nc = cursor;
2512 input_backward(cursor - sc);
2513 while (nc-- > cursor)
2514 input_delete(1);
2515 break;
2516 case 'b': /* "db", "cb" */
2517 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002518 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002519 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002520 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002521 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002522 while (sc-- > cursor)
2523 input_delete(1);
2524 break;
2525 case ' ': /* "d ", "c " */
2526 input_delete(1);
2527 break;
2528 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002529 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002530 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002531 input_delete(1);
2532 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002533 }
2534 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002535 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002536 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002537 input_forward();
2538 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002539 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002540 put();
2541 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002542 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002543//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002544 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002545 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002546 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002547 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002548 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002549 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002550 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002551 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002552 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002553 }
2554 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002555 case '\x1b': /* ESC */
2556 if (state->flags & VI_MODE) {
2557 /* insert mode --> command mode */
2558 vi_cmdmode = 1;
2559 input_backward(1);
2560 }
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002561 /* Handle a few ESC-<key> combinations the same way
2562 * standard readline bindings (IOW: bash) do.
2563 * Often, Alt-<key> generates ESC-<key>.
2564 */
2565 ic = lineedit_read_key(read_key_buffer, timeout);
2566 switch (ic) {
2567 //case KEYCODE_LEFT: - bash doesn't do this
2568 case 'b':
Denys Vlasenko56443cd2012-04-20 15:07:22 +02002569 ctrl_left();
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002570 break;
2571 //case KEYCODE_RIGHT: - bash doesn't do this
2572 case 'f':
2573 ctrl_right();
2574 break;
2575 //case KEYCODE_DELETE: - bash doesn't do this
2576 case 'd': /* Alt-D */
2577 {
2578 /* Delete word forward */
2579 int nc, sc = cursor;
2580 ctrl_right();
Cliff Frey49195652012-08-07 17:59:40 +02002581 nc = cursor - sc;
2582 input_backward(nc);
2583 while (--nc >= 0)
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002584 input_delete(1);
2585 break;
2586 }
2587 case '\b': /* Alt-Backspace(?) */
2588 case '\x7f': /* Alt-Backspace(?) */
2589 //case 'w': - bash doesn't do this
2590 {
2591 /* Delete word backward */
2592 int sc = cursor;
2593 ctrl_left();
2594 while (sc-- > cursor)
2595 input_delete(1);
2596 break;
2597 }
2598 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002599 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002600#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002601
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002602#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002603 case KEYCODE_UP:
2604 if (get_previous_history())
2605 goto rewrite_line;
2606 beep();
2607 break;
2608 case KEYCODE_DOWN:
2609 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002610 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002611 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002612 /* Rewrite the line with the selected history item */
2613 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002614 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002615 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002616 /* redraw and go to eol (bol, in vi) */
2617 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2618 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002619#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002620 case KEYCODE_RIGHT:
2621 input_forward();
2622 break;
2623 case KEYCODE_LEFT:
2624 input_backward(1);
2625 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002626 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002627 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002628 ctrl_left();
2629 break;
2630 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002631 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002632 ctrl_right();
2633 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002634 case KEYCODE_HOME:
2635 input_backward(cursor);
2636 break;
2637 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002638 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002639 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002640
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002641 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002642 if (initial_settings.c_cc[VINTR] != 0
2643 && ic_raw == initial_settings.c_cc[VINTR]
2644 ) {
2645 /* Ctrl-C (usually) - stop gathering input */
2646 goto_new_line();
2647 command_len = 0;
2648 break_out = -1; /* "do not append '\n'" */
2649 break;
2650 }
2651 if (initial_settings.c_cc[VEOF] != 0
2652 && ic_raw == initial_settings.c_cc[VEOF]
2653 ) {
2654 /* Ctrl-D (usually) - delete one character,
2655 * or exit if len=0 and no chars to delete */
2656 if (command_len == 0) {
2657 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002658
2659 case -1: /* error (e.g. EIO when tty is destroyed) */
2660 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002661 break_out = command_len = -1;
2662 break;
2663 }
2664 input_delete(0);
2665 break;
2666 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002667// /* Control-V -- force insert of next char */
2668// if (c == CTRL('V')) {
2669// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002670// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002671// if (c == 0) {
2672// beep();
2673// break;
2674// }
2675// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002676 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002677 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2678 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002679 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002680 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002681 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002682 * Otherwise, we are here if ic is a
2683 * control char or an unhandled ESC sequence,
2684 * which is also ignored.
2685 */
2686 break;
2687 }
2688 if ((int)command_len >= (maxsize - 2)) {
2689 /* Not enough space for the char and EOL */
2690 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002691 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002692
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002693 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002694 if (cursor == (command_len - 1)) {
2695 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002696 command_ps[cursor] = ic;
2697 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002698 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002699 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002700 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002701 } else {
2702 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002703 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002704
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002705 memmove(command_ps + sc + 1, command_ps + sc,
2706 (command_len - sc) * sizeof(command_ps[0]));
2707 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002708 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2709 if (!isrtl_str())
2710 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002711 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002712 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002713 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002714 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002715 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002716 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002717
2718 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002719 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002720
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002721#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002722 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002723 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002724#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002725 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002726
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002727#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002728 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002729 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2730 * We sent "ESC [ 6 n", but got '\n' first, and
2731 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2732 * It's bad already and not much can be done with it
2733 * (it _will_ be visible for the next process to read stdin),
2734 * but without this delay it even shows up on the screen
2735 * as garbage because we restore echo settings with tcsetattr
2736 * before it comes in. UGLY!
2737 */
2738 usleep(20*1000);
2739 }
2740#endif
2741
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002742/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002743#undef command
2744
Denys Vlasenko19158a82010-03-26 14:06:56 +01002745#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002746 command[0] = '\0';
2747 if (command_len > 0)
2748 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002749 free(command_ps);
2750#endif
2751
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002752 if (command_len > 0)
2753 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002754
Eric Andersen27bb7902003-12-23 20:24:51 +00002755 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002756 command[command_len++] = '\n';
2757 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002758 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002759
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002760#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002761 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002762#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002763
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002764 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002765 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002766 /* restore SIGWINCH handler */
2767 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002768 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002769
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002770 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002771 DEINIT_S();
2772
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002773 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002774}
2775
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002776#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002777
2778#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002779int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002780{
2781 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002782 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002783 if (!fgets(command, maxsize, stdin))
2784 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002785 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002786}
2787
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002788#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002789
2790
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002791/*
2792 * Testing
2793 */
2794
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002795#ifdef TEST
2796
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002797#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002798
2799const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002800
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002801int main(int argc, char **argv)
2802{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002803 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002804 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002805#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002806 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2807 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2808 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002809#else
2810 "% ";
2811#endif
2812
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002813 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002814 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002815 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002816 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002817 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002818 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002819 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002820 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002821 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002822 return 0;
2823}
2824
Eric Andersenc470f442003-07-28 09:56:35 +00002825#endif /* TEST */