blob: 591bb6d5e1396a3699ec2d4c0e808e3c7606e269 [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;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000136#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000137 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000138#endif
139
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200140#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000141 char *user_buf;
142 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000143#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000144
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000145#if ENABLE_FEATURE_TAB_COMPLETION
146 char **matches;
147 unsigned num_matches;
148#endif
149
150#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200151# define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200152 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000153 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200154 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000155#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100156#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100157 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100158#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000159};
160
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000161/* See lineedit_ptr_hack.c */
162extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000163
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000164#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000165#define state (S.state )
166#define cmdedit_termw (S.cmdedit_termw )
167#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
168#define cmdedit_x (S.cmdedit_x )
169#define cmdedit_y (S.cmdedit_y )
170#define cmdedit_prmt_len (S.cmdedit_prmt_len)
171#define cursor (S.cursor )
172#define command_len (S.command_len )
173#define command_ps (S.command_ps )
174#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000175#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000176#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000177#define home_pwd_buf (S.home_pwd_buf )
178#define matches (S.matches )
179#define num_matches (S.num_matches )
180#define delptr (S.delptr )
181#define newdelflag (S.newdelflag )
182#define delbuf (S.delbuf )
183
184#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000185 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000186 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000187 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000188 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200189 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Shawn J. Goff46031da2013-02-27 18:30:05 +0100190 IF_FEATURE_EDITING_VI(delptr = delbuf;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000191} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200192
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000193static void deinit_S(void)
194{
195#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000196 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200197 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000198 free((char*)cmdedit_prompt);
199#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200200#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000201 free(user_buf);
202 if (home_pwd_buf != null_str)
203 free(home_pwd_buf);
204#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000205 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000206}
207#define DEINIT_S() deinit_S()
208
Denis Vlasenko2c844952008-04-25 18:44:35 +0000209
Denys Vlasenko19158a82010-03-26 14:06:56 +0100210#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200211static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200212{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100213 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200214 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100215 if (len < 0)
216 len = 0;
217 command_ps[len] = BB_NUL;
218 return len;
219 } else {
220 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200221 while (src[i] && i < S.maxsize - 1) {
222 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100223 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200224 }
225 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100226 return i;
227 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200228}
Tomas Heinricha659b812010-04-29 13:43:39 +0200229static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200230{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100231 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200232# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100233 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
234 if (len < 0)
235 len = 0;
236 dst[len] = '\0';
237 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200238# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100239 unsigned dstpos = 0;
240 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200241
Denys Vlasenko353680a2011-03-27 01:18:07 +0100242 maxsize--;
243 while (dstpos < maxsize) {
244 wchar_t wc;
245 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200246
Denys Vlasenko353680a2011-03-27 01:18:07 +0100247 /* Convert up to 1st invalid byte (or up to end) */
248 while ((wc = command_ps[srcpos]) != BB_NUL
249 && !unicode_is_raw_byte(wc)
250 ) {
251 srcpos++;
252 }
253 command_ps[srcpos] = BB_NUL;
254 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
255 if (n < 0) /* should not happen */
256 break;
257 dstpos += n;
258 if (wc == BB_NUL) /* usually is */
259 break;
260
261 /* We do have invalid byte here! */
262 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200263 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100264 if (dstpos == maxsize)
265 break;
266 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200267 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100268 dst[dstpos] = '\0';
269 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200270# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100271 } else {
272 unsigned i = 0;
273 while ((dst[i] = command_ps[i]) != 0)
274 i++;
275 return i;
276 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200277}
278/* I thought just fputwc(c, stdout) would work. But no... */
279static void BB_PUTCHAR(wchar_t c)
280{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100281 if (unicode_status == UNICODE_ON) {
282 char buf[MB_CUR_MAX + 1];
283 mbstate_t mbst = { 0 };
284 ssize_t len = wcrtomb(buf, c, &mbst);
285 if (len > 0) {
286 buf[len] = '\0';
287 fputs(buf, stdout);
288 }
289 } else {
290 /* In this case, c is always one byte */
291 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200292 }
293}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200294# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
295static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
296# else
297static wchar_t adjust_width_and_validate_wc(wchar_t wc)
298# define adjust_width_and_validate_wc(width_adj, wc) \
299 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
300# endif
301{
302 int w = 1;
303
304 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200305 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
306 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200307 goto subst;
308 }
309 w = wcwidth(wc);
310 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
311 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
312 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
313 ) {
314 subst:
315 w = 1;
316 wc = CONFIG_SUBST_WCHAR;
317 }
318 }
319
320# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
321 *width_adj += w;
322#endif
323 return wc;
324}
325#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200326static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200327{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200328 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200329 return strlen(command_ps);
330}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200331# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200332static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200333{
334 safe_strncpy(dst, command_ps, maxsize);
335}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200336# endif
337# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200338/* Should never be called: */
339int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200340#endif
341
342
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000343/* Put 'command_ps[cursor]', cursor++.
344 * Advance cursor on screen. If we reached right margin, scroll text up
345 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000346#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200347static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000348{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200349 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200350 unsigned width = 0;
351 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000352
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200353 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000354 /* erase character after end of input string */
355 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200356 } else {
357 /* advance cursor only if we aren't at the end yet */
358 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200359 if (unicode_status == UNICODE_ON) {
360 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
361 c = adjust_width_and_validate_wc(&cmdedit_x, c);
362 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
363 } else {
364 cmdedit_x++;
365 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000366 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200367
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200368 ofs_to_right = cmdedit_x - cmdedit_termw;
369 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
370 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200371 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000372 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200373
374 if (ofs_to_right >= 0) {
375 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000376#if HACK_FOR_WRONG_WIDTH
377 /* This works better if our idea of term width is wrong
378 * and it is actually wider (often happens on serial lines).
379 * Printing CR,LF *forces* cursor to next line.
380 * OTOH if terminal width is correct AND terminal does NOT
381 * have automargin (IOW: it is moving cursor to next line
382 * by itself (which is wrong for VT-10x terminals)),
383 * this will break things: there will be one extra empty line */
384 puts("\r"); /* + implicit '\n' */
385#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200386 /* VT-10x terminals don't wrap cursor to next line when last char
387 * on the line is printed - cursor stays "over" this char.
388 * Need to print _next_ char too (first one to appear on next line)
389 * to make cursor move down to next line.
390 */
391 /* Works ok only if cmdedit_termw is correct. */
392 c = command_ps[cursor];
393 if (c == BB_NUL)
394 c = ' ';
395 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000396 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000397#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200398 cmdedit_y++;
399 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
400 width = 0;
401 } else { /* ofs_to_right > 0 */
402 /* wide char c didn't fit on prev line */
403 BB_PUTCHAR(c);
404 }
405 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000406 }
Erik Andersen13456d12000-03-16 08:09:57 +0000407}
408
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000409/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200410static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000411{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000412 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200413 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000414}
415
416/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000417static void goto_new_line(void)
418{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200419 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200420 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000421 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000422}
423
Rob Landley88621d72006-08-29 19:41:06 +0000424static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000425{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000426 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000427}
428
Denys Vlasenko248c3242010-05-17 00:45:44 +0200429static void put_prompt(void)
430{
431 unsigned w;
432
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200433 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200434 fflush_all();
435 cursor = 0;
436 w = cmdedit_termw; /* read volatile var once */
437 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
438 cmdedit_x = cmdedit_prmt_len % w;
439}
440
Eric Andersenaff114c2004-04-14 17:51:38 +0000441/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000442/* (optimized for slow terminals) */
443static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000444{
445 if (num > cursor)
446 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200447 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000448 return;
449 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000450
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200451 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
452 && unicode_status == UNICODE_ON
453 ) {
454 /* correct NUM to be equal to _screen_ width */
455 int n = num;
456 num = 0;
457 while (--n >= 0)
458 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
459 if (num == 0)
460 return;
461 }
462
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000463 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000464 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000465 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000466 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000467 * Also gets miscompiled for ARM users
468 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000469 * printf(("\b\b\b\b" + 4) - num);
470 * return;
471 */
472 do {
473 bb_putchar('\b');
474 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000475 return;
476 }
Marek Polacek7b181072010-10-28 21:34:56 +0200477 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000478 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000479 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000480
481 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200482 if (ENABLE_UNICODE_WIDE_WCHARS) {
483 /* With wide chars, it is hard to "backtrack"
484 * and reliably figure out where to put cursor.
485 * Example (<> is a wide char; # is an ordinary char, _ cursor):
486 * |prompt: <><> |
487 * |<><><><><><> |
488 * |_ |
489 * and user presses left arrow. num = 1, cmdedit_x = 0,
490 * We need to go up one line, and then - how do we know that
491 * we need to go *10* positions to the right? Because
492 * |prompt: <>#<>|
493 * |<><><>#<><><>|
494 * |_ |
495 * in this situation we need to go *11* positions to the right.
496 *
497 * A simpler thing to do is to redraw everything from the start
498 * up to new cursor position (which is already known):
499 */
500 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200501 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200502 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200503 cmdedit_y = 0;
504 sv_cursor = cursor;
505 put_prompt(); /* sets cursor to 0 */
506 while (cursor < sv_cursor)
507 put_cur_glyph_and_inc_cursor();
508 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200509 int lines_up;
510 unsigned width;
511 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200512 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200513 width = cmdedit_termw; /* read volatile var once */
514 /* num=1...w: one line up, w+1...2w: two, etc: */
515 lines_up = 1 + (num - 1) / width;
516 cmdedit_x = (width * cmdedit_y - num) % width;
517 cmdedit_y -= lines_up;
518 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200519 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200520 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200521 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
522 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200523 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200524 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000525 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000526}
527
Eric Andersenaff114c2004-04-14 17:51:38 +0000528/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000529static void redraw(int y, int back_cursor)
530{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200531 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200532 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000533 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000534 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200535 put_till_end_and_adv_cursor();
536 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000537 input_backward(back_cursor);
538}
539
Paul Fox3f11b1b2005-08-04 19:04:46 +0000540/* Delete the char in front of the cursor, optionally saving it
541 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000542#if !ENABLE_FEATURE_EDITING_VI
543static void input_delete(void)
544#define input_delete(save) input_delete()
545#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000546static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000547#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000548{
Mark Whitley4e338752001-01-26 20:42:23 +0000549 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000550
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000551 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000552 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000553
Denis Vlasenko38f63192007-01-22 09:03:07 +0000554#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000555 if (save) {
556 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000557 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000558 newdelflag = 0;
559 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000560 if ((delptr - delbuf) < DELBUFSIZ)
561 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000562 }
563#endif
564
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200565 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200566 /* (command_len + 1 [because of NUL]) - (j + 1)
567 * simplified into (command_len - j) */
568 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000569 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200570 put_till_end_and_adv_cursor();
571 /* Last char is still visible, erase it (and more) */
572 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000573 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000574}
575
Denis Vlasenko38f63192007-01-22 09:03:07 +0000576#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000577static void put(void)
578{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000579 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000580 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000581
Paul Fox3f11b1b2005-08-04 19:04:46 +0000582 if (j == 0)
583 return;
584 ocursor = cursor;
585 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200586 memmove(command_ps + cursor + j, command_ps + cursor,
587 (command_len - cursor + 1) * sizeof(command_ps[0]));
588 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000589 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200590 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000591 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000592}
593#endif
594
Mark Whitley4e338752001-01-26 20:42:23 +0000595/* Delete the char in back of the cursor */
596static void input_backspace(void)
597{
598 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000599 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000600 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000601 }
602}
603
Eric Andersenaff114c2004-04-14 17:51:38 +0000604/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000605static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000606{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000607 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200608 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000609}
610
Denis Vlasenko38f63192007-01-22 09:03:07 +0000611#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000612
Mike Shalf3763032010-11-22 03:49:18 +0100613//FIXME:
614//needs to be more clever: currently it thinks that "foo\ b<TAB>
615//matches the file named "foo bar", which is untrue.
616//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
617//not "foo bar <cursor>...
618
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000619static void free_tab_completion_data(void)
620{
621 if (matches) {
622 while (num_matches)
623 free(matches[--num_matches]);
624 free(matches);
625 matches = NULL;
626 }
627}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000628
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000629static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000630{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000631 matches = xrealloc_vector(matches, 4, num_matches);
632 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000633 num_matches++;
634}
635
Mike Shalf3763032010-11-22 03:49:18 +0100636# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200637/* Replace "~user/..." with "/homedir/...".
638 * The parameter is malloced, free it or return it
639 * unchanged if no user is matched.
640 */
641static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000642{
643 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200644 char *tilde_name = ud;
645 char *home = NULL;
646
647 ud++; /* skip ~ */
648 if (*ud == '/') { /* "~/..." */
649 home = home_pwd_buf;
650 } else {
651 /* "~user/..." */
652 ud = strchr(ud, '/');
653 *ud = '\0'; /* "~user" */
654 entry = getpwnam(tilde_name + 1);
655 *ud = '/'; /* restore "~user/..." */
656 if (entry)
657 home = entry->pw_dir;
658 }
659 if (home) {
660 ud = concat_path_file(home, ud);
661 free(tilde_name);
662 tilde_name = ud;
663 }
664 return tilde_name;
665}
666
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200667/* ~use<tab> - find all users with this prefix.
668 * Return the length of the prefix used for matching.
669 */
670static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200671{
672 /* Using _r function to avoid pulling in static buffers */
673 char line_buff[256];
674 struct passwd pwd;
675 struct passwd *result;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200676 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000677
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200678 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000679 userlen = strlen(ud);
680
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200681 setpwent();
682 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
683 /* Null usernames should result in all users as possible completions. */
684 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
685 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000686 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000687 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200688 endpwent();
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200689
690 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000691}
Mike Shalf3763032010-11-22 03:49:18 +0100692# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000693
694enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000695 FIND_EXE_ONLY = 0,
696 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000697 FIND_FILE_ONLY = 2,
698};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000699
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200700static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000701{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000702 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000703 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000704 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000705 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000706
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000707 if (state->flags & WITH_PATH_LOOKUP)
708 pth = state->path_lookup;
709 else
710 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200711
712 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000713 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
714 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000715
Denis Vlasenko253ce002007-01-22 08:34:44 +0000716 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000717 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000718 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000719 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000720 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000721 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200722 tmp++;
723 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000724 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000725 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000726 }
727
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200728 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000729 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000730 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000731 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000732 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000733 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000734 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000735 *tmp++ = '\0'; /* ':' -> '\0' */
736 if (*tmp == '\0')
737 break; /* :<empty> */
738 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000739 }
Mark Whitley4e338752001-01-26 20:42:23 +0000740 return npth;
741}
742
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200743/* Complete command, directory or file name.
744 * Return the length of the prefix used for matching.
745 */
746static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000747{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000748 char *path1[1];
749 char **paths = path1;
750 int npaths;
751 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200752 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200753 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200754 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000755
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000756 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000757 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000758
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200759 pfind = strrchr(command, '/');
760 if (!pfind) {
761 if (type == FIND_EXE_ONLY)
762 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000763 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000764 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000765 /* point to 'l' in "..../last_component" */
766 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200767 /* dirbuf = ".../.../.../" */
768 dirbuf = xstrndup(command, pfind - command);
Mike Shalf3763032010-11-22 03:49:18 +0100769# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200770 if (dirbuf[0] == '~') /* ~/... or ~user/... */
771 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100772# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200773 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000774 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200775 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000776
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000777 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200778 DIR *dir;
779 struct dirent *next;
780 struct stat st;
781 char *found;
782
Mark Whitley4e338752001-01-26 20:42:23 +0000783 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000784 if (!dir)
785 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000786
787 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200788 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200789 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000790
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200791 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
792 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000793 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200794 /* match? */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200795 if (strncmp(name_found, pfind, pf_len) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200796 continue; /* no */
797
798 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000799 /* NB: stat() first so that we see is it a directory;
800 * but if that fails, use lstat() so that
801 * we still match dangling links */
802 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200803 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000804
Denys Vlasenko39263632010-09-03 14:11:08 +0200805 /* Save only name */
806 len = strlen(name_found);
807 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
808 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000809
Mark Whitley4e338752001-01-26 20:42:23 +0000810 if (S_ISDIR(st.st_mode)) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200811 /* name is a directory, add slash */
812 found[len] = '/';
813 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000814 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200815 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000816 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000817 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000818 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200819 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000820 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000821 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000822 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000823 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000824 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000825 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200826 } /* for every path */
827
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000828 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000829 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000830 free(paths);
831 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200832 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200833
834 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000835}
Erik Andersenf0657d32000-04-12 17:49:52 +0000836
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200837/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200838 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200839 * was pressed. This function looks at it, figures out what part of it
840 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200841 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200842 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200843#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200844/* Helpers: */
845/* QUOT is used on elements of int_buf[], which are bytes,
846 * not Unicode chars. Therefore it works correctly even in Unicode mode.
847 */
848#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200849static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200850{
851 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200852 if (beg == end)
853 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200854
855 while ((int_buf[beg] = int_buf[end]) != 0)
856 beg++, end++;
857
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200858 if (dbg_bmp) {
859 int i;
860 for (i = 0; int_buf[i]; i++)
861 bb_putchar((unsigned char)int_buf[i]);
862 bb_putchar('\n');
863 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200864}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200865/* Caller ensures that match_buf points to a malloced buffer
866 * big enough to hold strlen(match_buf)*2 + 2
867 */
868static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000869{
870 int i, j;
871 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200872 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000873
Denys Vlasenko76939e72010-09-03 14:09:24 +0200874 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200875
Denys Vlasenko76939e72010-09-03 14:09:24 +0200876 /* Copy in reverse order, since they overlap */
877 i = strlen(match_buf);
878 do {
879 int_buf[i] = (unsigned char)match_buf[i];
880 i--;
881 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000882
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200883 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200884 for (i = 0; int_buf[i]; i++) {
885 if (int_buf[i] == '\\') {
886 remove_chunk(int_buf, i, i + 1);
887 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000888 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200889 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200890 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200891 {
892 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200893 i = 0;
894 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200895 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200896 if (!cur)
897 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200898 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200899 if (!in_quote || (cur == in_quote)) {
900 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200901 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200902 continue;
903 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000904 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200905 if (in_quote)
906 int_buf[i] = cur | QUOT;
907 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200908 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000909 }
910
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200911 /* Remove everything up to command delimiters:
912 * ';' ';;' '&' '|' '&&' '||',
913 * but careful with '>&' '<&' '>|'
914 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000915 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200916 int cur = int_buf[i];
917 if (cur == ';' || cur == '&' || cur == '|') {
918 int prev = i ? int_buf[i - 1] : 0;
919 if (cur == '&' && (prev == '>' || prev == '<')) {
920 continue;
921 } else if (cur == '|' && prev == '>') {
922 continue;
923 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200924 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200925 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000926 }
927 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200928 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200929 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000930 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200931 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000932 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200933 /* `cmd` should count as a word:
934 * `cmd` c<tab> should search for files c*,
935 * not commands c*. Therefore we don't drop
936 * `cmd` entirely, we replace it with single `.
937 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200938 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200939 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000940 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200941 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200942 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200943 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200944 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200945 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000946 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200947 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000948
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200949 /* Remove "cmd (" and "cmd {"
950 * Example: "if { c<tab>"
951 * In this example, c should be matched as command pfx.
952 */
953 for (i = 0; int_buf[i]; i++) {
954 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200955 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +0200956 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000957 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200958 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000959
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200960 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000961 for (i = 0; int_buf[i]; i++)
962 if (int_buf[i] != ' ')
963 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200964 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000965
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200966 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000967 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200968 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000969 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200970 if (int_buf[i] == ' '
971 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200972 && (char)int_buf[0] == 'c'
973 && (char)int_buf[1] == 'd'
974 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000975 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000976 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000977 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000978 command_mode = FIND_FILE_ONLY;
979 break;
980 }
981 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200982 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200983 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200984
985 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200986 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
987 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000988 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200989 int cur = int_buf[i];
990 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200991 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000992 break;
993 }
994 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000995
Denys Vlasenko76939e72010-09-03 14:09:24 +0200996 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200997 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200998 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200999 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001000
Denys Vlasenko76939e72010-09-03 14:09:24 +02001001 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001002
1003 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001004}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001005
Glenn L McGrath4d001292003-01-06 01:11:50 +00001006/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001007 * Display by column (original idea from ls applet,
1008 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001009 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001010static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001011{
1012 int ncols, row;
1013 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001014 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001015 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001016 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001017
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001018 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001019 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001020 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001021 if (column_width < l)
1022 column_width = l;
1023 }
1024 column_width += 2; /* min space for columns */
1025 ncols = cmdedit_termw / column_width;
1026
1027 if (ncols > 1) {
1028 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001029 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001030 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001031 } else {
1032 ncols = 1;
1033 }
1034 for (row = 0; row < nrows; row++) {
1035 int n = row;
1036 int nc;
1037
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001038 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001039 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001040 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001041 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001042 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001043 if (ENABLE_UNICODE_SUPPORT)
1044 puts(printable_string(NULL, matches[n]));
1045 else
1046 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001047 }
1048}
1049
Mike Shalf3763032010-11-22 03:49:18 +01001050static const char *is_special_char(char c)
1051{
1052 return strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", c);
1053}
1054
1055static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001056{
1057 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001058 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001059
1060 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001061 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001062 s[l++] = '\\';
1063 s[l++] = *found++;
1064 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001065 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001066 return s;
1067}
1068
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001069/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001070static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001071{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001072 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001073 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001074 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001075 /* Length of string used for matching */
1076 unsigned match_pfx_len = match_pfx_len;
1077 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001078# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001079 /* cursor pos in command converted to multibyte form */
1080 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001081# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001082 if (!(state->flags & TAB_COMPLETION))
1083 return;
1084
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001085 if (*lastWasTab) {
1086 /* The last char was a TAB too.
1087 * Print a list of all the available choices.
1088 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001089 if (num_matches > 0) {
1090 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001091 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001092 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001093 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001094 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001095 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001096 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001097 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001098
1099 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001100 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001101
Denys Vlasenko76939e72010-09-03 14:09:24 +02001102 /* Make a local copy of the string up to the position of the cursor.
1103 * build_match_prefix will expand it into int16_t's, need to allocate
1104 * twice as much as the string_len+1.
1105 * (we then also (ab)use this extra space later - see (**))
1106 */
1107 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001108# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001109 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001110# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001111 {
1112 CHAR_T wc = command_ps[cursor];
1113 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001114 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001115 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001116 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001117 }
Mike Shalf3763032010-11-22 03:49:18 +01001118# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001119 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001120
1121 /* Free up any memory already allocated */
1122 free_tab_completion_data();
1123
Mike Shalf3763032010-11-22 03:49:18 +01001124# if ENABLE_FEATURE_USERNAME_COMPLETION
1125 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001126 * then try completing this word as a username. */
1127 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001128 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1129 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001130# endif
1131 /* If complete_username() did not match,
1132 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001133 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001134 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001135
1136 /* Account for backslashes which will be inserted
1137 * by quote_special_chars() later */
1138 {
1139 const char *e = match_buf + strlen(match_buf);
1140 const char *s = e - match_pfx_len;
1141 while (s < e)
1142 if (is_special_char(*s++))
1143 match_pfx_len++;
1144 }
1145
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001146 /* Remove duplicates */
1147 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001148 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001149 qsort_string_vector(matches, num_matches);
1150 for (i = 0; i < num_matches - 1; ++i) {
1151 //if (matches[i] && matches[i+1]) { /* paranoia */
1152 if (strcmp(matches[i], matches[i+1]) == 0) {
1153 free(matches[i]);
1154 //matches[i] = NULL; /* paranoia */
1155 } else {
1156 matches[n++] = matches[i];
1157 }
1158 //}
1159 }
1160 matches[n++] = matches[i];
1161 num_matches = n;
1162 }
Mike Shalf3763032010-11-22 03:49:18 +01001163
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001164 /* Did we find exactly one match? */
1165 if (num_matches != 1) { /* no */
1166 char *cp;
1167 beep();
1168 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001169 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001170 /* Find common prefix */
1171 chosen_match = xstrdup(matches[0]);
1172 for (cp = chosen_match; *cp; cp++) {
1173 unsigned n;
1174 for (n = 1; n < num_matches; n++) {
1175 if (matches[n][cp - chosen_match] != *cp) {
1176 goto stop;
1177 }
1178 }
1179 }
1180 stop:
1181 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001182 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001183 }
1184 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001185 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001186 free(chosen_match);
1187 chosen_match = cp;
1188 len_found = strlen(chosen_match);
1189 } else { /* exactly one match */
1190 /* Next <tab> is not a double-tab */
1191 *lastWasTab = 0;
1192
Mike Shalf3763032010-11-22 03:49:18 +01001193 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001194 len_found = strlen(chosen_match);
1195 if (chosen_match[len_found-1] != '/') {
1196 chosen_match[len_found] = ' ';
1197 chosen_match[++len_found] = '\0';
1198 }
1199 }
1200
Mike Shalf3763032010-11-22 03:49:18 +01001201# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001202 /* Have space to place the match? */
1203 /* The result consists of three parts with these lengths: */
1204 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1205 /* it simplifies into: */
1206 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1207 int pos;
1208 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001209 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001210 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001211 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001212 command_len = strlen(command_ps);
1213 /* new pos */
1214 pos = cursor + len_found - match_pfx_len;
1215 /* write out the matched command */
1216 redraw(cmdedit_y, command_len - pos);
1217 }
Mike Shalf3763032010-11-22 03:49:18 +01001218# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001219 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001220 /* Use 2nd half of match_buf as scratch space - see (**) */
1221 char *command = match_buf + MAX_LINELEN;
1222 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001223 /* Have space to place the match? */
1224 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1225 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1226 int pos;
1227 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001228 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001229 /* where do we want to have cursor after all? */
1230 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001231 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001232 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001233 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001234 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001235 /* write out the matched command */
1236 /* paranoia: load_string can return 0 on conv error,
1237 * prevent passing pos = (0 - 12) to redraw */
1238 pos = command_len - len;
1239 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1240 }
1241 }
Mike Shalf3763032010-11-22 03:49:18 +01001242# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001243 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001244 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001245 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001246}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001247
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001248#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001249
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001250
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001251line_input_t* FAST_FUNC new_line_input_t(int flags)
1252{
1253 line_input_t *n = xzalloc(sizeof(*n));
1254 n->flags = flags;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001255 n->max_history = MAX_HISTORY;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001256 return n;
1257}
1258
1259
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001260#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001261
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001262unsigned size_from_HISTFILESIZE(const char *hp)
1263{
1264 int size = MAX_HISTORY;
1265 if (hp) {
1266 size = atoi(hp);
1267 if (size <= 0)
1268 return 1;
1269 if (size > MAX_HISTORY)
1270 return MAX_HISTORY;
1271 }
1272 return size;
1273}
1274
Denis Vlasenko682ad302008-09-27 01:28:56 +00001275static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001276{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001277 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001278 int cur = state->cur_history;
1279 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001280
Denys Vlasenko19158a82010-03-26 14:06:56 +01001281# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001282 {
1283 char tbuf[MAX_LINELEN];
1284 save_string(tbuf, sizeof(tbuf));
1285 state->history[cur] = xstrdup(tbuf);
1286 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001287# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001288 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001289# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001290 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001291}
1292
1293/* state->flags is already checked to be nonzero */
1294static int get_previous_history(void)
1295{
1296 if ((state->flags & DO_HISTORY) && state->cur_history) {
1297 save_command_ps_at_cur_history();
1298 state->cur_history--;
1299 return 1;
1300 }
1301 beep();
1302 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001303}
1304
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001305static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001306{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001307 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001308 if (state->cur_history < state->cnt_history) {
1309 save_command_ps_at_cur_history(); /* save the current history line */
1310 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001311 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001312 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001313 beep();
1314 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001315}
Robert Griebl350d26b2002-12-03 22:45:46 +00001316
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001317# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001318/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001319 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001320 * Otherwise shell users get unhappy.
1321 *
1322 * History file is trimmed lazily, when it grows several times longer
1323 * than configured MAX_HISTORY lines.
1324 */
1325
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001326static void free_line_input_t(line_input_t *n)
1327{
1328 int i = n->cnt_history;
1329 while (i > 0)
1330 free(n->history[--i]);
1331 free(n);
1332}
1333
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001334/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001335static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001336{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001337 char *temp_h[MAX_HISTORY];
1338 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001339 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001340 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001341
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001342 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001343
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001344 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001345 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001346 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001347 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001348 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001349 free(st_parm->history[idx]);
1350 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001351 }
1352
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001353 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1354 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001355 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001356 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001357 while ((line = xmalloc_fgetline(fp)) != NULL) {
1358 if (line[0] == '\0') {
1359 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001360 continue;
1361 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001362 free(temp_h[idx]);
1363 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001364 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001365 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001366 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001367 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001368 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001369 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001370
1371 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001372 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001373 while (temp_h[idx] == NULL) {
1374 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001375 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001376 idx = 0;
1377 }
1378 }
1379
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001380 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001381 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001382 line = temp_h[idx];
1383 if (!line)
1384 break;
1385 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001386 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001387 idx = 0;
1388 line_len = strlen(line);
1389 if (line_len >= MAX_LINELEN)
1390 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001391 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001392 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001393 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001394 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1395 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001396 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001397}
1398
Denys Vlasenkobede2152011-09-04 16:12:33 +02001399# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1400void save_history(line_input_t *st)
1401{
1402 FILE *fp;
1403
Denys Vlasenkobede2152011-09-04 16:12:33 +02001404 if (!st->hist_file)
1405 return;
1406 if (st->cnt_history <= st->cnt_history_in_file)
1407 return;
1408
1409 fp = fopen(st->hist_file, "a");
1410 if (fp) {
1411 int i, fd;
1412 char *new_name;
1413 line_input_t *st_temp;
1414
1415 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1416 fprintf(fp, "%s\n", st->history[i]);
1417 fclose(fp);
1418
1419 /* we may have concurrently written entries from others.
1420 * load them */
1421 st_temp = new_line_input_t(st->flags);
1422 st_temp->hist_file = st->hist_file;
1423 st_temp->max_history = st->max_history;
1424 load_history(st_temp);
1425
1426 /* write out temp file and replace hist_file atomically */
1427 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1428 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1429 if (fd >= 0) {
1430 fp = xfdopen_for_write(fd);
1431 for (i = 0; i < st_temp->cnt_history; i++)
1432 fprintf(fp, "%s\n", st_temp->history[i]);
1433 fclose(fp);
1434 if (rename(new_name, st->hist_file) == 0)
1435 st->cnt_history_in_file = st_temp->cnt_history;
1436 }
1437 free(new_name);
1438 free_line_input_t(st_temp);
1439 }
1440}
1441# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001442static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001443{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001444 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001445 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001446
Denys Vlasenkobede2152011-09-04 16:12:33 +02001447 if (!state->hist_file)
1448 return;
1449
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001450 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001451 if (fd < 0)
1452 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001453 xlseek(fd, 0, SEEK_END); /* paranoia */
1454 len = strlen(str);
1455 str[len] = '\n'; /* we (try to) do atomic write */
1456 len2 = full_write(fd, str, len + 1);
1457 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001458 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001459 if (len2 != len + 1)
1460 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001461
1462 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001463 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001464 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001465 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001466 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001467
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001468 /* we may have concurrently written entries from others.
1469 * load them */
1470 st_temp = new_line_input_t(state->flags);
1471 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001472 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001473 load_history(st_temp);
1474
1475 /* write out temp file and replace hist_file atomically */
1476 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001477 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001478 if (fd >= 0) {
1479 FILE *fp;
1480 int i;
1481
1482 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001483 for (i = 0; i < st_temp->cnt_history; i++)
1484 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001485 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001486 if (rename(new_name, state->hist_file) == 0)
1487 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001488 }
1489 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001490 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001491 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001492}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001493# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001494# else
1495# define load_history(a) ((void)0)
1496# define save_history(a) ((void)0)
1497# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001498
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001499static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001500{
1501 int i;
1502
1503 if (!(state->flags & DO_HISTORY))
1504 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001505 if (str[0] == '\0')
1506 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001507 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001508 /* Don't save dupes */
1509 if (i && strcmp(state->history[i-1], str) == 0)
1510 return;
1511
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001512 free(state->history[state->max_history]); /* redundant, paranoia */
1513 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001514
1515 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001516 /* we need to keep history[state->max_history] empty, hence >=, not > */
1517 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001518 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001519 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001520 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001521 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001522# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1523 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001524 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001525# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001526 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001527 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001528 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001529 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001530 state->cur_history = i;
1531 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001532# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1533 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001534# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001535 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001536}
1537
1538#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001539# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001540#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001541
1542
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001543#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001544/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001545 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001546 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001547static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001548vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001549{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001550 CHAR_T *command = command_ps;
1551
1552 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001553 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001554 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001555 input_forward();
1556}
1557
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001558static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001559vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001560{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001561 CHAR_T *command = command_ps;
1562
1563 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001564 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001565 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1566 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001567 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001568 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001569 } else if (BB_ispunct(command[cursor])) {
1570 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001571 input_forward();
1572 }
1573
Denis Vlasenko253ce002007-01-22 08:34:44 +00001574 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001575 input_forward();
1576
Denys Vlasenko13028922009-07-12 00:51:15 +02001577 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001578 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001579 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001580 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001581}
1582
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001583static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001584vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001585{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001586 CHAR_T *command = command_ps;
1587
Paul Fox3f11b1b2005-08-04 19:04:46 +00001588 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001589 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001590 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001591 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001592 input_forward();
1593}
1594
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001595static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001596vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001597{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001598 CHAR_T *command = command_ps;
1599
Denis Vlasenko253ce002007-01-22 08:34:44 +00001600 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001601 return;
1602 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001603 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001604 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001605 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001606 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001607 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001608 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001609 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001610 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001611 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001612 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001613 } else if (BB_ispunct(command[cursor])) {
1614 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001615 input_forward();
1616 }
1617}
1618
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001619static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001620vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001621{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001622 CHAR_T *command = command_ps;
1623
1624 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001625 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001626 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001627 input_backward(1);
1628}
1629
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001630static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001631vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001632{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001633 CHAR_T *command = command_ps;
1634
Paul Fox3f11b1b2005-08-04 19:04:46 +00001635 if (cursor <= 0)
1636 return;
1637 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001638 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001639 input_backward(1);
1640 if (cursor <= 0)
1641 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001642 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001643 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001644 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001645 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001646 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001647 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001648 } else if (BB_ispunct(command[cursor])) {
1649 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001650 input_backward(1);
1651 }
1652}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001653#endif
1654
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001655/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1656static void ctrl_left(void)
1657{
1658 CHAR_T *command = command_ps;
1659
1660 while (1) {
1661 CHAR_T c;
1662
1663 input_backward(1);
1664 if (cursor == 0)
1665 break;
1666 c = command[cursor];
1667 if (c != ' ' && !BB_ispunct(c)) {
1668 /* we reached a "word" delimited by spaces/punct.
1669 * go to its beginning */
1670 while (1) {
1671 c = command[cursor - 1];
1672 if (c == ' ' || BB_ispunct(c))
1673 break;
1674 input_backward(1);
1675 if (cursor == 0)
1676 break;
1677 }
1678 break;
1679 }
1680 }
1681}
1682static void ctrl_right(void)
1683{
1684 CHAR_T *command = command_ps;
1685
1686 while (1) {
1687 CHAR_T c;
1688
1689 c = command[cursor];
1690 if (c == BB_NUL)
1691 break;
1692 if (c != ' ' && !BB_ispunct(c)) {
1693 /* we reached a "word" delimited by spaces/punct.
1694 * go to its end + 1 */
1695 while (1) {
1696 input_forward();
1697 c = command[cursor];
1698 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1699 break;
1700 }
1701 break;
1702 }
1703 input_forward();
1704 }
1705}
1706
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001707
1708/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001709 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001710 */
1711
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001712#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1713static void ask_terminal(void)
1714{
1715 /* Ask terminal where is the cursor now.
1716 * lineedit_read_key handles response and corrects
1717 * our idea of current cursor position.
1718 * Testcase: run "echo -n long_line_long_line_long_line",
1719 * then type in a long, wrapping command and try to
1720 * delete it using backspace key.
1721 * Note: we print it _after_ prompt, because
1722 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1723 */
1724 /* Problem: if there is buffered input on stdin,
1725 * the response will be delivered later,
1726 * possibly to an unsuspecting application.
1727 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1728 * Result:
1729 * ~/srcdevel/bbox/fix/busybox.t4 #
1730 * ~/srcdevel/bbox/fix/busybox.t4 #
1731 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1732 * ~/srcdevel/bbox/fix/busybox.t4 #
1733 *
1734 * Checking for input with poll only makes the race narrower,
1735 * I still can trigger it. Strace:
1736 *
1737 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1738 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1739 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001740 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001741 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1742 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001743 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001744
Denys Vlasenko451add42010-07-25 00:06:41 +02001745 pfd.fd = STDIN_FILENO;
1746 pfd.events = POLLIN;
1747 if (safe_poll(&pfd, 1, 0) == 0) {
1748 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001749 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001750 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001751 }
1752}
1753#else
1754#define ask_terminal() ((void)0)
1755#endif
1756
Denis Vlasenko38f63192007-01-22 09:03:07 +00001757#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001758static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001759{
1760 cmdedit_prompt = prmt_ptr;
1761 cmdedit_prmt_len = strlen(prmt_ptr);
1762 put_prompt();
1763}
1764#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001765static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001766{
1767 int prmt_len = 0;
1768 size_t cur_prmt_len = 0;
1769 char flg_not_length = '[';
1770 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001771 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1772 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001773 char c;
1774 char *pbuf;
1775
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001776 cmdedit_prmt_len = 0;
1777
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001778 if (!cwd_buf) {
1779 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001780 }
1781
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001782 cbuf[1] = '\0'; /* never changes */
1783
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001784 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001785 char *free_me = NULL;
1786
1787 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001788 c = *prmt_ptr++;
1789 if (c == '\\') {
1790 const char *cp = prmt_ptr;
1791 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001792/*
1793 * Supported via bb_process_escape_sequence:
1794 * \a ASCII bell character (07)
1795 * \e ASCII escape character (033)
1796 * \n newline
1797 * \r carriage return
1798 * \\ backslash
1799 * \nnn char with octal code nnn
1800 * Supported:
1801 * \$ if the effective UID is 0, a #, otherwise a $
1802 * \! history number of this command
1803 * (buggy?)
1804 * \w current working directory, with $HOME abbreviated with a tilde
1805 * Note: we do not support $PROMPT_DIRTRIM=n feature
1806 * \h hostname up to the first '.'
1807 * \H hostname
1808 * \u username
1809 * \[ begin a sequence of non-printing characters
1810 * \] end a sequence of non-printing characters
1811 * Not supported:
1812 * \# command number of this command
1813 * \j number of jobs currently managed by the shell
1814 * \l basename of the shell's terminal device name
1815 * \s name of the shell, the basename of $0 (the portion following the final slash)
1816 * \V release of bash, version + patch level (e.g., 2.00.0)
1817 * \W basename of the current working directory, with $HOME abbreviated with a tilde
1818 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1819 * \D{format}
1820 * format is passed to strftime(3).
1821 * An empty format results in a locale-specific time representation.
1822 * The braces are required.
1823 * \T current time in 12-hour HH:MM:SS format
1824 * \@ current time in 12-hour am/pm format
1825 * \A current time in 24-hour HH:MM format
1826 * Mishandled by bb_process_escape_sequence:
1827 * \t current time in 24-hour HH:MM:SS format
1828 * \v version of bash (e.g., 2.00)
1829 */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001830 c = bb_process_escape_sequence(&prmt_ptr);
1831 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001832 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001833 break;
1834 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001835
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001836 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001837# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001838 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001839 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001840 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001841# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001842 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001843 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001844 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001845 if (c == 'h')
1846 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001847 break;
1848 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001849 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001850 break;
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001851# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001852 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001853 /* /home/user[/something] -> ~[/something] */
1854 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001855 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001856 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001857 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1858 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1859 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001860 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001861 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001862 }
1863 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001864# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001865 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001866 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001867 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001868 if (cp != NULL && cp != pbuf)
1869 pbuf += (cp-pbuf) + 1;
1870 break;
1871 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001872 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001873 break;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001874// bb_process_escape_sequence does this now:
1875// case 'e': case 'E': /* \e \E = \033 */
1876// c = '\033';
1877// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001878 case 'x': case 'X': {
1879 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001880 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001881 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001882 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001883 buf2[l] = '\0';
1884 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001885 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001886 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001887 break;
1888 }
1889 prmt_ptr++;
1890 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001891 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001892 if (c == 0)
1893 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001894 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001895 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001896 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001897 case '[': case ']':
1898 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001899 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001900 continue;
1901 }
1902 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001903 } /* switch */
1904 } /* if */
1905 } /* if */
1906 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001907 cur_prmt_len = strlen(pbuf);
1908 prmt_len += cur_prmt_len;
1909 if (flg_not_length != ']')
1910 cmdedit_prmt_len += cur_prmt_len;
1911 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001912 free(free_me);
1913 } /* while */
1914
1915 if (cwd_buf != (char *)bb_msg_unknown)
1916 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001917 cmdedit_prompt = prmt_mem_ptr;
1918 put_prompt();
1919}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001920#endif
1921
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001922static void cmdedit_setwidth(unsigned w, int redraw_flg)
1923{
1924 cmdedit_termw = w;
1925 if (redraw_flg) {
1926 /* new y for current cursor */
1927 int new_y = (cursor + cmdedit_prmt_len) / w;
1928 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001929 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001930 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001931 }
1932}
1933
1934static void win_changed(int nsig)
1935{
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001936 int sv_errno = errno;
Denis Vlasenko55995022008-05-18 22:28:26 +00001937 unsigned width;
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001938
Denys Vlasenko451add42010-07-25 00:06:41 +02001939 get_terminal_width_height(0, &width, NULL);
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001940//FIXME: cmdedit_setwidth() -> redraw() -> printf() -> KABOOM! (we are in signal handler!)
1941 cmdedit_setwidth(width, /*redraw_flg:*/ nsig);
1942
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001943 errno = sv_errno;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001944}
1945
Denys Vlasenko66c5b122011-02-08 05:07:02 +01001946static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001947{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001948 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001949#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001950 char unicode_buf[MB_CUR_MAX + 1];
1951 int unicode_idx = 0;
1952#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001953
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001954 while (1) {
1955 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1956 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1957 * insist on full MB_CUR_MAX buffer to declare input like
1958 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1959 *
1960 * Note: read_key sets errno to 0 on success.
1961 */
1962 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1963 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001964#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001965 if (errno == EAGAIN && unicode_idx != 0)
1966 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001967#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001968 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001969 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001970
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001971#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1972 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001973 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001974 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001975 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001976 if (cursor == 0) { /* otherwise it may be bogus */
1977 int col = ((ic >> 32) & 0x7fff) - 1;
1978 if (col > cmdedit_prmt_len) {
1979 cmdedit_x += (col - cmdedit_prmt_len);
1980 while (cmdedit_x >= cmdedit_termw) {
1981 cmdedit_x -= cmdedit_termw;
1982 cmdedit_y++;
1983 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001984 }
1985 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001986 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001987 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001988#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001989
Denys Vlasenko19158a82010-03-26 14:06:56 +01001990#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001991 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001992 wchar_t wc;
1993
1994 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001995 break;
1996 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001997
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001998 unicode_buf[unicode_idx++] = ic;
1999 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002000 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2001 /* Not (yet?) a valid unicode char */
2002 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002003 timeout = 50;
2004 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002005 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002006 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002007 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002008 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002009# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002010 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002011# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002012 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002013# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002014 } else {
2015 /* Valid unicode char, return its code */
2016 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002017 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002018 }
2019#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002020 break;
2021 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002022
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002023 return ic;
2024}
2025
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002026#if ENABLE_UNICODE_BIDI_SUPPORT
2027static int isrtl_str(void)
2028{
2029 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002030
2031 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002032 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002033 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002034}
2035#else
2036# define isrtl_str() 0
2037#endif
2038
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002039/* leave out the "vi-mode"-only case labels if vi editing isn't
2040 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002041#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002042
2043/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002044#undef CTRL
2045#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002046
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002047enum {
2048 VI_CMDMODE_BIT = 0x40000000,
2049 /* 0x80000000 bit flags KEYCODE_xxx */
2050};
2051
2052#if ENABLE_FEATURE_REVERSE_SEARCH
2053/* Mimic readline Ctrl-R reverse history search.
2054 * When invoked, it shows the following prompt:
2055 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2056 * and typing results in search being performed:
2057 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2058 * Search is performed by looking at progressively older lines in history.
2059 * Ctrl-R again searches for the next match in history.
2060 * Backspace deletes last matched char.
2061 * Control keys exit search and return to normal editing (at current history line).
2062 */
2063static int32_t reverse_i_search(void)
2064{
2065 char match_buf[128]; /* for user input */
2066 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2067 const char *matched_history_line;
2068 const char *saved_prompt;
2069 int32_t ic;
2070
2071 matched_history_line = NULL;
2072 read_key_buffer[0] = 0;
2073 match_buf[0] = '\0';
2074
2075 /* Save and replace the prompt */
2076 saved_prompt = cmdedit_prompt;
2077 goto set_prompt;
2078
2079 while (1) {
2080 int h;
2081 unsigned match_buf_len = strlen(match_buf);
2082
2083 fflush_all();
2084//FIXME: correct timeout?
2085 ic = lineedit_read_key(read_key_buffer, -1);
2086
2087 switch (ic) {
2088 case CTRL('R'): /* searching for the next match */
2089 break;
2090
2091 case '\b':
2092 case '\x7f':
2093 /* Backspace */
2094 if (unicode_status == UNICODE_ON) {
2095 while (match_buf_len != 0) {
2096 uint8_t c = match_buf[--match_buf_len];
2097 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2098 break; /* yes */
2099 }
2100 } else {
2101 if (match_buf_len != 0)
2102 match_buf_len--;
2103 }
2104 match_buf[match_buf_len] = '\0';
2105 break;
2106
2107 default:
2108 if (ic < ' '
2109 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2110 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2111 ) {
2112 goto ret;
2113 }
2114
2115 /* Append this char */
2116#if ENABLE_UNICODE_SUPPORT
2117 if (unicode_status == UNICODE_ON) {
2118 mbstate_t mbstate = { 0 };
2119 char buf[MB_CUR_MAX + 1];
2120 int len = wcrtomb(buf, ic, &mbstate);
2121 if (len > 0) {
2122 buf[len] = '\0';
2123 if (match_buf_len + len < sizeof(match_buf))
2124 strcpy(match_buf + match_buf_len, buf);
2125 }
2126 } else
2127#endif
2128 if (match_buf_len < sizeof(match_buf) - 1) {
2129 match_buf[match_buf_len] = ic;
2130 match_buf[match_buf_len + 1] = '\0';
2131 }
2132 break;
2133 } /* switch (ic) */
2134
2135 /* Search in history for match_buf */
2136 h = state->cur_history;
2137 if (ic == CTRL('R'))
2138 h--;
2139 while (h >= 0) {
2140 if (state->history[h]) {
2141 char *match = strstr(state->history[h], match_buf);
2142 if (match) {
2143 state->cur_history = h;
2144 matched_history_line = state->history[h];
2145 command_len = load_string(matched_history_line);
2146 cursor = match - matched_history_line;
2147//FIXME: cursor position for Unicode case
2148
2149 free((char*)cmdedit_prompt);
2150 set_prompt:
2151 cmdedit_prompt = xasprintf("(reverse-i-search)'%s': ", match_buf);
2152 cmdedit_prmt_len = strlen(cmdedit_prompt);
2153 goto do_redraw;
2154 }
2155 }
2156 h--;
2157 }
2158
2159 /* Not found */
2160 match_buf[match_buf_len] = '\0';
2161 beep();
2162 continue;
2163
2164 do_redraw:
2165 redraw(cmdedit_y, command_len - cursor);
2166 } /* while (1) */
2167
2168 ret:
2169 if (matched_history_line)
2170 command_len = load_string(matched_history_line);
2171
2172 free((char*)cmdedit_prompt);
2173 cmdedit_prompt = saved_prompt;
2174 cmdedit_prmt_len = strlen(cmdedit_prompt);
2175 redraw(cmdedit_y, command_len - cursor);
2176
2177 return ic;
2178}
2179#endif
2180
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002181/* maxsize must be >= 2.
2182 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002183 * -1 on read errors or EOF, or on bare Ctrl-D,
2184 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002185 * >0 length of input string, including terminating '\n'
2186 */
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002187int 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 +00002188{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002189 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002190#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002191 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002192#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002193 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002194#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002195 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002196#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002197 struct termios initial_settings;
2198 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002199 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002200
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002201 INIT_S();
2202
2203 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
2204 || !(initial_settings.c_lflag & ECHO)
2205 ) {
2206 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002207 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002208 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002209 if (fgets(command, maxsize, stdin) == NULL)
2210 len = -1; /* EOF or error */
2211 else
2212 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002213 DEINIT_S();
2214 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002215 }
2216
Denys Vlasenko28055022010-01-04 20:49:58 +01002217 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002218
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002219// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002220 if (maxsize > MAX_LINELEN)
2221 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002222 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002223
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002224 /* With zero flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00002225 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002226#if MAX_HISTORY > 0
2227# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02002228 if (state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00002229 if (state->cnt_history == 0)
2230 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002231# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002232 if (state->flags & DO_HISTORY)
2233 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002234#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002235
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002236 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002237 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002238 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002239#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002240 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2241#else
Mark Whitley4e338752001-01-26 20:42:23 +00002242 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002243 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002244#endif
2245#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002246
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002247 new_settings = initial_settings;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002248 /* ~ICANON: unbuffered input (most c_cc[] are disabled, VMIN/VTIME are enabled) */
2249 /* ~ECHO, ~ECHONL: turn off echoing, including newline echoing */
2250 /* ~ISIG: turn off INTR (ctrl-C), QUIT, SUSP */
2251 new_settings.c_lflag &= ~(ICANON | ECHO | ECHONL | ISIG);
2252 /* reads would block only if < 1 char is available */
Eric Andersen34506362001-08-02 05:02:46 +00002253 new_settings.c_cc[VMIN] = 1;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002254 /* no timeout (reads block forever) */
Eric Andersen34506362001-08-02 05:02:46 +00002255 new_settings.c_cc[VTIME] = 0;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002256 /* Should be not needed if ISIG is off: */
2257 /* Turn off CTRL-C */
2258 /* new_settings.c_cc[VINTR] = _POSIX_VDISABLE; */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002259 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002260
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002261#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002262 {
2263 struct passwd *entry;
2264
2265 entry = getpwuid(geteuid());
2266 if (entry) {
2267 user_buf = xstrdup(entry->pw_name);
2268 home_pwd_buf = xstrdup(entry->pw_dir);
2269 }
2270 }
2271#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002272
2273#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002274 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002275 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002276 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2277#endif
2278
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002279 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002280 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002281 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002282
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002283 /* Install window resize handler (NB: after *all* init is complete) */
2284//FIXME: save entire sigaction!
2285 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
2286 win_changed(0); /* get initial window size */
2287
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002288 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002289 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002290 /*
2291 * The emacs and vi modes share much of the code in the big
2292 * command loop. Commands entered when in vi's command mode
2293 * (aka "escape mode") get an extra bit added to distinguish
2294 * them - this keeps them from being self-inserted. This
2295 * clutters the big switch a bit, but keeps all the code
2296 * in one place.
2297 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002298 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002299
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002300 fflush_all();
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002301 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002302
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002303#if ENABLE_FEATURE_REVERSE_SEARCH
2304 again:
2305#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002306#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002307 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002308 if (vi_cmdmode) {
2309 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2310 * change ic if it contains one of them: */
2311 ic |= VI_CMDMODE_BIT;
2312 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002313#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002314
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002315 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002316 case '\n':
2317 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002318 vi_case('\n'|VI_CMDMODE_BIT:)
2319 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002320 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002321 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002322 break_out = 1;
2323 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002324 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002325 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002326 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002327 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002328 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002329 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002330 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002331 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002332 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002333 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002334 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002335 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002336 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002337 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002338 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002339 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002340 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002341 vi_case('l'|VI_CMDMODE_BIT:)
2342 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002343 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002344 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002345 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002346 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002347 if (!isrtl_str())
2348 input_backspace();
2349 else
2350 input_delete(0);
2351 break;
2352 case KEYCODE_DELETE:
2353 if (!isrtl_str())
2354 input_delete(0);
2355 else
2356 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002357 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002358#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002359 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002360 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002361 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002362#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002363 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002364 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002365 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002366 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002367 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002368 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002369 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002370 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002371 /* Control-l -- clear screen */
Marek Polacek7b181072010-10-28 21:34:56 +02002372 printf(ESC"[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002373 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002374 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002375#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002376 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002377 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2378 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002379 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002380 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002381 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002382 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002383 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002384 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2385 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002386 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002387 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002388 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002389 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002390#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002391 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002392 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002393 /* Control-U -- Clear line before cursor */
2394 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002395 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002396 memmove(command_ps, command_ps + cursor,
2397 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002398 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002399 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002400 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002401 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002402 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002403 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002404 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002405 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002406 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002407 input_backspace();
2408 break;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002409#if ENABLE_FEATURE_REVERSE_SEARCH
2410 case CTRL('R'):
2411 ic = ic_raw = reverse_i_search();
2412 goto again;
2413#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002414
Denis Vlasenko38f63192007-01-22 09:03:07 +00002415#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002416 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002417 vi_cmdmode = 0;
2418 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002419 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002420 input_backward(cursor);
2421 vi_cmdmode = 0;
2422 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002423 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002424 input_forward();
2425 vi_cmdmode = 0;
2426 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002427 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002428 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002429 vi_cmdmode = 0;
2430 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002431 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002432 input_delete(1);
2433 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002434 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002435 if (cursor > 0) {
2436 input_backward(1);
2437 input_delete(1);
2438 }
2439 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002440 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002441 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002442 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002443 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002444 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002445 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002446 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002447 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002448 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002449 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002450 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002451 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002452 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002453 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002454 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002455 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002456 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002457 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002458 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002459 vi_cmdmode = 0;
2460 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002461 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002462 goto clear_to_eol;
2463
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002464 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002465 vi_cmdmode = 0;
2466 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002467 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002468 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002469
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002470 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002471 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002472 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002473 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002474 input_backward(cursor);
2475 goto clear_to_eol;
2476 break;
2477 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002478
2479 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002480 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002481 case 'w':
2482 case 'W':
2483 case 'e':
2484 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002485 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002486 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002487 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002488 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002489 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002490 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002491 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002492 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002493 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002494 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002495 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002496 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002497 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002498 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002499 break;
2500 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002501 nc = cursor;
2502 input_backward(cursor - sc);
2503 while (nc-- > cursor)
2504 input_delete(1);
2505 break;
2506 case 'b': /* "db", "cb" */
2507 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002508 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002509 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002510 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002511 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002512 while (sc-- > cursor)
2513 input_delete(1);
2514 break;
2515 case ' ': /* "d ", "c " */
2516 input_delete(1);
2517 break;
2518 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002519 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002520 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002521 input_delete(1);
2522 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002523 }
2524 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002525 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002526 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002527 input_forward();
2528 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002529 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002530 put();
2531 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002532 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002533//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002534 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002535 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002536 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002537 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002538 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002539 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002540 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002541 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002542 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002543 }
2544 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002545 case '\x1b': /* ESC */
2546 if (state->flags & VI_MODE) {
2547 /* insert mode --> command mode */
2548 vi_cmdmode = 1;
2549 input_backward(1);
2550 }
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002551 /* Handle a few ESC-<key> combinations the same way
2552 * standard readline bindings (IOW: bash) do.
2553 * Often, Alt-<key> generates ESC-<key>.
2554 */
2555 ic = lineedit_read_key(read_key_buffer, timeout);
2556 switch (ic) {
2557 //case KEYCODE_LEFT: - bash doesn't do this
2558 case 'b':
Denys Vlasenko56443cd2012-04-20 15:07:22 +02002559 ctrl_left();
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002560 break;
2561 //case KEYCODE_RIGHT: - bash doesn't do this
2562 case 'f':
2563 ctrl_right();
2564 break;
2565 //case KEYCODE_DELETE: - bash doesn't do this
2566 case 'd': /* Alt-D */
2567 {
2568 /* Delete word forward */
2569 int nc, sc = cursor;
2570 ctrl_right();
Cliff Frey49195652012-08-07 17:59:40 +02002571 nc = cursor - sc;
2572 input_backward(nc);
2573 while (--nc >= 0)
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002574 input_delete(1);
2575 break;
2576 }
2577 case '\b': /* Alt-Backspace(?) */
2578 case '\x7f': /* Alt-Backspace(?) */
2579 //case 'w': - bash doesn't do this
2580 {
2581 /* Delete word backward */
2582 int sc = cursor;
2583 ctrl_left();
2584 while (sc-- > cursor)
2585 input_delete(1);
2586 break;
2587 }
2588 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002589 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002590#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002591
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002592#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002593 case KEYCODE_UP:
2594 if (get_previous_history())
2595 goto rewrite_line;
2596 beep();
2597 break;
2598 case KEYCODE_DOWN:
2599 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002600 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002601 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002602 /* Rewrite the line with the selected history item */
2603 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002604 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002605 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002606 /* redraw and go to eol (bol, in vi) */
2607 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2608 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002609#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002610 case KEYCODE_RIGHT:
2611 input_forward();
2612 break;
2613 case KEYCODE_LEFT:
2614 input_backward(1);
2615 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002616 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002617 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002618 ctrl_left();
2619 break;
2620 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002621 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002622 ctrl_right();
2623 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002624 case KEYCODE_HOME:
2625 input_backward(cursor);
2626 break;
2627 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002628 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002629 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002630
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002631 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002632 if (initial_settings.c_cc[VINTR] != 0
2633 && ic_raw == initial_settings.c_cc[VINTR]
2634 ) {
2635 /* Ctrl-C (usually) - stop gathering input */
2636 goto_new_line();
2637 command_len = 0;
2638 break_out = -1; /* "do not append '\n'" */
2639 break;
2640 }
2641 if (initial_settings.c_cc[VEOF] != 0
2642 && ic_raw == initial_settings.c_cc[VEOF]
2643 ) {
2644 /* Ctrl-D (usually) - delete one character,
2645 * or exit if len=0 and no chars to delete */
2646 if (command_len == 0) {
2647 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002648
2649 case -1: /* error (e.g. EIO when tty is destroyed) */
2650 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002651 break_out = command_len = -1;
2652 break;
2653 }
2654 input_delete(0);
2655 break;
2656 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002657// /* Control-V -- force insert of next char */
2658// if (c == CTRL('V')) {
2659// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002660// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002661// if (c == 0) {
2662// beep();
2663// break;
2664// }
2665// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002666 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002667 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2668 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002669 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002670 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002671 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002672 * Otherwise, we are here if ic is a
2673 * control char or an unhandled ESC sequence,
2674 * which is also ignored.
2675 */
2676 break;
2677 }
2678 if ((int)command_len >= (maxsize - 2)) {
2679 /* Not enough space for the char and EOL */
2680 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002681 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002682
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002683 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002684 if (cursor == (command_len - 1)) {
2685 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002686 command_ps[cursor] = ic;
2687 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002688 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002689 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002690 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002691 } else {
2692 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002693 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002694
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002695 memmove(command_ps + sc + 1, command_ps + sc,
2696 (command_len - sc) * sizeof(command_ps[0]));
2697 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002698 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2699 if (!isrtl_str())
2700 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002701 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002702 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002703 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002704 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002705 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002706 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002707
2708 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002709 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002710
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002711#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002712 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002713 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002714#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002715 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002716
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002717#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002718 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002719 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2720 * We sent "ESC [ 6 n", but got '\n' first, and
2721 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2722 * It's bad already and not much can be done with it
2723 * (it _will_ be visible for the next process to read stdin),
2724 * but without this delay it even shows up on the screen
2725 * as garbage because we restore echo settings with tcsetattr
2726 * before it comes in. UGLY!
2727 */
2728 usleep(20*1000);
2729 }
2730#endif
2731
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002732/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002733#undef command
2734
Denys Vlasenko19158a82010-03-26 14:06:56 +01002735#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002736 command[0] = '\0';
2737 if (command_len > 0)
2738 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002739 free(command_ps);
2740#endif
2741
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002742 if (command_len > 0)
2743 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002744
Eric Andersen27bb7902003-12-23 20:24:51 +00002745 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002746 command[command_len++] = '\n';
2747 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002748 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002749
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002750#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002751 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002752#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002753
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002754 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002755 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002756 /* restore SIGWINCH handler */
2757 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002758 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002759
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002760 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002761 DEINIT_S();
2762
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002763 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002764}
2765
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002766#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002767
2768#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002769int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002770{
2771 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002772 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002773 if (!fgets(command, maxsize, stdin))
2774 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002775 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002776}
2777
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002778#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002779
2780
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002781/*
2782 * Testing
2783 */
2784
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002785#ifdef TEST
2786
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002787#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002788
2789const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002790
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002791int main(int argc, char **argv)
2792{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002793 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002794 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002795#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002796 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2797 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2798 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002799#else
2800 "% ";
2801#endif
2802
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002803 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002804 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002805 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002806 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002807 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002808 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002809 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002810 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002811 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002812 return 0;
2813}
2814
Eric Andersenc470f442003-07-28 09:56:35 +00002815#endif /* TEST */