blob: 9c6454daf7f0c7519536bda5db77f6d6b277d0ae [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/*
Eric Andersenaff114c2004-04-14 17:51:38 +00003 * Termios command line History and Editing.
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Eric Andersen81fe1232003-07-29 06:38:40 +00005 * Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license.
Eric Andersen7467c8d2001-07-12 20:26:32 +00006 * Written by: Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersen5f2c79d2001-02-16 18:36:04 +00007 *
8 * Used ideas:
9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995
Eric Andersen81fe1232003-07-29 06:38:40 +000012 * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000013 *
Erik Andersen13456d12000-03-16 08:09:57 +000014 * This code is 'as is' with no warranty.
Erik Andersen13456d12000-03-16 08:09:57 +000015 */
16
17/*
Denis Vlasenko78ff8192008-06-28 21:03:43 +000018 * Usage and known bugs:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010019 * Terminal key codes are not extensive, more needs to be added.
20 * This version was created on Debian GNU/Linux 2.x.
Denis Vlasenko78ff8192008-06-28 21:03:43 +000021 * Delete, Backspace, Home, End, and the arrow keys were tested
22 * to work in an Xterm and console. Ctrl-A also works as Home.
23 * Ctrl-E also works as End.
24 *
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010025 * The following readline-like commands are not implemented:
26 * ESC-b -- Move back one word
27 * ESC-f -- Move forward one word
28 * ESC-d -- Delete forward one word
29 * CTL-t -- Transpose two characters
30 *
Denis Vlasenko78ff8192008-06-28 21:03:43 +000031 * lineedit does not know that the terminal escape sequences do not
32 * take up space on the screen. The redisplay code assumes, unless
33 * told otherwise, that each character in the prompt is a printable
34 * character that takes up one character position on the screen.
35 * You need to tell lineedit that some sequences of characters
36 * in the prompt take up no screen space. Compatibly with readline,
37 * use the \[ escape to begin a sequence of non-printing characters,
38 * and the \] escape to signal the end of such a sequence. Example:
39 *
40 * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
Erik Andersen13456d12000-03-16 08:09:57 +000041 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000042#include "libbb.h"
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020043#include "unicode.h"
Glenn L McGrath475820c2004-01-22 12:42:23 +000044
Denis Vlasenko7f1dc212006-12-19 01:10:25 +000045/* FIXME: obsolete CONFIG item? */
46#define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
47
Glenn L McGrath3b251852004-01-03 12:07:32 +000048#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020049# define ENABLE_FEATURE_EDITING 0
50# define ENABLE_FEATURE_TAB_COMPLETION 0
51# define ENABLE_FEATURE_USERNAME_COMPLETION 0
52# define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
53#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
Denis Vlasenko7e46cf72006-12-23 01:21:55 +000060#define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000061 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000062#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000063#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000064#undef IF_FEATURE_GETUSERNAME_AND_HOMEDIR
65#define IF_FEATURE_GETUSERNAME_AND_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
70#if ENABLE_FEATURE_ASSUME_UNICODE
71# define BB_NUL L'\0'
72# 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)); }
74static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
75static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020076# undef isspace
77# undef isalnum
78# undef ispunct
79# undef isprint
80# define isspace isspace_must_not_be_used
81# define isalnum isalnum_must_not_be_used
82# define ispunct ispunct_must_not_be_used
83# define isprint isprint_must_not_be_used
84#else
85# define BB_NUL '\0'
86# define CHAR_T char
87# define BB_isspace(c) isspace(c)
88# define BB_isalnum(c) isalnum(c)
89# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020090#endif
91
92
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000093enum {
94 /* We use int16_t for positions, need to limit line len */
95 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +000096 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000097 : 0x7ff0
98};
Robert Griebl350d26b2002-12-03 22:45:46 +000099
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000100#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
101static const char null_str[] ALIGN1 = "";
102#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000103
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000104/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000105struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000106 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000107
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000108 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
109 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000110
Denys Vlasenko020f4062009-05-17 16:44:54 +0200111 unsigned cmdedit_x; /* real x (col) terminal position */
112 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000113 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000114
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000115 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200116 int command_len; /* must be signed */
117 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200118 * to _not_ be promoted to unsigned */
119 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200120 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000121
122 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000123#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000124 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000125#endif
126
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000127#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000128 char *user_buf;
129 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000130#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000131
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000132#if ENABLE_FEATURE_TAB_COMPLETION
133 char **matches;
134 unsigned num_matches;
135#endif
136
137#if ENABLE_FEATURE_EDITING_VI
138#define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200139 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000140 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200141 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000142#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100143#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100144 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100145#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000146
147 /* Formerly these were big buffers on stack: */
148#if ENABLE_FEATURE_TAB_COMPLETION
149 char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
150 char input_tab__matchBuf[MAX_LINELEN];
151 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
152 int16_t find_match__pos_buf[MAX_LINELEN + 1];
153#endif
154};
155
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000156/* See lineedit_ptr_hack.c */
157extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000158
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000159#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000160#define state (S.state )
161#define cmdedit_termw (S.cmdedit_termw )
162#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
163#define cmdedit_x (S.cmdedit_x )
164#define cmdedit_y (S.cmdedit_y )
165#define cmdedit_prmt_len (S.cmdedit_prmt_len)
166#define cursor (S.cursor )
167#define command_len (S.command_len )
168#define command_ps (S.command_ps )
169#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000170#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000171#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000172#define home_pwd_buf (S.home_pwd_buf )
173#define matches (S.matches )
174#define num_matches (S.num_matches )
175#define delptr (S.delptr )
176#define newdelflag (S.newdelflag )
177#define delbuf (S.delbuf )
178
179#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000180 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000181 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000182 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000183 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
184 IF_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000185} while (0)
186static void deinit_S(void)
187{
188#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000189 /* This one is allocated only if FANCY_PROMPT is on
190 * (otherwise it points to verbatim prompt (NOT malloced) */
191 free((char*)cmdedit_prompt);
192#endif
193#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
194 free(user_buf);
195 if (home_pwd_buf != null_str)
196 free(home_pwd_buf);
197#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000198 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000199}
200#define DEINIT_S() deinit_S()
201
Denis Vlasenko2c844952008-04-25 18:44:35 +0000202
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200203#if ENABLE_FEATURE_ASSUME_UNICODE
204static size_t load_string(const char *src, int maxsize)
205{
206 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
207 if (len < 0)
208 len = 0;
209 command_ps[len] = L'\0';
210 return len;
211}
212static size_t save_string(char *dst, int maxsize)
213{
214 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
215 if (len < 0)
216 len = 0;
217 dst[len] = '\0';
218 return len;
219}
220/* I thought just fputwc(c, stdout) would work. But no... */
221static void BB_PUTCHAR(wchar_t c)
222{
223 char buf[MB_CUR_MAX + 1];
224 mbstate_t mbst = { 0 };
225 ssize_t len = wcrtomb(buf, c, &mbst);
226
227 if (len > 0) {
228 buf[len] = '\0';
229 fputs(buf, stdout);
230 }
231}
232#else
233static size_t load_string(const char *src, int maxsize)
234{
235 safe_strncpy(command_ps, src, maxsize);
236 return strlen(command_ps);
237}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200238# if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200239static void save_string(char *dst, int maxsize)
240{
241 safe_strncpy(dst, command_ps, maxsize);
242}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200243# endif
244# define BB_PUTCHAR(c) bb_putchar(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200245#endif
246
247
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000248/* Put 'command_ps[cursor]', cursor++.
249 * Advance cursor on screen. If we reached right margin, scroll text up
250 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000251#define HACK_FOR_WRONG_WIDTH 1
252#if HACK_FOR_WRONG_WIDTH
253static void cmdedit_set_out_char(void)
254#define cmdedit_set_out_char(next_char) cmdedit_set_out_char()
255#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000256static void cmdedit_set_out_char(int next_char)
Denis Vlasenko2c844952008-04-25 18:44:35 +0000257#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000258{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200259 CHAR_T c = command_ps[cursor];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000260
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200261 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000262 /* erase character after end of input string */
263 c = ' ';
264 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000265#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000266 /* Display non-printable characters in reverse */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200267 if (!BB_isprint(c)) {
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000268 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000269 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000270 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000271 c += '@';
272 if (c == 127)
273 c = '?';
274 printf("\033[7m%c\033[0m", c);
275 } else
276#endif
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000277 {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200278 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000279 }
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000280 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000281 /* terminal is scrolled down */
282 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000283 cmdedit_x = 0;
Denis Vlasenko2c844952008-04-25 18:44:35 +0000284#if HACK_FOR_WRONG_WIDTH
285 /* This works better if our idea of term width is wrong
286 * and it is actually wider (often happens on serial lines).
287 * Printing CR,LF *forces* cursor to next line.
288 * OTOH if terminal width is correct AND terminal does NOT
289 * have automargin (IOW: it is moving cursor to next line
290 * by itself (which is wrong for VT-10x terminals)),
291 * this will break things: there will be one extra empty line */
292 puts("\r"); /* + implicit '\n' */
293#else
294 /* Works ok only if cmdedit_termw is correct */
Mark Whitley4e338752001-01-26 20:42:23 +0000295 /* destroy "(auto)margin" */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000296 bb_putchar(next_char);
297 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000298#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000299 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200300// Huh? What if command_ps[cursor] == BB_NUL (we are at the end already?)
Mark Whitley4e338752001-01-26 20:42:23 +0000301 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000302}
303
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000304/* Move to end of line (by printing all chars till the end) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000305static void input_end(void)
306{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000307 while (cursor < command_len)
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000308 cmdedit_set_out_char(' ');
Mark Whitley4e338752001-01-26 20:42:23 +0000309}
310
311/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000312static void goto_new_line(void)
313{
Mark Whitley4e338752001-01-26 20:42:23 +0000314 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000315 if (cmdedit_x)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000316 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000317}
318
319
Rob Landley88621d72006-08-29 19:41:06 +0000320static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000321{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000322 if (s)
Robert Grieblb2301592002-07-30 23:13:51 +0000323 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000324}
Eric Andersen81fe1232003-07-29 06:38:40 +0000325
Rob Landley88621d72006-08-29 19:41:06 +0000326static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000327{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000328 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000329}
330
Eric Andersenaff114c2004-04-14 17:51:38 +0000331/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000332/* (optimized for slow terminals) */
333static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000334{
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000335 int count_y;
336
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000337 if (num > cursor)
338 num = cursor;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000339 if (!num)
340 return;
341 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000342
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000343 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000344 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000345 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000346 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000347 * Also gets miscompiled for ARM users
348 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000349 * printf(("\b\b\b\b" + 4) - num);
350 * return;
351 */
352 do {
353 bb_putchar('\b');
354 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000355 return;
356 }
357 printf("\033[%uD", num);
358 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000359 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000360
361 /* Need to go one or more lines up */
362 num -= cmdedit_x;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000363 {
364 unsigned w = cmdedit_termw; /* volatile var */
365 count_y = 1 + (num / w);
366 cmdedit_y -= count_y;
367 cmdedit_x = w * count_y - num;
368 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000369 /* go to 1st column; go up; go to correct column */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000370 printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x);
Erik Andersen13456d12000-03-16 08:09:57 +0000371}
372
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000373static void put_prompt(void)
374{
375 out1str(cmdedit_prompt);
Denys Vlasenko727e1b52009-10-26 15:23:32 +0100376 fflush(NULL);
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100377#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
378 {
Denys Vlasenkoc396fe62009-05-17 19:28:14 +0200379 /* Ask terminal where is the cursor now.
380 * lineedit_read_key handles response and corrects
381 * our idea of current cursor position.
382 * Testcase: run "echo -n long_line_long_line_long_line",
383 * then type in a long, wrapping command and try to
384 * delete it using backspace key.
385 * Note: we print it _after_ prompt, because
386 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
387 */
Denys Vlasenko727e1b52009-10-26 15:23:32 +0100388 /* Problem: if there is buffered input on stdin,
389 * the response will be delivered later,
390 * possibly to an unsuspecting application.
391 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
392 * Result:
393 * ~/srcdevel/bbox/fix/busybox.t4 #
394 * ~/srcdevel/bbox/fix/busybox.t4 #
395 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
396 * ~/srcdevel/bbox/fix/busybox.t4 #
397 *
398 * Checking for input with poll only makes the race narrower,
399 * I still can trigger it. Strace:
400 *
401 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
402 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
403 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
404 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
405 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
406 */
407 struct pollfd pfd;
408
409 pfd.fd = STDIN_FILENO;
410 pfd.events = POLLIN;
411 if (safe_poll(&pfd, 1, 0) == 0) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100412 S.sent_ESC_br6n = 1;
Denys Vlasenko727e1b52009-10-26 15:23:32 +0100413 out1str("\033" "[6n");
414 fflush(NULL); /* make terminal see it ASAP! */
415 }
Denys Vlasenkoc396fe62009-05-17 19:28:14 +0200416 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100417#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000418 cursor = 0;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000419 {
420 unsigned w = cmdedit_termw; /* volatile var */
421 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
422 cmdedit_x = cmdedit_prmt_len % w;
423 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000424}
425
Eric Andersenaff114c2004-04-14 17:51:38 +0000426/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000427static void redraw(int y, int back_cursor)
428{
Denys Vlasenko044b1802009-07-12 02:50:35 +0200429 if (y > 0) /* up to start y */
430 printf("\033[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000431 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000432 put_prompt();
Denys Vlasenko044b1802009-07-12 02:50:35 +0200433 input_end(); /* rewrite */
434 printf("\033[J"); /* erase after cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000435 input_backward(back_cursor);
436}
437
Paul Fox3f11b1b2005-08-04 19:04:46 +0000438/* Delete the char in front of the cursor, optionally saving it
439 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000440#if !ENABLE_FEATURE_EDITING_VI
441static void input_delete(void)
442#define input_delete(save) input_delete()
443#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000444static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000445#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000446{
Mark Whitley4e338752001-01-26 20:42:23 +0000447 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000448
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000449 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000450 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000451
Denis Vlasenko38f63192007-01-22 09:03:07 +0000452#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000453 if (save) {
454 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000455 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000456 newdelflag = 0;
457 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000458 if ((delptr - delbuf) < DELBUFSIZ)
459 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000460 }
461#endif
462
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200463 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200464 /* (command_len + 1 [because of NUL]) - (j + 1)
465 * simplified into (command_len - j) */
466 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000467 command_len--;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000468 input_end(); /* rewrite new line */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000469 cmdedit_set_out_char(' '); /* erase char */
Eric Andersenc470f442003-07-28 09:56:35 +0000470 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000471}
472
Denis Vlasenko38f63192007-01-22 09:03:07 +0000473#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000474static void put(void)
475{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000476 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000477 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000478
Paul Fox3f11b1b2005-08-04 19:04:46 +0000479 if (j == 0)
480 return;
481 ocursor = cursor;
482 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200483 memmove(command_ps + cursor + j, command_ps + cursor,
484 (command_len - cursor + 1) * sizeof(command_ps[0]));
485 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000486 command_len += j;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000487 input_end(); /* rewrite new line */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000488 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000489}
490#endif
491
Mark Whitley4e338752001-01-26 20:42:23 +0000492/* Delete the char in back of the cursor */
493static void input_backspace(void)
494{
495 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000496 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000497 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000498 }
499}
500
Eric Andersenaff114c2004-04-14 17:51:38 +0000501/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000502static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000503{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000504 if (cursor < command_len)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000505 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000506}
507
Denis Vlasenko38f63192007-01-22 09:03:07 +0000508#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000509
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000510static void free_tab_completion_data(void)
511{
512 if (matches) {
513 while (num_matches)
514 free(matches[--num_matches]);
515 free(matches);
516 matches = NULL;
517 }
518}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000519
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000520static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000521{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000522 matches = xrealloc_vector(matches, 4, num_matches);
523 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000524 num_matches++;
525}
526
Denis Vlasenko38f63192007-01-22 09:03:07 +0000527#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000528static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000529{
530 struct passwd *entry;
531 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000532
Eric Andersenc470f442003-07-28 09:56:35 +0000533 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000534 userlen = strlen(ud);
535
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000536 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000537 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000538 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000539
Eric Andersenc470f442003-07-28 09:56:35 +0000540 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000541 home = home_pwd_buf;
542 } else {
543 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000544 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000545 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000546 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000547 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000548 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000549 ud = temp;
550 if (entry)
551 home = entry->pw_dir;
552 }
553 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000554 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000555 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000556 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000557 }
558 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000559 } else {
560 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000561 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000562 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000563 struct passwd pwd;
564 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000565
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000566 setpwent();
567 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000568 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000569 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
570 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000571 }
572 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000573 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000574 }
575}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000576#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000577
578enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000579 FIND_EXE_ONLY = 0,
580 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000581 FIND_FILE_ONLY = 2,
582};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000583
Mark Whitley4e338752001-01-26 20:42:23 +0000584static int path_parse(char ***p, int flags)
585{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000586 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000587 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000588 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000589 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000590
Mark Whitley4e338752001-01-26 20:42:23 +0000591 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000592 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000593 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000594
595 if (state->flags & WITH_PATH_LOOKUP)
596 pth = state->path_lookup;
597 else
598 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000599 /* PATH=<empty> or PATH=:<empty> */
600 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
601 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000602
Denis Vlasenko253ce002007-01-22 08:34:44 +0000603 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000604 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000605 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000606 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000607 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000608 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000609 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000610 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000611 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000612 }
613
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000614 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000615 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000616 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000617 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000618 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000619 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000620 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000621 *tmp++ = '\0'; /* ':' -> '\0' */
622 if (*tmp == '\0')
623 break; /* :<empty> */
624 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000625 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000626 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000627 return npth;
628}
629
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000630static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000631{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000632 DIR *dir;
633 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000634 struct stat st;
635 char *path1[1];
636 char **paths = path1;
637 int npaths;
638 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000639 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000640 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000641/* char dirbuf[MAX_LINELEN]; */
642#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000643
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000644 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000645 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000646
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000647 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000648 /* no dir, if flags==EXE_ONLY - get paths, else "." */
649 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000650 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000651 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000652 /* dirbuf = ".../.../.../" */
653 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000654#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000655 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000656 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000657#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000658 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000659 /* point to 'l' in "..../last_component" */
660 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000661 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000662
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000663 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000664 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000665 if (!dir)
666 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000667
668 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000669 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000670 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000671
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000672 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000673 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000674 continue;
675 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000676 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000677 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000678 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000679 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000680 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000681 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000682 /* hmm, remove in progress? */
683 /* NB: stat() first so that we see is it a directory;
684 * but if that fails, use lstat() so that
685 * we still match dangling links */
686 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000687 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000688 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000689 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000690 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000691
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000692 len1 = strlen(found);
693 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000694 found[len1] = '\0';
695 found[len1+1] = '\0';
696
Mark Whitley4e338752001-01-26 20:42:23 +0000697 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000698 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000699 if (found[len1-1] != '/') {
700 found[len1] = '/';
701 }
Mark Whitley4e338752001-01-26 20:42:23 +0000702 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000703 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000704 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000705 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000706 }
Mark Whitley4e338752001-01-26 20:42:23 +0000707 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000708 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000709 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000710 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000711 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000712 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000713 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000714 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000715 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000716 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000717 free(paths);
718 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000719#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000720}
Erik Andersenf0657d32000-04-12 17:49:52 +0000721
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200722/* QUOT is used on elements of int_buf[], which are bytes,
723 * not Unicode chars. Therefore it works correctly even in Unicode mode.
724 */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000725#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000726
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200727#define int_buf (S.find_match__int_buf)
728#define pos_buf (S.find_match__pos_buf)
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200729/* is must be <= in */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200730static void collapse_pos(int is, int in)
731{
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200732 memmove(int_buf+is, int_buf+in, (MAX_LINELEN+1-in)*sizeof(int_buf[0]));
733 memmove(pos_buf+is, pos_buf+in, (MAX_LINELEN+1-in)*sizeof(pos_buf[0]));
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200734}
Denys Vlasenko044b1802009-07-12 02:50:35 +0200735static NOINLINE int find_match(char *matchBuf, int *len_with_quotes)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000736{
737 int i, j;
738 int command_mode;
739 int c, c2;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200740/* Were local, but it uses too much stack */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000741/* int16_t int_buf[MAX_LINELEN + 1]; */
742/* int16_t pos_buf[MAX_LINELEN + 1]; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000743
744 /* set to integer dimension characters and own positions */
745 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000746 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000747 if (int_buf[i] == 0) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200748 pos_buf[i] = -1; /* end-fo-line indicator */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000749 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000750 }
751 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000752 }
753
754 /* mask \+symbol and convert '\t' to ' ' */
755 for (i = j = 0; matchBuf[i]; i++, j++)
756 if (matchBuf[i] == '\\') {
757 collapse_pos(j, j + 1);
758 int_buf[j] |= QUOT;
759 i++;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000760#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200761 if (matchBuf[i] == '\t') /* algorithm equivalent */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000762 int_buf[j] = ' ' | QUOT;
763#endif
764 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000765#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000766 else if (matchBuf[i] == '\t')
767 int_buf[j] = ' ';
768#endif
769
770 /* mask "symbols" or 'symbols' */
771 c2 = 0;
772 for (i = 0; int_buf[i]; i++) {
773 c = int_buf[i];
774 if (c == '\'' || c == '"') {
775 if (c2 == 0)
776 c2 = c;
777 else {
778 if (c == c2)
779 c2 = 0;
780 else
781 int_buf[i] |= QUOT;
782 }
783 } else if (c2 != 0 && c != '$')
784 int_buf[i] |= QUOT;
785 }
786
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000787 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000788 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
789 for (i = 0; int_buf[i]; i++) {
790 c = int_buf[i];
791 c2 = int_buf[i + 1];
792 j = i ? int_buf[i - 1] : -1;
793 command_mode = 0;
794 if (c == ';' || c == '&' || c == '|') {
795 command_mode = 1 + (c == c2);
796 if (c == '&') {
797 if (j == '>' || j == '<')
798 command_mode = 0;
799 } else if (c == '|' && j == '>')
800 command_mode = 0;
801 }
802 if (command_mode) {
803 collapse_pos(0, i + command_mode);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200804 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000805 }
806 }
807 /* collapse `command...` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200808 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000809 if (int_buf[i] == '`') {
810 for (j = i + 1; int_buf[j]; j++)
811 if (int_buf[j] == '`') {
812 collapse_pos(i, j + 1);
813 j = 0;
814 break;
815 }
816 if (j) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200817 /* not found closing ` - command mode, collapse all previous */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000818 collapse_pos(0, i + 1);
819 break;
820 } else
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200821 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000822 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200823 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000824
825 /* collapse (command...(command...)...) or {command...{command...}...} */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200826 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000827 c2 = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200828 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000829 if (int_buf[i] == '(' || int_buf[i] == '{') {
830 if (int_buf[i] == '(')
831 c++;
832 else
833 c2++;
834 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200835 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000836 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200837 }
838 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000839 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
840 if (int_buf[i] == ')')
841 c--;
842 else
843 c2--;
844 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200845 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000846 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200847 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000848
849 /* skip first not quote space */
850 for (i = 0; int_buf[i]; i++)
851 if (int_buf[i] != ' ')
852 break;
853 if (i)
854 collapse_pos(0, i);
855
856 /* set find mode for completion */
857 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200858 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000859 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
860 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000861 && matchBuf[pos_buf[0]] == 'c'
862 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000863 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000864 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000865 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000866 command_mode = FIND_FILE_ONLY;
867 break;
868 }
869 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200870 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000871 for (i = 0; int_buf[i]; i++)
872 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000873 /* find last word */
874 for (--i; i >= 0; i--) {
875 c = int_buf[i];
876 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
877 collapse_pos(0, i + 1);
878 break;
879 }
880 }
881 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000882 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
883 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000884 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000885 while ((int_buf[i] & ~QUOT) == '/'
886 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
887 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000888 i++;
889 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000890
891 /* set only match and destroy quotes */
892 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000893 for (c = 0; pos_buf[i] >= 0; i++) {
894 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000895 j = pos_buf[i] + 1;
896 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000897 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000898 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000899 *len_with_quotes = j ? j - pos_buf[0] : 0;
900
901 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200902}
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000903#undef int_buf
904#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000905
Glenn L McGrath4d001292003-01-06 01:11:50 +0000906/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000907 * display by column (original idea from ls applet,
908 * very optimized by me :)
909 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000910static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000911{
912 int ncols, row;
913 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000914 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000915 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000916 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000917
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200918 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000919 for (row = 0; row < nrows; row++) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200920 l = bb_mbstrlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000921 if (column_width < l)
922 column_width = l;
923 }
924 column_width += 2; /* min space for columns */
925 ncols = cmdedit_termw / column_width;
926
927 if (ncols > 1) {
928 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000929 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000930 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000931 } else {
932 ncols = 1;
933 }
934 for (row = 0; row < nrows; row++) {
935 int n = row;
936 int nc;
937
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000938 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000939 printf("%s%-*s", matches[n],
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200940 (int)(column_width - bb_mbstrlen(matches[n])), ""
941 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000942 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +0000943 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000944 }
945}
946
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000947static char *add_quote_for_spec_chars(char *found)
948{
949 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200950 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000951
952 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200953 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000954 s[l++] = '\\';
955 s[l++] = *found++;
956 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200957 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000958 return s;
959}
960
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000961/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000962static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000963{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000964 if (!(state->flags & TAB_COMPLETION))
965 return;
966
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000967 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000968 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000969 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000970/* char matchBuf[MAX_LINELEN]; */
971#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000972 int find_type;
973 int recalc_pos;
Denys Vlasenko044b1802009-07-12 02:50:35 +0200974#if ENABLE_FEATURE_ASSUME_UNICODE
975 /* cursor pos in command converted to multibyte form */
976 int cursor_mb;
977#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000978
Eric Andersenc470f442003-07-28 09:56:35 +0000979 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000980
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200981 /* Make a local copy of the string --
982 * up to the position of the cursor */
983 save_string(matchBuf, cursor + 1);
Denys Vlasenko044b1802009-07-12 02:50:35 +0200984#if ENABLE_FEATURE_ASSUME_UNICODE
985 cursor_mb = strlen(matchBuf);
986#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200987 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000988
989 find_type = find_match(matchBuf, &recalc_pos);
990
991 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000992 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +0000993
Denis Vlasenko38f63192007-01-22 09:03:07 +0000994#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000995 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +0000996 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000997 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +0200998 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000999 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +00001000#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001001 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001002 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001003 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001004 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001005 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001006 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001007 unsigned i;
1008 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +00001009 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001010 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001011 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001012 if (strcmp(matches[i], matches[i+1]) == 0) {
1013 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001014 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001015 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001016 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +00001017 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001018 }
Denis Vlasenko92758142006-10-03 19:56:34 +00001019 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001020 matches[n] = matches[i];
1021 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001022 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001023 /* Did we find exactly one match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001024 if (!matches || num_matches > 1) { /* no */
Mark Whitley4e338752001-01-26 20:42:23 +00001025 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001026 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +00001027 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001028 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001029 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001030 for (tmp = tmp1; *tmp; tmp++) {
1031 for (len_found = 1; len_found < num_matches; len_found++) {
1032 if (matches[len_found][tmp - tmp1] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001033 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001034 break;
1035 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001036 }
1037 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001038 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001039 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001040 return;
1041 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001042 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001043 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +00001044 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001045 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001046 /* for next completion current found */
1047 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001048
1049 len_found = strlen(tmp);
1050 if (tmp[len_found-1] != '/') {
1051 tmp[len_found] = ' ';
1052 tmp[len_found+1] = '\0';
1053 }
Mark Whitley4e338752001-01-26 20:42:23 +00001054 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001055
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001056 len_found = strlen(tmp);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001057#if !ENABLE_FEATURE_ASSUME_UNICODE
Denys Vlasenko044b1802009-07-12 02:50:35 +02001058 /* have space to place the match? */
1059 /* The result consists of three parts with these lengths: */
1060 /* (cursor - recalc_pos) + len_found + (command_len - cursor) */
1061 /* it simplifies into: */
1062 if ((int)(len_found + command_len - recalc_pos) < S.maxsize) {
1063 /* save tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001064 strcpy(matchBuf, command_ps + cursor);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001065 /* add match and tail */
1066 sprintf(&command_ps[cursor - recalc_pos], "%s%s", tmp, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001067 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001068 /* new pos */
1069 recalc_pos = cursor - recalc_pos + len_found;
1070 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001071 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001072 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001073#else
1074 {
1075 char command[MAX_LINELEN];
1076 int len = save_string(command, sizeof(command));
1077 /* have space to place the match? */
1078 /* (cursor_mb - recalc_pos) + len_found + (len - cursor_mb) */
1079 if ((int)(len_found + len - recalc_pos) < MAX_LINELEN) {
1080 /* save tail */
1081 strcpy(matchBuf, command + cursor_mb);
1082 /* where do we want to have cursor after all? */
1083 strcpy(&command[cursor_mb - recalc_pos], tmp);
1084 len = load_string(command, S.maxsize);
1085 /* add match and tail */
1086 sprintf(&command[cursor_mb - recalc_pos], "%s%s", tmp, matchBuf);
1087 command_len = load_string(command, S.maxsize);
1088 /* write out the matched command */
1089 redraw(cmdedit_y, command_len - len);
1090 }
1091 }
1092#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001093 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001094#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001095 } else {
1096 /* Ok -- the last char was a TAB. Since they
1097 * just hit TAB again, print a list of all the
1098 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001099 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001100 /* changed by goto_new_line() */
1101 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001102
1103 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001104 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001105 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001106 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001107 }
1108 }
1109}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001110
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001111#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001112
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001113
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001114line_input_t* FAST_FUNC new_line_input_t(int flags)
1115{
1116 line_input_t *n = xzalloc(sizeof(*n));
1117 n->flags = flags;
1118 return n;
1119}
1120
1121
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001122#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001123
Denis Vlasenko682ad302008-09-27 01:28:56 +00001124static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001125{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001126 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001127 int cur = state->cur_history;
1128 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001129
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001130# if ENABLE_FEATURE_ASSUME_UNICODE
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001131 {
1132 char tbuf[MAX_LINELEN];
1133 save_string(tbuf, sizeof(tbuf));
1134 state->history[cur] = xstrdup(tbuf);
1135 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001136# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001137 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001138# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001139 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001140}
1141
1142/* state->flags is already checked to be nonzero */
1143static int get_previous_history(void)
1144{
1145 if ((state->flags & DO_HISTORY) && state->cur_history) {
1146 save_command_ps_at_cur_history();
1147 state->cur_history--;
1148 return 1;
1149 }
1150 beep();
1151 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001152}
1153
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001154static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001155{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001156 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001157 if (state->cur_history < state->cnt_history) {
1158 save_command_ps_at_cur_history(); /* save the current history line */
1159 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001160 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001161 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001162 beep();
1163 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001164}
Robert Griebl350d26b2002-12-03 22:45:46 +00001165
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001166# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001167/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001168 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001169 * Otherwise shell users get unhappy.
1170 *
1171 * History file is trimmed lazily, when it grows several times longer
1172 * than configured MAX_HISTORY lines.
1173 */
1174
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001175static void free_line_input_t(line_input_t *n)
1176{
1177 int i = n->cnt_history;
1178 while (i > 0)
1179 free(n->history[--i]);
1180 free(n);
1181}
1182
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001183/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001184static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001185{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001186 char *temp_h[MAX_HISTORY];
1187 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001188 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001189 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001190
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001191 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001192
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001193 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001194 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001195 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001196 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001197 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001198 free(st_parm->history[idx]);
1199 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001200 }
1201
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001202 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1203 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001204 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001205 while ((line = xmalloc_fgetline(fp)) != NULL) {
1206 if (line[0] == '\0') {
1207 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001208 continue;
1209 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001210 free(temp_h[idx]);
1211 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001212 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001213 idx++;
1214 if (idx == MAX_HISTORY)
1215 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001216 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001217 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001218
1219 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001220 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001221 while (temp_h[idx] == NULL) {
1222 idx++;
1223 if (idx == MAX_HISTORY)
1224 idx = 0;
1225 }
1226 }
1227
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001228 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001229 for (i = 0; i < MAX_HISTORY;) {
1230 line = temp_h[idx];
1231 if (!line)
1232 break;
1233 idx++;
1234 if (idx == MAX_HISTORY)
1235 idx = 0;
1236 line_len = strlen(line);
1237 if (line_len >= MAX_LINELEN)
1238 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001239 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001240 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001241 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001242 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001243}
1244
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001245/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001246static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001247{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001248 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001249 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001250
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001251 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1252 if (fd < 0)
1253 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001254 xlseek(fd, 0, SEEK_END); /* paranoia */
1255 len = strlen(str);
1256 str[len] = '\n'; /* we (try to) do atomic write */
1257 len2 = full_write(fd, str, len + 1);
1258 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001259 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001260 if (len2 != len + 1)
1261 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001262
1263 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001264 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001265 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1266 FILE *fp;
1267 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001268 line_input_t *st_temp;
1269 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001270
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001271 /* we may have concurrently written entries from others.
1272 * load them */
1273 st_temp = new_line_input_t(state->flags);
1274 st_temp->hist_file = state->hist_file;
1275 load_history(st_temp);
1276
1277 /* write out temp file and replace hist_file atomically */
1278 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001279 fp = fopen_for_write(new_name);
1280 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001281 for (i = 0; i < st_temp->cnt_history; i++)
1282 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001283 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001284 if (rename(new_name, state->hist_file) == 0)
1285 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001286 }
1287 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001288 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001289 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001290}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001291# else
1292# define load_history(a) ((void)0)
1293# define save_history(a) ((void)0)
1294# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001295
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001296static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001297{
1298 int i;
1299
1300 if (!(state->flags & DO_HISTORY))
1301 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001302 if (str[0] == '\0')
1303 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001304 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001305 /* Don't save dupes */
1306 if (i && strcmp(state->history[i-1], str) == 0)
1307 return;
1308
1309 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1310 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1311
1312 /* If history[] is full, remove the oldest command */
1313 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001314 if (i >= MAX_HISTORY) {
1315 free(state->history[0]);
1316 for (i = 0; i < MAX_HISTORY-1; i++)
1317 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001318 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001319 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001320 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001321 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001322 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001323 state->cur_history = i;
1324 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001325# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001326 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001327 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001328# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001329 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001330}
1331
1332#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001333# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001334#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001335
1336
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001337#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001338/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001339 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001340 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001341static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001342vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001343{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001344 CHAR_T *command = command_ps;
1345
1346 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001347 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001348 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001349 input_forward();
1350}
1351
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001352static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001353vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001354{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001355 CHAR_T *command = command_ps;
1356
1357 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001358 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001359 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1360 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001361 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001362 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001363 } else if (BB_ispunct(command[cursor])) {
1364 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001365 input_forward();
1366 }
1367
Denis Vlasenko253ce002007-01-22 08:34:44 +00001368 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001369 input_forward();
1370
Denys Vlasenko13028922009-07-12 00:51:15 +02001371 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001372 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001373 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001374 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001375}
1376
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001377static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001378vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001379{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001380 CHAR_T *command = command_ps;
1381
Paul Fox3f11b1b2005-08-04 19:04:46 +00001382 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001383 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001384 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001385 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001386 input_forward();
1387}
1388
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001389static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001390vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001391{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001392 CHAR_T *command = command_ps;
1393
Denis Vlasenko253ce002007-01-22 08:34:44 +00001394 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001395 return;
1396 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001397 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001398 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001399 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001400 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001401 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001402 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001403 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001404 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001405 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001406 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001407 } else if (BB_ispunct(command[cursor])) {
1408 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001409 input_forward();
1410 }
1411}
1412
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001413static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001414vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001415{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001416 CHAR_T *command = command_ps;
1417
1418 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001419 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001420 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001421 input_backward(1);
1422}
1423
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001424static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001425vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001426{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001427 CHAR_T *command = command_ps;
1428
Paul Fox3f11b1b2005-08-04 19:04:46 +00001429 if (cursor <= 0)
1430 return;
1431 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001432 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001433 input_backward(1);
1434 if (cursor <= 0)
1435 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001436 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001437 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001438 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001439 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001440 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001441 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001442 } else if (BB_ispunct(command[cursor])) {
1443 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001444 input_backward(1);
1445 }
1446}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001447#endif
1448
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001449/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1450static void ctrl_left(void)
1451{
1452 CHAR_T *command = command_ps;
1453
1454 while (1) {
1455 CHAR_T c;
1456
1457 input_backward(1);
1458 if (cursor == 0)
1459 break;
1460 c = command[cursor];
1461 if (c != ' ' && !BB_ispunct(c)) {
1462 /* we reached a "word" delimited by spaces/punct.
1463 * go to its beginning */
1464 while (1) {
1465 c = command[cursor - 1];
1466 if (c == ' ' || BB_ispunct(c))
1467 break;
1468 input_backward(1);
1469 if (cursor == 0)
1470 break;
1471 }
1472 break;
1473 }
1474 }
1475}
1476static void ctrl_right(void)
1477{
1478 CHAR_T *command = command_ps;
1479
1480 while (1) {
1481 CHAR_T c;
1482
1483 c = command[cursor];
1484 if (c == BB_NUL)
1485 break;
1486 if (c != ' ' && !BB_ispunct(c)) {
1487 /* we reached a "word" delimited by spaces/punct.
1488 * go to its end + 1 */
1489 while (1) {
1490 input_forward();
1491 c = command[cursor];
1492 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1493 break;
1494 }
1495 break;
1496 }
1497 input_forward();
1498 }
1499}
1500
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001501
1502/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001503 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001504 */
1505
Denis Vlasenko38f63192007-01-22 09:03:07 +00001506#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001507static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001508{
1509 cmdedit_prompt = prmt_ptr;
1510 cmdedit_prmt_len = strlen(prmt_ptr);
1511 put_prompt();
1512}
1513#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001514static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001515{
1516 int prmt_len = 0;
1517 size_t cur_prmt_len = 0;
1518 char flg_not_length = '[';
1519 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001520 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1521 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001522 char c;
1523 char *pbuf;
1524
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001525 cmdedit_prmt_len = 0;
1526
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001527 if (!cwd_buf) {
1528 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001529 }
1530
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001531 cbuf[1] = '\0'; /* never changes */
1532
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001533 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001534 char *free_me = NULL;
1535
1536 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001537 c = *prmt_ptr++;
1538 if (c == '\\') {
1539 const char *cp = prmt_ptr;
1540 int l;
1541
1542 c = bb_process_escape_sequence(&prmt_ptr);
1543 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001544 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001545 break;
1546 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001547
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001548 switch (c) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001549# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001550 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001551 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001552 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001553# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001554 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001555 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001556 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001557 break;
1558 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001559 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001560 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001561# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001562 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001563 /* /home/user[/something] -> ~[/something] */
1564 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001565 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001566 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001567 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1568 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1569 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001570 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001571 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001572 }
1573 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001574# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001575 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001576 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001577 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001578 if (cp != NULL && cp != pbuf)
1579 pbuf += (cp-pbuf) + 1;
1580 break;
1581 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001582 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001583 break;
1584 case 'e': case 'E': /* \e \E = \033 */
1585 c = '\033';
1586 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001587 case 'x': case 'X': {
1588 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001589 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001590 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001591 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001592 buf2[l] = '\0';
1593 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001594 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001595 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001596 break;
1597 }
1598 prmt_ptr++;
1599 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001600 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001601 if (c == 0)
1602 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001603 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001604 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001605 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001606 case '[': case ']':
1607 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001608 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001609 continue;
1610 }
1611 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001612 } /* switch */
1613 } /* if */
1614 } /* if */
1615 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001616 cur_prmt_len = strlen(pbuf);
1617 prmt_len += cur_prmt_len;
1618 if (flg_not_length != ']')
1619 cmdedit_prmt_len += cur_prmt_len;
1620 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001621 free(free_me);
1622 } /* while */
1623
1624 if (cwd_buf != (char *)bb_msg_unknown)
1625 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001626 cmdedit_prompt = prmt_mem_ptr;
1627 put_prompt();
1628}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001629#endif
1630
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001631static void cmdedit_setwidth(unsigned w, int redraw_flg)
1632{
1633 cmdedit_termw = w;
1634 if (redraw_flg) {
1635 /* new y for current cursor */
1636 int new_y = (cursor + cmdedit_prmt_len) / w;
1637 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001638 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko727e1b52009-10-26 15:23:32 +01001639 fflush(NULL);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001640 }
1641}
1642
1643static void win_changed(int nsig)
1644{
Denis Vlasenko55995022008-05-18 22:28:26 +00001645 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001646 get_terminal_width_height(0, &width, NULL);
1647 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1648 if (nsig == SIGWINCH)
1649 signal(SIGWINCH, win_changed); /* rearm ourself */
1650}
1651
Denys Vlasenko020f4062009-05-17 16:44:54 +02001652static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001653{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001654 int64_t ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001655 struct pollfd pfd;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001656 int delay = -1;
1657#if ENABLE_FEATURE_ASSUME_UNICODE
1658 char unicode_buf[MB_CUR_MAX + 1];
1659 int unicode_idx = 0;
1660#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001661
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001662 pfd.fd = STDIN_FILENO;
1663 pfd.events = POLLIN;
1664 do {
Denys Vlasenko020f4062009-05-17 16:44:54 +02001665 poll_again:
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001666 if (read_key_buffer[0] == 0) {
1667 /* Wait for input. Can't just call read_key,
1668 * it returns at once if stdin
1669 * is in non-blocking mode. */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001670 safe_poll(&pfd, 1, delay);
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001671 }
1672 /* Note: read_key sets errno to 0 on success: */
Denys Vlasenko020f4062009-05-17 16:44:54 +02001673 ic = read_key(STDIN_FILENO, read_key_buffer);
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001674
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001675#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1676 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001677 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001678 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001679 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001680 if (cursor == 0) { /* otherwise it may be bogus */
1681 int col = ((ic >> 32) & 0x7fff) - 1;
1682 if (col > cmdedit_prmt_len) {
1683 cmdedit_x += (col - cmdedit_prmt_len);
1684 while (cmdedit_x >= cmdedit_termw) {
1685 cmdedit_x -= cmdedit_termw;
1686 cmdedit_y++;
1687 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001688 }
1689 }
1690 goto poll_again;
1691 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001692#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001693
1694#if ENABLE_FEATURE_ASSUME_UNICODE
1695 {
1696 wchar_t wc;
1697
1698 if ((int32_t)ic < 0) /* KEYCODE_xxx */
1699 return ic;
1700 unicode_buf[unicode_idx++] = ic;
1701 unicode_buf[unicode_idx] = '\0';
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001702 if (mbstowcs(&wc, unicode_buf, 1) != 1 && unicode_idx < MB_CUR_MAX) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001703 delay = 50;
1704 goto poll_again;
1705 }
1706 ic = wc;
1707 }
1708#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001709 } while (errno == EAGAIN);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001710
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001711 return ic;
1712}
1713
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001714/* leave out the "vi-mode"-only case labels if vi editing isn't
1715 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001716#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001717
1718/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001719#undef CTRL
1720#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001721
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001722/* maxsize must be >= 2.
1723 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001724 * -1 on read errors or EOF, or on bare Ctrl-D,
1725 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001726 * >0 length of input string, including terminating '\n'
1727 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001728int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001729{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001730 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001731#if ENABLE_FEATURE_TAB_COMPLETION
1732 smallint lastWasTab = FALSE;
1733#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001734 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001735#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001736 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001737#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001738 struct termios initial_settings;
1739 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001740 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001741
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001742 INIT_S();
1743
1744 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1745 || !(initial_settings.c_lflag & ECHO)
1746 ) {
1747 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001748 parse_and_put_prompt(prompt);
Denys Vlasenko727e1b52009-10-26 15:23:32 +01001749 /* fflush(stdout); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001750 if (fgets(command, maxsize, stdin) == NULL)
1751 len = -1; /* EOF or error */
1752 else
1753 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001754 DEINIT_S();
1755 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001756 }
1757
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001758 check_unicode_in_env();
1759
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001760// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001761 if (maxsize > MAX_LINELEN)
1762 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001763 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001764
1765 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001766 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001767#if MAX_HISTORY > 0
1768# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001769 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001770 if (state->cnt_history == 0)
1771 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001772# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001773 if (state->flags & DO_HISTORY)
1774 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001775#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001776
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001777 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001778 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001779 command_len = 0;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001780#if ENABLE_FEATURE_ASSUME_UNICODE
1781 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1782#else
Mark Whitley4e338752001-01-26 20:42:23 +00001783 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001784 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001785#endif
1786#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001787
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001788 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001789 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1790 /* Turn off echoing and CTRL-C, so we can trap it */
1791 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001792 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001793 new_settings.c_cc[VMIN] = 1;
1794 new_settings.c_cc[VTIME] = 0;
1795 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001796#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001797# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001798#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001799 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001800 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001801
Eric Andersen6faae7d2001-02-16 20:09:17 +00001802 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001803 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1804 win_changed(0); /* do initial resizing */
1805#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1806 {
1807 struct passwd *entry;
1808
1809 entry = getpwuid(geteuid());
1810 if (entry) {
1811 user_buf = xstrdup(entry->pw_name);
1812 home_pwd_buf = xstrdup(entry->pw_dir);
1813 }
1814 }
1815#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001816
1817#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001818 for (i = 0; i <= MAX_HISTORY; i++)
1819 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001820 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1821#endif
1822
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001823 /* Print out the command prompt */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001824 parse_and_put_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001825
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001826 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001827 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001828 /*
1829 * The emacs and vi modes share much of the code in the big
1830 * command loop. Commands entered when in vi's command mode
1831 * (aka "escape mode") get an extra bit added to distinguish
1832 * them - this keeps them from being self-inserted. This
1833 * clutters the big switch a bit, but keeps all the code
1834 * in one place.
1835 */
1836 enum {
1837 VI_CMDMODE_BIT = 0x40000000,
1838 /* 0x80000000 bit flags KEYCODE_xxx */
1839 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001840 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001841
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001842 fflush(NULL);
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001843 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001844
Denis Vlasenko38f63192007-01-22 09:03:07 +00001845#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001846 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001847 if (vi_cmdmode) {
1848 /* btw, since KEYCODE_xxx are all < 0, this doesn't
1849 * change ic if it contains one of them: */
1850 ic |= VI_CMDMODE_BIT;
1851 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001852#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001853
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001854 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001855 case '\n':
1856 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001857 vi_case('\n'|VI_CMDMODE_BIT:)
1858 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001859 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001860 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001861 break_out = 1;
1862 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001863 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001864 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001865 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001866 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001867 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001868 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001869 vi_case('h'|VI_CMDMODE_BIT:)
1870 vi_case('\b'|VI_CMDMODE_BIT:)
1871 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Erik Andersenf0657d32000-04-12 17:49:52 +00001872 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001873 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001874 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001875 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001876 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001877 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001878 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001879 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001880 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001881 vi_case('l'|VI_CMDMODE_BIT:)
1882 vi_case(' '|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001883 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001884 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001885 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001886 case '\b':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001887 case '\x7f': /* DEL */
Erik Andersen1d1d9502000-04-21 01:26:49 +00001888 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001889 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001890 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001891#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00001892 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001893 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001894 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001895#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001896 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00001897 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001898 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001899 command_len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001900 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001901 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001902 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001903 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001904 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001905 printf("\033[H");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001906 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001907 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001908#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001909 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001910 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
1911 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001912 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001913 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001914 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001915 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001916 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001917 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
1918 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001919 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001920 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001921 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001922 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001923#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001924 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001925 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001926 /* Control-U -- Clear line before cursor */
1927 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001928 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001929 memmove(command_ps, command_ps + cursor,
1930 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001931 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001932 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001933 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001934 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001935 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001936 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001937 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001938 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001939 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001940 input_backspace();
1941 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001942
Denis Vlasenko38f63192007-01-22 09:03:07 +00001943#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001944 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001945 vi_cmdmode = 0;
1946 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001947 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001948 input_backward(cursor);
1949 vi_cmdmode = 0;
1950 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001951 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001952 input_forward();
1953 vi_cmdmode = 0;
1954 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001955 case 'A'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001956 input_end();
1957 vi_cmdmode = 0;
1958 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001959 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001960 input_delete(1);
1961 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001962 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001963 if (cursor > 0) {
1964 input_backward(1);
1965 input_delete(1);
1966 }
1967 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001968 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001969 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001970 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001971 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001972 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001973 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001974 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001975 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001976 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001977 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001978 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001979 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001980 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001981 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001982 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001983 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001984 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001985 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001986 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001987 vi_cmdmode = 0;
1988 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001989 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001990 goto clear_to_eol;
1991
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001992 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001993 vi_cmdmode = 0;
1994 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001995 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001996 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001997
Denys Vlasenko020f4062009-05-17 16:44:54 +02001998 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001999 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002000 goto prepare_to_die;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002001 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002002 input_backward(cursor);
2003 goto clear_to_eol;
2004 break;
2005 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002006
2007 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002008 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002009 case 'w':
2010 case 'W':
2011 case 'e':
2012 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002013 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002014 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002015 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002016 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002017 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002018 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002019 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002020 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002021 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002022 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002023 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002024 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002025 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002026 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002027 break;
2028 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002029 nc = cursor;
2030 input_backward(cursor - sc);
2031 while (nc-- > cursor)
2032 input_delete(1);
2033 break;
2034 case 'b': /* "db", "cb" */
2035 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002036 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002037 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002038 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002039 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002040 while (sc-- > cursor)
2041 input_delete(1);
2042 break;
2043 case ' ': /* "d ", "c " */
2044 input_delete(1);
2045 break;
2046 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002047 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002048 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002049 input_delete(1);
2050 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002051 }
2052 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002053 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002054 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002055 input_forward();
2056 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002057 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002058 put();
2059 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002060 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002061//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002062 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002063 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002064 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002065 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002066 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002067 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002068 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002069 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002070 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002071 }
2072 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002073 case '\x1b': /* ESC */
2074 if (state->flags & VI_MODE) {
2075 /* insert mode --> command mode */
2076 vi_cmdmode = 1;
2077 input_backward(1);
2078 }
2079 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002080#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002081
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002082#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002083 case KEYCODE_UP:
2084 if (get_previous_history())
2085 goto rewrite_line;
2086 beep();
2087 break;
2088 case KEYCODE_DOWN:
2089 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002090 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002091 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002092 /* Rewrite the line with the selected history item */
2093 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002094 command_len = load_string(state->history[state->cur_history] ?
2095 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002096 /* redraw and go to eol (bol, in vi) */
2097 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2098 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002099#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002100 case KEYCODE_RIGHT:
2101 input_forward();
2102 break;
2103 case KEYCODE_LEFT:
2104 input_backward(1);
2105 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002106 case KEYCODE_CTRL_LEFT:
2107 ctrl_left();
2108 break;
2109 case KEYCODE_CTRL_RIGHT:
2110 ctrl_right();
2111 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002112 case KEYCODE_DELETE:
2113 input_delete(0);
2114 break;
2115 case KEYCODE_HOME:
2116 input_backward(cursor);
2117 break;
2118 case KEYCODE_END:
2119 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002120 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002121
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002122 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002123 if (initial_settings.c_cc[VINTR] != 0
2124 && ic_raw == initial_settings.c_cc[VINTR]
2125 ) {
2126 /* Ctrl-C (usually) - stop gathering input */
2127 goto_new_line();
2128 command_len = 0;
2129 break_out = -1; /* "do not append '\n'" */
2130 break;
2131 }
2132 if (initial_settings.c_cc[VEOF] != 0
2133 && ic_raw == initial_settings.c_cc[VEOF]
2134 ) {
2135 /* Ctrl-D (usually) - delete one character,
2136 * or exit if len=0 and no chars to delete */
2137 if (command_len == 0) {
2138 errno = 0;
2139#if ENABLE_FEATURE_EDITING_VI
2140 prepare_to_die:
2141#endif
2142 break_out = command_len = -1;
2143 break;
2144 }
2145 input_delete(0);
2146 break;
2147 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002148// /* Control-V -- force insert of next char */
2149// if (c == CTRL('V')) {
2150// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2151// goto prepare_to_die;
2152// if (c == 0) {
2153// beep();
2154// break;
2155// }
2156// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002157 if (ic < ' '
2158 || (!ENABLE_FEATURE_ASSUME_UNICODE && ic >= 256)
2159 || (ENABLE_FEATURE_ASSUME_UNICODE && ic >= VI_CMDMODE_BIT)
2160 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002161 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002162 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002163 * Otherwise, we are here if ic is a
2164 * control char or an unhandled ESC sequence,
2165 * which is also ignored.
2166 */
2167 break;
2168 }
2169 if ((int)command_len >= (maxsize - 2)) {
2170 /* Not enough space for the char and EOL */
2171 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002172 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002173
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002174 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002175 if (cursor == (command_len - 1)) {
2176 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002177 command_ps[cursor] = ic;
2178 command_ps[cursor + 1] = BB_NUL;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002179 cmdedit_set_out_char(' ');
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002180 } else {
2181 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002182 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002183
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002184 memmove(command_ps + sc + 1, command_ps + sc,
2185 (command_len - sc) * sizeof(command_ps[0]));
2186 command_ps[sc] = ic;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002187 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00002188 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002189 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00002190 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002191 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002192 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002193 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002194 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002195
2196 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002197 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002198
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002199#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002200 if (ic_raw != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002201 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002202#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002203 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002204
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002205#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002206 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002207 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2208 * We sent "ESC [ 6 n", but got '\n' first, and
2209 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2210 * It's bad already and not much can be done with it
2211 * (it _will_ be visible for the next process to read stdin),
2212 * but without this delay it even shows up on the screen
2213 * as garbage because we restore echo settings with tcsetattr
2214 * before it comes in. UGLY!
2215 */
2216 usleep(20*1000);
2217 }
2218#endif
2219
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002220/* Stop bug catching using "command_must_not_be_used" trick */
2221#undef command
2222
2223#if ENABLE_FEATURE_ASSUME_UNICODE
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002224 command[0] = '\0';
2225 if (command_len > 0)
2226 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002227 free(command_ps);
2228#endif
2229
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002230 if (command_len > 0)
2231 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002232
Eric Andersen27bb7902003-12-23 20:24:51 +00002233 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002234 command[command_len++] = '\n';
2235 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002236 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002237
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002238#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002239 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002240#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002241
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002242 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002243 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002244 /* restore SIGWINCH handler */
2245 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko727e1b52009-10-26 15:23:32 +01002246 fflush(NULL);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002247
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002248 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002249 DEINIT_S();
2250
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002251 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002252}
2253
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002254#else
2255
2256#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002257int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002258{
2259 fputs(prompt, stdout);
Denys Vlasenko727e1b52009-10-26 15:23:32 +01002260 fflush(NULL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002261 fgets(command, maxsize, stdin);
2262 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002263}
2264
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002265#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002266
2267
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002268/*
2269 * Testing
2270 */
2271
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002272#ifdef TEST
2273
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002274#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002275
2276const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002277
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002278int main(int argc, char **argv)
2279{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002280 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002281 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002282#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002283 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2284 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2285 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002286#else
2287 "% ";
2288#endif
2289
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002290#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002291 setlocale(LC_ALL, "");
2292#endif
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002293 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002294 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002295 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002296 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002297 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002298 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002299 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002300 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002301 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002302 return 0;
2303}
2304
Eric Andersenc470f442003-07-28 09:56:35 +00002305#endif /* TEST */