blob: 0786f9ae6bd7c0ab676b67339c2f40b469cd3ace [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;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000190} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200191
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000192static void deinit_S(void)
193{
194#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000195 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200196 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000197 free((char*)cmdedit_prompt);
198#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200199#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000200 free(user_buf);
201 if (home_pwd_buf != null_str)
202 free(home_pwd_buf);
203#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000204 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000205}
206#define DEINIT_S() deinit_S()
207
Denis Vlasenko2c844952008-04-25 18:44:35 +0000208
Denys Vlasenko19158a82010-03-26 14:06:56 +0100209#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200210static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200211{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100212 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200213 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100214 if (len < 0)
215 len = 0;
216 command_ps[len] = BB_NUL;
217 return len;
218 } else {
219 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200220 while (src[i] && i < S.maxsize - 1) {
221 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100222 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200223 }
224 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100225 return i;
226 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200227}
Tomas Heinricha659b812010-04-29 13:43:39 +0200228static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200229{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100230 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200231# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100232 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
233 if (len < 0)
234 len = 0;
235 dst[len] = '\0';
236 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200237# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100238 unsigned dstpos = 0;
239 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200240
Denys Vlasenko353680a2011-03-27 01:18:07 +0100241 maxsize--;
242 while (dstpos < maxsize) {
243 wchar_t wc;
244 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200245
Denys Vlasenko353680a2011-03-27 01:18:07 +0100246 /* Convert up to 1st invalid byte (or up to end) */
247 while ((wc = command_ps[srcpos]) != BB_NUL
248 && !unicode_is_raw_byte(wc)
249 ) {
250 srcpos++;
251 }
252 command_ps[srcpos] = BB_NUL;
253 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
254 if (n < 0) /* should not happen */
255 break;
256 dstpos += n;
257 if (wc == BB_NUL) /* usually is */
258 break;
259
260 /* We do have invalid byte here! */
261 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200262 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100263 if (dstpos == maxsize)
264 break;
265 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200266 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100267 dst[dstpos] = '\0';
268 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200269# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100270 } else {
271 unsigned i = 0;
272 while ((dst[i] = command_ps[i]) != 0)
273 i++;
274 return i;
275 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200276}
277/* I thought just fputwc(c, stdout) would work. But no... */
278static void BB_PUTCHAR(wchar_t c)
279{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100280 if (unicode_status == UNICODE_ON) {
281 char buf[MB_CUR_MAX + 1];
282 mbstate_t mbst = { 0 };
283 ssize_t len = wcrtomb(buf, c, &mbst);
284 if (len > 0) {
285 buf[len] = '\0';
286 fputs(buf, stdout);
287 }
288 } else {
289 /* In this case, c is always one byte */
290 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200291 }
292}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200293# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
294static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
295# else
296static wchar_t adjust_width_and_validate_wc(wchar_t wc)
297# define adjust_width_and_validate_wc(width_adj, wc) \
298 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
299# endif
300{
301 int w = 1;
302
303 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200304 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
305 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200306 goto subst;
307 }
308 w = wcwidth(wc);
309 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
310 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
311 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
312 ) {
313 subst:
314 w = 1;
315 wc = CONFIG_SUBST_WCHAR;
316 }
317 }
318
319# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
320 *width_adj += w;
321#endif
322 return wc;
323}
324#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200325static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200326{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200327 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200328 return strlen(command_ps);
329}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200330# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200331static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200332{
333 safe_strncpy(dst, command_ps, maxsize);
334}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200335# endif
336# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200337/* Should never be called: */
338int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200339#endif
340
341
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000342/* Put 'command_ps[cursor]', cursor++.
343 * Advance cursor on screen. If we reached right margin, scroll text up
344 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000345#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200346static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000347{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200348 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200349 unsigned width = 0;
350 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000351
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200352 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000353 /* erase character after end of input string */
354 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200355 } else {
356 /* advance cursor only if we aren't at the end yet */
357 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200358 if (unicode_status == UNICODE_ON) {
359 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
360 c = adjust_width_and_validate_wc(&cmdedit_x, c);
361 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
362 } else {
363 cmdedit_x++;
364 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000365 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200366
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200367 ofs_to_right = cmdedit_x - cmdedit_termw;
368 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
369 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200370 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000371 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200372
373 if (ofs_to_right >= 0) {
374 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000375#if HACK_FOR_WRONG_WIDTH
376 /* This works better if our idea of term width is wrong
377 * and it is actually wider (often happens on serial lines).
378 * Printing CR,LF *forces* cursor to next line.
379 * OTOH if terminal width is correct AND terminal does NOT
380 * have automargin (IOW: it is moving cursor to next line
381 * by itself (which is wrong for VT-10x terminals)),
382 * this will break things: there will be one extra empty line */
383 puts("\r"); /* + implicit '\n' */
384#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200385 /* VT-10x terminals don't wrap cursor to next line when last char
386 * on the line is printed - cursor stays "over" this char.
387 * Need to print _next_ char too (first one to appear on next line)
388 * to make cursor move down to next line.
389 */
390 /* Works ok only if cmdedit_termw is correct. */
391 c = command_ps[cursor];
392 if (c == BB_NUL)
393 c = ' ';
394 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000395 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000396#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200397 cmdedit_y++;
398 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
399 width = 0;
400 } else { /* ofs_to_right > 0 */
401 /* wide char c didn't fit on prev line */
402 BB_PUTCHAR(c);
403 }
404 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000405 }
Erik Andersen13456d12000-03-16 08:09:57 +0000406}
407
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000408/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200409static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000410{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000411 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200412 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000413}
414
415/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000416static void goto_new_line(void)
417{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200418 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200419 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000420 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000421}
422
Rob Landley88621d72006-08-29 19:41:06 +0000423static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000424{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000425 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000426}
427
Denys Vlasenko248c3242010-05-17 00:45:44 +0200428static void put_prompt(void)
429{
430 unsigned w;
431
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200432 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200433 fflush_all();
434 cursor = 0;
435 w = cmdedit_termw; /* read volatile var once */
436 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
437 cmdedit_x = cmdedit_prmt_len % w;
438}
439
Eric Andersenaff114c2004-04-14 17:51:38 +0000440/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000441/* (optimized for slow terminals) */
442static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000443{
444 if (num > cursor)
445 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200446 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000447 return;
448 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000449
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200450 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
451 && unicode_status == UNICODE_ON
452 ) {
453 /* correct NUM to be equal to _screen_ width */
454 int n = num;
455 num = 0;
456 while (--n >= 0)
457 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
458 if (num == 0)
459 return;
460 }
461
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000462 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000463 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000464 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000465 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000466 * Also gets miscompiled for ARM users
467 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000468 * printf(("\b\b\b\b" + 4) - num);
469 * return;
470 */
471 do {
472 bb_putchar('\b');
473 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000474 return;
475 }
Marek Polacek7b181072010-10-28 21:34:56 +0200476 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000477 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000478 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000479
480 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200481 if (ENABLE_UNICODE_WIDE_WCHARS) {
482 /* With wide chars, it is hard to "backtrack"
483 * and reliably figure out where to put cursor.
484 * Example (<> is a wide char; # is an ordinary char, _ cursor):
485 * |prompt: <><> |
486 * |<><><><><><> |
487 * |_ |
488 * and user presses left arrow. num = 1, cmdedit_x = 0,
489 * We need to go up one line, and then - how do we know that
490 * we need to go *10* positions to the right? Because
491 * |prompt: <>#<>|
492 * |<><><>#<><><>|
493 * |_ |
494 * in this situation we need to go *11* positions to the right.
495 *
496 * A simpler thing to do is to redraw everything from the start
497 * up to new cursor position (which is already known):
498 */
499 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200500 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200501 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200502 cmdedit_y = 0;
503 sv_cursor = cursor;
504 put_prompt(); /* sets cursor to 0 */
505 while (cursor < sv_cursor)
506 put_cur_glyph_and_inc_cursor();
507 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200508 int lines_up;
509 unsigned width;
510 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200511 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200512 width = cmdedit_termw; /* read volatile var once */
513 /* num=1...w: one line up, w+1...2w: two, etc: */
514 lines_up = 1 + (num - 1) / width;
515 cmdedit_x = (width * cmdedit_y - num) % width;
516 cmdedit_y -= lines_up;
517 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200518 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200519 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200520 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
521 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200522 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200523 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000524 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000525}
526
Eric Andersenaff114c2004-04-14 17:51:38 +0000527/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000528static void redraw(int y, int back_cursor)
529{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200530 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200531 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000532 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000533 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200534 put_till_end_and_adv_cursor();
535 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000536 input_backward(back_cursor);
537}
538
Paul Fox3f11b1b2005-08-04 19:04:46 +0000539/* Delete the char in front of the cursor, optionally saving it
540 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000541#if !ENABLE_FEATURE_EDITING_VI
542static void input_delete(void)
543#define input_delete(save) input_delete()
544#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000545static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000546#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000547{
Mark Whitley4e338752001-01-26 20:42:23 +0000548 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000549
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000550 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000551 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000552
Denis Vlasenko38f63192007-01-22 09:03:07 +0000553#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000554 if (save) {
555 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000556 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000557 newdelflag = 0;
558 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000559 if ((delptr - delbuf) < DELBUFSIZ)
560 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000561 }
562#endif
563
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200564 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200565 /* (command_len + 1 [because of NUL]) - (j + 1)
566 * simplified into (command_len - j) */
567 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000568 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200569 put_till_end_and_adv_cursor();
570 /* Last char is still visible, erase it (and more) */
571 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000572 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000573}
574
Denis Vlasenko38f63192007-01-22 09:03:07 +0000575#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000576static void put(void)
577{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000578 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000579 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000580
Paul Fox3f11b1b2005-08-04 19:04:46 +0000581 if (j == 0)
582 return;
583 ocursor = cursor;
584 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200585 memmove(command_ps + cursor + j, command_ps + cursor,
586 (command_len - cursor + 1) * sizeof(command_ps[0]));
587 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000588 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200589 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000590 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000591}
592#endif
593
Mark Whitley4e338752001-01-26 20:42:23 +0000594/* Delete the char in back of the cursor */
595static void input_backspace(void)
596{
597 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000598 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000599 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000600 }
601}
602
Eric Andersenaff114c2004-04-14 17:51:38 +0000603/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000604static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000605{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000606 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200607 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000608}
609
Denis Vlasenko38f63192007-01-22 09:03:07 +0000610#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000611
Mike Shalf3763032010-11-22 03:49:18 +0100612//FIXME:
613//needs to be more clever: currently it thinks that "foo\ b<TAB>
614//matches the file named "foo bar", which is untrue.
615//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
616//not "foo bar <cursor>...
617
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000618static void free_tab_completion_data(void)
619{
620 if (matches) {
621 while (num_matches)
622 free(matches[--num_matches]);
623 free(matches);
624 matches = NULL;
625 }
626}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000627
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000628static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000629{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000630 matches = xrealloc_vector(matches, 4, num_matches);
631 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000632 num_matches++;
633}
634
Mike Shalf3763032010-11-22 03:49:18 +0100635# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200636/* Replace "~user/..." with "/homedir/...".
637 * The parameter is malloced, free it or return it
638 * unchanged if no user is matched.
639 */
640static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000641{
642 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200643 char *tilde_name = ud;
644 char *home = NULL;
645
646 ud++; /* skip ~ */
647 if (*ud == '/') { /* "~/..." */
648 home = home_pwd_buf;
649 } else {
650 /* "~user/..." */
651 ud = strchr(ud, '/');
652 *ud = '\0'; /* "~user" */
653 entry = getpwnam(tilde_name + 1);
654 *ud = '/'; /* restore "~user/..." */
655 if (entry)
656 home = entry->pw_dir;
657 }
658 if (home) {
659 ud = concat_path_file(home, ud);
660 free(tilde_name);
661 tilde_name = ud;
662 }
663 return tilde_name;
664}
665
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200666/* ~use<tab> - find all users with this prefix.
667 * Return the length of the prefix used for matching.
668 */
669static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200670{
671 /* Using _r function to avoid pulling in static buffers */
672 char line_buff[256];
673 struct passwd pwd;
674 struct passwd *result;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200675 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000676
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200677 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000678 userlen = strlen(ud);
679
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200680 setpwent();
681 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
682 /* Null usernames should result in all users as possible completions. */
683 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
684 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000685 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000686 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200687 endpwent();
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200688
689 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000690}
Mike Shalf3763032010-11-22 03:49:18 +0100691# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000692
693enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000694 FIND_EXE_ONLY = 0,
695 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000696 FIND_FILE_ONLY = 2,
697};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000698
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200699static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000700{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000701 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000702 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000703 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000704 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000705
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000706 if (state->flags & WITH_PATH_LOOKUP)
707 pth = state->path_lookup;
708 else
709 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200710
711 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000712 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
713 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000714
Denis Vlasenko253ce002007-01-22 08:34:44 +0000715 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000716 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000717 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000718 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000719 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000720 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200721 tmp++;
722 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000723 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000724 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000725 }
726
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200727 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000728 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000729 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000730 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000731 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000732 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000733 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000734 *tmp++ = '\0'; /* ':' -> '\0' */
735 if (*tmp == '\0')
736 break; /* :<empty> */
737 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000738 }
Mark Whitley4e338752001-01-26 20:42:23 +0000739 return npth;
740}
741
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200742/* Complete command, directory or file name.
743 * Return the length of the prefix used for matching.
744 */
745static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000746{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000747 char *path1[1];
748 char **paths = path1;
749 int npaths;
750 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200751 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200752 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200753 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000754
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000755 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000756 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000757
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200758 pfind = strrchr(command, '/');
759 if (!pfind) {
760 if (type == FIND_EXE_ONLY)
761 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000762 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000763 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000764 /* point to 'l' in "..../last_component" */
765 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200766 /* dirbuf = ".../.../.../" */
767 dirbuf = xstrndup(command, pfind - command);
Mike Shalf3763032010-11-22 03:49:18 +0100768# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200769 if (dirbuf[0] == '~') /* ~/... or ~user/... */
770 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100771# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200772 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000773 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200774 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000775
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000776 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200777 DIR *dir;
778 struct dirent *next;
779 struct stat st;
780 char *found;
781
Mark Whitley4e338752001-01-26 20:42:23 +0000782 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000783 if (!dir)
784 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000785
786 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200787 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200788 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000789
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200790 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
791 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000792 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200793 /* match? */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200794 if (strncmp(name_found, pfind, pf_len) != 0)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200795 continue; /* no */
796
797 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000798 /* NB: stat() first so that we see is it a directory;
799 * but if that fails, use lstat() so that
800 * we still match dangling links */
801 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200802 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000803
Denys Vlasenko39263632010-09-03 14:11:08 +0200804 /* Save only name */
805 len = strlen(name_found);
806 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
807 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000808
Mark Whitley4e338752001-01-26 20:42:23 +0000809 if (S_ISDIR(st.st_mode)) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200810 /* name is a directory, add slash */
811 found[len] = '/';
812 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000813 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200814 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000815 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000816 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000817 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200818 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000819 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000820 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000821 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000822 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000823 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000824 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200825 } /* for every path */
826
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000827 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000828 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000829 free(paths);
830 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200831 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200832
833 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000834}
Erik Andersenf0657d32000-04-12 17:49:52 +0000835
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200836/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200837 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200838 * was pressed. This function looks at it, figures out what part of it
839 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200840 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200841 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200842#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200843/* Helpers: */
844/* QUOT is used on elements of int_buf[], which are bytes,
845 * not Unicode chars. Therefore it works correctly even in Unicode mode.
846 */
847#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200848static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200849{
850 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200851 if (beg == end)
852 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200853
854 while ((int_buf[beg] = int_buf[end]) != 0)
855 beg++, end++;
856
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200857 if (dbg_bmp) {
858 int i;
859 for (i = 0; int_buf[i]; i++)
860 bb_putchar((unsigned char)int_buf[i]);
861 bb_putchar('\n');
862 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200863}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200864/* Caller ensures that match_buf points to a malloced buffer
865 * big enough to hold strlen(match_buf)*2 + 2
866 */
867static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000868{
869 int i, j;
870 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200871 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000872
Denys Vlasenko76939e72010-09-03 14:09:24 +0200873 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200874
Denys Vlasenko76939e72010-09-03 14:09:24 +0200875 /* Copy in reverse order, since they overlap */
876 i = strlen(match_buf);
877 do {
878 int_buf[i] = (unsigned char)match_buf[i];
879 i--;
880 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000881
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200882 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200883 for (i = 0; int_buf[i]; i++) {
884 if (int_buf[i] == '\\') {
885 remove_chunk(int_buf, i, i + 1);
886 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000887 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200888 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200889 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200890 {
891 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200892 i = 0;
893 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200894 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200895 if (!cur)
896 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200897 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200898 if (!in_quote || (cur == in_quote)) {
899 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200900 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200901 continue;
902 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000903 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200904 if (in_quote)
905 int_buf[i] = cur | QUOT;
906 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200907 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000908 }
909
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200910 /* Remove everything up to command delimiters:
911 * ';' ';;' '&' '|' '&&' '||',
912 * but careful with '>&' '<&' '>|'
913 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000914 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200915 int cur = int_buf[i];
916 if (cur == ';' || cur == '&' || cur == '|') {
917 int prev = i ? int_buf[i - 1] : 0;
918 if (cur == '&' && (prev == '>' || prev == '<')) {
919 continue;
920 } else if (cur == '|' && prev == '>') {
921 continue;
922 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200923 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200924 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000925 }
926 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200927 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200928 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000929 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200930 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000931 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200932 /* `cmd` should count as a word:
933 * `cmd` c<tab> should search for files c*,
934 * not commands c*. Therefore we don't drop
935 * `cmd` entirely, we replace it with single `.
936 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200937 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200938 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000939 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200940 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200941 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200942 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200943 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200944 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000945 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200946 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000947
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200948 /* Remove "cmd (" and "cmd {"
949 * Example: "if { c<tab>"
950 * In this example, c should be matched as command pfx.
951 */
952 for (i = 0; int_buf[i]; i++) {
953 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200954 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +0200955 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000956 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200957 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000958
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200959 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000960 for (i = 0; int_buf[i]; i++)
961 if (int_buf[i] != ' ')
962 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200963 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000964
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200965 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000966 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200967 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000968 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200969 if (int_buf[i] == ' '
970 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200971 && (char)int_buf[0] == 'c'
972 && (char)int_buf[1] == 'd'
973 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000974 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000975 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000976 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000977 command_mode = FIND_FILE_ONLY;
978 break;
979 }
980 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200981 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200982 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200983
984 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200985 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
986 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000987 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200988 int cur = int_buf[i];
989 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200990 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000991 break;
992 }
993 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000994
Denys Vlasenko76939e72010-09-03 14:09:24 +0200995 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200996 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200997 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200998 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200999
Denys Vlasenko76939e72010-09-03 14:09:24 +02001000 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001001
1002 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001003}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001004
Glenn L McGrath4d001292003-01-06 01:11:50 +00001005/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001006 * Display by column (original idea from ls applet,
1007 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001008 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001009static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001010{
1011 int ncols, row;
1012 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001013 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001014 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001015 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001016
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001017 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001018 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001019 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001020 if (column_width < l)
1021 column_width = l;
1022 }
1023 column_width += 2; /* min space for columns */
1024 ncols = cmdedit_termw / column_width;
1025
1026 if (ncols > 1) {
1027 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001028 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001029 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001030 } else {
1031 ncols = 1;
1032 }
1033 for (row = 0; row < nrows; row++) {
1034 int n = row;
1035 int nc;
1036
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001037 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001038 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001039 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001040 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001041 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001042 if (ENABLE_UNICODE_SUPPORT)
1043 puts(printable_string(NULL, matches[n]));
1044 else
1045 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001046 }
1047}
1048
Mike Shalf3763032010-11-22 03:49:18 +01001049static const char *is_special_char(char c)
1050{
1051 return strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", c);
1052}
1053
1054static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001055{
1056 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001057 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001058
1059 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001060 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001061 s[l++] = '\\';
1062 s[l++] = *found++;
1063 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001064 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001065 return s;
1066}
1067
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001068/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001069static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001070{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001071 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001072 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001073 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001074 /* Length of string used for matching */
1075 unsigned match_pfx_len = match_pfx_len;
1076 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001077# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001078 /* cursor pos in command converted to multibyte form */
1079 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001080# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001081 if (!(state->flags & TAB_COMPLETION))
1082 return;
1083
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001084 if (*lastWasTab) {
1085 /* The last char was a TAB too.
1086 * Print a list of all the available choices.
1087 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001088 if (num_matches > 0) {
1089 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001090 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001091 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001092 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001093 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001094 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001095 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001096 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001097
1098 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001099 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001100
Denys Vlasenko76939e72010-09-03 14:09:24 +02001101 /* Make a local copy of the string up to the position of the cursor.
1102 * build_match_prefix will expand it into int16_t's, need to allocate
1103 * twice as much as the string_len+1.
1104 * (we then also (ab)use this extra space later - see (**))
1105 */
1106 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001107# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001108 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001109# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001110 {
1111 CHAR_T wc = command_ps[cursor];
1112 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001113 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001114 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001115 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001116 }
Mike Shalf3763032010-11-22 03:49:18 +01001117# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001118 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001119
1120 /* Free up any memory already allocated */
1121 free_tab_completion_data();
1122
Mike Shalf3763032010-11-22 03:49:18 +01001123# if ENABLE_FEATURE_USERNAME_COMPLETION
1124 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001125 * then try completing this word as a username. */
1126 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001127 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1128 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001129# endif
1130 /* If complete_username() did not match,
1131 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001132 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001133 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001134
1135 /* Account for backslashes which will be inserted
1136 * by quote_special_chars() later */
1137 {
1138 const char *e = match_buf + strlen(match_buf);
1139 const char *s = e - match_pfx_len;
1140 while (s < e)
1141 if (is_special_char(*s++))
1142 match_pfx_len++;
1143 }
1144
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001145 /* Remove duplicates */
1146 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001147 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001148 qsort_string_vector(matches, num_matches);
1149 for (i = 0; i < num_matches - 1; ++i) {
1150 //if (matches[i] && matches[i+1]) { /* paranoia */
1151 if (strcmp(matches[i], matches[i+1]) == 0) {
1152 free(matches[i]);
1153 //matches[i] = NULL; /* paranoia */
1154 } else {
1155 matches[n++] = matches[i];
1156 }
1157 //}
1158 }
1159 matches[n++] = matches[i];
1160 num_matches = n;
1161 }
Mike Shalf3763032010-11-22 03:49:18 +01001162
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001163 /* Did we find exactly one match? */
1164 if (num_matches != 1) { /* no */
1165 char *cp;
1166 beep();
1167 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001168 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001169 /* Find common prefix */
1170 chosen_match = xstrdup(matches[0]);
1171 for (cp = chosen_match; *cp; cp++) {
1172 unsigned n;
1173 for (n = 1; n < num_matches; n++) {
1174 if (matches[n][cp - chosen_match] != *cp) {
1175 goto stop;
1176 }
1177 }
1178 }
1179 stop:
1180 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001181 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001182 }
1183 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001184 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001185 free(chosen_match);
1186 chosen_match = cp;
1187 len_found = strlen(chosen_match);
1188 } else { /* exactly one match */
1189 /* Next <tab> is not a double-tab */
1190 *lastWasTab = 0;
1191
Mike Shalf3763032010-11-22 03:49:18 +01001192 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001193 len_found = strlen(chosen_match);
1194 if (chosen_match[len_found-1] != '/') {
1195 chosen_match[len_found] = ' ';
1196 chosen_match[++len_found] = '\0';
1197 }
1198 }
1199
Mike Shalf3763032010-11-22 03:49:18 +01001200# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001201 /* Have space to place the match? */
1202 /* The result consists of three parts with these lengths: */
1203 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1204 /* it simplifies into: */
1205 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1206 int pos;
1207 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001208 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001209 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001210 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001211 command_len = strlen(command_ps);
1212 /* new pos */
1213 pos = cursor + len_found - match_pfx_len;
1214 /* write out the matched command */
1215 redraw(cmdedit_y, command_len - pos);
1216 }
Mike Shalf3763032010-11-22 03:49:18 +01001217# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001218 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001219 /* Use 2nd half of match_buf as scratch space - see (**) */
1220 char *command = match_buf + MAX_LINELEN;
1221 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001222 /* Have space to place the match? */
1223 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1224 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1225 int pos;
1226 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001227 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001228 /* where do we want to have cursor after all? */
1229 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001230 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001231 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001232 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001233 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001234 /* write out the matched command */
1235 /* paranoia: load_string can return 0 on conv error,
1236 * prevent passing pos = (0 - 12) to redraw */
1237 pos = command_len - len;
1238 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1239 }
1240 }
Mike Shalf3763032010-11-22 03:49:18 +01001241# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001242 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001243 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001244 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001245}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001246
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001247#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001248
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001249
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001250line_input_t* FAST_FUNC new_line_input_t(int flags)
1251{
1252 line_input_t *n = xzalloc(sizeof(*n));
1253 n->flags = flags;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001254 n->max_history = MAX_HISTORY;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001255 return n;
1256}
1257
1258
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001259#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001260
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001261unsigned size_from_HISTFILESIZE(const char *hp)
1262{
1263 int size = MAX_HISTORY;
1264 if (hp) {
1265 size = atoi(hp);
1266 if (size <= 0)
1267 return 1;
1268 if (size > MAX_HISTORY)
1269 return MAX_HISTORY;
1270 }
1271 return size;
1272}
1273
Denis Vlasenko682ad302008-09-27 01:28:56 +00001274static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001275{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001276 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001277 int cur = state->cur_history;
1278 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001279
Denys Vlasenko19158a82010-03-26 14:06:56 +01001280# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001281 {
1282 char tbuf[MAX_LINELEN];
1283 save_string(tbuf, sizeof(tbuf));
1284 state->history[cur] = xstrdup(tbuf);
1285 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001286# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001287 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001288# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001289 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001290}
1291
1292/* state->flags is already checked to be nonzero */
1293static int get_previous_history(void)
1294{
1295 if ((state->flags & DO_HISTORY) && state->cur_history) {
1296 save_command_ps_at_cur_history();
1297 state->cur_history--;
1298 return 1;
1299 }
1300 beep();
1301 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001302}
1303
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001304static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001305{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001306 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001307 if (state->cur_history < state->cnt_history) {
1308 save_command_ps_at_cur_history(); /* save the current history line */
1309 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001310 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001311 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001312 beep();
1313 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001314}
Robert Griebl350d26b2002-12-03 22:45:46 +00001315
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001316# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001317/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001318 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001319 * Otherwise shell users get unhappy.
1320 *
1321 * History file is trimmed lazily, when it grows several times longer
1322 * than configured MAX_HISTORY lines.
1323 */
1324
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001325static void free_line_input_t(line_input_t *n)
1326{
1327 int i = n->cnt_history;
1328 while (i > 0)
1329 free(n->history[--i]);
1330 free(n);
1331}
1332
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001333/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001334static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001335{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001336 char *temp_h[MAX_HISTORY];
1337 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001338 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001339 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001340
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001341 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001342
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001343 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001344 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001345 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001346 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001347 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001348 free(st_parm->history[idx]);
1349 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001350 }
1351
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001352 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1353 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001354 idx = 0;
1355 if (!ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1356 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;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001364 if (!ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1365 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001366 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001367 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001368 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001369 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001370 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001371
1372 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001373 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001374 while (temp_h[idx] == NULL) {
1375 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001376 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001377 idx = 0;
1378 }
1379 }
1380
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001381 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001382 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001383 line = temp_h[idx];
1384 if (!line)
1385 break;
1386 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001387 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001388 idx = 0;
1389 line_len = strlen(line);
1390 if (line_len >= MAX_LINELEN)
1391 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001392 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001393 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001394 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001395 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1396 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001397 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001398}
1399
Denys Vlasenkobede2152011-09-04 16:12:33 +02001400# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1401void save_history(line_input_t *st)
1402{
1403 FILE *fp;
1404
1405 if (!(st->flags & SAVE_HISTORY))
1406 return;
1407 if (!st->hist_file)
1408 return;
1409 if (st->cnt_history <= st->cnt_history_in_file)
1410 return;
1411
1412 fp = fopen(st->hist_file, "a");
1413 if (fp) {
1414 int i, fd;
1415 char *new_name;
1416 line_input_t *st_temp;
1417
1418 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1419 fprintf(fp, "%s\n", st->history[i]);
1420 fclose(fp);
1421
1422 /* we may have concurrently written entries from others.
1423 * load them */
1424 st_temp = new_line_input_t(st->flags);
1425 st_temp->hist_file = st->hist_file;
1426 st_temp->max_history = st->max_history;
1427 load_history(st_temp);
1428
1429 /* write out temp file and replace hist_file atomically */
1430 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1431 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1432 if (fd >= 0) {
1433 fp = xfdopen_for_write(fd);
1434 for (i = 0; i < st_temp->cnt_history; i++)
1435 fprintf(fp, "%s\n", st_temp->history[i]);
1436 fclose(fp);
1437 if (rename(new_name, st->hist_file) == 0)
1438 st->cnt_history_in_file = st_temp->cnt_history;
1439 }
1440 free(new_name);
1441 free_line_input_t(st_temp);
1442 }
1443}
1444# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001445static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001446{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001447 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001448 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001449
Denys Vlasenkobede2152011-09-04 16:12:33 +02001450 if (!(state->flags & SAVE_HISTORY))
1451 return;
1452 if (!state->hist_file)
1453 return;
1454
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001455 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001456 if (fd < 0)
1457 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001458 xlseek(fd, 0, SEEK_END); /* paranoia */
1459 len = strlen(str);
1460 str[len] = '\n'; /* we (try to) do atomic write */
1461 len2 = full_write(fd, str, len + 1);
1462 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001463 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001464 if (len2 != len + 1)
1465 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001466
1467 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001468 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001469 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001470 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001471 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001472
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001473 /* we may have concurrently written entries from others.
1474 * load them */
1475 st_temp = new_line_input_t(state->flags);
1476 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001477 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001478 load_history(st_temp);
1479
1480 /* write out temp file and replace hist_file atomically */
1481 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001482 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001483 if (fd >= 0) {
1484 FILE *fp;
1485 int i;
1486
1487 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001488 for (i = 0; i < st_temp->cnt_history; i++)
1489 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001490 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001491 if (rename(new_name, state->hist_file) == 0)
1492 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001493 }
1494 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001495 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001496 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001497}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001498# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001499# else
1500# define load_history(a) ((void)0)
1501# define save_history(a) ((void)0)
1502# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001503
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001504static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001505{
1506 int i;
1507
1508 if (!(state->flags & DO_HISTORY))
1509 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001510 if (str[0] == '\0')
1511 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001512 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001513 /* Don't save dupes */
1514 if (i && strcmp(state->history[i-1], str) == 0)
1515 return;
1516
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001517 free(state->history[state->max_history]); /* redundant, paranoia */
1518 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001519
1520 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001521 /* we need to keep history[state->max_history] empty, hence >=, not > */
1522 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001523 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001524 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001525 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001526 /* i == state->max_history-1 */
Denys Vlasenkobede2152011-09-04 16:12:33 +02001527 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT && state->cnt_history_in_file)
1528 state->cnt_history_in_file--;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001529 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001530 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001531 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001532 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001533 state->cur_history = i;
1534 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001535# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1536 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001537# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001538 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001539}
1540
1541#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001542# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001543#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001544
1545
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001546#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001547/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001548 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001549 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001550static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001551vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001552{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001553 CHAR_T *command = command_ps;
1554
1555 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001556 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001557 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001558 input_forward();
1559}
1560
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001561static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001562vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001563{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001564 CHAR_T *command = command_ps;
1565
1566 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001567 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001568 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1569 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001570 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001571 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001572 } else if (BB_ispunct(command[cursor])) {
1573 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001574 input_forward();
1575 }
1576
Denis Vlasenko253ce002007-01-22 08:34:44 +00001577 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001578 input_forward();
1579
Denys Vlasenko13028922009-07-12 00:51:15 +02001580 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001581 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001582 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001583 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001584}
1585
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001586static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001587vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001588{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001589 CHAR_T *command = command_ps;
1590
Paul Fox3f11b1b2005-08-04 19:04:46 +00001591 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001592 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001593 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001594 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001595 input_forward();
1596}
1597
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001598static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001599vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001600{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001601 CHAR_T *command = command_ps;
1602
Denis Vlasenko253ce002007-01-22 08:34:44 +00001603 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001604 return;
1605 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001606 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001607 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001608 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001609 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001610 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001611 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001612 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001613 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001614 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001615 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001616 } else if (BB_ispunct(command[cursor])) {
1617 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001618 input_forward();
1619 }
1620}
1621
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001622static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001623vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001624{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001625 CHAR_T *command = command_ps;
1626
1627 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001628 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001629 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001630 input_backward(1);
1631}
1632
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001633static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001634vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001635{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001636 CHAR_T *command = command_ps;
1637
Paul Fox3f11b1b2005-08-04 19:04:46 +00001638 if (cursor <= 0)
1639 return;
1640 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001641 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001642 input_backward(1);
1643 if (cursor <= 0)
1644 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001645 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001646 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001647 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001648 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001649 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001650 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001651 } else if (BB_ispunct(command[cursor])) {
1652 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001653 input_backward(1);
1654 }
1655}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001656#endif
1657
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001658/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1659static void ctrl_left(void)
1660{
1661 CHAR_T *command = command_ps;
1662
1663 while (1) {
1664 CHAR_T c;
1665
1666 input_backward(1);
1667 if (cursor == 0)
1668 break;
1669 c = command[cursor];
1670 if (c != ' ' && !BB_ispunct(c)) {
1671 /* we reached a "word" delimited by spaces/punct.
1672 * go to its beginning */
1673 while (1) {
1674 c = command[cursor - 1];
1675 if (c == ' ' || BB_ispunct(c))
1676 break;
1677 input_backward(1);
1678 if (cursor == 0)
1679 break;
1680 }
1681 break;
1682 }
1683 }
1684}
1685static void ctrl_right(void)
1686{
1687 CHAR_T *command = command_ps;
1688
1689 while (1) {
1690 CHAR_T c;
1691
1692 c = command[cursor];
1693 if (c == BB_NUL)
1694 break;
1695 if (c != ' ' && !BB_ispunct(c)) {
1696 /* we reached a "word" delimited by spaces/punct.
1697 * go to its end + 1 */
1698 while (1) {
1699 input_forward();
1700 c = command[cursor];
1701 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1702 break;
1703 }
1704 break;
1705 }
1706 input_forward();
1707 }
1708}
1709
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001710
1711/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001712 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001713 */
1714
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001715#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1716static void ask_terminal(void)
1717{
1718 /* Ask terminal where is the cursor now.
1719 * lineedit_read_key handles response and corrects
1720 * our idea of current cursor position.
1721 * Testcase: run "echo -n long_line_long_line_long_line",
1722 * then type in a long, wrapping command and try to
1723 * delete it using backspace key.
1724 * Note: we print it _after_ prompt, because
1725 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1726 */
1727 /* Problem: if there is buffered input on stdin,
1728 * the response will be delivered later,
1729 * possibly to an unsuspecting application.
1730 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1731 * Result:
1732 * ~/srcdevel/bbox/fix/busybox.t4 #
1733 * ~/srcdevel/bbox/fix/busybox.t4 #
1734 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1735 * ~/srcdevel/bbox/fix/busybox.t4 #
1736 *
1737 * Checking for input with poll only makes the race narrower,
1738 * I still can trigger it. Strace:
1739 *
1740 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1741 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1742 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001743 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001744 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1745 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001746 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001747
Denys Vlasenko451add42010-07-25 00:06:41 +02001748 pfd.fd = STDIN_FILENO;
1749 pfd.events = POLLIN;
1750 if (safe_poll(&pfd, 1, 0) == 0) {
1751 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001752 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001753 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001754 }
1755}
1756#else
1757#define ask_terminal() ((void)0)
1758#endif
1759
Denis Vlasenko38f63192007-01-22 09:03:07 +00001760#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001761static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001762{
1763 cmdedit_prompt = prmt_ptr;
1764 cmdedit_prmt_len = strlen(prmt_ptr);
1765 put_prompt();
1766}
1767#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001768static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001769{
1770 int prmt_len = 0;
1771 size_t cur_prmt_len = 0;
1772 char flg_not_length = '[';
1773 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001774 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1775 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001776 char c;
1777 char *pbuf;
1778
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001779 cmdedit_prmt_len = 0;
1780
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001781 if (!cwd_buf) {
1782 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001783 }
1784
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001785 cbuf[1] = '\0'; /* never changes */
1786
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001787 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001788 char *free_me = NULL;
1789
1790 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001791 c = *prmt_ptr++;
1792 if (c == '\\') {
1793 const char *cp = prmt_ptr;
1794 int l;
1795
1796 c = bb_process_escape_sequence(&prmt_ptr);
1797 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001798 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001799 break;
1800 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001801
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001802 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001803# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001804 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001805 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001806 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001807# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001808 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001809 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001810 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001811 break;
1812 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001813 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001814 break;
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001815# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001816 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001817 /* /home/user[/something] -> ~[/something] */
1818 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001819 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001820 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001821 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1822 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1823 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001824 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001825 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001826 }
1827 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001828# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001829 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001830 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001831 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001832 if (cp != NULL && cp != pbuf)
1833 pbuf += (cp-pbuf) + 1;
1834 break;
1835 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001836 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001837 break;
1838 case 'e': case 'E': /* \e \E = \033 */
1839 c = '\033';
1840 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001841 case 'x': case 'X': {
1842 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001843 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001844 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001845 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001846 buf2[l] = '\0';
1847 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001848 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001849 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001850 break;
1851 }
1852 prmt_ptr++;
1853 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001854 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001855 if (c == 0)
1856 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001857 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001858 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001859 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001860 case '[': case ']':
1861 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001862 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001863 continue;
1864 }
1865 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001866 } /* switch */
1867 } /* if */
1868 } /* if */
1869 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001870 cur_prmt_len = strlen(pbuf);
1871 prmt_len += cur_prmt_len;
1872 if (flg_not_length != ']')
1873 cmdedit_prmt_len += cur_prmt_len;
1874 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001875 free(free_me);
1876 } /* while */
1877
1878 if (cwd_buf != (char *)bb_msg_unknown)
1879 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001880 cmdedit_prompt = prmt_mem_ptr;
1881 put_prompt();
1882}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001883#endif
1884
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001885static void cmdedit_setwidth(unsigned w, int redraw_flg)
1886{
1887 cmdedit_termw = w;
1888 if (redraw_flg) {
1889 /* new y for current cursor */
1890 int new_y = (cursor + cmdedit_prmt_len) / w;
1891 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001892 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001893 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001894 }
1895}
1896
1897static void win_changed(int nsig)
1898{
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001899 int sv_errno = errno;
Denis Vlasenko55995022008-05-18 22:28:26 +00001900 unsigned width;
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001901
Denys Vlasenko451add42010-07-25 00:06:41 +02001902 get_terminal_width_height(0, &width, NULL);
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001903//FIXME: cmdedit_setwidth() -> redraw() -> printf() -> KABOOM! (we are in signal handler!)
1904 cmdedit_setwidth(width, /*redraw_flg:*/ nsig);
1905
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001906 errno = sv_errno;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001907}
1908
Denys Vlasenko66c5b122011-02-08 05:07:02 +01001909static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001910{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001911 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001912#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001913 char unicode_buf[MB_CUR_MAX + 1];
1914 int unicode_idx = 0;
1915#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001916
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001917 while (1) {
1918 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1919 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1920 * insist on full MB_CUR_MAX buffer to declare input like
1921 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1922 *
1923 * Note: read_key sets errno to 0 on success.
1924 */
1925 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1926 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001927#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001928 if (errno == EAGAIN && unicode_idx != 0)
1929 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001930#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001931 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001932 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001933
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001934#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1935 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001936 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001937 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001938 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001939 if (cursor == 0) { /* otherwise it may be bogus */
1940 int col = ((ic >> 32) & 0x7fff) - 1;
1941 if (col > cmdedit_prmt_len) {
1942 cmdedit_x += (col - cmdedit_prmt_len);
1943 while (cmdedit_x >= cmdedit_termw) {
1944 cmdedit_x -= cmdedit_termw;
1945 cmdedit_y++;
1946 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001947 }
1948 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001949 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001950 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001951#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001952
Denys Vlasenko19158a82010-03-26 14:06:56 +01001953#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001954 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001955 wchar_t wc;
1956
1957 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001958 break;
1959 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001960
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001961 unicode_buf[unicode_idx++] = ic;
1962 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001963 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1964 /* Not (yet?) a valid unicode char */
1965 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001966 timeout = 50;
1967 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001968 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001969 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001970 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001971 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001972# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001973 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001974# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001975 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001976# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001977 } else {
1978 /* Valid unicode char, return its code */
1979 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001980 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001981 }
1982#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001983 break;
1984 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001985
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001986 return ic;
1987}
1988
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001989#if ENABLE_UNICODE_BIDI_SUPPORT
1990static int isrtl_str(void)
1991{
1992 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001993
1994 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001995 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001996 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001997}
1998#else
1999# define isrtl_str() 0
2000#endif
2001
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002002/* leave out the "vi-mode"-only case labels if vi editing isn't
2003 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002004#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002005
2006/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002007#undef CTRL
2008#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002009
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002010enum {
2011 VI_CMDMODE_BIT = 0x40000000,
2012 /* 0x80000000 bit flags KEYCODE_xxx */
2013};
2014
2015#if ENABLE_FEATURE_REVERSE_SEARCH
2016/* Mimic readline Ctrl-R reverse history search.
2017 * When invoked, it shows the following prompt:
2018 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2019 * and typing results in search being performed:
2020 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2021 * Search is performed by looking at progressively older lines in history.
2022 * Ctrl-R again searches for the next match in history.
2023 * Backspace deletes last matched char.
2024 * Control keys exit search and return to normal editing (at current history line).
2025 */
2026static int32_t reverse_i_search(void)
2027{
2028 char match_buf[128]; /* for user input */
2029 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2030 const char *matched_history_line;
2031 const char *saved_prompt;
2032 int32_t ic;
2033
2034 matched_history_line = NULL;
2035 read_key_buffer[0] = 0;
2036 match_buf[0] = '\0';
2037
2038 /* Save and replace the prompt */
2039 saved_prompt = cmdedit_prompt;
2040 goto set_prompt;
2041
2042 while (1) {
2043 int h;
2044 unsigned match_buf_len = strlen(match_buf);
2045
2046 fflush_all();
2047//FIXME: correct timeout?
2048 ic = lineedit_read_key(read_key_buffer, -1);
2049
2050 switch (ic) {
2051 case CTRL('R'): /* searching for the next match */
2052 break;
2053
2054 case '\b':
2055 case '\x7f':
2056 /* Backspace */
2057 if (unicode_status == UNICODE_ON) {
2058 while (match_buf_len != 0) {
2059 uint8_t c = match_buf[--match_buf_len];
2060 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2061 break; /* yes */
2062 }
2063 } else {
2064 if (match_buf_len != 0)
2065 match_buf_len--;
2066 }
2067 match_buf[match_buf_len] = '\0';
2068 break;
2069
2070 default:
2071 if (ic < ' '
2072 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2073 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2074 ) {
2075 goto ret;
2076 }
2077
2078 /* Append this char */
2079#if ENABLE_UNICODE_SUPPORT
2080 if (unicode_status == UNICODE_ON) {
2081 mbstate_t mbstate = { 0 };
2082 char buf[MB_CUR_MAX + 1];
2083 int len = wcrtomb(buf, ic, &mbstate);
2084 if (len > 0) {
2085 buf[len] = '\0';
2086 if (match_buf_len + len < sizeof(match_buf))
2087 strcpy(match_buf + match_buf_len, buf);
2088 }
2089 } else
2090#endif
2091 if (match_buf_len < sizeof(match_buf) - 1) {
2092 match_buf[match_buf_len] = ic;
2093 match_buf[match_buf_len + 1] = '\0';
2094 }
2095 break;
2096 } /* switch (ic) */
2097
2098 /* Search in history for match_buf */
2099 h = state->cur_history;
2100 if (ic == CTRL('R'))
2101 h--;
2102 while (h >= 0) {
2103 if (state->history[h]) {
2104 char *match = strstr(state->history[h], match_buf);
2105 if (match) {
2106 state->cur_history = h;
2107 matched_history_line = state->history[h];
2108 command_len = load_string(matched_history_line);
2109 cursor = match - matched_history_line;
2110//FIXME: cursor position for Unicode case
2111
2112 free((char*)cmdedit_prompt);
2113 set_prompt:
2114 cmdedit_prompt = xasprintf("(reverse-i-search)'%s': ", match_buf);
2115 cmdedit_prmt_len = strlen(cmdedit_prompt);
2116 goto do_redraw;
2117 }
2118 }
2119 h--;
2120 }
2121
2122 /* Not found */
2123 match_buf[match_buf_len] = '\0';
2124 beep();
2125 continue;
2126
2127 do_redraw:
2128 redraw(cmdedit_y, command_len - cursor);
2129 } /* while (1) */
2130
2131 ret:
2132 if (matched_history_line)
2133 command_len = load_string(matched_history_line);
2134
2135 free((char*)cmdedit_prompt);
2136 cmdedit_prompt = saved_prompt;
2137 cmdedit_prmt_len = strlen(cmdedit_prompt);
2138 redraw(cmdedit_y, command_len - cursor);
2139
2140 return ic;
2141}
2142#endif
2143
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002144/* maxsize must be >= 2.
2145 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002146 * -1 on read errors or EOF, or on bare Ctrl-D,
2147 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002148 * >0 length of input string, including terminating '\n'
2149 */
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002150int 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 +00002151{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002152 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002153#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002154 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002155#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002156 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002157#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002158 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002159#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002160 struct termios initial_settings;
2161 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002162 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002163
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002164 INIT_S();
2165
2166 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
2167 || !(initial_settings.c_lflag & ECHO)
2168 ) {
2169 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002170 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002171 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002172 if (fgets(command, maxsize, stdin) == NULL)
2173 len = -1; /* EOF or error */
2174 else
2175 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002176 DEINIT_S();
2177 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002178 }
2179
Denys Vlasenko28055022010-01-04 20:49:58 +01002180 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002181
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002182// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002183 if (maxsize > MAX_LINELEN)
2184 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002185 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002186
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002187 /* With zero flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00002188 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002189#if MAX_HISTORY > 0
2190# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00002191 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00002192 if (state->cnt_history == 0)
2193 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002194# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002195 if (state->flags & DO_HISTORY)
2196 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002197#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002198
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002199 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002200 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002201 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002202#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002203 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2204#else
Mark Whitley4e338752001-01-26 20:42:23 +00002205 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002206 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002207#endif
2208#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002209
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002210 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00002211 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
2212 /* Turn off echoing and CTRL-C, so we can trap it */
2213 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002214 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00002215 new_settings.c_cc[VMIN] = 1;
2216 new_settings.c_cc[VTIME] = 0;
2217 /* Turn off CTRL-C, so we can trap it */
Eric Andersenc470f442003-07-28 09:56:35 +00002218 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00002219 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002220
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002221#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002222 {
2223 struct passwd *entry;
2224
2225 entry = getpwuid(geteuid());
2226 if (entry) {
2227 user_buf = xstrdup(entry->pw_name);
2228 home_pwd_buf = xstrdup(entry->pw_dir);
2229 }
2230 }
2231#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002232
2233#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002234 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002235 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002236 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2237#endif
2238
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002239 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002240 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002241 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002242
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002243 /* Install window resize handler (NB: after *all* init is complete) */
2244//FIXME: save entire sigaction!
2245 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
2246 win_changed(0); /* get initial window size */
2247
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002248 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002249 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002250 /*
2251 * The emacs and vi modes share much of the code in the big
2252 * command loop. Commands entered when in vi's command mode
2253 * (aka "escape mode") get an extra bit added to distinguish
2254 * them - this keeps them from being self-inserted. This
2255 * clutters the big switch a bit, but keeps all the code
2256 * in one place.
2257 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002258 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002259
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002260 fflush_all();
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002261 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002262
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002263#if ENABLE_FEATURE_REVERSE_SEARCH
2264 again:
2265#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002266#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002267 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002268 if (vi_cmdmode) {
2269 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2270 * change ic if it contains one of them: */
2271 ic |= VI_CMDMODE_BIT;
2272 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002273#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002274
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002275 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002276 case '\n':
2277 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002278 vi_case('\n'|VI_CMDMODE_BIT:)
2279 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002280 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002281 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002282 break_out = 1;
2283 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002284 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002285 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002286 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002287 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002288 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002289 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002290 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002291 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002292 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002293 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002294 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002295 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002296 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002297 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002298 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002299 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002300 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002301 vi_case('l'|VI_CMDMODE_BIT:)
2302 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002303 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002304 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002305 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002306 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002307 if (!isrtl_str())
2308 input_backspace();
2309 else
2310 input_delete(0);
2311 break;
2312 case KEYCODE_DELETE:
2313 if (!isrtl_str())
2314 input_delete(0);
2315 else
2316 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002317 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002318#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002319 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002320 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002321 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002322#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002323 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002324 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002325 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002326 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002327 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002328 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002329 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002330 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002331 /* Control-l -- clear screen */
Marek Polacek7b181072010-10-28 21:34:56 +02002332 printf(ESC"[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002333 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002334 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002335#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002336 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002337 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2338 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002339 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002340 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002341 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002342 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002343 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002344 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2345 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002346 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002347 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002348 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002349 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002350#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002351 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002352 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002353 /* Control-U -- Clear line before cursor */
2354 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002355 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002356 memmove(command_ps, command_ps + cursor,
2357 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002358 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002359 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002360 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002361 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002362 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002363 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002364 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002365 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002366 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002367 input_backspace();
2368 break;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002369#if ENABLE_FEATURE_REVERSE_SEARCH
2370 case CTRL('R'):
2371 ic = ic_raw = reverse_i_search();
2372 goto again;
2373#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002374
Denis Vlasenko38f63192007-01-22 09:03:07 +00002375#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002376 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002377 vi_cmdmode = 0;
2378 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002379 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002380 input_backward(cursor);
2381 vi_cmdmode = 0;
2382 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002383 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002384 input_forward();
2385 vi_cmdmode = 0;
2386 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002387 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002388 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002389 vi_cmdmode = 0;
2390 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002391 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002392 input_delete(1);
2393 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002394 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002395 if (cursor > 0) {
2396 input_backward(1);
2397 input_delete(1);
2398 }
2399 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002400 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002401 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002402 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002403 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002404 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002405 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002406 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002407 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002408 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002409 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002410 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002411 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002412 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002413 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002414 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002415 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002416 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002417 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002418 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002419 vi_cmdmode = 0;
2420 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002421 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002422 goto clear_to_eol;
2423
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002424 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002425 vi_cmdmode = 0;
2426 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002427 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002428 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002429
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002430 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002431 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002432 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002433 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002434 input_backward(cursor);
2435 goto clear_to_eol;
2436 break;
2437 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002438
2439 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002440 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002441 case 'w':
2442 case 'W':
2443 case 'e':
2444 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002445 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002446 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002447 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002448 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002449 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002450 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002451 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002452 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002453 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002454 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002455 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002456 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002457 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002458 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002459 break;
2460 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002461 nc = cursor;
2462 input_backward(cursor - sc);
2463 while (nc-- > cursor)
2464 input_delete(1);
2465 break;
2466 case 'b': /* "db", "cb" */
2467 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002468 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002469 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002470 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002471 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002472 while (sc-- > cursor)
2473 input_delete(1);
2474 break;
2475 case ' ': /* "d ", "c " */
2476 input_delete(1);
2477 break;
2478 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002479 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002480 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002481 input_delete(1);
2482 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002483 }
2484 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002485 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002486 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002487 input_forward();
2488 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002489 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002490 put();
2491 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002492 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002493//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002494 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002495 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002496 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002497 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002498 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002499 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002500 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002501 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002502 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002503 }
2504 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002505 case '\x1b': /* ESC */
2506 if (state->flags & VI_MODE) {
2507 /* insert mode --> command mode */
2508 vi_cmdmode = 1;
2509 input_backward(1);
2510 }
2511 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002512#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002513
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002514#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002515 case KEYCODE_UP:
2516 if (get_previous_history())
2517 goto rewrite_line;
2518 beep();
2519 break;
2520 case KEYCODE_DOWN:
2521 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002522 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002523 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002524 /* Rewrite the line with the selected history item */
2525 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002526 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002527 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002528 /* redraw and go to eol (bol, in vi) */
2529 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2530 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002531#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002532 case KEYCODE_RIGHT:
2533 input_forward();
2534 break;
2535 case KEYCODE_LEFT:
2536 input_backward(1);
2537 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002538 case KEYCODE_CTRL_LEFT:
2539 ctrl_left();
2540 break;
2541 case KEYCODE_CTRL_RIGHT:
2542 ctrl_right();
2543 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002544 case KEYCODE_HOME:
2545 input_backward(cursor);
2546 break;
2547 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002548 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002549 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002550
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002551 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002552 if (initial_settings.c_cc[VINTR] != 0
2553 && ic_raw == initial_settings.c_cc[VINTR]
2554 ) {
2555 /* Ctrl-C (usually) - stop gathering input */
2556 goto_new_line();
2557 command_len = 0;
2558 break_out = -1; /* "do not append '\n'" */
2559 break;
2560 }
2561 if (initial_settings.c_cc[VEOF] != 0
2562 && ic_raw == initial_settings.c_cc[VEOF]
2563 ) {
2564 /* Ctrl-D (usually) - delete one character,
2565 * or exit if len=0 and no chars to delete */
2566 if (command_len == 0) {
2567 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002568
2569 case -1: /* error (e.g. EIO when tty is destroyed) */
2570 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002571 break_out = command_len = -1;
2572 break;
2573 }
2574 input_delete(0);
2575 break;
2576 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002577// /* Control-V -- force insert of next char */
2578// if (c == CTRL('V')) {
2579// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002580// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002581// if (c == 0) {
2582// beep();
2583// break;
2584// }
2585// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002586 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002587 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2588 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002589 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002590 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002591 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002592 * Otherwise, we are here if ic is a
2593 * control char or an unhandled ESC sequence,
2594 * which is also ignored.
2595 */
2596 break;
2597 }
2598 if ((int)command_len >= (maxsize - 2)) {
2599 /* Not enough space for the char and EOL */
2600 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002601 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002602
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002603 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002604 if (cursor == (command_len - 1)) {
2605 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002606 command_ps[cursor] = ic;
2607 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002608 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002609 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002610 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002611 } else {
2612 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002613 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002614
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002615 memmove(command_ps + sc + 1, command_ps + sc,
2616 (command_len - sc) * sizeof(command_ps[0]));
2617 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002618 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2619 if (!isrtl_str())
2620 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002621 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002622 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002623 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002624 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002625 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002626 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002627
2628 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002629 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002630
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002631#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002632 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002633 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002634#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002635 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002636
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002637#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002638 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002639 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2640 * We sent "ESC [ 6 n", but got '\n' first, and
2641 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2642 * It's bad already and not much can be done with it
2643 * (it _will_ be visible for the next process to read stdin),
2644 * but without this delay it even shows up on the screen
2645 * as garbage because we restore echo settings with tcsetattr
2646 * before it comes in. UGLY!
2647 */
2648 usleep(20*1000);
2649 }
2650#endif
2651
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002652/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002653#undef command
2654
Denys Vlasenko19158a82010-03-26 14:06:56 +01002655#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002656 command[0] = '\0';
2657 if (command_len > 0)
2658 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002659 free(command_ps);
2660#endif
2661
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002662 if (command_len > 0)
2663 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002664
Eric Andersen27bb7902003-12-23 20:24:51 +00002665 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002666 command[command_len++] = '\n';
2667 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002668 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002669
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002670#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002671 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002672#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002673
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002674 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002675 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002676 /* restore SIGWINCH handler */
2677 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002678 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002679
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002680 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002681 DEINIT_S();
2682
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002683 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002684}
2685
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002686#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002687
2688#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002689int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002690{
2691 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002692 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002693 fgets(command, maxsize, stdin);
2694 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002695}
2696
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002697#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002698
2699
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002700/*
2701 * Testing
2702 */
2703
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002704#ifdef TEST
2705
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002706#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002707
2708const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002709
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002710int main(int argc, char **argv)
2711{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002712 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002713 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002714#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002715 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2716 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2717 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002718#else
2719 "% ";
2720#endif
2721
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002722 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002723 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002724 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002725 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002726 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002727 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002728 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002729 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002730 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002731 return 0;
2732}
2733
Eric Andersenc470f442003-07-28 09:56:35 +00002734#endif /* TEST */