blob: 4d7828cfa2efae3e320c7cac03a2205c9c4c663f [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 */
Erik Andersen13456d12000-03-16 08:09:57 +000016/*
Denis Vlasenko78ff8192008-06-28 21:03:43 +000017 * Usage and known bugs:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010018 * Terminal key codes are not extensive, more needs to be added.
19 * This version was created on Debian GNU/Linux 2.x.
Denis Vlasenko78ff8192008-06-28 21:03:43 +000020 * Delete, Backspace, Home, End, and the arrow keys were tested
21 * to work in an Xterm and console. Ctrl-A also works as Home.
22 * Ctrl-E also works as End.
23 *
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010024 * The following readline-like commands are not implemented:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010025 * CTL-t -- Transpose two characters
26 *
Denis Vlasenko78ff8192008-06-28 21:03:43 +000027 * lineedit does not know that the terminal escape sequences do not
28 * take up space on the screen. The redisplay code assumes, unless
29 * told otherwise, that each character in the prompt is a printable
30 * character that takes up one character position on the screen.
31 * You need to tell lineedit that some sequences of characters
32 * in the prompt take up no screen space. Compatibly with readline,
33 * use the \[ escape to begin a sequence of non-printing characters,
34 * and the \] escape to signal the end of such a sequence. Example:
35 *
36 * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +020037 *
38 * Unicode in PS1 is not fully supported: prompt length calulation is wrong,
39 * resulting in line wrap problems with long (multi-line) input.
40 *
41 * Multi-line PS1 (e.g. PS1="\n[\w]\n$ ") has problems with history
42 * browsing: up/down arrows result in scrolling.
43 * It stems from simplistic "cmdedit_y = cmdedit_prmt_len / cmdedit_termw"
44 * calculation of how many lines the prompt takes.
Erik Andersen13456d12000-03-16 08:09:57 +000045 */
Ron Yorstonf23264b2015-05-29 11:31:40 +010046#include "busybox.h"
47#include "NUM_APPLETS.h"
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020048#include "unicode.h"
Alexey Fomenko232ebaa2011-05-20 04:26:29 +020049#ifndef _POSIX_VDISABLE
50# define _POSIX_VDISABLE '\0'
51#endif
52
Glenn L McGrath475820c2004-01-22 12:42:23 +000053
Glenn L McGrath3b251852004-01-03 12:07:32 +000054#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020055# define ENABLE_FEATURE_EDITING 0
56# define ENABLE_FEATURE_TAB_COMPLETION 0
57# define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020058#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000059
Eric Andersen5165fbe2001-02-20 06:42:29 +000060
Denis Vlasenko82b39e82007-01-21 19:18:19 +000061/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000062#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000063
Denis Vlasenko82b39e82007-01-21 19:18:19 +000064
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020065#define ENABLE_USERNAME_OR_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000066 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020067#define IF_USERNAME_OR_HOMEDIR(...)
68#if ENABLE_USERNAME_OR_HOMEDIR
69# undef IF_USERNAME_OR_HOMEDIR
70# define IF_USERNAME_OR_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000071#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000072
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020073
74#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010075#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020076# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020077# define CHAR_T wchar_t
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010078static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010079# if ENABLE_FEATURE_EDITING_VI
Natanael Copa7e6f9312016-08-14 23:30:29 +020080static bool BB_isalnum_or_underscore(CHAR_T c) {
81 return ((unsigned)c < 256 && isalnum(c)) || c == '_';
82}
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010083# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010084static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020085# undef isspace
86# undef isalnum
87# undef ispunct
88# undef isprint
89# define isspace isspace_must_not_be_used
90# define isalnum isalnum_must_not_be_used
91# define ispunct ispunct_must_not_be_used
92# define isprint isprint_must_not_be_used
93#else
94# define BB_NUL '\0'
95# define CHAR_T char
96# define BB_isspace(c) isspace(c)
Natanael Copa7e6f9312016-08-14 23:30:29 +020097# if ENABLE_FEATURE_EDITING_VI
98static bool BB_isalnum_or_underscore(CHAR_T c) {
99 return ((unsigned)c < 256 && isalnum(c)) || c == '_';
100}
101# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200102# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200103#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200104#if ENABLE_UNICODE_PRESERVE_BROKEN
105# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
106# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
107#else
108# define unicode_is_raw_byte(wc) 0
109#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200110
111
Marek Polacek7b181072010-10-28 21:34:56 +0200112#define ESC "\033"
113
114#define SEQ_CLEAR_TILL_END_OF_SCREEN ESC"[J"
115//#define SEQ_CLEAR_TILL_END_OF_LINE ESC"[K"
Tomas Heinricha659b812010-04-29 13:43:39 +0200116
117
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000118enum {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000119 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000120 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000121 : 0x7ff0
122};
Robert Griebl350d26b2002-12-03 22:45:46 +0000123
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200124#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000125static const char null_str[] ALIGN1 = "";
126#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000127
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000128/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000129struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000130 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000131
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000132 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
133 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000134
Denys Vlasenko020f4062009-05-17 16:44:54 +0200135 unsigned cmdedit_x; /* real x (col) terminal position */
136 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000137 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000138
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000139 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200140 int command_len; /* must be signed */
141 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200142 * to _not_ be promoted to unsigned */
143 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200144 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000145
146 const char *cmdedit_prompt;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000147
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200148#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000149 char *user_buf;
150 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000151#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000152
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000153#if ENABLE_FEATURE_TAB_COMPLETION
154 char **matches;
155 unsigned num_matches;
156#endif
157
158#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200159# define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200160 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000161 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200162 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000163#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100164#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100165 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100166#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000167};
168
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000169/* See lineedit_ptr_hack.c */
170extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000171
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000172#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000173#define state (S.state )
174#define cmdedit_termw (S.cmdedit_termw )
175#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
176#define cmdedit_x (S.cmdedit_x )
177#define cmdedit_y (S.cmdedit_y )
178#define cmdedit_prmt_len (S.cmdedit_prmt_len)
179#define cursor (S.cursor )
180#define command_len (S.command_len )
181#define command_ps (S.command_ps )
182#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000183#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000184#define home_pwd_buf (S.home_pwd_buf )
185#define matches (S.matches )
186#define num_matches (S.num_matches )
187#define delptr (S.delptr )
188#define newdelflag (S.newdelflag )
189#define delbuf (S.delbuf )
190
191#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000192 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000193 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000194 cmdedit_termw = 80; \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200195 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Shawn J. Goff46031da2013-02-27 18:30:05 +0100196 IF_FEATURE_EDITING_VI(delptr = delbuf;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000197} while (0)
Alexey Fomenko232ebaa2011-05-20 04:26:29 +0200198
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000199static void deinit_S(void)
200{
201#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000202 /* This one is allocated only if FANCY_PROMPT is on
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200203 * (otherwise it points to verbatim prompt (NOT malloced)) */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000204 free((char*)cmdedit_prompt);
205#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200206#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000207 free(user_buf);
208 if (home_pwd_buf != null_str)
209 free(home_pwd_buf);
210#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000211 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000212}
213#define DEINIT_S() deinit_S()
214
Denis Vlasenko2c844952008-04-25 18:44:35 +0000215
Denys Vlasenko19158a82010-03-26 14:06:56 +0100216#if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200217static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200218{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100219 if (unicode_status == UNICODE_ON) {
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200220 ssize_t len = mbstowcs(command_ps, src, S.maxsize - 1);
Denys Vlasenko353680a2011-03-27 01:18:07 +0100221 if (len < 0)
222 len = 0;
223 command_ps[len] = BB_NUL;
224 return len;
225 } else {
226 unsigned i = 0;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200227 while (src[i] && i < S.maxsize - 1) {
228 command_ps[i] = src[i];
Denys Vlasenko353680a2011-03-27 01:18:07 +0100229 i++;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200230 }
231 command_ps[i] = BB_NUL;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100232 return i;
233 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200234}
Tomas Heinricha659b812010-04-29 13:43:39 +0200235static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200236{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100237 if (unicode_status == UNICODE_ON) {
Denys Vlasenko94043e82010-05-11 14:49:13 +0200238# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko353680a2011-03-27 01:18:07 +0100239 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
240 if (len < 0)
241 len = 0;
242 dst[len] = '\0';
243 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200244# else
Denys Vlasenko353680a2011-03-27 01:18:07 +0100245 unsigned dstpos = 0;
246 unsigned srcpos = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200247
Denys Vlasenko353680a2011-03-27 01:18:07 +0100248 maxsize--;
249 while (dstpos < maxsize) {
250 wchar_t wc;
251 int n = srcpos;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200252
Denys Vlasenko353680a2011-03-27 01:18:07 +0100253 /* Convert up to 1st invalid byte (or up to end) */
254 while ((wc = command_ps[srcpos]) != BB_NUL
255 && !unicode_is_raw_byte(wc)
256 ) {
257 srcpos++;
258 }
259 command_ps[srcpos] = BB_NUL;
260 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
261 if (n < 0) /* should not happen */
262 break;
263 dstpos += n;
264 if (wc == BB_NUL) /* usually is */
265 break;
266
267 /* We do have invalid byte here! */
268 command_ps[srcpos] = wc; /* restore it */
Tomas Heinricha659b812010-04-29 13:43:39 +0200269 srcpos++;
Denys Vlasenko353680a2011-03-27 01:18:07 +0100270 if (dstpos == maxsize)
271 break;
272 dst[dstpos++] = (char) wc;
Tomas Heinricha659b812010-04-29 13:43:39 +0200273 }
Denys Vlasenko353680a2011-03-27 01:18:07 +0100274 dst[dstpos] = '\0';
275 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200276# endif
Denys Vlasenko353680a2011-03-27 01:18:07 +0100277 } else {
278 unsigned i = 0;
279 while ((dst[i] = command_ps[i]) != 0)
280 i++;
281 return i;
282 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200283}
284/* I thought just fputwc(c, stdout) would work. But no... */
285static void BB_PUTCHAR(wchar_t c)
286{
Denys Vlasenko353680a2011-03-27 01:18:07 +0100287 if (unicode_status == UNICODE_ON) {
288 char buf[MB_CUR_MAX + 1];
289 mbstate_t mbst = { 0 };
290 ssize_t len = wcrtomb(buf, c, &mbst);
291 if (len > 0) {
292 buf[len] = '\0';
293 fputs(buf, stdout);
294 }
295 } else {
296 /* In this case, c is always one byte */
297 putchar(c);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200298 }
299}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200300# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
301static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
302# else
303static wchar_t adjust_width_and_validate_wc(wchar_t wc)
304# define adjust_width_and_validate_wc(width_adj, wc) \
305 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
306# endif
307{
308 int w = 1;
309
310 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200311 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
312 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200313 goto subst;
314 }
315 w = wcwidth(wc);
316 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
317 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
318 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
319 ) {
320 subst:
321 w = 1;
322 wc = CONFIG_SUBST_WCHAR;
323 }
324 }
325
326# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
327 *width_adj += w;
328#endif
329 return wc;
330}
331#else /* !UNICODE */
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200332static size_t load_string(const char *src)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200333{
Denys Vlasenkoa669eca2011-07-11 07:36:59 +0200334 safe_strncpy(command_ps, src, S.maxsize);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200335 return strlen(command_ps);
336}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200337# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200338static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200339{
340 safe_strncpy(dst, command_ps, maxsize);
341}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200342# endif
343# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200344/* Should never be called: */
345int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200346#endif
347
348
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000349/* Put 'command_ps[cursor]', cursor++.
350 * Advance cursor on screen. If we reached right margin, scroll text up
351 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000352#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200353static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000354{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200355 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200356 unsigned width = 0;
357 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000358
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200359 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000360 /* erase character after end of input string */
361 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200362 } else {
363 /* advance cursor only if we aren't at the end yet */
364 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200365 if (unicode_status == UNICODE_ON) {
366 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
367 c = adjust_width_and_validate_wc(&cmdedit_x, c);
368 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
369 } else {
370 cmdedit_x++;
371 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000372 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200373
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200374 ofs_to_right = cmdedit_x - cmdedit_termw;
375 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
376 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200377 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000378 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200379
380 if (ofs_to_right >= 0) {
381 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000382#if HACK_FOR_WRONG_WIDTH
383 /* This works better if our idea of term width is wrong
384 * and it is actually wider (often happens on serial lines).
385 * Printing CR,LF *forces* cursor to next line.
386 * OTOH if terminal width is correct AND terminal does NOT
387 * have automargin (IOW: it is moving cursor to next line
388 * by itself (which is wrong for VT-10x terminals)),
389 * this will break things: there will be one extra empty line */
390 puts("\r"); /* + implicit '\n' */
391#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200392 /* VT-10x terminals don't wrap cursor to next line when last char
393 * on the line is printed - cursor stays "over" this char.
394 * Need to print _next_ char too (first one to appear on next line)
395 * to make cursor move down to next line.
396 */
397 /* Works ok only if cmdedit_termw is correct. */
398 c = command_ps[cursor];
399 if (c == BB_NUL)
400 c = ' ';
401 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000402 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000403#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200404 cmdedit_y++;
405 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
406 width = 0;
407 } else { /* ofs_to_right > 0 */
408 /* wide char c didn't fit on prev line */
409 BB_PUTCHAR(c);
410 }
411 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000412 }
Erik Andersen13456d12000-03-16 08:09:57 +0000413}
414
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000415/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200416static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000417{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000418 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200419 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000420}
421
422/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000423static void goto_new_line(void)
424{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200425 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200426 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000427 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000428}
429
Rob Landley88621d72006-08-29 19:41:06 +0000430static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000431{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000432 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000433}
434
Denys Vlasenko248c3242010-05-17 00:45:44 +0200435static void put_prompt(void)
436{
437 unsigned w;
438
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200439 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200440 fflush_all();
441 cursor = 0;
442 w = cmdedit_termw; /* read volatile var once */
443 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
444 cmdedit_x = cmdedit_prmt_len % w;
445}
446
Eric Andersenaff114c2004-04-14 17:51:38 +0000447/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000448/* (optimized for slow terminals) */
449static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000450{
451 if (num > cursor)
452 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200453 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000454 return;
455 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000456
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200457 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
458 && unicode_status == UNICODE_ON
459 ) {
460 /* correct NUM to be equal to _screen_ width */
461 int n = num;
462 num = 0;
463 while (--n >= 0)
464 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
465 if (num == 0)
466 return;
467 }
468
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000469 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000470 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000471 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000472 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000473 * Also gets miscompiled for ARM users
474 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000475 * printf(("\b\b\b\b" + 4) - num);
476 * return;
477 */
478 do {
479 bb_putchar('\b');
480 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000481 return;
482 }
Marek Polacek7b181072010-10-28 21:34:56 +0200483 printf(ESC"[%uD", num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000484 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000485 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000486
487 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200488 if (ENABLE_UNICODE_WIDE_WCHARS) {
489 /* With wide chars, it is hard to "backtrack"
490 * and reliably figure out where to put cursor.
491 * Example (<> is a wide char; # is an ordinary char, _ cursor):
492 * |prompt: <><> |
493 * |<><><><><><> |
494 * |_ |
495 * and user presses left arrow. num = 1, cmdedit_x = 0,
496 * We need to go up one line, and then - how do we know that
497 * we need to go *10* positions to the right? Because
498 * |prompt: <>#<>|
499 * |<><><>#<><><>|
500 * |_ |
501 * in this situation we need to go *11* positions to the right.
502 *
503 * A simpler thing to do is to redraw everything from the start
504 * up to new cursor position (which is already known):
505 */
506 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200507 /* go to 1st column; go up to first line */
Marek Polacek7b181072010-10-28 21:34:56 +0200508 printf("\r" ESC"[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200509 cmdedit_y = 0;
510 sv_cursor = cursor;
511 put_prompt(); /* sets cursor to 0 */
512 while (cursor < sv_cursor)
513 put_cur_glyph_and_inc_cursor();
514 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200515 int lines_up;
516 unsigned width;
517 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200518 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200519 width = cmdedit_termw; /* read volatile var once */
520 /* num=1...w: one line up, w+1...2w: two, etc: */
521 lines_up = 1 + (num - 1) / width;
522 cmdedit_x = (width * cmdedit_y - num) % width;
523 cmdedit_y -= lines_up;
524 /* go to 1st column; go up */
Marek Polacek7b181072010-10-28 21:34:56 +0200525 printf("\r" ESC"[%uA", lines_up);
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200526 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200527 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
528 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200529 if (cmdedit_x)
Marek Polacek7b181072010-10-28 21:34:56 +0200530 printf(ESC"[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000531 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000532}
533
Eric Andersenaff114c2004-04-14 17:51:38 +0000534/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000535static void redraw(int y, int back_cursor)
536{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200537 if (y > 0) /* up y lines */
Marek Polacek7b181072010-10-28 21:34:56 +0200538 printf(ESC"[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000539 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000540 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200541 put_till_end_and_adv_cursor();
542 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000543 input_backward(back_cursor);
544}
545
Paul Fox3f11b1b2005-08-04 19:04:46 +0000546/* Delete the char in front of the cursor, optionally saving it
547 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000548#if !ENABLE_FEATURE_EDITING_VI
549static void input_delete(void)
550#define input_delete(save) input_delete()
551#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000552static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000553#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000554{
Mark Whitley4e338752001-01-26 20:42:23 +0000555 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000556
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000557 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000558 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000559
Denis Vlasenko38f63192007-01-22 09:03:07 +0000560#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000561 if (save) {
562 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000563 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000564 newdelflag = 0;
565 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000566 if ((delptr - delbuf) < DELBUFSIZ)
567 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000568 }
569#endif
570
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200571 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200572 /* (command_len + 1 [because of NUL]) - (j + 1)
573 * simplified into (command_len - j) */
574 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000575 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200576 put_till_end_and_adv_cursor();
577 /* Last char is still visible, erase it (and more) */
578 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000579 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000580}
581
Denis Vlasenko38f63192007-01-22 09:03:07 +0000582#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000583static void put(void)
584{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000585 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000586 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000587
Paul Fox3f11b1b2005-08-04 19:04:46 +0000588 if (j == 0)
589 return;
590 ocursor = cursor;
591 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200592 memmove(command_ps + cursor + j, command_ps + cursor,
593 (command_len - cursor + 1) * sizeof(command_ps[0]));
594 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000595 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200596 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000597 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000598}
599#endif
600
Mark Whitley4e338752001-01-26 20:42:23 +0000601/* Delete the char in back of the cursor */
602static void input_backspace(void)
603{
604 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000605 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000606 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000607 }
608}
609
Eric Andersenaff114c2004-04-14 17:51:38 +0000610/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000611static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000612{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000613 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200614 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000615}
616
Denis Vlasenko38f63192007-01-22 09:03:07 +0000617#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000618
Mike Shalf3763032010-11-22 03:49:18 +0100619//FIXME:
620//needs to be more clever: currently it thinks that "foo\ b<TAB>
621//matches the file named "foo bar", which is untrue.
622//Also, perhaps "foo b<TAB> needs to complete to "foo bar" <cursor>,
623//not "foo bar <cursor>...
624
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000625static void free_tab_completion_data(void)
626{
627 if (matches) {
628 while (num_matches)
629 free(matches[--num_matches]);
630 free(matches);
631 matches = NULL;
632 }
633}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000634
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000635static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000636{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000637 matches = xrealloc_vector(matches, 4, num_matches);
638 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000639 num_matches++;
640}
641
Mike Shalf3763032010-11-22 03:49:18 +0100642# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200643/* Replace "~user/..." with "/homedir/...".
644 * The parameter is malloced, free it or return it
645 * unchanged if no user is matched.
646 */
647static char *username_path_completion(char *ud)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000648{
649 struct passwd *entry;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200650 char *tilde_name = ud;
651 char *home = NULL;
652
653 ud++; /* skip ~ */
654 if (*ud == '/') { /* "~/..." */
655 home = home_pwd_buf;
656 } else {
657 /* "~user/..." */
658 ud = strchr(ud, '/');
659 *ud = '\0'; /* "~user" */
660 entry = getpwnam(tilde_name + 1);
661 *ud = '/'; /* restore "~user/..." */
662 if (entry)
663 home = entry->pw_dir;
664 }
665 if (home) {
666 ud = concat_path_file(home, ud);
667 free(tilde_name);
668 tilde_name = ud;
669 }
670 return tilde_name;
671}
672
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200673/* ~use<tab> - find all users with this prefix.
674 * Return the length of the prefix used for matching.
675 */
676static NOINLINE unsigned complete_username(const char *ud)
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200677{
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100678 struct passwd *pw;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200679 unsigned userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000680
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200681 ud++; /* skip ~ */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000682 userlen = strlen(ud);
683
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200684 setpwent();
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100685 while ((pw = getpwent()) != NULL) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200686 /* Null usernames should result in all users as possible completions. */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100687 if (/* !ud[0] || */ is_prefixed_with(pw->pw_name, ud)) {
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100688 add_match(xasprintf("~%s/", pw->pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000689 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000690 }
Denys Vlasenko23cfaab2015-02-07 21:21:02 +0100691 endpwent(); /* don't keep password file open */
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200692
693 return 1 + userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000694}
Mike Shalf3763032010-11-22 03:49:18 +0100695# endif /* FEATURE_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000696
697enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000698 FIND_EXE_ONLY = 0,
699 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000700 FIND_FILE_ONLY = 2,
701};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000702
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200703static int path_parse(char ***p)
Mark Whitley4e338752001-01-26 20:42:23 +0000704{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000705 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000706 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000707 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000708 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000709
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000710 if (state->flags & WITH_PATH_LOOKUP)
711 pth = state->path_lookup;
712 else
713 pth = getenv("PATH");
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200714
715 /* PATH="" or PATH=":"? */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000716 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
717 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000718
Denis Vlasenko253ce002007-01-22 08:34:44 +0000719 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000720 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000721 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000722 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000723 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000724 break;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200725 tmp++;
726 if (*tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000727 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000728 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000729 }
730
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200731 *p = res = xmalloc(npth * sizeof(res[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000732 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000733 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000734 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000735 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000736 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000737 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000738 *tmp++ = '\0'; /* ':' -> '\0' */
739 if (*tmp == '\0')
740 break; /* :<empty> */
741 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000742 }
Mark Whitley4e338752001-01-26 20:42:23 +0000743 return npth;
744}
745
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200746/* Complete command, directory or file name.
747 * Return the length of the prefix used for matching.
748 */
749static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000750{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000751 char *path1[1];
752 char **paths = path1;
753 int npaths;
754 int i;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200755 unsigned pf_len;
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200756 const char *pfind;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200757 char *dirbuf = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +0000758
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000759 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000760 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000761
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200762 pfind = strrchr(command, '/');
763 if (!pfind) {
764 if (type == FIND_EXE_ONLY)
765 npaths = path_parse(&paths);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000766 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000767 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000768 /* point to 'l' in "..../last_component" */
769 pfind++;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200770 /* dirbuf = ".../.../.../" */
771 dirbuf = xstrndup(command, pfind - command);
Mike Shalf3763032010-11-22 03:49:18 +0100772# if ENABLE_FEATURE_USERNAME_COMPLETION
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200773 if (dirbuf[0] == '~') /* ~/... or ~user/... */
774 dirbuf = username_path_completion(dirbuf);
Mike Shalf3763032010-11-22 03:49:18 +0100775# endif
Denys Vlasenko7063e862010-09-02 12:44:39 +0200776 path1[0] = dirbuf;
Mark Whitley4e338752001-01-26 20:42:23 +0000777 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200778 pf_len = strlen(pfind);
Erik Andersenc7c634b2000-03-19 05:28:55 +0000779
Ron Yorstonf23264b2015-05-29 11:31:40 +0100780#if ENABLE_FEATURE_SH_STANDALONE && NUM_APPLETS != 1
Denys Vlasenko13360522016-10-24 01:25:05 +0200781 if (type == FIND_EXE_ONLY && !dirbuf) {
Ron Yorstonf23264b2015-05-29 11:31:40 +0100782 const char *p = applet_names;
783
Ron Yorston2b919582016-04-08 11:57:20 +0100784 while (*p) {
Ron Yorstonf23264b2015-05-29 11:31:40 +0100785 if (strncmp(pfind, p, pf_len) == 0)
786 add_match(xstrdup(p));
Ron Yorston2b919582016-04-08 11:57:20 +0100787 while (*p++ != '\0')
788 continue;
Ron Yorstonf23264b2015-05-29 11:31:40 +0100789 }
790 }
791#endif
792
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000793 for (i = 0; i < npaths; i++) {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200794 DIR *dir;
795 struct dirent *next;
796 struct stat st;
797 char *found;
798
Mark Whitley4e338752001-01-26 20:42:23 +0000799 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000800 if (!dir)
801 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000802
803 while ((next = readdir(dir)) != NULL) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200804 unsigned len;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200805 const char *name_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000806
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200807 /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
808 if (!pfind[0] && DOT_OR_DOTDOT(name_found))
Mark Whitley4e338752001-01-26 20:42:23 +0000809 continue;
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200810 /* match? */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100811 if (!is_prefixed_with(name_found, pfind))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200812 continue; /* no */
813
814 found = concat_path_file(paths[i], name_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000815 /* NB: stat() first so that we see is it a directory;
816 * but if that fails, use lstat() so that
817 * we still match dangling links */
818 if (stat(found, &st) && lstat(found, &st))
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200819 goto cont; /* hmm, remove in progress? */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000820
Denys Vlasenko39263632010-09-03 14:11:08 +0200821 /* Save only name */
822 len = strlen(name_found);
823 found = xrealloc(found, len + 2); /* +2: for slash and NUL */
824 strcpy(found, name_found);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000825
Mark Whitley4e338752001-01-26 20:42:23 +0000826 if (S_ISDIR(st.st_mode)) {
Denys Vlasenko39263632010-09-03 14:11:08 +0200827 /* name is a directory, add slash */
828 found[len] = '/';
829 found[len + 1] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000830 } else {
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200831 /* skip files if looking for dirs only (example: cd) */
Eric Andersenc470f442003-07-28 09:56:35 +0000832 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000833 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000834 }
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200835 /* add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000836 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000837 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000838 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000839 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000840 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000841 closedir(dir);
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200842 } /* for every path */
843
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000844 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000845 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000846 free(paths);
847 }
Denys Vlasenko39263632010-09-03 14:11:08 +0200848 free(dirbuf);
Denys Vlasenko3c460b02010-09-03 12:56:36 +0200849
850 return pf_len;
Erik Andersen6273f652000-03-17 01:12:41 +0000851}
Erik Andersenf0657d32000-04-12 17:49:52 +0000852
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200853/* build_match_prefix:
Denys Vlasenko76939e72010-09-03 14:09:24 +0200854 * On entry, match_buf contains everything up to cursor at the moment <tab>
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200855 * was pressed. This function looks at it, figures out what part of it
856 * constitutes the command/file/directory prefix to use for completion,
Denys Vlasenko76939e72010-09-03 14:09:24 +0200857 * and rewrites match_buf to contain only that part.
Denys Vlasenkob068bd72010-09-02 12:01:11 +0200858 */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200859#define dbg_bmp 0
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200860/* Helpers: */
861/* QUOT is used on elements of int_buf[], which are bytes,
862 * not Unicode chars. Therefore it works correctly even in Unicode mode.
863 */
864#define QUOT (UCHAR_MAX+1)
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200865static void remove_chunk(int16_t *int_buf, int beg, int end)
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200866{
867 /* beg must be <= end */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200868 if (beg == end)
869 return;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200870
871 while ((int_buf[beg] = int_buf[end]) != 0)
872 beg++, end++;
873
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200874 if (dbg_bmp) {
875 int i;
876 for (i = 0; int_buf[i]; i++)
877 bb_putchar((unsigned char)int_buf[i]);
878 bb_putchar('\n');
879 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200880}
Denys Vlasenko76939e72010-09-03 14:09:24 +0200881/* Caller ensures that match_buf points to a malloced buffer
882 * big enough to hold strlen(match_buf)*2 + 2
883 */
884static NOINLINE int build_match_prefix(char *match_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000885{
886 int i, j;
887 int command_mode;
Denys Vlasenko76939e72010-09-03 14:09:24 +0200888 int16_t *int_buf = (int16_t*)match_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000889
Denys Vlasenko76939e72010-09-03 14:09:24 +0200890 if (dbg_bmp) printf("\n%s\n", match_buf);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200891
Denys Vlasenko76939e72010-09-03 14:09:24 +0200892 /* Copy in reverse order, since they overlap */
893 i = strlen(match_buf);
894 do {
895 int_buf[i] = (unsigned char)match_buf[i];
896 i--;
897 } while (i >= 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000898
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200899 /* Mark every \c as "quoted c" */
Denys Vlasenko76939e72010-09-03 14:09:24 +0200900 for (i = 0; int_buf[i]; i++) {
901 if (int_buf[i] == '\\') {
902 remove_chunk(int_buf, i, i + 1);
903 int_buf[i] |= QUOT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000904 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200905 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200906 /* Quote-mark "chars" and 'chars', drop delimiters */
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200907 {
908 int in_quote = 0;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200909 i = 0;
910 while (int_buf[i]) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200911 int cur = int_buf[i];
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200912 if (!cur)
913 break;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200914 if (cur == '\'' || cur == '"') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200915 if (!in_quote || (cur == in_quote)) {
916 in_quote ^= cur;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200917 remove_chunk(int_buf, i, i + 1);
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200918 continue;
919 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000920 }
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200921 if (in_quote)
922 int_buf[i] = cur | QUOT;
923 i++;
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200924 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000925 }
926
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200927 /* Remove everything up to command delimiters:
928 * ';' ';;' '&' '|' '&&' '||',
929 * but careful with '>&' '<&' '>|'
930 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000931 for (i = 0; int_buf[i]; i++) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200932 int cur = int_buf[i];
933 if (cur == ';' || cur == '&' || cur == '|') {
934 int prev = i ? int_buf[i - 1] : 0;
935 if (cur == '&' && (prev == '>' || prev == '<')) {
936 continue;
937 } else if (cur == '|' && prev == '>') {
938 continue;
939 }
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200940 remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200941 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000942 }
943 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200944 /* Remove all `cmd` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200945 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000946 if (int_buf[i] == '`') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200947 for (j = i + 1; int_buf[j]; j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000948 if (int_buf[j] == '`') {
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200949 /* `cmd` should count as a word:
950 * `cmd` c<tab> should search for files c*,
951 * not commands c*. Therefore we don't drop
952 * `cmd` entirely, we replace it with single `.
953 */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200954 remove_chunk(int_buf, i, j);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200955 goto next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000956 }
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200957 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200958 /* No closing ` - command mode, remove all up to ` */
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200959 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200960 break;
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200961 next: ;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000962 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200963 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000964
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200965 /* Remove "cmd (" and "cmd {"
966 * Example: "if { c<tab>"
967 * In this example, c should be matched as command pfx.
968 */
969 for (i = 0; int_buf[i]; i++) {
970 if (int_buf[i] == '(' || int_buf[i] == '{') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200971 remove_chunk(int_buf, 0, i + 1);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +0200972 i = -1; /* back to square 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000973 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200974 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000975
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200976 /* Remove leading unquoted spaces */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000977 for (i = 0; int_buf[i]; i++)
978 if (int_buf[i] != ' ')
979 break;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +0200980 remove_chunk(int_buf, 0, i);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000981
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200982 /* Determine completion mode */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000983 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200984 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000985 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
Denys Vlasenko57ea9b42010-09-03 12:51:36 +0200986 if (int_buf[i] == ' '
987 && command_mode == FIND_EXE_ONLY
Denys Vlasenko81254ed2010-09-03 12:59:15 +0200988 && (char)int_buf[0] == 'c'
989 && (char)int_buf[1] == 'd'
990 && i == 2 /* -> int_buf[2] == ' ' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000991 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000992 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000993 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000994 command_mode = FIND_FILE_ONLY;
995 break;
996 }
997 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200998 }
Denys Vlasenko2679e3c2010-09-03 12:53:15 +0200999 if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001000
1001 /* Remove everything except last word */
Denys Vlasenkob068bd72010-09-02 12:01:11 +02001002 for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
1003 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001004 for (--i; i >= 0; i--) {
Denys Vlasenko2679e3c2010-09-03 12:53:15 +02001005 int cur = int_buf[i];
1006 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001007 remove_chunk(int_buf, 0, i + 1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001008 break;
1009 }
1010 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001011
Denys Vlasenko76939e72010-09-03 14:09:24 +02001012 /* Convert back to string of _chars_ */
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001013 i = 0;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001014 while ((match_buf[i] = int_buf[i]) != '\0')
Denys Vlasenko81254ed2010-09-03 12:59:15 +02001015 i++;
Denys Vlasenko9b56bf52010-09-03 13:02:47 +02001016
Denys Vlasenko76939e72010-09-03 14:09:24 +02001017 if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001018
1019 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001020}
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001021
Glenn L McGrath4d001292003-01-06 01:11:50 +00001022/*
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001023 * Display by column (original idea from ls applet,
1024 * very optimized by me [Vladimir] :)
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001025 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001026static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001027{
1028 int ncols, row;
1029 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001030 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001031 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001032 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001033
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001034 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001035 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001036 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001037 if (column_width < l)
1038 column_width = l;
1039 }
1040 column_width += 2; /* min space for columns */
1041 ncols = cmdedit_termw / column_width;
1042
1043 if (ncols > 1) {
1044 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001045 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001046 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001047 } else {
1048 ncols = 1;
1049 }
1050 for (row = 0; row < nrows; row++) {
1051 int n = row;
1052 int nc;
1053
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001054 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001055 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001056 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001057 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001058 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001059 if (ENABLE_UNICODE_SUPPORT)
1060 puts(printable_string(NULL, matches[n]));
1061 else
1062 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001063 }
1064}
1065
Mike Shalf3763032010-11-22 03:49:18 +01001066static const char *is_special_char(char c)
1067{
1068 return strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", c);
1069}
1070
1071static char *quote_special_chars(char *found)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001072{
1073 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001074 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001075
1076 while (*found) {
Mike Shalf3763032010-11-22 03:49:18 +01001077 if (is_special_char(*found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001078 s[l++] = '\\';
1079 s[l++] = *found++;
1080 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001081 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001082 return s;
1083}
1084
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001085/* Do TAB completion */
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001086static NOINLINE void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001087{
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001088 char *chosen_match;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001089 char *match_buf;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001090 size_t len_found;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001091 /* Length of string used for matching */
1092 unsigned match_pfx_len = match_pfx_len;
1093 int find_type;
Mike Shalf3763032010-11-22 03:49:18 +01001094# if ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001095 /* cursor pos in command converted to multibyte form */
1096 int cursor_mb;
Mike Shalf3763032010-11-22 03:49:18 +01001097# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001098 if (!(state->flags & TAB_COMPLETION))
1099 return;
1100
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001101 if (*lastWasTab) {
1102 /* The last char was a TAB too.
1103 * Print a list of all the available choices.
1104 */
Denys Vlasenkoa46e16e2010-09-03 13:05:51 +02001105 if (num_matches > 0) {
1106 /* cursor will be changed by goto_new_line() */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001107 int sav_cursor = cursor;
Mark Whitley4e338752001-01-26 20:42:23 +00001108 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001109 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001110 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001111 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001112 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001113 }
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001114
1115 *lastWasTab = 1;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001116 chosen_match = NULL;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001117
Denys Vlasenko76939e72010-09-03 14:09:24 +02001118 /* Make a local copy of the string up to the position of the cursor.
1119 * build_match_prefix will expand it into int16_t's, need to allocate
1120 * twice as much as the string_len+1.
1121 * (we then also (ab)use this extra space later - see (**))
1122 */
1123 match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
Mike Shalf3763032010-11-22 03:49:18 +01001124# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko76939e72010-09-03 14:09:24 +02001125 save_string(match_buf, cursor + 1); /* +1 for NUL */
Mike Shalf3763032010-11-22 03:49:18 +01001126# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001127 {
1128 CHAR_T wc = command_ps[cursor];
1129 command_ps[cursor] = BB_NUL;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001130 save_string(match_buf, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001131 command_ps[cursor] = wc;
Denys Vlasenko76939e72010-09-03 14:09:24 +02001132 cursor_mb = strlen(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001133 }
Mike Shalf3763032010-11-22 03:49:18 +01001134# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001135 find_type = build_match_prefix(match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001136
1137 /* Free up any memory already allocated */
1138 free_tab_completion_data();
1139
Mike Shalf3763032010-11-22 03:49:18 +01001140# if ENABLE_FEATURE_USERNAME_COMPLETION
1141 /* If the word starts with ~ and there is no slash in the word,
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001142 * then try completing this word as a username. */
1143 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001144 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1145 match_pfx_len = complete_username(match_buf);
Mike Shalf3763032010-11-22 03:49:18 +01001146# endif
1147 /* If complete_username() did not match,
1148 * try to match a command in $PATH, or a directory, or a file */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001149 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001150 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
Mike Shalf3763032010-11-22 03:49:18 +01001151
1152 /* Account for backslashes which will be inserted
1153 * by quote_special_chars() later */
1154 {
1155 const char *e = match_buf + strlen(match_buf);
1156 const char *s = e - match_pfx_len;
1157 while (s < e)
1158 if (is_special_char(*s++))
1159 match_pfx_len++;
1160 }
1161
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001162 /* Remove duplicates */
1163 if (matches) {
Mike Shalf3763032010-11-22 03:49:18 +01001164 unsigned i, n = 0;
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001165 qsort_string_vector(matches, num_matches);
1166 for (i = 0; i < num_matches - 1; ++i) {
1167 //if (matches[i] && matches[i+1]) { /* paranoia */
1168 if (strcmp(matches[i], matches[i+1]) == 0) {
1169 free(matches[i]);
1170 //matches[i] = NULL; /* paranoia */
1171 } else {
1172 matches[n++] = matches[i];
1173 }
1174 //}
1175 }
1176 matches[n++] = matches[i];
1177 num_matches = n;
1178 }
Mike Shalf3763032010-11-22 03:49:18 +01001179
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001180 /* Did we find exactly one match? */
1181 if (num_matches != 1) { /* no */
1182 char *cp;
1183 beep();
1184 if (!matches)
Denys Vlasenko76939e72010-09-03 14:09:24 +02001185 goto ret; /* no matches at all */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001186 /* Find common prefix */
1187 chosen_match = xstrdup(matches[0]);
1188 for (cp = chosen_match; *cp; cp++) {
1189 unsigned n;
1190 for (n = 1; n < num_matches; n++) {
1191 if (matches[n][cp - chosen_match] != *cp) {
1192 goto stop;
1193 }
1194 }
1195 }
1196 stop:
1197 if (cp == chosen_match) { /* have unique prefix? */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001198 goto ret; /* no */
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001199 }
1200 *cp = '\0';
Mike Shalf3763032010-11-22 03:49:18 +01001201 cp = quote_special_chars(chosen_match);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001202 free(chosen_match);
1203 chosen_match = cp;
1204 len_found = strlen(chosen_match);
1205 } else { /* exactly one match */
1206 /* Next <tab> is not a double-tab */
1207 *lastWasTab = 0;
1208
Mike Shalf3763032010-11-22 03:49:18 +01001209 chosen_match = quote_special_chars(matches[0]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001210 len_found = strlen(chosen_match);
1211 if (chosen_match[len_found-1] != '/') {
1212 chosen_match[len_found] = ' ';
1213 chosen_match[++len_found] = '\0';
1214 }
1215 }
1216
Mike Shalf3763032010-11-22 03:49:18 +01001217# if !ENABLE_UNICODE_SUPPORT
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001218 /* Have space to place the match? */
1219 /* The result consists of three parts with these lengths: */
1220 /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1221 /* it simplifies into: */
1222 if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1223 int pos;
1224 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001225 strcpy(match_buf, &command_ps[cursor]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001226 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001227 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001228 command_len = strlen(command_ps);
1229 /* new pos */
1230 pos = cursor + len_found - match_pfx_len;
1231 /* write out the matched command */
1232 redraw(cmdedit_y, command_len - pos);
1233 }
Mike Shalf3763032010-11-22 03:49:18 +01001234# else
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001235 {
Denys Vlasenko76939e72010-09-03 14:09:24 +02001236 /* Use 2nd half of match_buf as scratch space - see (**) */
1237 char *command = match_buf + MAX_LINELEN;
1238 int len = save_string(command, MAX_LINELEN);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001239 /* Have space to place the match? */
1240 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1241 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1242 int pos;
1243 /* save tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001244 strcpy(match_buf, &command[cursor_mb]);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001245 /* where do we want to have cursor after all? */
1246 strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001247 len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001248 /* add match and tail */
Denys Vlasenko76939e72010-09-03 14:09:24 +02001249 sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02001250 command_len = load_string(command);
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001251 /* write out the matched command */
1252 /* paranoia: load_string can return 0 on conv error,
1253 * prevent passing pos = (0 - 12) to redraw */
1254 pos = command_len - len;
1255 redraw(cmdedit_y, pos >= 0 ? pos : 0);
1256 }
1257 }
Mike Shalf3763032010-11-22 03:49:18 +01001258# endif
Denys Vlasenko76939e72010-09-03 14:09:24 +02001259 ret:
Denys Vlasenkoba0e1032010-09-03 14:08:24 +02001260 free(chosen_match);
Denys Vlasenko76939e72010-09-03 14:09:24 +02001261 free(match_buf);
Erik Andersenf0657d32000-04-12 17:49:52 +00001262}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001263
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02001264#endif /* FEATURE_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001265
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001266
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001267line_input_t* FAST_FUNC new_line_input_t(int flags)
1268{
1269 line_input_t *n = xzalloc(sizeof(*n));
1270 n->flags = flags;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001271#if MAX_HISTORY > 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001272 n->max_history = MAX_HISTORY;
Denys Vlasenko79df4812014-01-10 14:38:26 +01001273#endif
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001274 return n;
1275}
1276
1277
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001278#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001279
Flemming Madsend96ffda2013-04-07 18:47:24 +02001280unsigned FAST_FUNC size_from_HISTFILESIZE(const char *hp)
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001281{
1282 int size = MAX_HISTORY;
1283 if (hp) {
1284 size = atoi(hp);
1285 if (size <= 0)
1286 return 1;
1287 if (size > MAX_HISTORY)
1288 return MAX_HISTORY;
1289 }
1290 return size;
1291}
1292
Denis Vlasenko682ad302008-09-27 01:28:56 +00001293static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001294{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001295 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001296 int cur = state->cur_history;
1297 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001298
Denys Vlasenko19158a82010-03-26 14:06:56 +01001299# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001300 {
1301 char tbuf[MAX_LINELEN];
1302 save_string(tbuf, sizeof(tbuf));
1303 state->history[cur] = xstrdup(tbuf);
1304 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001305# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001306 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001307# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001308 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001309}
1310
1311/* state->flags is already checked to be nonzero */
1312static int get_previous_history(void)
1313{
1314 if ((state->flags & DO_HISTORY) && state->cur_history) {
1315 save_command_ps_at_cur_history();
1316 state->cur_history--;
1317 return 1;
1318 }
1319 beep();
1320 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001321}
1322
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001323static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001324{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001325 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001326 if (state->cur_history < state->cnt_history) {
1327 save_command_ps_at_cur_history(); /* save the current history line */
1328 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001329 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001330 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001331 beep();
1332 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001333}
Robert Griebl350d26b2002-12-03 22:45:46 +00001334
Flemming Madsend96ffda2013-04-07 18:47:24 +02001335/* Lists command history. Used by shell 'history' builtins */
1336void FAST_FUNC show_history(const line_input_t *st)
1337{
1338 int i;
1339
1340 if (!st)
1341 return;
1342 for (i = 0; i < st->cnt_history; i++)
1343 printf("%4d %s\n", i, st->history[i]);
1344}
1345
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001346# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001347/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001348 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001349 * Otherwise shell users get unhappy.
1350 *
1351 * History file is trimmed lazily, when it grows several times longer
1352 * than configured MAX_HISTORY lines.
1353 */
1354
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001355static void free_line_input_t(line_input_t *n)
1356{
1357 int i = n->cnt_history;
1358 while (i > 0)
1359 free(n->history[--i]);
1360 free(n);
1361}
1362
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001363/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001364static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001365{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001366 char *temp_h[MAX_HISTORY];
1367 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001368 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001369 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001370
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001371 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001372
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001373 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001374 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001375 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001376 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001377 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001378 free(st_parm->history[idx]);
1379 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001380 }
1381
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001382 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1383 memset(temp_h, 0, sizeof(temp_h));
Denys Vlasenkobede2152011-09-04 16:12:33 +02001384 idx = 0;
Dennis Groenendeee3562012-04-24 22:40:58 +02001385 st_parm->cnt_history_in_file = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001386 while ((line = xmalloc_fgetline(fp)) != NULL) {
1387 if (line[0] == '\0') {
1388 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001389 continue;
1390 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001391 free(temp_h[idx]);
1392 temp_h[idx] = line;
Dennis Groenendeee3562012-04-24 22:40:58 +02001393 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001394 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001395 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001396 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001397 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001398 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001399
1400 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001401 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001402 while (temp_h[idx] == NULL) {
1403 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001404 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001405 idx = 0;
1406 }
1407 }
1408
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001409 /* copy temp_h[] to st_parm->history[] */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001410 for (i = 0; i < st_parm->max_history;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001411 line = temp_h[idx];
1412 if (!line)
1413 break;
1414 idx++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001415 if (idx == st_parm->max_history)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001416 idx = 0;
1417 line_len = strlen(line);
1418 if (line_len >= MAX_LINELEN)
1419 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001420 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001421 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001422 st_parm->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001423 if (ENABLE_FEATURE_EDITING_SAVE_ON_EXIT)
1424 st_parm->cnt_history_in_file = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001425 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001426}
1427
Denys Vlasenkobede2152011-09-04 16:12:33 +02001428# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1429void save_history(line_input_t *st)
1430{
1431 FILE *fp;
1432
Denys Vlasenkobede2152011-09-04 16:12:33 +02001433 if (!st->hist_file)
1434 return;
1435 if (st->cnt_history <= st->cnt_history_in_file)
1436 return;
1437
1438 fp = fopen(st->hist_file, "a");
1439 if (fp) {
1440 int i, fd;
1441 char *new_name;
1442 line_input_t *st_temp;
1443
1444 for (i = st->cnt_history_in_file; i < st->cnt_history; i++)
1445 fprintf(fp, "%s\n", st->history[i]);
1446 fclose(fp);
1447
1448 /* we may have concurrently written entries from others.
1449 * load them */
1450 st_temp = new_line_input_t(st->flags);
1451 st_temp->hist_file = st->hist_file;
1452 st_temp->max_history = st->max_history;
1453 load_history(st_temp);
1454
1455 /* write out temp file and replace hist_file atomically */
1456 new_name = xasprintf("%s.%u.new", st->hist_file, (int) getpid());
1457 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1458 if (fd >= 0) {
1459 fp = xfdopen_for_write(fd);
1460 for (i = 0; i < st_temp->cnt_history; i++)
1461 fprintf(fp, "%s\n", st_temp->history[i]);
1462 fclose(fp);
1463 if (rename(new_name, st->hist_file) == 0)
1464 st->cnt_history_in_file = st_temp->cnt_history;
1465 }
1466 free(new_name);
1467 free_line_input_t(st_temp);
1468 }
1469}
1470# else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001471static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001472{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001473 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001474 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001475
Denys Vlasenkobede2152011-09-04 16:12:33 +02001476 if (!state->hist_file)
1477 return;
1478
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001479 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001480 if (fd < 0)
1481 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001482 xlseek(fd, 0, SEEK_END); /* paranoia */
1483 len = strlen(str);
1484 str[len] = '\n'; /* we (try to) do atomic write */
1485 len2 = full_write(fd, str, len + 1);
1486 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001487 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001488 if (len2 != len + 1)
1489 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001490
1491 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001492 state->cnt_history_in_file++;
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001493 if (state->cnt_history_in_file > state->max_history * 4) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001494 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001495 line_input_t *st_temp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001496
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001497 /* we may have concurrently written entries from others.
1498 * load them */
1499 st_temp = new_line_input_t(state->flags);
1500 st_temp->hist_file = state->hist_file;
Denys Vlasenkoe3d8d072011-03-31 14:39:38 +02001501 st_temp->max_history = state->max_history;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001502 load_history(st_temp);
1503
1504 /* write out temp file and replace hist_file atomically */
1505 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denys Vlasenko4840ae82011-09-04 15:28:03 +02001506 fd = open(new_name, O_WRONLY | O_CREAT | O_TRUNC, 0600);
Wolfram Sang2e9aeae2010-11-15 02:58:28 +01001507 if (fd >= 0) {
1508 FILE *fp;
1509 int i;
1510
1511 fp = xfdopen_for_write(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001512 for (i = 0; i < st_temp->cnt_history; i++)
1513 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001514 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001515 if (rename(new_name, state->hist_file) == 0)
1516 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001517 }
1518 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001519 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001520 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001521}
Denys Vlasenkobede2152011-09-04 16:12:33 +02001522# endif
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001523# else
1524# define load_history(a) ((void)0)
1525# define save_history(a) ((void)0)
1526# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001527
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001528static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001529{
1530 int i;
1531
1532 if (!(state->flags & DO_HISTORY))
1533 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001534 if (str[0] == '\0')
1535 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001536 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001537 /* Don't save dupes */
1538 if (i && strcmp(state->history[i-1], str) == 0)
1539 return;
1540
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001541 free(state->history[state->max_history]); /* redundant, paranoia */
1542 state->history[state->max_history] = NULL; /* redundant, paranoia */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001543
1544 /* If history[] is full, remove the oldest command */
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001545 /* we need to keep history[state->max_history] empty, hence >=, not > */
1546 if (i >= state->max_history) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001547 free(state->history[0]);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001548 for (i = 0; i < state->max_history-1; i++)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001549 state->history[i] = state->history[i+1];
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001550 /* i == state->max_history-1 */
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001551# if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1552 if (state->cnt_history_in_file)
Denys Vlasenkobede2152011-09-04 16:12:33 +02001553 state->cnt_history_in_file--;
Denys Vlasenkoc0cae522011-11-04 01:09:09 +01001554# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001555 }
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001556 /* i <= state->max_history-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001557 state->history[i++] = xstrdup(str);
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02001558 /* i <= state->max_history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001559 state->cur_history = i;
1560 state->cnt_history = i;
Denys Vlasenkobede2152011-09-04 16:12:33 +02001561# if ENABLE_FEATURE_EDITING_SAVEHISTORY && !ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1562 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001563# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001564}
1565
1566#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001567# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001568#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001569
1570
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001571#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001572/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001573 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001574 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001575static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001576vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001577{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001578 CHAR_T *command = command_ps;
1579
1580 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001581 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001582 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001583 input_forward();
1584}
1585
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001586static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001587vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001588{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001589 CHAR_T *command = command_ps;
1590
Natanael Copa7e6f9312016-08-14 23:30:29 +02001591 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001592 while (cursor < command_len
Natanael Copa7e6f9312016-08-14 23:30:29 +02001593 && (BB_isalnum_or_underscore(command[cursor+1]))
Denys Vlasenko13028922009-07-12 00:51:15 +02001594 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001595 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001596 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001597 } else if (BB_ispunct(command[cursor])) {
1598 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001599 input_forward();
1600 }
1601
Denis Vlasenko253ce002007-01-22 08:34:44 +00001602 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001603 input_forward();
1604
Denys Vlasenko13028922009-07-12 00:51:15 +02001605 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001606 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001607 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001608 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001609}
1610
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001611static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001612vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001613{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001614 CHAR_T *command = command_ps;
1615
Paul Fox3f11b1b2005-08-04 19:04:46 +00001616 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001617 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001618 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001619 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001620 input_forward();
1621}
1622
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001623static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001624vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001625{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001626 CHAR_T *command = command_ps;
1627
Denis Vlasenko253ce002007-01-22 08:34:44 +00001628 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001629 return;
1630 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001631 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001632 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001633 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001634 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001635 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001636 while (cursor < command_len-1
Natanael Copa7e6f9312016-08-14 23:30:29 +02001637 && (BB_isalnum_or_underscore(command[cursor+1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001638 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001639 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001640 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001641 } else if (BB_ispunct(command[cursor])) {
1642 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001643 input_forward();
1644 }
1645}
1646
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001647static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001648vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001649{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001650 CHAR_T *command = command_ps;
1651
1652 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001653 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001654 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001655 input_backward(1);
1656}
1657
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001658static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001659vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001660{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001661 CHAR_T *command = command_ps;
1662
Paul Fox3f11b1b2005-08-04 19:04:46 +00001663 if (cursor <= 0)
1664 return;
1665 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001666 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001667 input_backward(1);
1668 if (cursor <= 0)
1669 return;
Natanael Copa7e6f9312016-08-14 23:30:29 +02001670 if (BB_isalnum_or_underscore(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001671 while (cursor > 0
Natanael Copa7e6f9312016-08-14 23:30:29 +02001672 && (BB_isalnum_or_underscore(command[cursor-1]))
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001673 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001674 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001675 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001676 } else if (BB_ispunct(command[cursor])) {
1677 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001678 input_backward(1);
1679 }
1680}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001681#endif
1682
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001683/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1684static void ctrl_left(void)
1685{
1686 CHAR_T *command = command_ps;
1687
1688 while (1) {
1689 CHAR_T c;
1690
1691 input_backward(1);
1692 if (cursor == 0)
1693 break;
1694 c = command[cursor];
1695 if (c != ' ' && !BB_ispunct(c)) {
1696 /* we reached a "word" delimited by spaces/punct.
1697 * go to its beginning */
1698 while (1) {
1699 c = command[cursor - 1];
1700 if (c == ' ' || BB_ispunct(c))
1701 break;
1702 input_backward(1);
1703 if (cursor == 0)
1704 break;
1705 }
1706 break;
1707 }
1708 }
1709}
1710static void ctrl_right(void)
1711{
1712 CHAR_T *command = command_ps;
1713
1714 while (1) {
1715 CHAR_T c;
1716
1717 c = command[cursor];
1718 if (c == BB_NUL)
1719 break;
1720 if (c != ' ' && !BB_ispunct(c)) {
1721 /* we reached a "word" delimited by spaces/punct.
1722 * go to its end + 1 */
1723 while (1) {
1724 input_forward();
1725 c = command[cursor];
1726 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1727 break;
1728 }
1729 break;
1730 }
1731 input_forward();
1732 }
1733}
1734
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001735
1736/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001737 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001738 */
1739
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001740#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1741static void ask_terminal(void)
1742{
1743 /* Ask terminal where is the cursor now.
1744 * lineedit_read_key handles response and corrects
1745 * our idea of current cursor position.
1746 * Testcase: run "echo -n long_line_long_line_long_line",
1747 * then type in a long, wrapping command and try to
1748 * delete it using backspace key.
1749 * Note: we print it _after_ prompt, because
1750 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1751 */
1752 /* Problem: if there is buffered input on stdin,
1753 * the response will be delivered later,
1754 * possibly to an unsuspecting application.
1755 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1756 * Result:
1757 * ~/srcdevel/bbox/fix/busybox.t4 #
1758 * ~/srcdevel/bbox/fix/busybox.t4 #
1759 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1760 * ~/srcdevel/bbox/fix/busybox.t4 #
1761 *
1762 * Checking for input with poll only makes the race narrower,
1763 * I still can trigger it. Strace:
1764 *
1765 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1766 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1767 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001768 * poll([{fd=0, events=POLLIN}], 1, -1) = 1 ([{fd=0, revents=POLLIN}])
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001769 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1770 */
Denys Vlasenko451add42010-07-25 00:06:41 +02001771 struct pollfd pfd;
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001772
Denys Vlasenko451add42010-07-25 00:06:41 +02001773 pfd.fd = STDIN_FILENO;
1774 pfd.events = POLLIN;
1775 if (safe_poll(&pfd, 1, 0) == 0) {
1776 S.sent_ESC_br6n = 1;
Marek Polacek7b181072010-10-28 21:34:56 +02001777 fputs(ESC"[6n", stdout);
Denys Vlasenko451add42010-07-25 00:06:41 +02001778 fflush_all(); /* make terminal see it ASAP! */
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001779 }
1780}
1781#else
1782#define ask_terminal() ((void)0)
1783#endif
1784
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001785/* Called just once at read_line_input() init time */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001786#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001787static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001788{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001789 const char *p;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001790 cmdedit_prompt = prmt_ptr;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001791 p = strrchr(prmt_ptr, '\n');
Denys Vlasenko1b9ac212013-08-20 16:13:05 +02001792 cmdedit_prmt_len = unicode_strwidth(p ? p+1 : prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001793 put_prompt();
1794}
1795#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001796static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001797{
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001798 int prmt_size = 0;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001799 char *prmt_mem_ptr = xzalloc(1);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001800# if ENABLE_USERNAME_OR_HOMEDIR
1801 char *cwd_buf = NULL;
1802# endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001803 char flg_not_length = '[';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001804 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001805
Denys Vlasenko7a180432013-08-19 16:44:05 +02001806 /*cmdedit_prmt_len = 0; - already is */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001807
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001808 cbuf[1] = '\0'; /* never changes */
1809
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001810 while (*prmt_ptr) {
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001811 char timebuf[sizeof("HH:MM:SS")];
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001812 char *free_me = NULL;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001813 char *pbuf;
1814 char c;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001815
1816 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001817 c = *prmt_ptr++;
1818 if (c == '\\') {
Denys Vlasenko1d145692013-03-29 13:09:05 +01001819 const char *cp;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001820 int l;
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001821/*
1822 * Supported via bb_process_escape_sequence:
1823 * \a ASCII bell character (07)
1824 * \e ASCII escape character (033)
1825 * \n newline
1826 * \r carriage return
1827 * \\ backslash
1828 * \nnn char with octal code nnn
1829 * Supported:
1830 * \$ if the effective UID is 0, a #, otherwise a $
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001831 * \w current working directory, with $HOME abbreviated with a tilde
1832 * Note: we do not support $PROMPT_DIRTRIM=n feature
Denys Vlasenko1d145692013-03-29 13:09:05 +01001833 * \W basename of the current working directory, with $HOME abbreviated with a tilde
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001834 * \h hostname up to the first '.'
1835 * \H hostname
1836 * \u username
1837 * \[ begin a sequence of non-printing characters
1838 * \] end a sequence of non-printing characters
Denys Vlasenko1d145692013-03-29 13:09:05 +01001839 * \T current time in 12-hour HH:MM:SS format
1840 * \@ current time in 12-hour am/pm format
1841 * \A current time in 24-hour HH:MM format
1842 * \t current time in 24-hour HH:MM:SS format
1843 * (all of the above work as \A)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001844 * Not supported:
Denys Vlasenko1d145692013-03-29 13:09:05 +01001845 * \! history number of this command
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001846 * \# command number of this command
1847 * \j number of jobs currently managed by the shell
1848 * \l basename of the shell's terminal device name
1849 * \s name of the shell, the basename of $0 (the portion following the final slash)
1850 * \V release of bash, version + patch level (e.g., 2.00.0)
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001851 * \d date in "Weekday Month Date" format (e.g., "Tue May 26")
1852 * \D{format}
1853 * format is passed to strftime(3).
1854 * An empty format results in a locale-specific time representation.
1855 * The braces are required.
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001856 * Mishandled by bb_process_escape_sequence:
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001857 * \v version of bash (e.g., 2.00)
1858 */
Denys Vlasenko1d145692013-03-29 13:09:05 +01001859 cp = prmt_ptr;
1860 c = *cp;
1861 if (c != 't') /* don't treat \t as tab */
1862 c = bb_process_escape_sequence(&prmt_ptr);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001863 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001864 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001865 break;
1866 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001867
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001868 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001869# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001870 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001871 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001872 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001873# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001874 case 'H':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001875 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001876 pbuf = free_me = safe_gethostname();
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001877 if (c == 'h')
1878 strchrnul(pbuf, '.')[0] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001879 break;
1880 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001881 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001882 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001883 case 'T': /* 12-hour HH:MM:SS format */
1884 case '@': /* 12-hour am/pm format */
1885 case 'A': /* 24-hour HH:MM format */
1886 case 't': /* 24-hour HH:MM:SS format */
1887 /* We show all of them as 24-hour HH:MM */
1888 strftime_HHMMSS(timebuf, sizeof(timebuf), NULL)[-3] = '\0';
1889 pbuf = timebuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001890 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001891# if ENABLE_USERNAME_OR_HOMEDIR
1892 case 'w': /* current dir */
1893 case 'W': /* basename of cur dir */
1894 if (!cwd_buf) {
1895 cwd_buf = xrealloc_getcwd_or_warn(NULL);
1896 if (!cwd_buf)
1897 cwd_buf = (char *)bb_msg_unknown;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001898 else if (home_pwd_buf[0]) {
1899 char *after_home_user;
1900
Denys Vlasenko1d145692013-03-29 13:09:05 +01001901 /* /home/user[/something] -> ~[/something] */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001902 after_home_user = is_prefixed_with(cwd_buf, home_pwd_buf);
1903 if (after_home_user
1904 && (*after_home_user == '/' || *after_home_user == '\0')
Denys Vlasenko1d145692013-03-29 13:09:05 +01001905 ) {
1906 cwd_buf[0] = '~';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01001907 overlapping_strcpy(cwd_buf + 1, after_home_user);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001908 }
1909 }
1910 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001911 pbuf = cwd_buf;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001912 if (c == 'w')
1913 break;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001914 cp = strrchr(pbuf, '/');
Denys Vlasenko8172d052013-03-29 13:21:53 +01001915 if (cp)
Denys Vlasenko1d145692013-03-29 13:09:05 +01001916 pbuf = (char*)cp + 1;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001917 break;
Denys Vlasenko1d145692013-03-29 13:09:05 +01001918# endif
Denys Vlasenko6c852bf2013-03-28 13:20:12 +01001919// bb_process_escape_sequence does this now:
1920// case 'e': case 'E': /* \e \E = \033 */
1921// c = '\033';
1922// break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001923 case 'x': case 'X': {
1924 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001925 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001926 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001927 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001928 buf2[l] = '\0';
1929 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001930 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001931 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001932 break;
1933 }
1934 prmt_ptr++;
1935 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001936 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001937 if (c == 0)
1938 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001939 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001940 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001941 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001942 case '[': case ']':
1943 if (c == flg_not_length) {
Denys Vlasenko7a180432013-08-19 16:44:05 +02001944 /* Toggle '['/']' hex 5b/5d */
1945 flg_not_length ^= 6;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001946 continue;
1947 }
1948 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001949 } /* switch */
1950 } /* if */
1951 } /* if */
1952 cbuf[0] = c;
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001953 {
1954 int n = strlen(pbuf);
1955 prmt_size += n;
1956 if (c == '\n')
1957 cmdedit_prmt_len = 0;
1958 else if (flg_not_length != ']') {
1959#if 0 /*ENABLE_UNICODE_SUPPORT*/
1960/* Won't work, pbuf is one BYTE string here instead of an one Unicode char string. */
1961/* FIXME */
Denys Vlasenko1b9ac212013-08-20 16:13:05 +02001962 cmdedit_prmt_len += unicode_strwidth(pbuf);
Denys Vlasenko7a180432013-08-19 16:44:05 +02001963#else
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001964 cmdedit_prmt_len += n;
Denys Vlasenko7a180432013-08-19 16:44:05 +02001965#endif
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001966 }
Denys Vlasenko7a180432013-08-19 16:44:05 +02001967 }
Denys Vlasenkoe66a56d2013-08-19 16:45:04 +02001968 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_size+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001969 free(free_me);
1970 } /* while */
1971
Denys Vlasenko1d145692013-03-29 13:09:05 +01001972# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001973 if (cwd_buf != (char *)bb_msg_unknown)
1974 free(cwd_buf);
Denys Vlasenko1d145692013-03-29 13:09:05 +01001975# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001976 cmdedit_prompt = prmt_mem_ptr;
1977 put_prompt();
1978}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001979#endif
1980
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001981static void cmdedit_setwidth(unsigned w, int redraw_flg)
1982{
1983 cmdedit_termw = w;
1984 if (redraw_flg) {
1985 /* new y for current cursor */
1986 int new_y = (cursor + cmdedit_prmt_len) / w;
1987 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001988 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001989 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001990 }
1991}
1992
1993static void win_changed(int nsig)
1994{
Denys Vlasenko55241fa2010-07-18 22:53:06 +02001995 int sv_errno = errno;
Denis Vlasenko55995022008-05-18 22:28:26 +00001996 unsigned width;
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001997
Denys Vlasenko451add42010-07-25 00:06:41 +02001998 get_terminal_width_height(0, &width, NULL);
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02001999//FIXME: cmdedit_setwidth() -> redraw() -> printf() -> KABOOM! (we are in signal handler!)
2000 cmdedit_setwidth(width, /*redraw_flg:*/ nsig);
2001
Denys Vlasenko55241fa2010-07-18 22:53:06 +02002002 errno = sv_errno;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002003}
2004
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002005static int lineedit_read_key(char *read_key_buffer, int timeout)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002006{
Denys Vlasenko020f4062009-05-17 16:44:54 +02002007 int64_t ic;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002008#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002009 char unicode_buf[MB_CUR_MAX + 1];
2010 int unicode_idx = 0;
2011#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02002012
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002013 while (1) {
2014 /* Wait for input. TIMEOUT = -1 makes read_key wait even
2015 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
2016 * insist on full MB_CUR_MAX buffer to declare input like
2017 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
2018 *
2019 * Note: read_key sets errno to 0 on success.
2020 */
2021 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
2022 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01002023#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002024 if (errno == EAGAIN && unicode_idx != 0)
2025 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01002026#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002027 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02002028 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002029
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002030#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2031 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002032 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02002033 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002034 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002035 if (cursor == 0) { /* otherwise it may be bogus */
2036 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002037 /*
2038 * Is col > cmdedit_prmt_len?
2039 * If yes (terminal says cursor is farther to the right
2040 * of where we think it should be),
2041 * the prompt wasn't printed starting at col 1,
2042 * there was additional text before it.
2043 */
2044 if ((int)(col - cmdedit_prmt_len) > 0) {
2045 /* Fix our understanding of current x position */
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002046 cmdedit_x += (col - cmdedit_prmt_len);
2047 while (cmdedit_x >= cmdedit_termw) {
2048 cmdedit_x -= cmdedit_termw;
2049 cmdedit_y++;
2050 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02002051 }
2052 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002053 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02002054 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002055#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002056
Denys Vlasenko19158a82010-03-26 14:06:56 +01002057#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002058 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002059 wchar_t wc;
2060
2061 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002062 break;
2063 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002064
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002065 unicode_buf[unicode_idx++] = ic;
2066 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002067 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
2068 /* Not (yet?) a valid unicode char */
2069 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002070 timeout = 50;
2071 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002072 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002073 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002074 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002075 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02002076# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002077 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02002078# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02002079 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02002080# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01002081 } else {
2082 /* Valid unicode char, return its code */
2083 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002084 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002085 }
2086#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01002087 break;
2088 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002089
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002090 return ic;
2091}
2092
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002093#if ENABLE_UNICODE_BIDI_SUPPORT
2094static int isrtl_str(void)
2095{
2096 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002097
2098 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002099 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002100 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002101}
2102#else
2103# define isrtl_str() 0
2104#endif
2105
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002106/* leave out the "vi-mode"-only case labels if vi editing isn't
2107 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02002108#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002109
2110/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002111#undef CTRL
2112#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00002113
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002114enum {
2115 VI_CMDMODE_BIT = 0x40000000,
2116 /* 0x80000000 bit flags KEYCODE_xxx */
2117};
2118
2119#if ENABLE_FEATURE_REVERSE_SEARCH
2120/* Mimic readline Ctrl-R reverse history search.
2121 * When invoked, it shows the following prompt:
2122 * (reverse-i-search)'': user_input [cursor pos unchanged by Ctrl-R]
2123 * and typing results in search being performed:
2124 * (reverse-i-search)'tmp': cd /tmp [cursor under t in /tmp]
2125 * Search is performed by looking at progressively older lines in history.
2126 * Ctrl-R again searches for the next match in history.
2127 * Backspace deletes last matched char.
2128 * Control keys exit search and return to normal editing (at current history line).
2129 */
2130static int32_t reverse_i_search(void)
2131{
2132 char match_buf[128]; /* for user input */
2133 char read_key_buffer[KEYCODE_BUFFER_SIZE];
2134 const char *matched_history_line;
2135 const char *saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002136 unsigned saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002137 int32_t ic;
2138
2139 matched_history_line = NULL;
2140 read_key_buffer[0] = 0;
2141 match_buf[0] = '\0';
2142
2143 /* Save and replace the prompt */
2144 saved_prompt = cmdedit_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002145 saved_prmt_len = cmdedit_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002146 goto set_prompt;
2147
2148 while (1) {
2149 int h;
2150 unsigned match_buf_len = strlen(match_buf);
2151
2152 fflush_all();
2153//FIXME: correct timeout?
2154 ic = lineedit_read_key(read_key_buffer, -1);
2155
2156 switch (ic) {
2157 case CTRL('R'): /* searching for the next match */
2158 break;
2159
2160 case '\b':
2161 case '\x7f':
2162 /* Backspace */
2163 if (unicode_status == UNICODE_ON) {
2164 while (match_buf_len != 0) {
2165 uint8_t c = match_buf[--match_buf_len];
2166 if ((c & 0xc0) != 0x80) /* start of UTF-8 char? */
2167 break; /* yes */
2168 }
2169 } else {
2170 if (match_buf_len != 0)
2171 match_buf_len--;
2172 }
2173 match_buf[match_buf_len] = '\0';
2174 break;
2175
2176 default:
2177 if (ic < ' '
2178 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2179 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2180 ) {
2181 goto ret;
2182 }
2183
2184 /* Append this char */
2185#if ENABLE_UNICODE_SUPPORT
2186 if (unicode_status == UNICODE_ON) {
2187 mbstate_t mbstate = { 0 };
2188 char buf[MB_CUR_MAX + 1];
2189 int len = wcrtomb(buf, ic, &mbstate);
2190 if (len > 0) {
2191 buf[len] = '\0';
2192 if (match_buf_len + len < sizeof(match_buf))
2193 strcpy(match_buf + match_buf_len, buf);
2194 }
2195 } else
2196#endif
2197 if (match_buf_len < sizeof(match_buf) - 1) {
2198 match_buf[match_buf_len] = ic;
2199 match_buf[match_buf_len + 1] = '\0';
2200 }
2201 break;
2202 } /* switch (ic) */
2203
2204 /* Search in history for match_buf */
2205 h = state->cur_history;
2206 if (ic == CTRL('R'))
2207 h--;
2208 while (h >= 0) {
2209 if (state->history[h]) {
2210 char *match = strstr(state->history[h], match_buf);
2211 if (match) {
2212 state->cur_history = h;
2213 matched_history_line = state->history[h];
2214 command_len = load_string(matched_history_line);
2215 cursor = match - matched_history_line;
2216//FIXME: cursor position for Unicode case
2217
2218 free((char*)cmdedit_prompt);
2219 set_prompt:
2220 cmdedit_prompt = xasprintf("(reverse-i-search)'%s': ", match_buf);
Denys Vlasenko1b9ac212013-08-20 16:13:05 +02002221 cmdedit_prmt_len = unicode_strwidth(cmdedit_prompt);
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002222 goto do_redraw;
2223 }
2224 }
2225 h--;
2226 }
2227
2228 /* Not found */
2229 match_buf[match_buf_len] = '\0';
2230 beep();
2231 continue;
2232
2233 do_redraw:
2234 redraw(cmdedit_y, command_len - cursor);
2235 } /* while (1) */
2236
2237 ret:
2238 if (matched_history_line)
2239 command_len = load_string(matched_history_line);
2240
2241 free((char*)cmdedit_prompt);
2242 cmdedit_prompt = saved_prompt;
Denys Vlasenko7a180432013-08-19 16:44:05 +02002243 cmdedit_prmt_len = saved_prmt_len;
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002244 redraw(cmdedit_y, command_len - cursor);
2245
2246 return ic;
2247}
2248#endif
2249
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02002250/* maxsize must be >= 2.
2251 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00002252 * -1 on read errors or EOF, or on bare Ctrl-D,
2253 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002254 * (in both cases the cursor remains on the input line, '\n' is not printed)
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00002255 * >0 length of input string, including terminating '\n'
2256 */
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002257int 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 +00002258{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002259 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002260#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002261 smallint lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002262#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002263 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00002264#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002265 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002266#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002267 struct termios initial_settings;
2268 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002269 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002270
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002271 INIT_S();
2272
2273 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002274 || (initial_settings.c_lflag & (ECHO|ICANON)) == ICANON
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002275 ) {
Denys Vlasenkod598a8d2014-12-10 17:22:13 +01002276 /* Happens when e.g. stty -echo was run before.
2277 * But if ICANON is not set, we don't come here.
2278 * (example: interactive python ^Z-backgrounded,
2279 * tty is still in "raw mode").
2280 */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002281 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002282 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00002283 if (fgets(command, maxsize, stdin) == NULL)
2284 len = -1; /* EOF or error */
2285 else
2286 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002287 DEINIT_S();
2288 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00002289 }
2290
Denys Vlasenko28055022010-01-04 20:49:58 +01002291 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02002292
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002293// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002294 if (maxsize > MAX_LINELEN)
2295 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02002296 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002297
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002298 /* With zero flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00002299 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002300#if MAX_HISTORY > 0
2301# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02002302 if (state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00002303 if (state->cnt_history == 0)
2304 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002305# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00002306 if (state->flags & DO_HISTORY)
2307 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02002308#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002309
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002310 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002311 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002312 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01002313#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002314 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
2315#else
Mark Whitley4e338752001-01-26 20:42:23 +00002316 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00002317 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002318#endif
2319#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00002320
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002321 new_settings = initial_settings;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002322 /* ~ICANON: unbuffered input (most c_cc[] are disabled, VMIN/VTIME are enabled) */
2323 /* ~ECHO, ~ECHONL: turn off echoing, including newline echoing */
2324 /* ~ISIG: turn off INTR (ctrl-C), QUIT, SUSP */
2325 new_settings.c_lflag &= ~(ICANON | ECHO | ECHONL | ISIG);
2326 /* reads would block only if < 1 char is available */
Eric Andersen34506362001-08-02 05:02:46 +00002327 new_settings.c_cc[VMIN] = 1;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002328 /* no timeout (reads block forever) */
Eric Andersen34506362001-08-02 05:02:46 +00002329 new_settings.c_cc[VTIME] = 0;
Denys Vlasenko7ce209b2012-01-15 22:58:06 +01002330 /* Should be not needed if ISIG is off: */
2331 /* Turn off CTRL-C */
2332 /* new_settings.c_cc[VINTR] = _POSIX_VDISABLE; */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002333 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00002334
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002335#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002336 {
2337 struct passwd *entry;
2338
2339 entry = getpwuid(geteuid());
2340 if (entry) {
2341 user_buf = xstrdup(entry->pw_name);
2342 home_pwd_buf = xstrdup(entry->pw_dir);
2343 }
2344 }
2345#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00002346
2347#if 0
Denys Vlasenko2c4de5b2011-03-31 13:16:52 +02002348 for (i = 0; i <= state->max_history; i++)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002349 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00002350 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
2351#endif
2352
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002353 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002354 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01002355 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00002356
Alexey Fomenko232ebaa2011-05-20 04:26:29 +02002357 /* Install window resize handler (NB: after *all* init is complete) */
2358//FIXME: save entire sigaction!
2359 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
2360 win_changed(0); /* get initial window size */
2361
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02002362 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002363 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002364 /*
2365 * The emacs and vi modes share much of the code in the big
2366 * command loop. Commands entered when in vi's command mode
2367 * (aka "escape mode") get an extra bit added to distinguish
2368 * them - this keeps them from being self-inserted. This
2369 * clutters the big switch a bit, but keeps all the code
2370 * in one place.
2371 */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002372 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002373
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002374 fflush_all();
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002375 ic = ic_raw = lineedit_read_key(read_key_buffer, timeout);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002376
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002377#if ENABLE_FEATURE_REVERSE_SEARCH
2378 again:
2379#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00002380#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002381 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002382 if (vi_cmdmode) {
2383 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2384 * change ic if it contains one of them: */
2385 ic |= VI_CMDMODE_BIT;
2386 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002387#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002388
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002389 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002390 case '\n':
2391 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002392 vi_case('\n'|VI_CMDMODE_BIT:)
2393 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002394 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002395 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002396 break_out = 1;
2397 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002398 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002399 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002400 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002401 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002402 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002403 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002404 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002405 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002406 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002407 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002408 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002409 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002410 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002411 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002412 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002413 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002414 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002415 vi_case('l'|VI_CMDMODE_BIT:)
2416 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002417 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002418 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002419 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002420 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002421 if (!isrtl_str())
2422 input_backspace();
2423 else
2424 input_delete(0);
2425 break;
2426 case KEYCODE_DELETE:
2427 if (!isrtl_str())
2428 input_delete(0);
2429 else
2430 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002431 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002432#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002433 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002434 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002435 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002436#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002437 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002438 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002439 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002440 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002441 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002442 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002443 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002444 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002445 /* Control-l -- clear screen */
Marek Polacek7b181072010-10-28 21:34:56 +02002446 printf(ESC"[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002447 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002448 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002449#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002450 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002451 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2452 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002453 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002454 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002455 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002456 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002457 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002458 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2459 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002460 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002461 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002462 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002463 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002464#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002465 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002466 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002467 /* Control-U -- Clear line before cursor */
2468 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002469 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002470 memmove(command_ps, command_ps + cursor,
2471 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002472 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002473 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002474 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002475 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002476 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002477 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002478 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002479 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002480 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002481 input_backspace();
2482 break;
Rostislav Skudnov2e4ef382016-11-24 15:04:00 +01002483 case KEYCODE_ALT_D: {
2484 /* Delete word forward */
2485 int nc, sc = cursor;
2486 ctrl_right();
2487 nc = cursor - sc;
2488 input_backward(nc);
2489 while (--nc >= 0)
2490 input_delete(1);
2491 break;
2492 }
2493 case KEYCODE_ALT_BACKSPACE: {
2494 /* Delete word backward */
2495 int sc = cursor;
2496 ctrl_left();
2497 while (sc-- > cursor)
2498 input_delete(1);
2499 break;
2500 }
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002501#if ENABLE_FEATURE_REVERSE_SEARCH
2502 case CTRL('R'):
2503 ic = ic_raw = reverse_i_search();
2504 goto again;
2505#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002506
Denis Vlasenko38f63192007-01-22 09:03:07 +00002507#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002508 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002509 vi_cmdmode = 0;
2510 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002511 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002512 input_backward(cursor);
2513 vi_cmdmode = 0;
2514 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002515 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002516 input_forward();
2517 vi_cmdmode = 0;
2518 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002519 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002520 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002521 vi_cmdmode = 0;
2522 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002523 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002524 input_delete(1);
2525 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002526 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002527 if (cursor > 0) {
2528 input_backward(1);
2529 input_delete(1);
2530 }
2531 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002532 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002533 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002534 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002535 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002536 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002537 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002538 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002539 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002540 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002541 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002542 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002543 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002544 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002545 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002546 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002547 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002548 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002549 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002550 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002551 vi_cmdmode = 0;
2552 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002553 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002554 goto clear_to_eol;
2555
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002556 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002557 vi_cmdmode = 0;
2558 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002559 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002560 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002561
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002562 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002563 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002564 goto return_error_indicator;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002565 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002566 input_backward(cursor);
2567 goto clear_to_eol;
2568 break;
2569 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002570
2571 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002572 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002573 case 'w':
2574 case 'W':
2575 case 'e':
2576 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002577 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002578 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002579 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002580 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002581 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002582 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002583 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002584 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002585 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002586 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002587 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002588 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002589 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002590 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002591 break;
2592 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002593 nc = cursor;
2594 input_backward(cursor - sc);
2595 while (nc-- > cursor)
2596 input_delete(1);
2597 break;
2598 case 'b': /* "db", "cb" */
2599 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002600 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002601 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002602 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002603 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002604 while (sc-- > cursor)
2605 input_delete(1);
2606 break;
2607 case ' ': /* "d ", "c " */
2608 input_delete(1);
2609 break;
2610 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002611 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002612 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002613 input_delete(1);
2614 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002615 }
2616 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002617 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002618 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002619 input_forward();
2620 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002621 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002622 put();
2623 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002624 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002625//FIXME: unicode case?
Denys Vlasenko66c5b122011-02-08 05:07:02 +01002626 ic = lineedit_read_key(read_key_buffer, timeout);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002627 if (errno) /* error */
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002628 goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002629 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002630 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002631 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002632 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002633 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002634 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002635 }
2636 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002637 case '\x1b': /* ESC */
2638 if (state->flags & VI_MODE) {
2639 /* insert mode --> command mode */
2640 vi_cmdmode = 1;
2641 input_backward(1);
2642 }
2643 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002644#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002645
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002646#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002647 case KEYCODE_UP:
2648 if (get_previous_history())
2649 goto rewrite_line;
2650 beep();
2651 break;
2652 case KEYCODE_DOWN:
2653 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002654 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002655 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002656 /* Rewrite the line with the selected history item */
2657 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002658 command_len = load_string(state->history[state->cur_history] ?
Denys Vlasenkoa669eca2011-07-11 07:36:59 +02002659 state->history[state->cur_history] : "");
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002660 /* redraw and go to eol (bol, in vi) */
2661 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2662 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002663#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002664 case KEYCODE_RIGHT:
2665 input_forward();
2666 break;
2667 case KEYCODE_LEFT:
2668 input_backward(1);
2669 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002670 case KEYCODE_CTRL_LEFT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002671 case KEYCODE_ALT_LEFT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002672 ctrl_left();
2673 break;
2674 case KEYCODE_CTRL_RIGHT:
Denys Vlasenko9ce09bc2011-11-03 13:28:22 +01002675 case KEYCODE_ALT_RIGHT: /* bash doesn't do it */
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002676 ctrl_right();
2677 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002678 case KEYCODE_HOME:
2679 input_backward(cursor);
2680 break;
2681 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002682 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002683 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002684
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002685 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002686 if (initial_settings.c_cc[VINTR] != 0
2687 && ic_raw == initial_settings.c_cc[VINTR]
2688 ) {
2689 /* Ctrl-C (usually) - stop gathering input */
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002690 command_len = 0;
2691 break_out = -1; /* "do not append '\n'" */
2692 break;
2693 }
2694 if (initial_settings.c_cc[VEOF] != 0
2695 && ic_raw == initial_settings.c_cc[VEOF]
2696 ) {
2697 /* Ctrl-D (usually) - delete one character,
2698 * or exit if len=0 and no chars to delete */
2699 if (command_len == 0) {
2700 errno = 0;
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002701
2702 case -1: /* error (e.g. EIO when tty is destroyed) */
2703 IF_FEATURE_EDITING_VI(return_error_indicator:)
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002704 break_out = command_len = -1;
2705 break;
2706 }
2707 input_delete(0);
2708 break;
2709 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002710// /* Control-V -- force insert of next char */
2711// if (c == CTRL('V')) {
2712// if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denys Vlasenkod55f5992010-09-07 18:40:53 +02002713// goto return_error_indicator;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002714// if (c == 0) {
2715// beep();
2716// break;
2717// }
2718// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002719 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002720 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2721 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002722 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002723 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002724 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002725 * Otherwise, we are here if ic is a
2726 * control char or an unhandled ESC sequence,
2727 * which is also ignored.
2728 */
2729 break;
2730 }
2731 if ((int)command_len >= (maxsize - 2)) {
2732 /* Not enough space for the char and EOL */
2733 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002734 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002735
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002736 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002737 if (cursor == (command_len - 1)) {
2738 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002739 command_ps[cursor] = ic;
2740 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002741 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002742 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002743 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002744 } else {
2745 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002746 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002747
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002748 memmove(command_ps + sc + 1, command_ps + sc,
2749 (command_len - sc) * sizeof(command_ps[0]));
2750 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002751 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2752 if (!isrtl_str())
2753 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002754 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002755 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002756 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002757 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002758 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002759 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002760
2761 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002762 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002763
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002764#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002765 if (ic_raw != '\t')
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002766 lastWasTab = 0;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002767#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002768 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002769
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002770#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002771 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002772 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2773 * We sent "ESC [ 6 n", but got '\n' first, and
2774 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2775 * It's bad already and not much can be done with it
2776 * (it _will_ be visible for the next process to read stdin),
2777 * but without this delay it even shows up on the screen
2778 * as garbage because we restore echo settings with tcsetattr
2779 * before it comes in. UGLY!
2780 */
2781 usleep(20*1000);
2782 }
2783#endif
2784
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002785/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002786#undef command
2787
Denys Vlasenko19158a82010-03-26 14:06:56 +01002788#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002789 command[0] = '\0';
2790 if (command_len > 0)
2791 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002792 free(command_ps);
2793#endif
2794
Flemming Madsend96ffda2013-04-07 18:47:24 +02002795 if (command_len > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002796 remember_in_history(command);
Flemming Madsend96ffda2013-04-07 18:47:24 +02002797 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002798
Eric Andersen27bb7902003-12-23 20:24:51 +00002799 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002800 command[command_len++] = '\n';
2801 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002802 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002803
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002804#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002805 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002806#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002807
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002808 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002809 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002810 /* restore SIGWINCH handler */
2811 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002812 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002813
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002814 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002815 DEINIT_S();
2816
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002817 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002818}
2819
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002820#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002821
2822#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002823int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002824{
2825 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002826 fflush_all();
Denys Vlasenkob2320372012-09-27 16:03:49 +02002827 if (!fgets(command, maxsize, stdin))
2828 return -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002829 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002830}
2831
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002832#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002833
2834
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002835/*
2836 * Testing
2837 */
2838
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002839#ifdef TEST
2840
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002841#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002842
2843const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002844
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002845int main(int argc, char **argv)
2846{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002847 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002848 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002849#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002850 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2851 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2852 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002853#else
2854 "% ";
2855#endif
2856
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002857 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002858 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002859 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002860 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002861 break;
Denys Vlasenko57ea9b42010-09-03 12:51:36 +02002862 buff[l-1] = '\0';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002863 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002864 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002865 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002866 return 0;
2867}
2868
Eric Andersenc470f442003-07-28 09:56:35 +00002869#endif /* TEST */