blob: 836fc0089b62121fc13644304a9ae54572b45575 [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
Glenn L McGrath3b251852004-01-03 12:07:32 +000045#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020046# define ENABLE_FEATURE_EDITING 0
47# define ENABLE_FEATURE_TAB_COMPLETION 0
48# define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020049#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000050
Eric Andersen5165fbe2001-02-20 06:42:29 +000051
Denis Vlasenko82b39e82007-01-21 19:18:19 +000052/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000053#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000054
Denis Vlasenko82b39e82007-01-21 19:18:19 +000055
Denis Vlasenko7e46cf72006-12-23 01:21:55 +000056#define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000057 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000058#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000059#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000060#undef IF_FEATURE_GETUSERNAME_AND_HOMEDIR
61#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000062#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000063
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020064
Denys Vlasenko94043e82010-05-11 14:49:13 +020065#define SEQ_CLEAR_TILL_END_OF_SCREEN "\033[J"
66//#define SEQ_CLEAR_TILL_END_OF_LINE "\033[K"
67
68
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020069#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010070#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020071# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020072# define CHAR_T wchar_t
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010073static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010074# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010075static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010076# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010077static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020078# undef isspace
79# undef isalnum
80# undef ispunct
81# undef isprint
82# define isspace isspace_must_not_be_used
83# define isalnum isalnum_must_not_be_used
84# define ispunct ispunct_must_not_be_used
85# define isprint isprint_must_not_be_used
86#else
87# define BB_NUL '\0'
88# define CHAR_T char
89# define BB_isspace(c) isspace(c)
90# define BB_isalnum(c) isalnum(c)
91# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020092#endif
93
94
Tomas Heinricha659b812010-04-29 13:43:39 +020095# if ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichb8909c52010-05-16 20:46:53 +020096# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
97# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
Tomas Heinricha659b812010-04-29 13:43:39 +020098# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +020099# define unicode_is_raw_byte(wc) 0
Tomas Heinricha659b812010-04-29 13:43:39 +0200100# endif
101
102
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000103enum {
104 /* We use int16_t for positions, need to limit line len */
105 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000106 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000107 : 0x7ff0
108};
Robert Griebl350d26b2002-12-03 22:45:46 +0000109
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000110#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
111static const char null_str[] ALIGN1 = "";
112#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000113
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000114/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000115struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000116 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000117
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000118 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
119 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000120
Denys Vlasenko020f4062009-05-17 16:44:54 +0200121 unsigned cmdedit_x; /* real x (col) terminal position */
122 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000123 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000124
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000125 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200126 int command_len; /* must be signed */
127 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200128 * to _not_ be promoted to unsigned */
129 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200130 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000131
132 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000133#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000134 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000135#endif
136
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000137#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000138 char *user_buf;
139 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000140#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000141
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000142#if ENABLE_FEATURE_TAB_COMPLETION
143 char **matches;
144 unsigned num_matches;
145#endif
146
147#if ENABLE_FEATURE_EDITING_VI
148#define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200149 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000150 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200151 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000152#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100153#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100154 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100155#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000156
157 /* Formerly these were big buffers on stack: */
158#if ENABLE_FEATURE_TAB_COMPLETION
159 char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
160 char input_tab__matchBuf[MAX_LINELEN];
161 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
162 int16_t find_match__pos_buf[MAX_LINELEN + 1];
163#endif
164};
165
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000166/* See lineedit_ptr_hack.c */
167extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000168
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000169#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000170#define state (S.state )
171#define cmdedit_termw (S.cmdedit_termw )
172#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
173#define cmdedit_x (S.cmdedit_x )
174#define cmdedit_y (S.cmdedit_y )
175#define cmdedit_prmt_len (S.cmdedit_prmt_len)
176#define cursor (S.cursor )
177#define command_len (S.command_len )
178#define command_ps (S.command_ps )
179#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000180#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000181#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000182#define home_pwd_buf (S.home_pwd_buf )
183#define matches (S.matches )
184#define num_matches (S.num_matches )
185#define delptr (S.delptr )
186#define newdelflag (S.newdelflag )
187#define delbuf (S.delbuf )
188
189#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000190 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000191 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000192 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000193 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
194 IF_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000195} while (0)
196static void deinit_S(void)
197{
198#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000199 /* This one is allocated only if FANCY_PROMPT is on
200 * (otherwise it points to verbatim prompt (NOT malloced) */
201 free((char*)cmdedit_prompt);
202#endif
203#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
204 free(user_buf);
205 if (home_pwd_buf != null_str)
206 free(home_pwd_buf);
207#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000208 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000209}
210#define DEINIT_S() deinit_S()
211
Denis Vlasenko2c844952008-04-25 18:44:35 +0000212
Denys Vlasenko19158a82010-03-26 14:06:56 +0100213#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200214static size_t load_string(const char *src, int maxsize)
215{
216 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
217 if (len < 0)
218 len = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200219 command_ps[len] = 0;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200220 return len;
221}
Tomas Heinricha659b812010-04-29 13:43:39 +0200222static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200223{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200224# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200225 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
226 if (len < 0)
227 len = 0;
228 dst[len] = '\0';
229 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200230# else
Tomas Heinricha659b812010-04-29 13:43:39 +0200231 unsigned dstpos = 0;
232 unsigned srcpos = 0;
233
234 maxsize--;
235 while (dstpos < maxsize) {
236 wchar_t wc;
237 int n = srcpos;
238 while ((wc = command_ps[srcpos]) != 0
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200239 && !unicode_is_raw_byte(wc)
Tomas Heinricha659b812010-04-29 13:43:39 +0200240 ) {
241 srcpos++;
242 }
243 command_ps[srcpos] = 0;
244 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
245 if (n < 0) /* should not happen */
246 break;
247 dstpos += n;
248 if (wc == 0) /* usually is */
249 break;
250 /* We do have invalid byte here! */
251 command_ps[srcpos] = wc; /* restore it */
252 srcpos++;
253 if (dstpos == maxsize)
254 break;
255 dst[dstpos++] = (char) wc;
256 }
257 dst[dstpos] = '\0';
258 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200259# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200260}
261/* I thought just fputwc(c, stdout) would work. But no... */
262static void BB_PUTCHAR(wchar_t c)
263{
264 char buf[MB_CUR_MAX + 1];
265 mbstate_t mbst = { 0 };
Tomas Heinricha659b812010-04-29 13:43:39 +0200266 ssize_t len;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200267
Tomas Heinricha659b812010-04-29 13:43:39 +0200268 len = wcrtomb(buf, c, &mbst);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200269 if (len > 0) {
270 buf[len] = '\0';
271 fputs(buf, stdout);
272 }
273}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200274# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
275static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
276# else
277static wchar_t adjust_width_and_validate_wc(wchar_t wc)
278# define adjust_width_and_validate_wc(width_adj, wc) \
279 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
280# endif
281{
282 int w = 1;
283
284 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200285 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
286 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200287 goto subst;
288 }
289 w = wcwidth(wc);
290 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
291 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
292 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
293 ) {
294 subst:
295 w = 1;
296 wc = CONFIG_SUBST_WCHAR;
297 }
298 }
299
300# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
301 *width_adj += w;
302#endif
303 return wc;
304}
305#else /* !UNICODE */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200306static size_t load_string(const char *src, int maxsize)
307{
308 safe_strncpy(command_ps, src, maxsize);
309 return strlen(command_ps);
310}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200311# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200312static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200313{
314 safe_strncpy(dst, command_ps, maxsize);
315}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200316# endif
317# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200318/* Should never be called: */
319int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200320#endif
321
322
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000323/* Put 'command_ps[cursor]', cursor++.
324 * Advance cursor on screen. If we reached right margin, scroll text up
325 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000326#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200327static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000328{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200329 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200330 unsigned width = 0;
331 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000332
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200333 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000334 /* erase character after end of input string */
335 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200336 } else {
337 /* advance cursor only if we aren't at the end yet */
338 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200339 if (unicode_status == UNICODE_ON) {
340 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
341 c = adjust_width_and_validate_wc(&cmdedit_x, c);
342 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
343 } else {
344 cmdedit_x++;
345 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000346 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200347
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200348 ofs_to_right = cmdedit_x - cmdedit_termw;
349 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
350 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200351 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000352 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200353
354 if (ofs_to_right >= 0) {
355 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000356#if HACK_FOR_WRONG_WIDTH
357 /* This works better if our idea of term width is wrong
358 * and it is actually wider (often happens on serial lines).
359 * Printing CR,LF *forces* cursor to next line.
360 * OTOH if terminal width is correct AND terminal does NOT
361 * have automargin (IOW: it is moving cursor to next line
362 * by itself (which is wrong for VT-10x terminals)),
363 * this will break things: there will be one extra empty line */
364 puts("\r"); /* + implicit '\n' */
365#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200366 /* VT-10x terminals don't wrap cursor to next line when last char
367 * on the line is printed - cursor stays "over" this char.
368 * Need to print _next_ char too (first one to appear on next line)
369 * to make cursor move down to next line.
370 */
371 /* Works ok only if cmdedit_termw is correct. */
372 c = command_ps[cursor];
373 if (c == BB_NUL)
374 c = ' ';
375 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000376 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000377#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200378 cmdedit_y++;
379 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
380 width = 0;
381 } else { /* ofs_to_right > 0 */
382 /* wide char c didn't fit on prev line */
383 BB_PUTCHAR(c);
384 }
385 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000386 }
Erik Andersen13456d12000-03-16 08:09:57 +0000387}
388
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000389/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200390static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000391{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000392 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200393 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000394}
395
396/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000397static void goto_new_line(void)
398{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200399 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000400 if (cmdedit_x)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000401 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000402}
403
404
Rob Landley88621d72006-08-29 19:41:06 +0000405static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000406{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000407 if (s)
Robert Grieblb2301592002-07-30 23:13:51 +0000408 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000409}
Eric Andersen81fe1232003-07-29 06:38:40 +0000410
Rob Landley88621d72006-08-29 19:41:06 +0000411static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000412{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000413 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000414}
415
Denys Vlasenko248c3242010-05-17 00:45:44 +0200416static void put_prompt(void)
417{
418 unsigned w;
419
420 out1str(cmdedit_prompt);
421 fflush_all();
422 cursor = 0;
423 w = cmdedit_termw; /* read volatile var once */
424 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
425 cmdedit_x = cmdedit_prmt_len % w;
426}
427
Eric Andersenaff114c2004-04-14 17:51:38 +0000428/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000429/* (optimized for slow terminals) */
430static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000431{
432 if (num > cursor)
433 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200434 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000435 return;
436 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000437
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200438 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
439 && unicode_status == UNICODE_ON
440 ) {
441 /* correct NUM to be equal to _screen_ width */
442 int n = num;
443 num = 0;
444 while (--n >= 0)
445 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
446 if (num == 0)
447 return;
448 }
449
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000450 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000451 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000452 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000453 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000454 * Also gets miscompiled for ARM users
455 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000456 * printf(("\b\b\b\b" + 4) - num);
457 * return;
458 */
459 do {
460 bb_putchar('\b');
461 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000462 return;
463 }
464 printf("\033[%uD", num);
465 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000466 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000467
468 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200469 if (ENABLE_UNICODE_WIDE_WCHARS) {
470 /* With wide chars, it is hard to "backtrack"
471 * and reliably figure out where to put cursor.
472 * Example (<> is a wide char; # is an ordinary char, _ cursor):
473 * |prompt: <><> |
474 * |<><><><><><> |
475 * |_ |
476 * and user presses left arrow. num = 1, cmdedit_x = 0,
477 * We need to go up one line, and then - how do we know that
478 * we need to go *10* positions to the right? Because
479 * |prompt: <>#<>|
480 * |<><><>#<><><>|
481 * |_ |
482 * in this situation we need to go *11* positions to the right.
483 *
484 * A simpler thing to do is to redraw everything from the start
485 * up to new cursor position (which is already known):
486 */
487 unsigned sv_cursor;
488 if (cmdedit_y > 0) /* up to start y */
489 printf("\033[%uA", cmdedit_y);
490 bb_putchar('\r');
491 cmdedit_y = 0;
492 sv_cursor = cursor;
493 put_prompt(); /* sets cursor to 0 */
494 while (cursor < sv_cursor)
495 put_cur_glyph_and_inc_cursor();
496 } else {
497 int count_y;
498 unsigned w;
499 num -= cmdedit_x;
500 w = cmdedit_termw; /* read volatile var once */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000501 count_y = 1 + (num / w);
502 cmdedit_y -= count_y;
503 cmdedit_x = w * count_y - num;
Denys Vlasenko248c3242010-05-17 00:45:44 +0200504 /* go to 1st column; go up; go to correct column */
505 printf("\r" "\033[%uA" "\033[%uC", count_y, cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000506 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000507}
508
Eric Andersenaff114c2004-04-14 17:51:38 +0000509/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000510static void redraw(int y, int back_cursor)
511{
Denys Vlasenko044b1802009-07-12 02:50:35 +0200512 if (y > 0) /* up to start y */
513 printf("\033[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000514 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000515 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200516 put_till_end_and_adv_cursor();
517 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000518 input_backward(back_cursor);
519}
520
Paul Fox3f11b1b2005-08-04 19:04:46 +0000521/* Delete the char in front of the cursor, optionally saving it
522 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000523#if !ENABLE_FEATURE_EDITING_VI
524static void input_delete(void)
525#define input_delete(save) input_delete()
526#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000527static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000528#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000529{
Mark Whitley4e338752001-01-26 20:42:23 +0000530 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000531
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000532 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000533 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000534
Denis Vlasenko38f63192007-01-22 09:03:07 +0000535#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000536 if (save) {
537 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000538 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000539 newdelflag = 0;
540 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000541 if ((delptr - delbuf) < DELBUFSIZ)
542 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000543 }
544#endif
545
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200546 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200547 /* (command_len + 1 [because of NUL]) - (j + 1)
548 * simplified into (command_len - j) */
549 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000550 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200551 put_till_end_and_adv_cursor();
552 /* Last char is still visible, erase it (and more) */
553 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000554 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000555}
556
Denis Vlasenko38f63192007-01-22 09:03:07 +0000557#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000558static void put(void)
559{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000560 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000561 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000562
Paul Fox3f11b1b2005-08-04 19:04:46 +0000563 if (j == 0)
564 return;
565 ocursor = cursor;
566 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200567 memmove(command_ps + cursor + j, command_ps + cursor,
568 (command_len - cursor + 1) * sizeof(command_ps[0]));
569 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000570 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200571 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000572 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000573}
574#endif
575
Mark Whitley4e338752001-01-26 20:42:23 +0000576/* Delete the char in back of the cursor */
577static void input_backspace(void)
578{
579 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000580 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000581 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000582 }
583}
584
Eric Andersenaff114c2004-04-14 17:51:38 +0000585/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000586static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000587{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000588 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200589 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000590}
591
Denis Vlasenko38f63192007-01-22 09:03:07 +0000592#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000593
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000594static void free_tab_completion_data(void)
595{
596 if (matches) {
597 while (num_matches)
598 free(matches[--num_matches]);
599 free(matches);
600 matches = NULL;
601 }
602}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000603
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000604static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000605{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000606 matches = xrealloc_vector(matches, 4, num_matches);
607 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000608 num_matches++;
609}
610
Denis Vlasenko38f63192007-01-22 09:03:07 +0000611#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000612static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000613{
614 struct passwd *entry;
615 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000616
Eric Andersenc470f442003-07-28 09:56:35 +0000617 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000618 userlen = strlen(ud);
619
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000620 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000621 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000622 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000623
Eric Andersenc470f442003-07-28 09:56:35 +0000624 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000625 home = home_pwd_buf;
626 } else {
627 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000628 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000629 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000630 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000631 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000632 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000633 ud = temp;
634 if (entry)
635 home = entry->pw_dir;
636 }
637 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000638 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000639 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000640 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000641 }
642 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000643 } else {
644 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000645 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000646 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000647 struct passwd pwd;
648 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000649
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000650 setpwent();
651 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000652 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000653 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
654 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000655 }
656 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000657 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000658 }
659}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000660#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000661
662enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000663 FIND_EXE_ONLY = 0,
664 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000665 FIND_FILE_ONLY = 2,
666};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000667
Mark Whitley4e338752001-01-26 20:42:23 +0000668static int path_parse(char ***p, int flags)
669{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000670 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000671 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000672 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000673 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000674
Mark Whitley4e338752001-01-26 20:42:23 +0000675 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000676 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000677 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000678
679 if (state->flags & WITH_PATH_LOOKUP)
680 pth = state->path_lookup;
681 else
682 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000683 /* PATH=<empty> or PATH=:<empty> */
684 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
685 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000686
Denis Vlasenko253ce002007-01-22 08:34:44 +0000687 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000688 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000689 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000690 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000691 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000692 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000693 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000694 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000695 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000696 }
697
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000698 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000699 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000700 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000701 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000702 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000703 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000704 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000705 *tmp++ = '\0'; /* ':' -> '\0' */
706 if (*tmp == '\0')
707 break; /* :<empty> */
708 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000709 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000710 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000711 return npth;
712}
713
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000714static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000715{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000716 DIR *dir;
717 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000718 struct stat st;
719 char *path1[1];
720 char **paths = path1;
721 int npaths;
722 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000723 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000724 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000725/* char dirbuf[MAX_LINELEN]; */
726#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000727
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000728 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000729 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000730
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000731 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000732 /* no dir, if flags==EXE_ONLY - get paths, else "." */
733 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000734 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000735 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000736 /* dirbuf = ".../.../.../" */
737 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000738#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000739 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000740 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000741#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000742 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000743 /* point to 'l' in "..../last_component" */
744 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000745 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000746
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000747 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000748 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000749 if (!dir)
750 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000751
752 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000753 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000754 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000755
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000756 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000757 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000758 continue;
759 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000760 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000761 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000762 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000763 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000764 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000765 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000766 /* hmm, remove in progress? */
767 /* NB: stat() first so that we see is it a directory;
768 * but if that fails, use lstat() so that
769 * we still match dangling links */
770 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000771 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000772 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000773 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000774 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000775
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000776 len1 = strlen(found);
777 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000778 found[len1] = '\0';
779 found[len1+1] = '\0';
780
Mark Whitley4e338752001-01-26 20:42:23 +0000781 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000782 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000783 if (found[len1-1] != '/') {
784 found[len1] = '/';
785 }
Mark Whitley4e338752001-01-26 20:42:23 +0000786 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000787 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000788 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000789 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000790 }
Mark Whitley4e338752001-01-26 20:42:23 +0000791 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000792 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000793 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000794 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000795 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000796 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000797 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000798 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000799 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000800 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000801 free(paths);
802 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000803#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000804}
Erik Andersenf0657d32000-04-12 17:49:52 +0000805
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200806/* QUOT is used on elements of int_buf[], which are bytes,
807 * not Unicode chars. Therefore it works correctly even in Unicode mode.
808 */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000809#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000810
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200811#define int_buf (S.find_match__int_buf)
812#define pos_buf (S.find_match__pos_buf)
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200813/* is must be <= in */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200814static void collapse_pos(int is, int in)
815{
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200816 memmove(int_buf+is, int_buf+in, (MAX_LINELEN+1-in)*sizeof(int_buf[0]));
817 memmove(pos_buf+is, pos_buf+in, (MAX_LINELEN+1-in)*sizeof(pos_buf[0]));
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200818}
Denys Vlasenko044b1802009-07-12 02:50:35 +0200819static NOINLINE int find_match(char *matchBuf, int *len_with_quotes)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000820{
821 int i, j;
822 int command_mode;
823 int c, c2;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200824/* Were local, but it uses too much stack */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000825/* int16_t int_buf[MAX_LINELEN + 1]; */
826/* int16_t pos_buf[MAX_LINELEN + 1]; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000827
828 /* set to integer dimension characters and own positions */
829 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000830 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000831 if (int_buf[i] == 0) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200832 pos_buf[i] = -1; /* end-fo-line indicator */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000833 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000834 }
835 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000836 }
837
838 /* mask \+symbol and convert '\t' to ' ' */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200839 for (i = j = 0; matchBuf[i]; i++, j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000840 if (matchBuf[i] == '\\') {
841 collapse_pos(j, j + 1);
842 int_buf[j] |= QUOT;
843 i++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000844 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200845 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000846 /* mask "symbols" or 'symbols' */
847 c2 = 0;
848 for (i = 0; int_buf[i]; i++) {
849 c = int_buf[i];
850 if (c == '\'' || c == '"') {
851 if (c2 == 0)
852 c2 = c;
853 else {
854 if (c == c2)
855 c2 = 0;
856 else
857 int_buf[i] |= QUOT;
858 }
859 } else if (c2 != 0 && c != '$')
860 int_buf[i] |= QUOT;
861 }
862
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000863 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000864 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
865 for (i = 0; int_buf[i]; i++) {
866 c = int_buf[i];
867 c2 = int_buf[i + 1];
868 j = i ? int_buf[i - 1] : -1;
869 command_mode = 0;
870 if (c == ';' || c == '&' || c == '|') {
871 command_mode = 1 + (c == c2);
872 if (c == '&') {
873 if (j == '>' || j == '<')
874 command_mode = 0;
875 } else if (c == '|' && j == '>')
876 command_mode = 0;
877 }
878 if (command_mode) {
879 collapse_pos(0, i + command_mode);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200880 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000881 }
882 }
883 /* collapse `command...` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200884 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000885 if (int_buf[i] == '`') {
886 for (j = i + 1; int_buf[j]; j++)
887 if (int_buf[j] == '`') {
888 collapse_pos(i, j + 1);
889 j = 0;
890 break;
891 }
892 if (j) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200893 /* not found closing ` - command mode, collapse all previous */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000894 collapse_pos(0, i + 1);
895 break;
896 } else
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200897 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000898 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200899 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000900
901 /* collapse (command...(command...)...) or {command...{command...}...} */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200902 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000903 c2 = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200904 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000905 if (int_buf[i] == '(' || int_buf[i] == '{') {
906 if (int_buf[i] == '(')
907 c++;
908 else
909 c2++;
910 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200911 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000912 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200913 }
914 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000915 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
916 if (int_buf[i] == ')')
917 c--;
918 else
919 c2--;
920 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200921 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000922 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200923 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000924
925 /* skip first not quote space */
926 for (i = 0; int_buf[i]; i++)
927 if (int_buf[i] != ' ')
928 break;
929 if (i)
930 collapse_pos(0, i);
931
932 /* set find mode for completion */
933 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200934 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000935 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
936 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000937 && matchBuf[pos_buf[0]] == 'c'
938 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000939 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000940 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000941 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000942 command_mode = FIND_FILE_ONLY;
943 break;
944 }
945 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200946 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000947 for (i = 0; int_buf[i]; i++)
948 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000949 /* find last word */
950 for (--i; i >= 0; i--) {
951 c = int_buf[i];
952 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
953 collapse_pos(0, i + 1);
954 break;
955 }
956 }
957 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000958 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
959 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000960 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000961 while ((int_buf[i] & ~QUOT) == '/'
962 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
963 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000964 i++;
965 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000966
967 /* set only match and destroy quotes */
968 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000969 for (c = 0; pos_buf[i] >= 0; i++) {
970 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000971 j = pos_buf[i] + 1;
972 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000973 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000974 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000975 *len_with_quotes = j ? j - pos_buf[0] : 0;
976
977 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200978}
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000979#undef int_buf
980#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000981
Glenn L McGrath4d001292003-01-06 01:11:50 +0000982/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000983 * display by column (original idea from ls applet,
984 * very optimized by me :)
985 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000986static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000987{
988 int ncols, row;
989 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000990 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000991 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000992 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000993
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200994 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000995 for (row = 0; row < nrows; row++) {
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100996 l = unicode_strlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000997 if (column_width < l)
998 column_width = l;
999 }
1000 column_width += 2; /* min space for columns */
1001 ncols = cmdedit_termw / column_width;
1002
1003 if (ncols > 1) {
1004 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001005 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001006 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001007 } else {
1008 ncols = 1;
1009 }
1010 for (row = 0; row < nrows; row++) {
1011 int n = row;
1012 int nc;
1013
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001014 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001015 printf("%s%-*s", matches[n],
Denys Vlasenko9f93d622010-01-24 07:44:03 +01001016 (int)(column_width - unicode_strlen(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001017 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001018 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +00001019 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001020 }
1021}
1022
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001023static char *add_quote_for_spec_chars(char *found)
1024{
1025 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001026 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001027
1028 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001029 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001030 s[l++] = '\\';
1031 s[l++] = *found++;
1032 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001033 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001034 return s;
1035}
1036
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001037/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001038static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001039{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001040 if (!(state->flags & TAB_COMPLETION))
1041 return;
1042
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001043 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001044 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +00001045 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001046/* char matchBuf[MAX_LINELEN]; */
1047#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001048 int find_type;
1049 int recalc_pos;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001050#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001051 /* cursor pos in command converted to multibyte form */
1052 int cursor_mb;
1053#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001054
Eric Andersenc470f442003-07-28 09:56:35 +00001055 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001056
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001057 /* Make a local copy of the string --
1058 * up to the position of the cursor */
1059 save_string(matchBuf, cursor + 1);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001060#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001061 cursor_mb = strlen(matchBuf);
1062#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001063 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001064
1065 find_type = find_match(matchBuf, &recalc_pos);
1066
1067 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001068 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +00001069
Denis Vlasenko38f63192007-01-22 09:03:07 +00001070#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001071 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001072 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001073 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +02001074 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001075 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +00001076#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001077 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001078 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001079 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001080 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001081 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001082 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001083 unsigned i;
1084 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +00001085 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001086 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001087 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001088 if (strcmp(matches[i], matches[i+1]) == 0) {
1089 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001090 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001091 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001092 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +00001093 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001094 }
Denis Vlasenko92758142006-10-03 19:56:34 +00001095 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001096 matches[n] = matches[i];
1097 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001098 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001099 /* Did we find exactly one match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001100 if (!matches || num_matches > 1) { /* no */
Mark Whitley4e338752001-01-26 20:42:23 +00001101 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001102 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +00001103 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001104 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001105 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001106 for (tmp = tmp1; *tmp; tmp++) {
1107 for (len_found = 1; len_found < num_matches; len_found++) {
1108 if (matches[len_found][tmp - tmp1] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001109 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001110 break;
1111 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001112 }
1113 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001114 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001115 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001116 return;
1117 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001118 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001119 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +00001120 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001121 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001122 /* for next completion current found */
1123 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001124
1125 len_found = strlen(tmp);
1126 if (tmp[len_found-1] != '/') {
1127 tmp[len_found] = ' ';
1128 tmp[len_found+1] = '\0';
1129 }
Mark Whitley4e338752001-01-26 20:42:23 +00001130 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001131
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001132 len_found = strlen(tmp);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001133#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001134 /* have space to place the match? */
1135 /* The result consists of three parts with these lengths: */
1136 /* (cursor - recalc_pos) + len_found + (command_len - cursor) */
1137 /* it simplifies into: */
1138 if ((int)(len_found + command_len - recalc_pos) < S.maxsize) {
1139 /* save tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001140 strcpy(matchBuf, command_ps + cursor);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001141 /* add match and tail */
1142 sprintf(&command_ps[cursor - recalc_pos], "%s%s", tmp, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001143 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001144 /* new pos */
1145 recalc_pos = cursor - recalc_pos + len_found;
1146 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001147 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001148 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001149#else
1150 {
1151 char command[MAX_LINELEN];
1152 int len = save_string(command, sizeof(command));
1153 /* have space to place the match? */
1154 /* (cursor_mb - recalc_pos) + len_found + (len - cursor_mb) */
1155 if ((int)(len_found + len - recalc_pos) < MAX_LINELEN) {
1156 /* save tail */
1157 strcpy(matchBuf, command + cursor_mb);
1158 /* where do we want to have cursor after all? */
1159 strcpy(&command[cursor_mb - recalc_pos], tmp);
1160 len = load_string(command, S.maxsize);
1161 /* add match and tail */
1162 sprintf(&command[cursor_mb - recalc_pos], "%s%s", tmp, matchBuf);
1163 command_len = load_string(command, S.maxsize);
1164 /* write out the matched command */
1165 redraw(cmdedit_y, command_len - len);
1166 }
1167 }
1168#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001169 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001170#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001171 } else {
1172 /* Ok -- the last char was a TAB. Since they
1173 * just hit TAB again, print a list of all the
1174 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001175 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001176 /* changed by goto_new_line() */
1177 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001178
1179 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001180 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001181 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001182 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001183 }
1184 }
1185}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001186
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001187#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001188
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001189
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001190line_input_t* FAST_FUNC new_line_input_t(int flags)
1191{
1192 line_input_t *n = xzalloc(sizeof(*n));
1193 n->flags = flags;
1194 return n;
1195}
1196
1197
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001198#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001199
Denis Vlasenko682ad302008-09-27 01:28:56 +00001200static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001201{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001202 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001203 int cur = state->cur_history;
1204 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001205
Denys Vlasenko19158a82010-03-26 14:06:56 +01001206# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001207 {
1208 char tbuf[MAX_LINELEN];
1209 save_string(tbuf, sizeof(tbuf));
1210 state->history[cur] = xstrdup(tbuf);
1211 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001212# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001213 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001214# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001215 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001216}
1217
1218/* state->flags is already checked to be nonzero */
1219static int get_previous_history(void)
1220{
1221 if ((state->flags & DO_HISTORY) && state->cur_history) {
1222 save_command_ps_at_cur_history();
1223 state->cur_history--;
1224 return 1;
1225 }
1226 beep();
1227 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001228}
1229
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001230static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001231{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001232 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001233 if (state->cur_history < state->cnt_history) {
1234 save_command_ps_at_cur_history(); /* save the current history line */
1235 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001236 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001237 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001238 beep();
1239 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001240}
Robert Griebl350d26b2002-12-03 22:45:46 +00001241
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001242# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001243/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001244 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001245 * Otherwise shell users get unhappy.
1246 *
1247 * History file is trimmed lazily, when it grows several times longer
1248 * than configured MAX_HISTORY lines.
1249 */
1250
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001251static void free_line_input_t(line_input_t *n)
1252{
1253 int i = n->cnt_history;
1254 while (i > 0)
1255 free(n->history[--i]);
1256 free(n);
1257}
1258
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001259/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001260static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001261{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001262 char *temp_h[MAX_HISTORY];
1263 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001264 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001265 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001266
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001267 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001268
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001269 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001270 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001271 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001272 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001273 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001274 free(st_parm->history[idx]);
1275 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001276 }
1277
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001278 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1279 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001280 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001281 while ((line = xmalloc_fgetline(fp)) != NULL) {
1282 if (line[0] == '\0') {
1283 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001284 continue;
1285 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001286 free(temp_h[idx]);
1287 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001288 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001289 idx++;
1290 if (idx == MAX_HISTORY)
1291 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001292 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001293 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001294
1295 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001296 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001297 while (temp_h[idx] == NULL) {
1298 idx++;
1299 if (idx == MAX_HISTORY)
1300 idx = 0;
1301 }
1302 }
1303
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001304 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001305 for (i = 0; i < MAX_HISTORY;) {
1306 line = temp_h[idx];
1307 if (!line)
1308 break;
1309 idx++;
1310 if (idx == MAX_HISTORY)
1311 idx = 0;
1312 line_len = strlen(line);
1313 if (line_len >= MAX_LINELEN)
1314 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001315 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001316 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001317 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001318 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001319}
1320
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001321/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001322static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001323{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001324 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001325 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001326
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001327 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1328 if (fd < 0)
1329 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001330 xlseek(fd, 0, SEEK_END); /* paranoia */
1331 len = strlen(str);
1332 str[len] = '\n'; /* we (try to) do atomic write */
1333 len2 = full_write(fd, str, len + 1);
1334 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001335 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001336 if (len2 != len + 1)
1337 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001338
1339 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001340 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001341 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1342 FILE *fp;
1343 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001344 line_input_t *st_temp;
1345 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001346
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001347 /* we may have concurrently written entries from others.
1348 * load them */
1349 st_temp = new_line_input_t(state->flags);
1350 st_temp->hist_file = state->hist_file;
1351 load_history(st_temp);
1352
1353 /* write out temp file and replace hist_file atomically */
1354 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001355 fp = fopen_for_write(new_name);
1356 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001357 for (i = 0; i < st_temp->cnt_history; i++)
1358 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001359 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001360 if (rename(new_name, state->hist_file) == 0)
1361 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001362 }
1363 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001364 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001365 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001366}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001367# else
1368# define load_history(a) ((void)0)
1369# define save_history(a) ((void)0)
1370# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001371
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001372static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001373{
1374 int i;
1375
1376 if (!(state->flags & DO_HISTORY))
1377 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001378 if (str[0] == '\0')
1379 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001380 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001381 /* Don't save dupes */
1382 if (i && strcmp(state->history[i-1], str) == 0)
1383 return;
1384
1385 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1386 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1387
1388 /* If history[] is full, remove the oldest command */
1389 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001390 if (i >= MAX_HISTORY) {
1391 free(state->history[0]);
1392 for (i = 0; i < MAX_HISTORY-1; i++)
1393 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001394 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001395 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001396 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001397 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001398 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001399 state->cur_history = i;
1400 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001401# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001402 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001403 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001404# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001405 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001406}
1407
1408#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001409# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001410#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001411
1412
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001413#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001414/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001415 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001416 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001417static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001418vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001419{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001420 CHAR_T *command = command_ps;
1421
1422 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001423 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001424 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001425 input_forward();
1426}
1427
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001428static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001429vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001430{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001431 CHAR_T *command = command_ps;
1432
1433 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001434 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001435 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1436 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001437 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001438 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001439 } else if (BB_ispunct(command[cursor])) {
1440 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001441 input_forward();
1442 }
1443
Denis Vlasenko253ce002007-01-22 08:34:44 +00001444 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001445 input_forward();
1446
Denys Vlasenko13028922009-07-12 00:51:15 +02001447 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001448 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001449 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001450 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001451}
1452
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001453static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001454vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001455{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001456 CHAR_T *command = command_ps;
1457
Paul Fox3f11b1b2005-08-04 19:04:46 +00001458 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001459 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001460 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001461 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001462 input_forward();
1463}
1464
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001465static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001466vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001467{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001468 CHAR_T *command = command_ps;
1469
Denis Vlasenko253ce002007-01-22 08:34:44 +00001470 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001471 return;
1472 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001473 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001474 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001475 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001476 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001477 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001478 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001479 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001480 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001481 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001482 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001483 } else if (BB_ispunct(command[cursor])) {
1484 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001485 input_forward();
1486 }
1487}
1488
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001489static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001490vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001491{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001492 CHAR_T *command = command_ps;
1493
1494 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001495 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001496 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001497 input_backward(1);
1498}
1499
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001500static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001501vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001502{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001503 CHAR_T *command = command_ps;
1504
Paul Fox3f11b1b2005-08-04 19:04:46 +00001505 if (cursor <= 0)
1506 return;
1507 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001508 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001509 input_backward(1);
1510 if (cursor <= 0)
1511 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001512 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001513 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001514 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001515 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001516 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001517 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001518 } else if (BB_ispunct(command[cursor])) {
1519 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001520 input_backward(1);
1521 }
1522}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001523#endif
1524
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001525/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1526static void ctrl_left(void)
1527{
1528 CHAR_T *command = command_ps;
1529
1530 while (1) {
1531 CHAR_T c;
1532
1533 input_backward(1);
1534 if (cursor == 0)
1535 break;
1536 c = command[cursor];
1537 if (c != ' ' && !BB_ispunct(c)) {
1538 /* we reached a "word" delimited by spaces/punct.
1539 * go to its beginning */
1540 while (1) {
1541 c = command[cursor - 1];
1542 if (c == ' ' || BB_ispunct(c))
1543 break;
1544 input_backward(1);
1545 if (cursor == 0)
1546 break;
1547 }
1548 break;
1549 }
1550 }
1551}
1552static void ctrl_right(void)
1553{
1554 CHAR_T *command = command_ps;
1555
1556 while (1) {
1557 CHAR_T c;
1558
1559 c = command[cursor];
1560 if (c == BB_NUL)
1561 break;
1562 if (c != ' ' && !BB_ispunct(c)) {
1563 /* we reached a "word" delimited by spaces/punct.
1564 * go to its end + 1 */
1565 while (1) {
1566 input_forward();
1567 c = command[cursor];
1568 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1569 break;
1570 }
1571 break;
1572 }
1573 input_forward();
1574 }
1575}
1576
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001577
1578/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001579 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001580 */
1581
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001582#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1583static void ask_terminal(void)
1584{
1585 /* Ask terminal where is the cursor now.
1586 * lineedit_read_key handles response and corrects
1587 * our idea of current cursor position.
1588 * Testcase: run "echo -n long_line_long_line_long_line",
1589 * then type in a long, wrapping command and try to
1590 * delete it using backspace key.
1591 * Note: we print it _after_ prompt, because
1592 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1593 */
1594 /* Problem: if there is buffered input on stdin,
1595 * the response will be delivered later,
1596 * possibly to an unsuspecting application.
1597 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1598 * Result:
1599 * ~/srcdevel/bbox/fix/busybox.t4 #
1600 * ~/srcdevel/bbox/fix/busybox.t4 #
1601 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1602 * ~/srcdevel/bbox/fix/busybox.t4 #
1603 *
1604 * Checking for input with poll only makes the race narrower,
1605 * I still can trigger it. Strace:
1606 *
1607 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1608 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1609 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1610 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1611 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1612 */
1613 struct pollfd pfd;
1614
1615 pfd.fd = STDIN_FILENO;
1616 pfd.events = POLLIN;
1617 if (safe_poll(&pfd, 1, 0) == 0) {
1618 S.sent_ESC_br6n = 1;
1619 out1str("\033" "[6n");
1620 fflush_all(); /* make terminal see it ASAP! */
1621 }
1622}
1623#else
1624#define ask_terminal() ((void)0)
1625#endif
1626
Denis Vlasenko38f63192007-01-22 09:03:07 +00001627#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001628static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001629{
1630 cmdedit_prompt = prmt_ptr;
1631 cmdedit_prmt_len = strlen(prmt_ptr);
1632 put_prompt();
1633}
1634#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001635static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001636{
1637 int prmt_len = 0;
1638 size_t cur_prmt_len = 0;
1639 char flg_not_length = '[';
1640 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001641 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1642 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001643 char c;
1644 char *pbuf;
1645
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001646 cmdedit_prmt_len = 0;
1647
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001648 if (!cwd_buf) {
1649 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001650 }
1651
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001652 cbuf[1] = '\0'; /* never changes */
1653
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001654 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001655 char *free_me = NULL;
1656
1657 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001658 c = *prmt_ptr++;
1659 if (c == '\\') {
1660 const char *cp = prmt_ptr;
1661 int l;
1662
1663 c = bb_process_escape_sequence(&prmt_ptr);
1664 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001665 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001666 break;
1667 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001668
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001669 switch (c) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001670# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001671 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001672 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001673 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001674# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001675 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001676 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001677 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001678 break;
1679 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001680 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001681 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001682# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001683 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001684 /* /home/user[/something] -> ~[/something] */
1685 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001686 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001687 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001688 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1689 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1690 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001691 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001692 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001693 }
1694 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001695# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001696 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001697 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001698 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001699 if (cp != NULL && cp != pbuf)
1700 pbuf += (cp-pbuf) + 1;
1701 break;
1702 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001703 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001704 break;
1705 case 'e': case 'E': /* \e \E = \033 */
1706 c = '\033';
1707 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001708 case 'x': case 'X': {
1709 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001710 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001711 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001712 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001713 buf2[l] = '\0';
1714 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001715 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001716 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001717 break;
1718 }
1719 prmt_ptr++;
1720 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001721 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001722 if (c == 0)
1723 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001724 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001725 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001726 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001727 case '[': case ']':
1728 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001729 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001730 continue;
1731 }
1732 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001733 } /* switch */
1734 } /* if */
1735 } /* if */
1736 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001737 cur_prmt_len = strlen(pbuf);
1738 prmt_len += cur_prmt_len;
1739 if (flg_not_length != ']')
1740 cmdedit_prmt_len += cur_prmt_len;
1741 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001742 free(free_me);
1743 } /* while */
1744
1745 if (cwd_buf != (char *)bb_msg_unknown)
1746 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001747 cmdedit_prompt = prmt_mem_ptr;
1748 put_prompt();
1749}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001750#endif
1751
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001752static void cmdedit_setwidth(unsigned w, int redraw_flg)
1753{
1754 cmdedit_termw = w;
1755 if (redraw_flg) {
1756 /* new y for current cursor */
1757 int new_y = (cursor + cmdedit_prmt_len) / w;
1758 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001759 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001760 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001761 }
1762}
1763
1764static void win_changed(int nsig)
1765{
Denis Vlasenko55995022008-05-18 22:28:26 +00001766 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001767 get_terminal_width_height(0, &width, NULL);
1768 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1769 if (nsig == SIGWINCH)
1770 signal(SIGWINCH, win_changed); /* rearm ourself */
1771}
1772
Denys Vlasenko020f4062009-05-17 16:44:54 +02001773static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001774{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001775 int64_t ic;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001776 int timeout = -1;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001777#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001778 char unicode_buf[MB_CUR_MAX + 1];
1779 int unicode_idx = 0;
1780#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001781
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001782 while (1) {
1783 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1784 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1785 * insist on full MB_CUR_MAX buffer to declare input like
1786 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1787 *
1788 * Note: read_key sets errno to 0 on success.
1789 */
1790 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1791 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001792#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001793 if (errno == EAGAIN && unicode_idx != 0)
1794 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001795#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001796 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001797 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001798
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001799#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1800 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001801 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001802 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001803 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001804 if (cursor == 0) { /* otherwise it may be bogus */
1805 int col = ((ic >> 32) & 0x7fff) - 1;
1806 if (col > cmdedit_prmt_len) {
1807 cmdedit_x += (col - cmdedit_prmt_len);
1808 while (cmdedit_x >= cmdedit_termw) {
1809 cmdedit_x -= cmdedit_termw;
1810 cmdedit_y++;
1811 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001812 }
1813 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001814 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001815 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001816#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001817
Denys Vlasenko19158a82010-03-26 14:06:56 +01001818#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001819 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001820 wchar_t wc;
1821
1822 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001823 break;
1824 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001825
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001826 unicode_buf[unicode_idx++] = ic;
1827 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001828 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1829 /* Not (yet?) a valid unicode char */
1830 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001831 timeout = 50;
1832 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001833 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001834 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001835 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001836 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001837# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001838 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001839# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001840 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001841# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001842 } else {
1843 /* Valid unicode char, return its code */
1844 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001845 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001846 }
1847#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001848 break;
1849 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001850
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001851 return ic;
1852}
1853
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001854#if ENABLE_UNICODE_BIDI_SUPPORT
1855static int isrtl_str(void)
1856{
1857 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001858
1859 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001860 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001861 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001862}
1863#else
1864# define isrtl_str() 0
1865#endif
1866
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001867/* leave out the "vi-mode"-only case labels if vi editing isn't
1868 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001869#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001870
1871/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001872#undef CTRL
1873#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001874
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001875/* maxsize must be >= 2.
1876 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001877 * -1 on read errors or EOF, or on bare Ctrl-D,
1878 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001879 * >0 length of input string, including terminating '\n'
1880 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001881int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001882{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001883 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001884#if ENABLE_FEATURE_TAB_COMPLETION
1885 smallint lastWasTab = FALSE;
1886#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001887 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001888#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001889 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001890#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001891 struct termios initial_settings;
1892 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001893 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001894
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001895 INIT_S();
1896
1897 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1898 || !(initial_settings.c_lflag & ECHO)
1899 ) {
1900 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001901 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001902 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001903 if (fgets(command, maxsize, stdin) == NULL)
1904 len = -1; /* EOF or error */
1905 else
1906 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001907 DEINIT_S();
1908 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001909 }
1910
Denys Vlasenko28055022010-01-04 20:49:58 +01001911 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001912
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001913// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001914 if (maxsize > MAX_LINELEN)
1915 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001916 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001917
1918 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001919 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001920#if MAX_HISTORY > 0
1921# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001922 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001923 if (state->cnt_history == 0)
1924 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001925# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001926 if (state->flags & DO_HISTORY)
1927 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001928#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001929
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001930 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001931 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001932 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001933#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001934 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1935#else
Mark Whitley4e338752001-01-26 20:42:23 +00001936 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001937 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001938#endif
1939#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001940
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001941 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001942 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1943 /* Turn off echoing and CTRL-C, so we can trap it */
1944 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001945 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001946 new_settings.c_cc[VMIN] = 1;
1947 new_settings.c_cc[VTIME] = 0;
1948 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001949#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001950# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001951#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001952 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001953 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001954
Eric Andersen6faae7d2001-02-16 20:09:17 +00001955 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001956 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1957 win_changed(0); /* do initial resizing */
1958#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1959 {
1960 struct passwd *entry;
1961
1962 entry = getpwuid(geteuid());
1963 if (entry) {
1964 user_buf = xstrdup(entry->pw_name);
1965 home_pwd_buf = xstrdup(entry->pw_dir);
1966 }
1967 }
1968#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001969
1970#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001971 for (i = 0; i <= MAX_HISTORY; i++)
1972 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001973 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1974#endif
1975
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001976 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001977 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001978 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001979
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001980 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001981 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001982 /*
1983 * The emacs and vi modes share much of the code in the big
1984 * command loop. Commands entered when in vi's command mode
1985 * (aka "escape mode") get an extra bit added to distinguish
1986 * them - this keeps them from being self-inserted. This
1987 * clutters the big switch a bit, but keeps all the code
1988 * in one place.
1989 */
1990 enum {
1991 VI_CMDMODE_BIT = 0x40000000,
1992 /* 0x80000000 bit flags KEYCODE_xxx */
1993 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001994 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001995
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001996 fflush_all();
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001997 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001998
Denis Vlasenko38f63192007-01-22 09:03:07 +00001999#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002000 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002001 if (vi_cmdmode) {
2002 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2003 * change ic if it contains one of them: */
2004 ic |= VI_CMDMODE_BIT;
2005 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002006#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002007
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002008 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002009 case '\n':
2010 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002011 vi_case('\n'|VI_CMDMODE_BIT:)
2012 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002013 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002014 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002015 break_out = 1;
2016 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002017 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002018 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002019 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002020 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002021 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002022 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002023 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002024 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002025 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002026 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002027 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002028 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002029 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002030 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002031 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002032 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002033 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002034 vi_case('l'|VI_CMDMODE_BIT:)
2035 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002036 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002037 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002038 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002039 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002040 if (!isrtl_str())
2041 input_backspace();
2042 else
2043 input_delete(0);
2044 break;
2045 case KEYCODE_DELETE:
2046 if (!isrtl_str())
2047 input_delete(0);
2048 else
2049 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002050 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002051#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002052 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002053 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002054 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002055#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002056 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002057 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002058 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002059 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002060 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002061 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002062 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002063 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002064 /* Control-l -- clear screen */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002065 printf("\033[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002066 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002067 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002068#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002069 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002070 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2071 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002072 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002073 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002074 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002075 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002076 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002077 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2078 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002079 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002080 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002081 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002082 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002083#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002084 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002085 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002086 /* Control-U -- Clear line before cursor */
2087 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002088 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002089 memmove(command_ps, command_ps + cursor,
2090 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002091 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002092 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002093 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002094 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002095 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002096 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002097 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002098 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002099 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002100 input_backspace();
2101 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002102
Denis Vlasenko38f63192007-01-22 09:03:07 +00002103#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002104 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002105 vi_cmdmode = 0;
2106 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002107 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002108 input_backward(cursor);
2109 vi_cmdmode = 0;
2110 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002111 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002112 input_forward();
2113 vi_cmdmode = 0;
2114 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002115 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002116 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002117 vi_cmdmode = 0;
2118 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002119 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002120 input_delete(1);
2121 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002122 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002123 if (cursor > 0) {
2124 input_backward(1);
2125 input_delete(1);
2126 }
2127 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002128 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002129 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002130 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002131 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002132 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002133 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002134 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002135 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002136 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002137 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002138 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002139 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002140 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002141 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002142 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002143 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002144 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002145 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002146 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002147 vi_cmdmode = 0;
2148 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002149 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002150 goto clear_to_eol;
2151
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002152 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002153 vi_cmdmode = 0;
2154 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002155 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002156 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002157
Denys Vlasenko020f4062009-05-17 16:44:54 +02002158 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002159 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002160 goto prepare_to_die;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002161 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002162 input_backward(cursor);
2163 goto clear_to_eol;
2164 break;
2165 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002166
2167 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002168 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002169 case 'w':
2170 case 'W':
2171 case 'e':
2172 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002173 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002174 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002175 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002176 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002177 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002178 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002179 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002180 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002181 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002182 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002183 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002184 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002185 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002186 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002187 break;
2188 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002189 nc = cursor;
2190 input_backward(cursor - sc);
2191 while (nc-- > cursor)
2192 input_delete(1);
2193 break;
2194 case 'b': /* "db", "cb" */
2195 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002196 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002197 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002198 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002199 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002200 while (sc-- > cursor)
2201 input_delete(1);
2202 break;
2203 case ' ': /* "d ", "c " */
2204 input_delete(1);
2205 break;
2206 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002207 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002208 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002209 input_delete(1);
2210 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002211 }
2212 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002213 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002214 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002215 input_forward();
2216 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002217 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002218 put();
2219 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002220 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002221//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002222 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002223 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002224 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002225 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002226 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002227 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002228 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002229 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002230 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002231 }
2232 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002233 case '\x1b': /* ESC */
2234 if (state->flags & VI_MODE) {
2235 /* insert mode --> command mode */
2236 vi_cmdmode = 1;
2237 input_backward(1);
2238 }
2239 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002240#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002241
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002242#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002243 case KEYCODE_UP:
2244 if (get_previous_history())
2245 goto rewrite_line;
2246 beep();
2247 break;
2248 case KEYCODE_DOWN:
2249 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002250 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002251 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002252 /* Rewrite the line with the selected history item */
2253 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002254 command_len = load_string(state->history[state->cur_history] ?
2255 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002256 /* redraw and go to eol (bol, in vi) */
2257 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2258 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002259#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002260 case KEYCODE_RIGHT:
2261 input_forward();
2262 break;
2263 case KEYCODE_LEFT:
2264 input_backward(1);
2265 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002266 case KEYCODE_CTRL_LEFT:
2267 ctrl_left();
2268 break;
2269 case KEYCODE_CTRL_RIGHT:
2270 ctrl_right();
2271 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002272 case KEYCODE_HOME:
2273 input_backward(cursor);
2274 break;
2275 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002276 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002277 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002278
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002279 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002280 if (initial_settings.c_cc[VINTR] != 0
2281 && ic_raw == initial_settings.c_cc[VINTR]
2282 ) {
2283 /* Ctrl-C (usually) - stop gathering input */
2284 goto_new_line();
2285 command_len = 0;
2286 break_out = -1; /* "do not append '\n'" */
2287 break;
2288 }
2289 if (initial_settings.c_cc[VEOF] != 0
2290 && ic_raw == initial_settings.c_cc[VEOF]
2291 ) {
2292 /* Ctrl-D (usually) - delete one character,
2293 * or exit if len=0 and no chars to delete */
2294 if (command_len == 0) {
2295 errno = 0;
2296#if ENABLE_FEATURE_EDITING_VI
2297 prepare_to_die:
2298#endif
2299 break_out = command_len = -1;
2300 break;
2301 }
2302 input_delete(0);
2303 break;
2304 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002305// /* Control-V -- force insert of next char */
2306// if (c == CTRL('V')) {
2307// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2308// goto prepare_to_die;
2309// if (c == 0) {
2310// beep();
2311// break;
2312// }
2313// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002314 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002315 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2316 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002317 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002318 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002319 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002320 * Otherwise, we are here if ic is a
2321 * control char or an unhandled ESC sequence,
2322 * which is also ignored.
2323 */
2324 break;
2325 }
2326 if ((int)command_len >= (maxsize - 2)) {
2327 /* Not enough space for the char and EOL */
2328 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002329 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002330
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002331 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002332 if (cursor == (command_len - 1)) {
2333 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002334 command_ps[cursor] = ic;
2335 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002336 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002337 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002338 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002339 } else {
2340 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002341 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002342
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002343 memmove(command_ps + sc + 1, command_ps + sc,
2344 (command_len - sc) * sizeof(command_ps[0]));
2345 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002346 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2347 if (!isrtl_str())
2348 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002349 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002350 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002351 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002352 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002353 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002354 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002355
2356 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002357 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002358
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002359#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002360 if (ic_raw != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002361 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002362#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002363 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002364
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002365#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002366 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002367 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2368 * We sent "ESC [ 6 n", but got '\n' first, and
2369 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2370 * It's bad already and not much can be done with it
2371 * (it _will_ be visible for the next process to read stdin),
2372 * but without this delay it even shows up on the screen
2373 * as garbage because we restore echo settings with tcsetattr
2374 * before it comes in. UGLY!
2375 */
2376 usleep(20*1000);
2377 }
2378#endif
2379
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002380/* Stop bug catching using "command_must_not_be_used" trick */
2381#undef command
2382
Denys Vlasenko19158a82010-03-26 14:06:56 +01002383#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002384 command[0] = '\0';
2385 if (command_len > 0)
2386 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002387 free(command_ps);
2388#endif
2389
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002390 if (command_len > 0)
2391 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002392
Eric Andersen27bb7902003-12-23 20:24:51 +00002393 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002394 command[command_len++] = '\n';
2395 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002396 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002397
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002398#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002399 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002400#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002401
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002402 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002403 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002404 /* restore SIGWINCH handler */
2405 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002406 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002407
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002408 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002409 DEINIT_S();
2410
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002411 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002412}
2413
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002414#else
2415
2416#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002417int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002418{
2419 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002420 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002421 fgets(command, maxsize, stdin);
2422 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002423}
2424
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002425#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002426
2427
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002428/*
2429 * Testing
2430 */
2431
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002432#ifdef TEST
2433
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002434#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002435
2436const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002437
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002438int main(int argc, char **argv)
2439{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002440 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002441 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002442#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002443 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2444 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2445 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002446#else
2447 "% ";
2448#endif
2449
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002450 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002451 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002452 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002453 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002454 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002455 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002456 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002457 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002458 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002459 return 0;
2460}
2461
Eric Andersenc470f442003-07-28 09:56:35 +00002462#endif /* TEST */