blob: 3e62f46b4cf548833db2e7df2def3f05aa3af984 [file] [log] [blame]
Erik Andersenc7c634b2000-03-19 05:28:55 +00001/* vi: set sw=4 ts=4: */
Erik Andersen13456d12000-03-16 08:09:57 +00002/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02003 * Command line editing.
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Eric Andersen81fe1232003-07-29 06:38:40 +00005 * Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license.
Eric Andersen7467c8d2001-07-12 20:26:32 +00006 * Written by: Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersen5f2c79d2001-02-16 18:36:04 +00007 *
8 * Used ideas:
9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995
Eric Andersen81fe1232003-07-29 06:38:40 +000012 * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000013 *
Erik Andersen13456d12000-03-16 08:09:57 +000014 * This code is 'as is' with no warranty.
Erik Andersen13456d12000-03-16 08:09:57 +000015 */
16
17/*
Denis Vlasenko78ff8192008-06-28 21:03:43 +000018 * Usage and known bugs:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010019 * Terminal key codes are not extensive, more needs to be added.
20 * This version was created on Debian GNU/Linux 2.x.
Denis Vlasenko78ff8192008-06-28 21:03:43 +000021 * Delete, Backspace, Home, End, and the arrow keys were tested
22 * to work in an Xterm and console. Ctrl-A also works as Home.
23 * Ctrl-E also works as End.
24 *
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010025 * The following readline-like commands are not implemented:
26 * ESC-b -- Move back one word
27 * ESC-f -- Move forward one word
28 * ESC-d -- Delete forward one word
29 * CTL-t -- Transpose two characters
30 *
Denis Vlasenko78ff8192008-06-28 21:03:43 +000031 * lineedit does not know that the terminal escape sequences do not
32 * take up space on the screen. The redisplay code assumes, unless
33 * told otherwise, that each character in the prompt is a printable
34 * character that takes up one character position on the screen.
35 * You need to tell lineedit that some sequences of characters
36 * in the prompt take up no screen space. Compatibly with readline,
37 * use the \[ escape to begin a sequence of non-printing characters,
38 * and the \] escape to signal the end of such a sequence. Example:
39 *
40 * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +020041 *
42 * Unicode in PS1 is not fully supported: prompt length calulation is wrong,
43 * resulting in line wrap problems with long (multi-line) input.
44 *
45 * Multi-line PS1 (e.g. PS1="\n[\w]\n$ ") has problems with history
46 * browsing: up/down arrows result in scrolling.
47 * It stems from simplistic "cmdedit_y = cmdedit_prmt_len / cmdedit_termw"
48 * calculation of how many lines the prompt takes.
Erik Andersen13456d12000-03-16 08:09:57 +000049 */
Ron Yorstonf23264b2015-05-29 11:31:40 +010050#include "busybox.h"
51#include "NUM_APPLETS.h"
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020052#include "unicode.h"
Alexey Fomenko232ebaa2011-05-20 04:26:29 +020053#ifndef _POSIX_VDISABLE
54# define _POSIX_VDISABLE '\0'
55#endif
56
Glenn L McGrath475820c2004-01-22 12:42:23 +000057
Glenn L McGrath3b251852004-01-03 12:07:32 +000058#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020059# define ENABLE_FEATURE_EDITING 0
60# define ENABLE_FEATURE_TAB_COMPLETION 0
61# define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020062#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000063
Eric Andersen5165fbe2001-02-20 06:42:29 +000064
Denis Vlasenko82b39e82007-01-21 19:18:19 +000065/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000066#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000067
Denis Vlasenko82b39e82007-01-21 19:18:19 +000068
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020069#define ENABLE_USERNAME_OR_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000070 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020071#define IF_USERNAME_OR_HOMEDIR(...)
72#if ENABLE_USERNAME_OR_HOMEDIR
73# undef IF_USERNAME_OR_HOMEDIR
74# define IF_USERNAME_OR_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000075#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000076
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020077
78#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010079#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020080# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020081# define CHAR_T wchar_t
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010082static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010083# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010084static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010085# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010086static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020087# undef isspace
88# undef isalnum
89# undef ispunct
90# undef isprint
91# define isspace isspace_must_not_be_used
92# define isalnum isalnum_must_not_be_used
93# define ispunct ispunct_must_not_be_used
94# define isprint isprint_must_not_be_used
95#else
96# define BB_NUL '\0'
97# define CHAR_T char
98# define BB_isspace(c) isspace(c)
99# define BB_isalnum(c) isalnum(c)
100# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200101#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200102#if ENABLE_UNICODE_PRESERVE_BROKEN
103# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
104# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
105#else
106# define unicode_is_raw_byte(wc) 0
107#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200108
109
Marek Polacek7b181072010-10-28 21:34:56 +0200110#define ESC "\033"
111
112#define SEQ_CLEAR_TILL_END_OF_SCREEN ESC"[J"
113//#define SEQ_CLEAR_TILL_END_OF_LINE ESC"[K"
Tomas Heinricha659b812010-04-29 13:43:39 +0200114
115
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000116enum {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000117 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000118 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000119 : 0x7ff0
120};
Robert Griebl350d26b2002-12-03 22:45:46 +0000121
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200122#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000123static const char null_str[] ALIGN1 = "";
124#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000125
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000126/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000127struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000128 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000129
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000130 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
131 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000132
Denys Vlasenko020f4062009-05-17 16:44:54 +0200133 unsigned cmdedit_x; /* real x (col) terminal position */
134 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000135 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000136
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000137 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200138 int command_len; /* must be signed */
139 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200140 * to _not_ be promoted to unsigned */
141 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200142 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000143
144 const char *cmdedit_prompt;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000145
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200146#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000147 char *user_buf;
148 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000149#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000150
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000151#if ENABLE_FEATURE_TAB_COMPLETION
152 char **matches;
153 unsigned num_matches;
154#endif
155
156#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200157# define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200158 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000159 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200160 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000161#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100162#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100163 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100164#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000165};
166
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000167/* See lineedit_ptr_hack.c */
168extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000169
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000170#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000171#define state (S.state )
172#define cmdedit_termw (S.cmdedit_termw )
173#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
174#define cmdedit_x (S.cmdedit_x )
175#define cmdedit_y (S.cmdedit_y )
176#define cmdedit_prmt_len (S.cmdedit_prmt_len)
177#define cursor (S.cursor )
178#define command_len (S.command_len )
179#define command_ps (S.command_ps )
180#define cmdedit_prompt (S.cmdedit_prompt )
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; \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200193 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Shawn J. Goff46031da2013-02-27 18:30:05 +0100194 IF_FEATURE_EDITING_VI(delptr = delbuf;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000195} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200196
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000197static void deinit_S(void)
198{
199#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000200 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200201 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000202 free((char*)cmdedit_prompt);
203#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200204#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000205 free(user_buf);
206 if (home_pwd_buf != null_str)
207 free(home_pwd_buf);
208#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000209 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000210}
211#define DEINIT_S() deinit_S()
212
Denis Vlasenko2c844952008-04-25 18:44:35 +0000213
Denys Vlasenko19158a82010-03-26 14:06:56 +0100214#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200215static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200216{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100217 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200218 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100219 if (len < 0)
220 len = 0;
221 command_ps[len] = BB_NUL;
222 return len;
223 } else {
224 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200225 while (src[i] && i < S.maxsize - 1) {
226 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100227 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200228 }
229 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100230 return i;
231 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200232}
Tomas Heinricha659b812010-04-29 13:43:39 +0200233static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200234{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100235 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200236# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100237 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
238 if (len < 0)
239 len = 0;
240 dst[len] = '\0';
241 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200242# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100243 unsigned dstpos = 0;
244 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200245
Denys Vlasenko353680a2011-03-27 01:18:07 +0100246 maxsize--;
247 while (dstpos < maxsize) {
248 wchar_t wc;
249 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200250
Denys Vlasenko353680a2011-03-27 01:18:07 +0100251 /* Convert up to 1st invalid byte (or up to end) */
252 while ((wc = command_ps[srcpos]) != BB_NUL
253 && !unicode_is_raw_byte(wc)
254 ) {
255 srcpos++;
256 }
257 command_ps[srcpos] = BB_NUL;
258 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
259 if (n < 0) /* should not happen */
260 break;
261 dstpos += n;
262 if (wc == BB_NUL) /* usually is */
263 break;
264
265 /* We do have invalid byte here! */
266 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200267 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100268 if (dstpos == maxsize)
269 break;
270 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200271 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100272 dst[dstpos] = '\0';
273 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200274# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100275 } else {
276 unsigned i = 0;
277 while ((dst[i] = command_ps[i]) != 0)
278 i++;
279 return i;
280 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200281}
282/* I thought just fputwc(c, stdout) would work. But no... */
283static void BB_PUTCHAR(wchar_t c)
284{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100285 if (unicode_status == UNICODE_ON) {
286 char buf[MB_CUR_MAX + 1];
287 mbstate_t mbst = { 0 };
288 ssize_t len = wcrtomb(buf, c, &mbst);
289 if (len > 0) {
290 buf[len] = '\0';
291 fputs(buf, stdout);
292 }
293 } else {
294 /* In this case, c is always one byte */
295 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200296 }
297}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200298# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
299static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
300# else
301static wchar_t adjust_width_and_validate_wc(wchar_t wc)
302# define adjust_width_and_validate_wc(width_adj, wc) \
303 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
304# endif
305{
306 int w = 1;
307
308 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200309 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
310 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200311 goto subst;
312 }
313 w = wcwidth(wc);
314 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
315 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
316 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
317 ) {
318 subst:
319 w = 1;
320 wc = CONFIG_SUBST_WCHAR;
321 }
322 }
323
324# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
325 *width_adj += w;
326#endif
327 return wc;
328}
329#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200330static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200331{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200332 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200333 return strlen(command_ps);
334}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200335# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200336static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200337{
338 safe_strncpy(dst, command_ps, maxsize);
339}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200340# endif
341# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200342/* Should never be called: */
343int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200344#endif
345
346
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000347/* Put 'command_ps[cursor]', cursor++.
348 * Advance cursor on screen. If we reached right margin, scroll text up
349 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000350#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200351static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000352{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200353 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200354 unsigned width = 0;
355 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000356
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200357 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000358 /* erase character after end of input string */
359 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200360 } else {
361 /* advance cursor only if we aren't at the end yet */
362 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200363 if (unicode_status == UNICODE_ON) {
364 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
365 c = adjust_width_and_validate_wc(&cmdedit_x, c);
366 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
367 } else {
368 cmdedit_x++;
369 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000370 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200371
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200372 ofs_to_right = cmdedit_x - cmdedit_termw;
373 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
374 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200375 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000376 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200377
378 if (ofs_to_right >= 0) {
379 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000380#if HACK_FOR_WRONG_WIDTH
381 /* This works better if our idea of term width is wrong
382 * and it is actually wider (often happens on serial lines).
383 * Printing CR,LF *forces* cursor to next line.
384 * OTOH if terminal width is correct AND terminal does NOT
385 * have automargin (IOW: it is moving cursor to next line
386 * by itself (which is wrong for VT-10x terminals)),
387 * this will break things: there will be one extra empty line */
388 puts("\r"); /* + implicit '\n' */
389#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200390 /* VT-10x terminals don't wrap cursor to next line when last char
391 * on the line is printed - cursor stays "over" this char.
392 * Need to print _next_ char too (first one to appear on next line)
393 * to make cursor move down to next line.
394 */
395 /* Works ok only if cmdedit_termw is correct. */
396 c = command_ps[cursor];
397 if (c == BB_NUL)
398 c = ' ';
399 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000400 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000401#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200402 cmdedit_y++;
403 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
404 width = 0;
405 } else { /* ofs_to_right > 0 */
406 /* wide char c didn't fit on prev line */
407 BB_PUTCHAR(c);
408 }
409 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000410 }
Erik Andersen13456d12000-03-16 08:09:57 +0000411}
412
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000413/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200414static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000415{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000416 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200417 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000418}
419
420/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000421static void goto_new_line(void)
422{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200423 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200424 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000425 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000426}
427
Rob Landley88621d72006-08-29 19:41:06 +0000428static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000429{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000430 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000431}
432
Denys Vlasenko248c3242010-05-17 00:45:44 +0200433static void put_prompt(void)
434{
435 unsigned w;
436
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200437 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200438 fflush_all();
439 cursor = 0;
440 w = cmdedit_termw; /* read volatile var once */
441 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
442 cmdedit_x = cmdedit_prmt_len % w;
443}
444
Eric Andersenaff114c2004-04-14 17:51:38 +0000445/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000446/* (optimized for slow terminals) */
447static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000448{
449 if (num > cursor)
450 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200451 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000452 return;
453 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000454
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200455 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
456 && unicode_status == UNICODE_ON
457 ) {
458 /* correct NUM to be equal to _screen_ width */
459 int n = num;
460 num = 0;
461 while (--n >= 0)
462 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
463 if (num == 0)
464 return;
465 }
466
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000467 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000468 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000469 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000470 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000471 * Also gets miscompiled for ARM users
472 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000473 * printf(("\b\b\b\b" + 4) - num);
474 * return;
475 */
476 do {
477 bb_putchar('\b');
478 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000479 return;
480 }
Marek Polacek7b181072010-10-28 21:34:56 +0200481 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000482 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000483 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000484
485 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200486 if (ENABLE_UNICODE_WIDE_WCHARS) {
487 /* With wide chars, it is hard to "backtrack"
488 * and reliably figure out where to put cursor.
489 * Example (<> is a wide char; # is an ordinary char, _ cursor):
490 * |prompt: <><> |
491 * |<><><><><><> |
492 * |_ |
493 * and user presses left arrow. num = 1, cmdedit_x = 0,
494 * We need to go up one line, and then - how do we know that
495 * we need to go *10* positions to the right? Because
496 * |prompt: <>#<>|
497 * |<><><>#<><><>|
498 * |_ |
499 * in this situation we need to go *11* positions to the right.
500 *
501 * A simpler thing to do is to redraw everything from the start
502 * up to new cursor position (which is already known):
503 */
504 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200505 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200506 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200507 cmdedit_y = 0;
508 sv_cursor = cursor;
509 put_prompt(); /* sets cursor to 0 */
510 while (cursor < sv_cursor)
511 put_cur_glyph_and_inc_cursor();
512 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200513 int lines_up;
514 unsigned width;
515 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200516 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200517 width = cmdedit_termw; /* read volatile var once */
518 /* num=1...w: one line up, w+1...2w: two, etc: */
519 lines_up = 1 + (num - 1) / width;
520 cmdedit_x = (width * cmdedit_y - num) % width;
521 cmdedit_y -= lines_up;
522 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200523 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200524 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200525 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
526 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200527 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200528 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000529 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000530}
531
Eric Andersenaff114c2004-04-14 17:51:38 +0000532/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000533static void redraw(int y, int back_cursor)
534{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200535 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200536 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000537 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000538 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200539 put_till_end_and_adv_cursor();
540 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000541 input_backward(back_cursor);
542}
543
Paul Fox3f11b1b2005-08-04 19:04:46 +0000544/* Delete the char in front of the cursor, optionally saving it
545 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000546#if !ENABLE_FEATURE_EDITING_VI
547static void input_delete(void)
548#define input_delete(save) input_delete()
549#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000550static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000551#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000552{
Mark Whitley4e338752001-01-26 20:42:23 +0000553 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000554
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000555 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000556 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000557
Denis Vlasenko38f63192007-01-22 09:03:07 +0000558#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000559 if (save) {
560 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000561 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000562 newdelflag = 0;
563 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000564 if ((delptr - delbuf) < DELBUFSIZ)
565 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000566 }
567#endif
568
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200569 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200570 /* (command_len + 1 [because of NUL]) - (j + 1)
571 * simplified into (command_len - j) */
572 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000573 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200574 put_till_end_and_adv_cursor();
575 /* Last char is still visible, erase it (and more) */
576 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000577 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000578}
579
Denis Vlasenko38f63192007-01-22 09:03:07 +0000580#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000581static void put(void)
582{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000583 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000584 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000585
Paul Fox3f11b1b2005-08-04 19:04:46 +0000586 if (j == 0)
587 return;
588 ocursor = cursor;
589 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200590 memmove(command_ps + cursor + j, command_ps + cursor,
591 (command_len - cursor + 1) * sizeof(command_ps[0]));
592 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000593 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200594 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000595 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000596}
597#endif
598
Mark Whitley4e338752001-01-26 20:42:23 +0000599/* Delete the char in back of the cursor */
600static void input_backspace(void)
601{
602 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000603 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000604 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000605 }
606}
607
Eric Andersenaff114c2004-04-14 17:51:38 +0000608/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000609static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000610{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000611 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200612 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000613}
614
Denis Vlasenko38f63192007-01-22 09:03:07 +0000615#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000616
Mike Shalf3763032010-11-22 03:49:18 +0100617//FIXME:
618//needs to be more clever: currently it thinks that "foo\ b<TAB>
619//matches the file named "foo bar", which is untrue.
620//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
621//not "foo bar <cursor>...
622
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000623static void free_tab_completion_data(void)
624{
625 if (matches) {
626 while (num_matches)
627 free(matches[--num_matches]);
628 free(matches);
629 matches = NULL;
630 }
631}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000632
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000633static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000634{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000635 matches = xrealloc_vector(matches, 4, num_matches);
636 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000637 num_matches++;
638}
639
Mike Shalf3763032010-11-22 03:49:18 +0100640# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200641/* Replace "~user/..." with "/homedir/...".
642 * The parameter is malloced, free it or return it
643 * unchanged if no user is matched.
644 */
645static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000646{
647 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200648 char *tilde_name = ud;
649 char *home = NULL;
650
651 ud++; /* skip ~ */
652 if (*ud == '/') { /* "~/..." */
653 home = home_pwd_buf;
654 } else {
655 /* "~user/..." */
656 ud = strchr(ud, '/');
657 *ud = '\0'; /* "~user" */
658 entry = getpwnam(tilde_name + 1);
659 *ud = '/'; /* restore "~user/..." */
660 if (entry)
661 home = entry->pw_dir;
662 }
663 if (home) {
664 ud = concat_path_file(home, ud);
665 free(tilde_name);
666 tilde_name = ud;
667 }
668 return tilde_name;
669}
670
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200671/* ~use<tab> - find all users with this prefix.
672 * Return the length of the prefix used for matching.
673 */
674static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200675{
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100676 struct passwd *pw;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200677 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000678
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200679 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000680 userlen = strlen(ud);
681
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200682 setpwent();
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100683 while ((pw = getpwent()) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200684 /* Null usernames should result in all users as possible completions. */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100685 if (/* !ud[0] || */ is_prefixed_with(pw->pw_name, ud)) {
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100686 add_match(xasprintf("~%s/", pw->pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000687 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000688 }
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100689 endpwent(); /* don't keep password file open */
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200690
691 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000692}
Mike Shalf3763032010-11-22 03:49:18 +0100693# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000694
695enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000696 FIND_EXE_ONLY = 0,
697 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000698 FIND_FILE_ONLY = 2,
699};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000700
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200701static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000702{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000703 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000704 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000705 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000706 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000707
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000708 if (state->flags & WITH_PATH_LOOKUP)
709 pth = state->path_lookup;
710 else
711 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200712
713 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000714 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
715 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000716
Denis Vlasenko253ce002007-01-22 08:34:44 +0000717 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000718 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000719 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000720 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000721 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000722 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200723 tmp++;
724 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000725 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000726 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000727 }
728
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200729 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000730 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000731 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000732 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000733 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000734 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000735 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000736 *tmp++ = '\0'; /* ':' -> '\0' */
737 if (*tmp == '\0')
738 break; /* :<empty> */
739 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000740 }
Mark Whitley4e338752001-01-26 20:42:23 +0000741 return npth;
742}
743
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200744/* Complete command, directory or file name.
745 * Return the length of the prefix used for matching.
746 */
747static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000748{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000749 char *path1[1];
750 char **paths = path1;
751 int npaths;
752 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200753 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200754 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200755 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000756
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000757 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000758 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000759
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200760 pfind = strrchr(command, '/');
761 if (!pfind) {
762 if (type == FIND_EXE_ONLY)
763 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000764 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000765 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000766 /* point to 'l' in "..../last_component" */
767 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200768 /* dirbuf = ".../.../.../" */
769 dirbuf = xstrndup(command, pfind - command);
Mike Shalf3763032010-11-22 03:49:18 +0100770# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200771 if (dirbuf[0] == '~') /* ~/... or ~user/... */
772 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100773# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200774 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000775 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200776 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000777
Ron Yorstonf23264b2015-05-29 11:31:40 +0100778#if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
779 if (type == FIND_EXE_ONLY) {
780 const char *p = applet_names;
781
Ron Yorston2b919582016-04-08 11:57:20 +0100782 while (*p) {
Ron Yorstonf23264b2015-05-29 11:31:40 +0100783 if (strncmp(pfind, p, pf_len) == 0)
784 add_match(xstrdup(p));
Ron Yorston2b919582016-04-08 11:57:20 +0100785 while (*p++ != '\0')
786 continue;
Ron Yorstonf23264b2015-05-29 11:31:40 +0100787 }
788 }
789#endif
790
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000791 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200792 DIR *dir;
793 struct dirent *next;
794 struct stat st;
795 char *found;
796
Mark Whitley4e338752001-01-26 20:42:23 +0000797 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000798 if (!dir)
799 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000800
801 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200802 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200803 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000804
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200805 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
806 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000807 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200808 /* match? */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100809 if (!is_prefixed_with(name_found, pfind))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200810 continue; /* no */
811
812 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000813 /* NB: stat() first so that we see is it a directory;
814 * but if that fails, use lstat() so that
815 * we still match dangling links */
816 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200817 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000818
Denys Vlasenko39263632010-09-03 14:11:08 +0200819 /* Save only name */
820 len = strlen(name_found);
821 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
822 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000823
Mark Whitley4e338752001-01-26 20:42:23 +0000824 if (S_ISDIR(st.st_mode)) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200825 /* name is a directory, add slash */
826 found[len] = '/';
827 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000828 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200829 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000830 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000831 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000832 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200833 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000834 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000835 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000836 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000837 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000838 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000839 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200840 } /* for every path */
841
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000842 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000843 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000844 free(paths);
845 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200846 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200847
848 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000849}
Erik Andersenf0657d32000-04-12 17:49:52 +0000850
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200851/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200852 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200853 * was pressed. This function looks at it, figures out what part of it
854 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200855 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200856 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200857#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200858/* Helpers: */
859/* QUOT is used on elements of int_buf[], which are bytes,
860 * not Unicode chars. Therefore it works correctly even in Unicode mode.
861 */
862#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200863static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200864{
865 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200866 if (beg == end)
867 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200868
869 while ((int_buf[beg] = int_buf[end]) != 0)
870 beg++, end++;
871
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200872 if (dbg_bmp) {
873 int i;
874 for (i = 0; int_buf[i]; i++)
875 bb_putchar((unsigned char)int_buf[i]);
876 bb_putchar('\n');
877 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200878}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200879/* Caller ensures that match_buf points to a malloced buffer
880 * big enough to hold strlen(match_buf)*2 + 2
881 */
882static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000883{
884 int i, j;
885 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200886 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000887
Denys Vlasenko76939e72010-09-03 14:09:24 +0200888 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200889
Denys Vlasenko76939e72010-09-03 14:09:24 +0200890 /* Copy in reverse order, since they overlap */
891 i = strlen(match_buf);
892 do {
893 int_buf[i] = (unsigned char)match_buf[i];
894 i--;
895 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000896
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200897 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200898 for (i = 0; int_buf[i]; i++) {
899 if (int_buf[i] == '\\') {
900 remove_chunk(int_buf, i, i + 1);
901 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000902 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200903 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200904 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200905 {
906 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200907 i = 0;
908 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200909 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200910 if (!cur)
911 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200912 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200913 if (!in_quote || (cur == in_quote)) {
914 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200915 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200916 continue;
917 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000918 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200919 if (in_quote)
920 int_buf[i] = cur | QUOT;
921 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200922 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000923 }
924
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200925 /* Remove everything up to command delimiters:
926 * ';' ';;' '&' '|' '&&' '||',
927 * but careful with '>&' '<&' '>|'
928 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000929 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200930 int cur = int_buf[i];
931 if (cur == ';' || cur == '&' || cur == '|') {
932 int prev = i ? int_buf[i - 1] : 0;
933 if (cur == '&' && (prev == '>' || prev == '<')) {
934 continue;
935 } else if (cur == '|' && prev == '>') {
936 continue;
937 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200938 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200939 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000940 }
941 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200942 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200943 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000944 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200945 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000946 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200947 /* `cmd` should count as a word:
948 * `cmd` c<tab> should search for files c*,
949 * not commands c*. Therefore we don't drop
950 * `cmd` entirely, we replace it with single `.
951 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200952 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200953 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000954 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200955 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200956 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200957 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200958 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200959 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000960 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200961 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000962
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200963 /* Remove "cmd (" and "cmd {"
964 * Example: "if { c<tab>"
965 * In this example, c should be matched as command pfx.
966 */
967 for (i = 0; int_buf[i]; i++) {
968 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200969 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +0200970 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000971 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200972 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000973
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200974 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000975 for (i = 0; int_buf[i]; i++)
976 if (int_buf[i] != ' ')
977 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200978 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000979
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200980 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000981 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200982 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000983 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200984 if (int_buf[i] == ' '
985 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200986 && (char)int_buf[0] == 'c'
987 && (char)int_buf[1] == 'd'
988 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000989 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000990 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000991 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000992 command_mode = FIND_FILE_ONLY;
993 break;
994 }
995 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200996 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200997 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200998
999 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001000 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
1001 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001002 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001003 int cur = int_buf[i];
1004 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001005 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001006 break;
1007 }
1008 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001009
Denys Vlasenko76939e72010-09-03 14:09:24 +02001010 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001011 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001012 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001013 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001014
Denys Vlasenko76939e72010-09-03 14:09:24 +02001015 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001016
1017 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001018}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001019
Glenn L McGrath4d001292003-01-06 01:11:50 +00001020/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001021 * Display by column (original idea from ls applet,
1022 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001023 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001024static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001025{
1026 int ncols, row;
1027 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001028 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001029 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001030 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001031
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001032 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001033 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001034 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001035 if (column_width < l)
1036 column_width = l;
1037 }
1038 column_width += 2; /* min space for columns */
1039 ncols = cmdedit_termw / column_width;
1040
1041 if (ncols > 1) {
1042 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001043 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001044 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001045 } else {
1046 ncols = 1;
1047 }
1048 for (row = 0; row < nrows; row++) {
1049 int n = row;
1050 int nc;
1051
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001052 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001053 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001054 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001055 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001056 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001057 if (ENABLE_UNICODE_SUPPORT)
1058 puts(printable_string(NULL, matches[n]));
1059 else
1060 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001061 }
1062}
1063
Mike Shalf3763032010-11-22 03:49:18 +01001064static const char *is_special_char(char c)
1065{
1066 return strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", c);
1067}
1068
1069static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001070{
1071 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001072 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001073
1074 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001075 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001076 s[l++] = '\\';
1077 s[l++] = *found++;
1078 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001079 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001080 return s;
1081}
1082
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001083/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001084static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001085{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001086 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001087 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001088 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001089 /* Length of string used for matching */
1090 unsigned match_pfx_len = match_pfx_len;
1091 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001092# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001093 /* cursor pos in command converted to multibyte form */
1094 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001095# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001096 if (!(state->flags & TAB_COMPLETION))
1097 return;
1098
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001099 if (*lastWasTab) {
1100 /* The last char was a TAB too.
1101 * Print a list of all the available choices.
1102 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001103 if (num_matches > 0) {
1104 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001105 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001106 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001107 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001108 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001109 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001110 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001111 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001112
1113 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001114 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001115
Denys Vlasenko76939e72010-09-03 14:09:24 +02001116 /* Make a local copy of the string up to the position of the cursor.
1117 * build_match_prefix will expand it into int16_t's, need to allocate
1118 * twice as much as the string_len+1.
1119 * (we then also (ab)use this extra space later - see (**))
1120 */
1121 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001122# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001123 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001124# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001125 {
1126 CHAR_T wc = command_ps[cursor];
1127 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001128 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001129 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001130 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001131 }
Mike Shalf3763032010-11-22 03:49:18 +01001132# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001133 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001134
1135 /* Free up any memory already allocated */
1136 free_tab_completion_data();
1137
Mike Shalf3763032010-11-22 03:49:18 +01001138# if ENABLE_FEATURE_USERNAME_COMPLETION
1139 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001140 * then try completing this word as a username. */
1141 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001142 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1143 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001144# endif
1145 /* If complete_username() did not match,
1146 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001147 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001148 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001149
1150 /* Account for backslashes which will be inserted
1151 * by quote_special_chars() later */
1152 {
1153 const char *e = match_buf + strlen(match_buf);
1154 const char *s = e - match_pfx_len;
1155 while (s < e)
1156 if (is_special_char(*s++))
1157 match_pfx_len++;
1158 }
1159
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001160 /* Remove duplicates */
1161 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001162 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001163 qsort_string_vector(matches, num_matches);
1164 for (i = 0; i < num_matches - 1; ++i) {
1165 //if (matches[i] && matches[i+1]) { /* paranoia */
1166 if (strcmp(matches[i], matches[i+1]) == 0) {
1167 free(matches[i]);
1168 //matches[i] = NULL; /* paranoia */
1169 } else {
1170 matches[n++] = matches[i];
1171 }
1172 //}
1173 }
1174 matches[n++] = matches[i];
1175 num_matches = n;
1176 }
Mike Shalf3763032010-11-22 03:49:18 +01001177
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001178 /* Did we find exactly one match? */
1179 if (num_matches != 1) { /* no */
1180 char *cp;
1181 beep();
1182 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001183 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001184 /* Find common prefix */
1185 chosen_match = xstrdup(matches[0]);
1186 for (cp = chosen_match; *cp; cp++) {
1187 unsigned n;
1188 for (n = 1; n < num_matches; n++) {
1189 if (matches[n][cp - chosen_match] != *cp) {
1190 goto stop;
1191 }
1192 }
1193 }
1194 stop:
1195 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001196 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001197 }
1198 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001199 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001200 free(chosen_match);
1201 chosen_match = cp;
1202 len_found = strlen(chosen_match);
1203 } else { /* exactly one match */
1204 /* Next <tab> is not a double-tab */
1205 *lastWasTab = 0;
1206
Mike Shalf3763032010-11-22 03:49:18 +01001207 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001208 len_found = strlen(chosen_match);
1209 if (chosen_match[len_found-1] != '/') {
1210 chosen_match[len_found] = ' ';
1211 chosen_match[++len_found] = '\0';
1212 }
1213 }
1214
Mike Shalf3763032010-11-22 03:49:18 +01001215# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001216 /* Have space to place the match? */
1217 /* The result consists of three parts with these lengths: */
1218 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1219 /* it simplifies into: */
1220 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1221 int pos;
1222 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001223 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001224 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001225 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001226 command_len = strlen(command_ps);
1227 /* new pos */
1228 pos = cursor + len_found - match_pfx_len;
1229 /* write out the matched command */
1230 redraw(cmdedit_y, command_len - pos);
1231 }
Mike Shalf3763032010-11-22 03:49:18 +01001232# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001233 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001234 /* Use 2nd half of match_buf as scratch space - see (**) */
1235 char *command = match_buf + MAX_LINELEN;
1236 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001237 /* Have space to place the match? */
1238 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1239 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1240 int pos;
1241 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001242 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001243 /* where do we want to have cursor after all? */
1244 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001245 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001246 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001247 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001248 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001249 /* write out the matched command */
1250 /* paranoia: load_string can return 0 on conv error,
1251 * prevent passing pos = (0 - 12) to redraw */
1252 pos = command_len - len;
1253 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1254 }
1255 }
Mike Shalf3763032010-11-22 03:49:18 +01001256# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001257 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001258 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001259 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001260}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001261
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001262#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001263
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001264
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001265line_input_t* FAST_FUNC new_line_input_t(int flags)
1266{
1267 line_input_t *n = xzalloc(sizeof(*n));
1268 n->flags = flags;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001269#if MAX_HISTORY > 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001270 n->max_history = MAX_HISTORY;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001271#endif
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001272 return n;
1273}
1274
1275
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001276#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001277
Flemming Madsend96ffda2013-04-07 18:47:24 +02001278unsigned FAST_FUNC size_from_HISTFILESIZE(const char *hp)
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001279{
1280 int size = MAX_HISTORY;
1281 if (hp) {
1282 size = atoi(hp);
1283 if (size <= 0)
1284 return 1;
1285 if (size > MAX_HISTORY)
1286 return MAX_HISTORY;
1287 }
1288 return size;
1289}
1290
Denis Vlasenko682ad302008-09-27 01:28:56 +00001291static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001292{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001293 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001294 int cur = state->cur_history;
1295 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001296
Denys Vlasenko19158a82010-03-26 14:06:56 +01001297# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001298 {
1299 char tbuf[MAX_LINELEN];
1300 save_string(tbuf, sizeof(tbuf));
1301 state->history[cur] = xstrdup(tbuf);
1302 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001303# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001304 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001305# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001306 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001307}
1308
1309/* state->flags is already checked to be nonzero */
1310static int get_previous_history(void)
1311{
1312 if ((state->flags & DO_HISTORY) && state->cur_history) {
1313 save_command_ps_at_cur_history();
1314 state->cur_history--;
1315 return 1;
1316 }
1317 beep();
1318 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001319}
1320
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001321static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001322{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001323 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001324 if (state->cur_history < state->cnt_history) {
1325 save_command_ps_at_cur_history(); /* save the current history line */
1326 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001327 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001328 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001329 beep();
1330 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001331}
Robert Griebl350d26b2002-12-03 22:45:46 +00001332
Flemming Madsend96ffda2013-04-07 18:47:24 +02001333/* Lists command history. Used by shell 'history' builtins */
1334void FAST_FUNC show_history(const line_input_t *st)
1335{
1336 int i;
1337
1338 if (!st)
1339 return;
1340 for (i = 0; i < st->cnt_history; i++)
1341 printf("%4d %s\n", i, st->history[i]);
1342}
1343
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001344# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001345/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001346 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001347 * Otherwise shell users get unhappy.
1348 *
1349 * History file is trimmed lazily, when it grows several times longer
1350 * than configured MAX_HISTORY lines.
1351 */
1352
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001353static void free_line_input_t(line_input_t *n)
1354{
1355 int i = n->cnt_history;
1356 while (i > 0)
1357 free(n->history[--i]);
1358 free(n);
1359}
1360
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001361/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001362static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001363{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001364 char *temp_h[MAX_HISTORY];
1365 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001366 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001367 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001368
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001369 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001370
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001371 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001372 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001373 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001374 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001375 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001376 free(st_parm->history[idx]);
1377 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001378 }
1379
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001380 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1381 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001382 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001383 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001384 while ((line = xmalloc_fgetline(fp)) != NULL) {
1385 if (line[0] == '\0') {
1386 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001387 continue;
1388 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001389 free(temp_h[idx]);
1390 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001391 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001392 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001393 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001394 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001395 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001396 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001397
1398 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001399 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001400 while (temp_h[idx] == NULL) {
1401 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001402 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001403 idx = 0;
1404 }
1405 }
1406
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001407 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001408 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001409 line = temp_h[idx];
1410 if (!line)
1411 break;
1412 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001413 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001414 idx = 0;
1415 line_len = strlen(line);
1416 if (line_len >= MAX_LINELEN)
1417 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001418 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001419 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001420 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001421 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1422 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001423 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001424}
1425
Denys Vlasenkobede2152011-09-04 16:12:33 +02001426# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1427void save_history(line_input_t *st)
1428{
1429 FILE *fp;
1430
Denys Vlasenkobede2152011-09-04 16:12:33 +02001431 if (!st->hist_file)
1432 return;
1433 if (st->cnt_history <= st->cnt_history_in_file)
1434 return;
1435
1436 fp = fopen(st->hist_file, "a");
1437 if (fp) {
1438 int i, fd;
1439 char *new_name;
1440 line_input_t *st_temp;
1441
1442 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1443 fprintf(fp, "%s\n", st->history[i]);
1444 fclose(fp);
1445
1446 /* we may have concurrently written entries from others.
1447 * load them */
1448 st_temp = new_line_input_t(st->flags);
1449 st_temp->hist_file = st->hist_file;
1450 st_temp->max_history = st->max_history;
1451 load_history(st_temp);
1452
1453 /* write out temp file and replace hist_file atomically */
1454 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1455 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1456 if (fd >= 0) {
1457 fp = xfdopen_for_write(fd);
1458 for (i = 0; i < st_temp->cnt_history; i++)
1459 fprintf(fp, "%s\n", st_temp->history[i]);
1460 fclose(fp);
1461 if (rename(new_name, st->hist_file) == 0)
1462 st->cnt_history_in_file = st_temp->cnt_history;
1463 }
1464 free(new_name);
1465 free_line_input_t(st_temp);
1466 }
1467}
1468# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001469static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001470{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001471 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001472 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001473
Denys Vlasenkobede2152011-09-04 16:12:33 +02001474 if (!state->hist_file)
1475 return;
1476
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001477 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001478 if (fd < 0)
1479 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001480 xlseek(fd, 0, SEEK_END); /* paranoia */
1481 len = strlen(str);
1482 str[len] = '\n'; /* we (try to) do atomic write */
1483 len2 = full_write(fd, str, len + 1);
1484 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001485 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001486 if (len2 != len + 1)
1487 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001488
1489 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001490 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001491 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001492 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001493 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001494
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001495 /* we may have concurrently written entries from others.
1496 * load them */
1497 st_temp = new_line_input_t(state->flags);
1498 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001499 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001500 load_history(st_temp);
1501
1502 /* write out temp file and replace hist_file atomically */
1503 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001504 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001505 if (fd >= 0) {
1506 FILE *fp;
1507 int i;
1508
1509 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001510 for (i = 0; i < st_temp->cnt_history; i++)
1511 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001512 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001513 if (rename(new_name, state->hist_file) == 0)
1514 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001515 }
1516 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001517 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001518 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001519}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001520# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001521# else
1522# define load_history(a) ((void)0)
1523# define save_history(a) ((void)0)
1524# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001525
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001526static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001527{
1528 int i;
1529
1530 if (!(state->flags & DO_HISTORY))
1531 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001532 if (str[0] == '\0')
1533 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001534 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001535 /* Don't save dupes */
1536 if (i && strcmp(state->history[i-1], str) == 0)
1537 return;
1538
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001539 free(state->history[state->max_history]); /* redundant, paranoia */
1540 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001541
1542 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001543 /* we need to keep history[state->max_history] empty, hence >=, not > */
1544 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001545 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001546 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001547 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001548 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001549# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1550 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001551 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001552# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001553 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001554 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001555 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001556 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001557 state->cur_history = i;
1558 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001559# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1560 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001561# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001562}
1563
1564#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001565# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001566#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001567
1568
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001569#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001570/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001571 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001572 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001573static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001574vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001575{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001576 CHAR_T *command = command_ps;
1577
1578 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001579 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001580 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001581 input_forward();
1582}
1583
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001584static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001585vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001586{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001587 CHAR_T *command = command_ps;
1588
1589 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001590 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001591 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1592 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001593 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001594 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001595 } else if (BB_ispunct(command[cursor])) {
1596 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001597 input_forward();
1598 }
1599
Denis Vlasenko253ce002007-01-22 08:34:44 +00001600 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001601 input_forward();
1602
Denys Vlasenko13028922009-07-12 00:51:15 +02001603 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001604 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001605 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001606 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001607}
1608
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001609static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001610vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001611{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001612 CHAR_T *command = command_ps;
1613
Paul Fox3f11b1b2005-08-04 19:04:46 +00001614 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001615 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001616 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001617 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001618 input_forward();
1619}
1620
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001621static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001622vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001623{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001624 CHAR_T *command = command_ps;
1625
Denis Vlasenko253ce002007-01-22 08:34:44 +00001626 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001627 return;
1628 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001629 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001630 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001631 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001632 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001633 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001634 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001635 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001636 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001637 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001638 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001639 } else if (BB_ispunct(command[cursor])) {
1640 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001641 input_forward();
1642 }
1643}
1644
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001645static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001646vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001647{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001648 CHAR_T *command = command_ps;
1649
1650 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001651 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001652 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001653 input_backward(1);
1654}
1655
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001656static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001657vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001658{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001659 CHAR_T *command = command_ps;
1660
Paul Fox3f11b1b2005-08-04 19:04:46 +00001661 if (cursor <= 0)
1662 return;
1663 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001664 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001665 input_backward(1);
1666 if (cursor <= 0)
1667 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001668 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001669 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001670 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001671 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001672 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001673 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001674 } else if (BB_ispunct(command[cursor])) {
1675 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001676 input_backward(1);
1677 }
1678}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001679#endif
1680
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001681/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1682static void ctrl_left(void)
1683{
1684 CHAR_T *command = command_ps;
1685
1686 while (1) {
1687 CHAR_T c;
1688
1689 input_backward(1);
1690 if (cursor == 0)
1691 break;
1692 c = command[cursor];
1693 if (c != ' ' && !BB_ispunct(c)) {
1694 /* we reached a "word" delimited by spaces/punct.
1695 * go to its beginning */
1696 while (1) {
1697 c = command[cursor - 1];
1698 if (c == ' ' || BB_ispunct(c))
1699 break;
1700 input_backward(1);
1701 if (cursor == 0)
1702 break;
1703 }
1704 break;
1705 }
1706 }
1707}
1708static void ctrl_right(void)
1709{
1710 CHAR_T *command = command_ps;
1711
1712 while (1) {
1713 CHAR_T c;
1714
1715 c = command[cursor];
1716 if (c == BB_NUL)
1717 break;
1718 if (c != ' ' && !BB_ispunct(c)) {
1719 /* we reached a "word" delimited by spaces/punct.
1720 * go to its end + 1 */
1721 while (1) {
1722 input_forward();
1723 c = command[cursor];
1724 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1725 break;
1726 }
1727 break;
1728 }
1729 input_forward();
1730 }
1731}
1732
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001733
1734/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001735 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001736 */
1737
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001738#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1739static void ask_terminal(void)
1740{
1741 /* Ask terminal where is the cursor now.
1742 * lineedit_read_key handles response and corrects
1743 * our idea of current cursor position.
1744 * Testcase: run "echo -n long_line_long_line_long_line",
1745 * then type in a long, wrapping command and try to
1746 * delete it using backspace key.
1747 * Note: we print it _after_ prompt, because
1748 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1749 */
1750 /* Problem: if there is buffered input on stdin,
1751 * the response will be delivered later,
1752 * possibly to an unsuspecting application.
1753 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1754 * Result:
1755 * ~/srcdevel/bbox/fix/busybox.t4 #
1756 * ~/srcdevel/bbox/fix/busybox.t4 #
1757 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1758 * ~/srcdevel/bbox/fix/busybox.t4 #
1759 *
1760 * Checking for input with poll only makes the race narrower,
1761 * I still can trigger it. Strace:
1762 *
1763 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1764 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1765 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001766 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001767 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1768 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001769 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001770
Denys Vlasenko451add42010-07-25 00:06:41 +02001771 pfd.fd = STDIN_FILENO;
1772 pfd.events = POLLIN;
1773 if (safe_poll(&pfd, 1, 0) == 0) {
1774 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001775 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001776 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001777 }
1778}
1779#else
1780#define ask_terminal() ((void)0)
1781#endif
1782
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001783/* Called just once at read_line_input() init time */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001784#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001785static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001786{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001787 const char *p;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001788 cmdedit_prompt = prmt_ptr;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001789 p = strrchr(prmt_ptr, '\n');
Denys Vlasenko1b9ac212013-08-20 16:13:05 +02001790 cmdedit_prmt_len = unicode_strwidth(p ? p+1 : prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001791 put_prompt();
1792}
1793#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001794static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001795{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001796 int prmt_size = 0;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001797 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001798# if ENABLE_USERNAME_OR_HOMEDIR
1799 char *cwd_buf = NULL;
1800# endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001801 char flg_not_length = '[';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001802 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001803
Denys Vlasenko7a180432013-08-19 16:44:05 +02001804 /*cmdedit_prmt_len = 0; - already is */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001805
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001806 cbuf[1] = '\0'; /* never changes */
1807
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001808 while (*prmt_ptr) {
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001809 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001810 char *free_me = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001811 char *pbuf;
1812 char c;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001813
1814 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001815 c = *prmt_ptr++;
1816 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001817 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001818 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001819/*
1820 * Supported via bb_process_escape_sequence:
1821 * \a ASCII bell character (07)
1822 * \e ASCII escape character (033)
1823 * \n newline
1824 * \r carriage return
1825 * \\ backslash
1826 * \nnn char with octal code nnn
1827 * Supported:
1828 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001829 * \w current working directory, with $HOME abbreviated with a tilde
1830 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001831 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001832 * \h hostname up to the first '.'
1833 * \H hostname
1834 * \u username
1835 * \[ begin a sequence of non-printing characters
1836 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001837 * \T current time in 12-hour HH:MM:SS format
1838 * \@ current time in 12-hour am/pm format
1839 * \A current time in 24-hour HH:MM format
1840 * \t current time in 24-hour HH:MM:SS format
1841 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001842 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001843 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001844 * \# command number of this command
1845 * \j number of jobs currently managed by the shell
1846 * \l basename of the shell's terminal device name
1847 * \s name of the shell, the basename of $0 (the portion following the final slash)
1848 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001849 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1850 * \D{format}
1851 * format is passed to strftime(3).
1852 * An empty format results in a locale-specific time representation.
1853 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001854 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001855 * \v version of bash (e.g., 2.00)
1856 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01001857 cp = prmt_ptr;
1858 c = *cp;
1859 if (c != 't') /* don't treat \t as tab */
1860 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001861 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001862 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001863 break;
1864 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001865
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001866 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001867# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001868 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001869 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001870 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001871# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001872 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001873 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001874 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001875 if (c == 'h')
1876 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001877 break;
1878 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001879 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001880 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001881 case 'T': /* 12-hour HH:MM:SS format */
1882 case '@': /* 12-hour am/pm format */
1883 case 'A': /* 24-hour HH:MM format */
1884 case 't': /* 24-hour HH:MM:SS format */
1885 /* We show all of them as 24-hour HH:MM */
1886 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
1887 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001888 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001889# if ENABLE_USERNAME_OR_HOMEDIR
1890 case 'w': /* current dir */
1891 case 'W': /* basename of cur dir */
1892 if (!cwd_buf) {
1893 cwd_buf = xrealloc_getcwd_or_warn(NULL);
1894 if (!cwd_buf)
1895 cwd_buf = (char *)bb_msg_unknown;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001896 else if (home_pwd_buf[0]) {
1897 char *after_home_user;
1898
Denys Vlasenko1d145692013-03-29 13:09:05 +01001899 /* /home/user[/something] -> ~[/something] */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001900 after_home_user = is_prefixed_with(cwd_buf, home_pwd_buf);
1901 if (after_home_user
1902 && (*after_home_user == '/' || *after_home_user == '\0')
Denys Vlasenko1d145692013-03-29 13:09:05 +01001903 ) {
1904 cwd_buf[0] = '~';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001905 overlapping_strcpy(cwd_buf + 1, after_home_user);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001906 }
1907 }
1908 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001909 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001910 if (c == 'w')
1911 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001912 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01001913 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01001914 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001915 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001916# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001917// bb_process_escape_sequence does this now:
1918// case 'e': case 'E': /* \e \E = \033 */
1919// c = '\033';
1920// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001921 case 'x': case 'X': {
1922 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001923 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001924 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001925 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001926 buf2[l] = '\0';
1927 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001928 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001929 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001930 break;
1931 }
1932 prmt_ptr++;
1933 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001934 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001935 if (c == 0)
1936 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001937 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001938 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001939 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001940 case '[': case ']':
1941 if (c == flg_not_length) {
Denys Vlasenko7a180432013-08-19 16:44:05 +02001942 /* Toggle '['/']' hex 5b/5d */
1943 flg_not_length ^= 6;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001944 continue;
1945 }
1946 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001947 } /* switch */
1948 } /* if */
1949 } /* if */
1950 cbuf[0] = c;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001951 {
1952 int n = strlen(pbuf);
1953 prmt_size += n;
1954 if (c == '\n')
1955 cmdedit_prmt_len = 0;
1956 else if (flg_not_length != ']') {
1957#if 0 /*ENABLE_UNICODE_SUPPORT*/
1958/* Won't work, pbuf is one BYTE string here instead of an one Unicode char string. */
1959/* FIXME */
Denys Vlasenko1b9ac212013-08-20 16:13:05 +02001960 cmdedit_prmt_len += unicode_strwidth(pbuf);
Denys Vlasenko7a180432013-08-19 16:44:05 +02001961#else
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001962 cmdedit_prmt_len += n;
Denys Vlasenko7a180432013-08-19 16:44:05 +02001963#endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001964 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02001965 }
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001966 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_size+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001967 free(free_me);
1968 } /* while */
1969
Denys Vlasenko1d145692013-03-29 13:09:05 +01001970# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001971 if (cwd_buf != (char *)bb_msg_unknown)
1972 free(cwd_buf);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001973# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001974 cmdedit_prompt = prmt_mem_ptr;
1975 put_prompt();
1976}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001977#endif
1978
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001979static void cmdedit_setwidth(unsigned w, int redraw_flg)
1980{
1981 cmdedit_termw = w;
1982 if (redraw_flg) {
1983 /* new y for current cursor */
1984 int new_y = (cursor + cmdedit_prmt_len) / w;
1985 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001986 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001987 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001988 }
1989}
1990
1991static void win_changed(int nsig)
1992{
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001993 int sv_errno = errno;
Denis Vlasenko55995022008-05-18 22:28:26 +00001994 unsigned width;
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001995
Denys Vlasenko451add42010-07-25 00:06:41 +02001996 get_terminal_width_height(0, &width, NULL);
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001997//FIXME: cmdedit_setwidth() -> redraw() -> printf() -> KABOOM! (we are in signal handler!)
1998 cmdedit_setwidth(width, /*redraw_flg:*/ nsig);
1999
Denys Vlasenko55241fa2010-07-18 22:53:06 +02002000 errno = sv_errno;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002001}
2002
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002003static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002004{
Denys Vlasenko020f4062009-05-17 16:44:54 +02002005 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002006#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002007 char unicode_buf[MB_CUR_MAX + 1];
2008 int unicode_idx = 0;
2009#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02002010
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002011 while (1) {
2012 /* Wait for input. TIMEOUT = -1 makes read_key wait even
2013 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
2014 * insist on full MB_CUR_MAX buffer to declare input like
2015 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
2016 *
2017 * Note: read_key sets errno to 0 on success.
2018 */
2019 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
2020 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01002021#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002022 if (errno == EAGAIN && unicode_idx != 0)
2023 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01002024#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002025 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02002026 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002027
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002028#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2029 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002030 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02002031 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002032 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002033 if (cursor == 0) { /* otherwise it may be bogus */
2034 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002035 /*
2036 * Is col > cmdedit_prmt_len?
2037 * If yes (terminal says cursor is farther to the right
2038 * of where we think it should be),
2039 * the prompt wasn't printed starting at col 1,
2040 * there was additional text before it.
2041 */
2042 if ((int)(col - cmdedit_prmt_len) > 0) {
2043 /* Fix our understanding of current x position */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002044 cmdedit_x += (col - cmdedit_prmt_len);
2045 while (cmdedit_x >= cmdedit_termw) {
2046 cmdedit_x -= cmdedit_termw;
2047 cmdedit_y++;
2048 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02002049 }
2050 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002051 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02002052 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002053#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002054
Denys Vlasenko19158a82010-03-26 14:06:56 +01002055#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002056 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002057 wchar_t wc;
2058
2059 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002060 break;
2061 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002062
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002063 unicode_buf[unicode_idx++] = ic;
2064 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002065 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2066 /* Not (yet?) a valid unicode char */
2067 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002068 timeout = 50;
2069 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002070 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002071 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002072 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002073 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002074# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002075 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002076# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002077 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002078# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002079 } else {
2080 /* Valid unicode char, return its code */
2081 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002082 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002083 }
2084#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002085 break;
2086 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002087
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002088 return ic;
2089}
2090
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002091#if ENABLE_UNICODE_BIDI_SUPPORT
2092static int isrtl_str(void)
2093{
2094 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002095
2096 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002097 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002098 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002099}
2100#else
2101# define isrtl_str() 0
2102#endif
2103
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002104/* leave out the "vi-mode"-only case labels if vi editing isn't
2105 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002106#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002107
2108/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002109#undef CTRL
2110#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002111
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002112enum {
2113 VI_CMDMODE_BIT = 0x40000000,
2114 /* 0x80000000 bit flags KEYCODE_xxx */
2115};
2116
2117#if ENABLE_FEATURE_REVERSE_SEARCH
2118/* Mimic readline Ctrl-R reverse history search.
2119 * When invoked, it shows the following prompt:
2120 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2121 * and typing results in search being performed:
2122 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2123 * Search is performed by looking at progressively older lines in history.
2124 * Ctrl-R again searches for the next match in history.
2125 * Backspace deletes last matched char.
2126 * Control keys exit search and return to normal editing (at current history line).
2127 */
2128static int32_t reverse_i_search(void)
2129{
2130 char match_buf[128]; /* for user input */
2131 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2132 const char *matched_history_line;
2133 const char *saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002134 unsigned saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002135 int32_t ic;
2136
2137 matched_history_line = NULL;
2138 read_key_buffer[0] = 0;
2139 match_buf[0] = '\0';
2140
2141 /* Save and replace the prompt */
2142 saved_prompt = cmdedit_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002143 saved_prmt_len = cmdedit_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002144 goto set_prompt;
2145
2146 while (1) {
2147 int h;
2148 unsigned match_buf_len = strlen(match_buf);
2149
2150 fflush_all();
2151//FIXME: correct timeout?
2152 ic = lineedit_read_key(read_key_buffer, -1);
2153
2154 switch (ic) {
2155 case CTRL('R'): /* searching for the next match */
2156 break;
2157
2158 case '\b':
2159 case '\x7f':
2160 /* Backspace */
2161 if (unicode_status == UNICODE_ON) {
2162 while (match_buf_len != 0) {
2163 uint8_t c = match_buf[--match_buf_len];
2164 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2165 break; /* yes */
2166 }
2167 } else {
2168 if (match_buf_len != 0)
2169 match_buf_len--;
2170 }
2171 match_buf[match_buf_len] = '\0';
2172 break;
2173
2174 default:
2175 if (ic < ' '
2176 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2177 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2178 ) {
2179 goto ret;
2180 }
2181
2182 /* Append this char */
2183#if ENABLE_UNICODE_SUPPORT
2184 if (unicode_status == UNICODE_ON) {
2185 mbstate_t mbstate = { 0 };
2186 char buf[MB_CUR_MAX + 1];
2187 int len = wcrtomb(buf, ic, &mbstate);
2188 if (len > 0) {
2189 buf[len] = '\0';
2190 if (match_buf_len + len < sizeof(match_buf))
2191 strcpy(match_buf + match_buf_len, buf);
2192 }
2193 } else
2194#endif
2195 if (match_buf_len < sizeof(match_buf) - 1) {
2196 match_buf[match_buf_len] = ic;
2197 match_buf[match_buf_len + 1] = '\0';
2198 }
2199 break;
2200 } /* switch (ic) */
2201
2202 /* Search in history for match_buf */
2203 h = state->cur_history;
2204 if (ic == CTRL('R'))
2205 h--;
2206 while (h >= 0) {
2207 if (state->history[h]) {
2208 char *match = strstr(state->history[h], match_buf);
2209 if (match) {
2210 state->cur_history = h;
2211 matched_history_line = state->history[h];
2212 command_len = load_string(matched_history_line);
2213 cursor = match - matched_history_line;
2214//FIXME: cursor position for Unicode case
2215
2216 free((char*)cmdedit_prompt);
2217 set_prompt:
2218 cmdedit_prompt = xasprintf("(reverse-i-search)'%s': ", match_buf);
Denys Vlasenko1b9ac212013-08-20 16:13:05 +02002219 cmdedit_prmt_len = unicode_strwidth(cmdedit_prompt);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002220 goto do_redraw;
2221 }
2222 }
2223 h--;
2224 }
2225
2226 /* Not found */
2227 match_buf[match_buf_len] = '\0';
2228 beep();
2229 continue;
2230
2231 do_redraw:
2232 redraw(cmdedit_y, command_len - cursor);
2233 } /* while (1) */
2234
2235 ret:
2236 if (matched_history_line)
2237 command_len = load_string(matched_history_line);
2238
2239 free((char*)cmdedit_prompt);
2240 cmdedit_prompt = saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002241 cmdedit_prmt_len = saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002242 redraw(cmdedit_y, command_len - cursor);
2243
2244 return ic;
2245}
2246#endif
2247
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002248/* maxsize must be >= 2.
2249 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002250 * -1 on read errors or EOF, or on bare Ctrl-D,
2251 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002252 * >0 length of input string, including terminating '\n'
2253 */
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002254int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *command, int maxsize, int timeout)
Erik Andersen13456d12000-03-16 08:09:57 +00002255{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002256 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002257#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002258 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002259#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002260 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002261#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002262 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002263#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002264 struct termios initial_settings;
2265 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002266 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002267
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002268 INIT_S();
2269
2270 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002271 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002272 ) {
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002273 /* Happens when e.g. stty -echo was run before.
2274 * But if ICANON is not set, we don't come here.
2275 * (example: interactive python ^Z-backgrounded,
2276 * tty is still in "raw mode").
2277 */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002278 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002279 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002280 if (fgets(command, maxsize, stdin) == NULL)
2281 len = -1; /* EOF or error */
2282 else
2283 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002284 DEINIT_S();
2285 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002286 }
2287
Denys Vlasenko28055022010-01-04 20:49:58 +01002288 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002289
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002290// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002291 if (maxsize > MAX_LINELEN)
2292 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002293 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002294
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002295 /* With zero flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00002296 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002297#if MAX_HISTORY > 0
2298# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02002299 if (state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00002300 if (state->cnt_history == 0)
2301 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002302# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002303 if (state->flags & DO_HISTORY)
2304 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002305#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002306
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002307 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002308 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002309 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002310#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002311 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2312#else
Mark Whitley4e338752001-01-26 20:42:23 +00002313 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002314 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002315#endif
2316#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002317
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002318 new_settings = initial_settings;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002319 /* ~ICANON: unbuffered input (most c_cc[] are disabled, VMIN/VTIME are enabled) */
2320 /* ~ECHO, ~ECHONL: turn off echoing, including newline echoing */
2321 /* ~ISIG: turn off INTR (ctrl-C), QUIT, SUSP */
2322 new_settings.c_lflag &= ~(ICANON | ECHO | ECHONL | ISIG);
2323 /* reads would block only if < 1 char is available */
Eric Andersen34506362001-08-02 05:02:46 +00002324 new_settings.c_cc[VMIN] = 1;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002325 /* no timeout (reads block forever) */
Eric Andersen34506362001-08-02 05:02:46 +00002326 new_settings.c_cc[VTIME] = 0;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002327 /* Should be not needed if ISIG is off: */
2328 /* Turn off CTRL-C */
2329 /* new_settings.c_cc[VINTR] = _POSIX_VDISABLE; */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002330 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002331
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002332#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002333 {
2334 struct passwd *entry;
2335
2336 entry = getpwuid(geteuid());
2337 if (entry) {
2338 user_buf = xstrdup(entry->pw_name);
2339 home_pwd_buf = xstrdup(entry->pw_dir);
2340 }
2341 }
2342#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002343
2344#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002345 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002346 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002347 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2348#endif
2349
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002350 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002351 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002352 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002353
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002354 /* Install window resize handler (NB: after *all* init is complete) */
2355//FIXME: save entire sigaction!
2356 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
2357 win_changed(0); /* get initial window size */
2358
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002359 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002360 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002361 /*
2362 * The emacs and vi modes share much of the code in the big
2363 * command loop. Commands entered when in vi's command mode
2364 * (aka "escape mode") get an extra bit added to distinguish
2365 * them - this keeps them from being self-inserted. This
2366 * clutters the big switch a bit, but keeps all the code
2367 * in one place.
2368 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002369 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002370
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002371 fflush_all();
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002372 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002373
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002374#if ENABLE_FEATURE_REVERSE_SEARCH
2375 again:
2376#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002377#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002378 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002379 if (vi_cmdmode) {
2380 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2381 * change ic if it contains one of them: */
2382 ic |= VI_CMDMODE_BIT;
2383 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002384#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002385
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002386 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002387 case '\n':
2388 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002389 vi_case('\n'|VI_CMDMODE_BIT:)
2390 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002391 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002392 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002393 break_out = 1;
2394 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002395 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002396 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002397 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002398 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002399 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002400 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002401 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002402 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002403 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002404 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002405 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002406 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002407 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002408 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002409 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002410 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002411 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002412 vi_case('l'|VI_CMDMODE_BIT:)
2413 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002414 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002415 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002416 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002417 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002418 if (!isrtl_str())
2419 input_backspace();
2420 else
2421 input_delete(0);
2422 break;
2423 case KEYCODE_DELETE:
2424 if (!isrtl_str())
2425 input_delete(0);
2426 else
2427 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002428 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002429#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002430 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002431 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002432 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002433#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002434 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002435 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002436 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002437 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002438 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002439 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002440 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002441 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002442 /* Control-l -- clear screen */
Marek Polacek7b181072010-10-28 21:34:56 +02002443 printf(ESC"[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002444 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002445 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002446#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002447 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002448 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2449 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002450 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002451 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002452 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002453 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002454 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002455 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2456 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002457 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002458 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002459 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002460 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002461#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002462 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002463 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002464 /* Control-U -- Clear line before cursor */
2465 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002466 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002467 memmove(command_ps, command_ps + cursor,
2468 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002469 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002470 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002471 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002472 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002473 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002474 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002475 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002476 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002477 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002478 input_backspace();
2479 break;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002480#if ENABLE_FEATURE_REVERSE_SEARCH
2481 case CTRL('R'):
2482 ic = ic_raw = reverse_i_search();
2483 goto again;
2484#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002485
Denis Vlasenko38f63192007-01-22 09:03:07 +00002486#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002487 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002488 vi_cmdmode = 0;
2489 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002490 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002491 input_backward(cursor);
2492 vi_cmdmode = 0;
2493 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002494 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002495 input_forward();
2496 vi_cmdmode = 0;
2497 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002498 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002499 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002500 vi_cmdmode = 0;
2501 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002502 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002503 input_delete(1);
2504 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002505 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002506 if (cursor > 0) {
2507 input_backward(1);
2508 input_delete(1);
2509 }
2510 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002511 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002512 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002513 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002514 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002515 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002516 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002517 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002518 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002519 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002520 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002521 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002522 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002523 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002524 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002525 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002526 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002527 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002528 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002529 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002530 vi_cmdmode = 0;
2531 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002532 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002533 goto clear_to_eol;
2534
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002535 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002536 vi_cmdmode = 0;
2537 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002538 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002539 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002540
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002541 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002542 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002543 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002544 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002545 input_backward(cursor);
2546 goto clear_to_eol;
2547 break;
2548 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002549
2550 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002551 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002552 case 'w':
2553 case 'W':
2554 case 'e':
2555 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002556 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002557 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002558 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002559 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002560 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002561 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002562 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002563 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002564 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002565 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002566 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002567 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002568 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002569 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002570 break;
2571 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002572 nc = cursor;
2573 input_backward(cursor - sc);
2574 while (nc-- > cursor)
2575 input_delete(1);
2576 break;
2577 case 'b': /* "db", "cb" */
2578 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002579 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002580 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002581 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002582 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002583 while (sc-- > cursor)
2584 input_delete(1);
2585 break;
2586 case ' ': /* "d ", "c " */
2587 input_delete(1);
2588 break;
2589 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002590 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002591 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002592 input_delete(1);
2593 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002594 }
2595 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002596 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002597 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002598 input_forward();
2599 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002600 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002601 put();
2602 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002603 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002604//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002605 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002606 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002607 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002608 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002609 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002610 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002611 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002612 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002613 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002614 }
2615 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002616 case '\x1b': /* ESC */
2617 if (state->flags & VI_MODE) {
2618 /* insert mode --> command mode */
2619 vi_cmdmode = 1;
2620 input_backward(1);
2621 }
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002622 /* Handle a few ESC-<key> combinations the same way
2623 * standard readline bindings (IOW: bash) do.
2624 * Often, Alt-<key> generates ESC-<key>.
2625 */
Ron Yorston20cd31a2014-12-12 08:29:41 +00002626 ic = lineedit_read_key(read_key_buffer, 50);
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002627 switch (ic) {
2628 //case KEYCODE_LEFT: - bash doesn't do this
2629 case 'b':
Denys Vlasenko56443cd2012-04-20 15:07:22 +02002630 ctrl_left();
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002631 break;
2632 //case KEYCODE_RIGHT: - bash doesn't do this
2633 case 'f':
2634 ctrl_right();
2635 break;
2636 //case KEYCODE_DELETE: - bash doesn't do this
2637 case 'd': /* Alt-D */
2638 {
2639 /* Delete word forward */
2640 int nc, sc = cursor;
2641 ctrl_right();
Cliff Frey49195652012-08-07 17:59:40 +02002642 nc = cursor - sc;
2643 input_backward(nc);
2644 while (--nc >= 0)
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002645 input_delete(1);
2646 break;
2647 }
2648 case '\b': /* Alt-Backspace(?) */
2649 case '\x7f': /* Alt-Backspace(?) */
2650 //case 'w': - bash doesn't do this
2651 {
2652 /* Delete word backward */
2653 int sc = cursor;
2654 ctrl_left();
2655 while (sc-- > cursor)
2656 input_delete(1);
2657 break;
2658 }
2659 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002660 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002661#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002662
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002663#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002664 case KEYCODE_UP:
2665 if (get_previous_history())
2666 goto rewrite_line;
2667 beep();
2668 break;
2669 case KEYCODE_DOWN:
2670 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002671 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002672 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002673 /* Rewrite the line with the selected history item */
2674 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002675 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002676 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002677 /* redraw and go to eol (bol, in vi) */
2678 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2679 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002680#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002681 case KEYCODE_RIGHT:
2682 input_forward();
2683 break;
2684 case KEYCODE_LEFT:
2685 input_backward(1);
2686 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002687 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002688 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002689 ctrl_left();
2690 break;
2691 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002692 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002693 ctrl_right();
2694 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002695 case KEYCODE_HOME:
2696 input_backward(cursor);
2697 break;
2698 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002699 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002700 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002701
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002702 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002703 if (initial_settings.c_cc[VINTR] != 0
2704 && ic_raw == initial_settings.c_cc[VINTR]
2705 ) {
2706 /* Ctrl-C (usually) - stop gathering input */
2707 goto_new_line();
2708 command_len = 0;
2709 break_out = -1; /* "do not append '\n'" */
2710 break;
2711 }
2712 if (initial_settings.c_cc[VEOF] != 0
2713 && ic_raw == initial_settings.c_cc[VEOF]
2714 ) {
2715 /* Ctrl-D (usually) - delete one character,
2716 * or exit if len=0 and no chars to delete */
2717 if (command_len == 0) {
2718 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002719
2720 case -1: /* error (e.g. EIO when tty is destroyed) */
2721 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002722 break_out = command_len = -1;
2723 break;
2724 }
2725 input_delete(0);
2726 break;
2727 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002728// /* Control-V -- force insert of next char */
2729// if (c == CTRL('V')) {
2730// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002731// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002732// if (c == 0) {
2733// beep();
2734// break;
2735// }
2736// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002737 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002738 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2739 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002740 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002741 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002742 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002743 * Otherwise, we are here if ic is a
2744 * control char or an unhandled ESC sequence,
2745 * which is also ignored.
2746 */
2747 break;
2748 }
2749 if ((int)command_len >= (maxsize - 2)) {
2750 /* Not enough space for the char and EOL */
2751 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002752 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002753
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002754 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002755 if (cursor == (command_len - 1)) {
2756 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002757 command_ps[cursor] = ic;
2758 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002759 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002760 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002761 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002762 } else {
2763 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002764 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002765
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002766 memmove(command_ps + sc + 1, command_ps + sc,
2767 (command_len - sc) * sizeof(command_ps[0]));
2768 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002769 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2770 if (!isrtl_str())
2771 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002772 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002773 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002774 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002775 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002776 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002777 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002778
2779 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002780 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002781
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002782#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002783 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002784 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002785#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002786 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002787
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002788#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002789 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002790 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2791 * We sent "ESC [ 6 n", but got '\n' first, and
2792 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2793 * It's bad already and not much can be done with it
2794 * (it _will_ be visible for the next process to read stdin),
2795 * but without this delay it even shows up on the screen
2796 * as garbage because we restore echo settings with tcsetattr
2797 * before it comes in. UGLY!
2798 */
2799 usleep(20*1000);
2800 }
2801#endif
2802
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002803/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002804#undef command
2805
Denys Vlasenko19158a82010-03-26 14:06:56 +01002806#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002807 command[0] = '\0';
2808 if (command_len > 0)
2809 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002810 free(command_ps);
2811#endif
2812
Flemming Madsend96ffda2013-04-07 18:47:24 +02002813 if (command_len > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002814 remember_in_history(command);
Flemming Madsend96ffda2013-04-07 18:47:24 +02002815 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002816
Eric Andersen27bb7902003-12-23 20:24:51 +00002817 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002818 command[command_len++] = '\n';
2819 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002820 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002821
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002822#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002823 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002824#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002825
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002826 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002827 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002828 /* restore SIGWINCH handler */
2829 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002830 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002831
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002832 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002833 DEINIT_S();
2834
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002835 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002836}
2837
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002838#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002839
2840#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002841int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002842{
2843 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002844 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002845 if (!fgets(command, maxsize, stdin))
2846 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002847 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002848}
2849
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002850#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002851
2852
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002853/*
2854 * Testing
2855 */
2856
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002857#ifdef TEST
2858
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002859#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002860
2861const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002862
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002863int main(int argc, char **argv)
2864{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002865 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002866 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002867#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002868 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2869 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2870 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002871#else
2872 "% ";
2873#endif
2874
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002875 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002876 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002877 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002878 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002879 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002880 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002881 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002882 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002883 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002884 return 0;
2885}
2886
Eric Andersenc470f442003-07-28 09:56:35 +00002887#endif /* TEST */