blob: b73f1d6da28b987e3a469f8a5989e48055dea67a [file] [log] [blame]
Erik Andersenc7c634b2000-03-19 05:28:55 +00001/* vi: set sw=4 ts=4: */
Erik Andersen13456d12000-03-16 08:09:57 +00002/*
Eric Andersenaff114c2004-04-14 17:51:38 +00003 * Termios command line History and Editing.
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Eric Andersen81fe1232003-07-29 06:38:40 +00005 * Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license.
Eric Andersen7467c8d2001-07-12 20:26:32 +00006 * Written by: Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersen5f2c79d2001-02-16 18:36:04 +00007 *
8 * Used ideas:
9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995
Eric Andersen81fe1232003-07-29 06:38:40 +000012 * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000013 *
Erik Andersen13456d12000-03-16 08:09:57 +000014 * This code is 'as is' with no warranty.
Erik Andersen13456d12000-03-16 08:09:57 +000015 */
16
17/*
Denis Vlasenko78ff8192008-06-28 21:03:43 +000018 * Usage and known bugs:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010019 * Terminal key codes are not extensive, more needs to be added.
20 * This version was created on Debian GNU/Linux 2.x.
Denis Vlasenko78ff8192008-06-28 21:03:43 +000021 * Delete, Backspace, Home, End, and the arrow keys were tested
22 * to work in an Xterm and console. Ctrl-A also works as Home.
23 * Ctrl-E also works as End.
24 *
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010025 * The following readline-like commands are not implemented:
26 * ESC-b -- Move back one word
27 * ESC-f -- Move forward one word
28 * ESC-d -- Delete forward one word
29 * CTL-t -- Transpose two characters
30 *
Denis Vlasenko78ff8192008-06-28 21:03:43 +000031 * lineedit does not know that the terminal escape sequences do not
32 * take up space on the screen. The redisplay code assumes, unless
33 * told otherwise, that each character in the prompt is a printable
34 * character that takes up one character position on the screen.
35 * You need to tell lineedit that some sequences of characters
36 * in the prompt take up no screen space. Compatibly with readline,
37 * use the \[ escape to begin a sequence of non-printing characters,
38 * and the \] escape to signal the end of such a sequence. Example:
39 *
40 * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
Erik Andersen13456d12000-03-16 08:09:57 +000041 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000042#include "libbb.h"
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020043#include "unicode.h"
Glenn L McGrath475820c2004-01-22 12:42:23 +000044
Denis Vlasenko7f1dc212006-12-19 01:10:25 +000045/* FIXME: obsolete CONFIG item? */
46#define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
47
Glenn L McGrath3b251852004-01-03 12:07:32 +000048#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020049# define ENABLE_FEATURE_EDITING 0
50# define ENABLE_FEATURE_TAB_COMPLETION 0
51# define ENABLE_FEATURE_USERNAME_COMPLETION 0
52# define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
53#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000054
Eric Andersen5165fbe2001-02-20 06:42:29 +000055
Denis Vlasenko82b39e82007-01-21 19:18:19 +000056/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000057#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000058
Denis Vlasenko82b39e82007-01-21 19:18:19 +000059
Denis Vlasenko7e46cf72006-12-23 01:21:55 +000060#define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000061 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000062#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000063#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000064#undef IF_FEATURE_GETUSERNAME_AND_HOMEDIR
65#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000066#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000067
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020068
69#undef CHAR_T
70#if ENABLE_FEATURE_ASSUME_UNICODE
71# define BB_NUL L'\0'
72# define CHAR_T wchar_t
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010073static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010074# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010075static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010076# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010077static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020078# undef isspace
79# undef isalnum
80# undef ispunct
81# undef isprint
82# define isspace isspace_must_not_be_used
83# define isalnum isalnum_must_not_be_used
84# define ispunct ispunct_must_not_be_used
85# define isprint isprint_must_not_be_used
86#else
87# define BB_NUL '\0'
88# define CHAR_T char
89# define BB_isspace(c) isspace(c)
90# define BB_isalnum(c) isalnum(c)
91# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020092#endif
93
94
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000095enum {
96 /* We use int16_t for positions, need to limit line len */
97 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +000098 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000099 : 0x7ff0
100};
Robert Griebl350d26b2002-12-03 22:45:46 +0000101
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000102#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
103static const char null_str[] ALIGN1 = "";
104#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000105
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000106/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000107struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000108 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000109
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000110 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
111 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000112
Denys Vlasenko020f4062009-05-17 16:44:54 +0200113 unsigned cmdedit_x; /* real x (col) terminal position */
114 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000115 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000116
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000117 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200118 int command_len; /* must be signed */
119 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200120 * to _not_ be promoted to unsigned */
121 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200122 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000123
124 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000125#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000126 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000127#endif
128
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000129#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000130 char *user_buf;
131 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000132#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000133
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000134#if ENABLE_FEATURE_TAB_COMPLETION
135 char **matches;
136 unsigned num_matches;
137#endif
138
139#if ENABLE_FEATURE_EDITING_VI
140#define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200141 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000142 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200143 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000144#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100145#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100146 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100147#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000148
149 /* Formerly these were big buffers on stack: */
150#if ENABLE_FEATURE_TAB_COMPLETION
151 char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
152 char input_tab__matchBuf[MAX_LINELEN];
153 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
154 int16_t find_match__pos_buf[MAX_LINELEN + 1];
155#endif
156};
157
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000158/* See lineedit_ptr_hack.c */
159extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000160
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000161#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000162#define state (S.state )
163#define cmdedit_termw (S.cmdedit_termw )
164#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
165#define cmdedit_x (S.cmdedit_x )
166#define cmdedit_y (S.cmdedit_y )
167#define cmdedit_prmt_len (S.cmdedit_prmt_len)
168#define cursor (S.cursor )
169#define command_len (S.command_len )
170#define command_ps (S.command_ps )
171#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000172#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000173#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000174#define home_pwd_buf (S.home_pwd_buf )
175#define matches (S.matches )
176#define num_matches (S.num_matches )
177#define delptr (S.delptr )
178#define newdelflag (S.newdelflag )
179#define delbuf (S.delbuf )
180
181#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000182 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000183 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000184 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000185 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
186 IF_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000187} while (0)
188static void deinit_S(void)
189{
190#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000191 /* This one is allocated only if FANCY_PROMPT is on
192 * (otherwise it points to verbatim prompt (NOT malloced) */
193 free((char*)cmdedit_prompt);
194#endif
195#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
196 free(user_buf);
197 if (home_pwd_buf != null_str)
198 free(home_pwd_buf);
199#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000200 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000201}
202#define DEINIT_S() deinit_S()
203
Denis Vlasenko2c844952008-04-25 18:44:35 +0000204
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200205#if ENABLE_FEATURE_ASSUME_UNICODE
206static size_t load_string(const char *src, int maxsize)
207{
208 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
209 if (len < 0)
210 len = 0;
211 command_ps[len] = L'\0';
212 return len;
213}
214static size_t save_string(char *dst, int maxsize)
215{
216 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
217 if (len < 0)
218 len = 0;
219 dst[len] = '\0';
220 return len;
221}
222/* I thought just fputwc(c, stdout) would work. But no... */
223static void BB_PUTCHAR(wchar_t c)
224{
225 char buf[MB_CUR_MAX + 1];
226 mbstate_t mbst = { 0 };
227 ssize_t len = wcrtomb(buf, c, &mbst);
228
229 if (len > 0) {
230 buf[len] = '\0';
231 fputs(buf, stdout);
232 }
233}
234#else
235static size_t load_string(const char *src, int maxsize)
236{
237 safe_strncpy(command_ps, src, maxsize);
238 return strlen(command_ps);
239}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200240# if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200241static void save_string(char *dst, int maxsize)
242{
243 safe_strncpy(dst, command_ps, maxsize);
244}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200245# endif
246# define BB_PUTCHAR(c) bb_putchar(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200247#endif
248
249
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000250/* Put 'command_ps[cursor]', cursor++.
251 * Advance cursor on screen. If we reached right margin, scroll text up
252 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000253#define HACK_FOR_WRONG_WIDTH 1
254#if HACK_FOR_WRONG_WIDTH
255static void cmdedit_set_out_char(void)
256#define cmdedit_set_out_char(next_char) cmdedit_set_out_char()
257#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000258static void cmdedit_set_out_char(int next_char)
Denis Vlasenko2c844952008-04-25 18:44:35 +0000259#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000260{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200261 CHAR_T c = command_ps[cursor];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000262
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200263 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000264 /* erase character after end of input string */
265 c = ' ';
266 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000267#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000268 /* Display non-printable characters in reverse */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200269 if (!BB_isprint(c)) {
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000270 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000271 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000272 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000273 c += '@';
274 if (c == 127)
275 c = '?';
276 printf("\033[7m%c\033[0m", c);
277 } else
278#endif
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000279 {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200280 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000281 }
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000282 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000283 /* terminal is scrolled down */
284 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000285 cmdedit_x = 0;
Denis Vlasenko2c844952008-04-25 18:44:35 +0000286#if HACK_FOR_WRONG_WIDTH
287 /* This works better if our idea of term width is wrong
288 * and it is actually wider (often happens on serial lines).
289 * Printing CR,LF *forces* cursor to next line.
290 * OTOH if terminal width is correct AND terminal does NOT
291 * have automargin (IOW: it is moving cursor to next line
292 * by itself (which is wrong for VT-10x terminals)),
293 * this will break things: there will be one extra empty line */
294 puts("\r"); /* + implicit '\n' */
295#else
296 /* Works ok only if cmdedit_termw is correct */
Mark Whitley4e338752001-01-26 20:42:23 +0000297 /* destroy "(auto)margin" */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000298 bb_putchar(next_char);
299 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000300#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000301 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200302// Huh? What if command_ps[cursor] == BB_NUL (we are at the end already?)
Mark Whitley4e338752001-01-26 20:42:23 +0000303 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000304}
305
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000306/* Move to end of line (by printing all chars till the end) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000307static void input_end(void)
308{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000309 while (cursor < command_len)
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000310 cmdedit_set_out_char(' ');
Mark Whitley4e338752001-01-26 20:42:23 +0000311}
312
313/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000314static void goto_new_line(void)
315{
Mark Whitley4e338752001-01-26 20:42:23 +0000316 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000317 if (cmdedit_x)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000318 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000319}
320
321
Rob Landley88621d72006-08-29 19:41:06 +0000322static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000323{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000324 if (s)
Robert Grieblb2301592002-07-30 23:13:51 +0000325 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000326}
Eric Andersen81fe1232003-07-29 06:38:40 +0000327
Rob Landley88621d72006-08-29 19:41:06 +0000328static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000329{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000330 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000331}
332
Eric Andersenaff114c2004-04-14 17:51:38 +0000333/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000334/* (optimized for slow terminals) */
335static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000336{
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000337 int count_y;
338
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000339 if (num > cursor)
340 num = cursor;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000341 if (!num)
342 return;
343 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000344
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000345 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000346 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000347 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000348 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000349 * Also gets miscompiled for ARM users
350 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000351 * printf(("\b\b\b\b" + 4) - num);
352 * return;
353 */
354 do {
355 bb_putchar('\b');
356 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000357 return;
358 }
359 printf("\033[%uD", num);
360 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000361 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000362
363 /* Need to go one or more lines up */
364 num -= cmdedit_x;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000365 {
366 unsigned w = cmdedit_termw; /* volatile var */
367 count_y = 1 + (num / w);
368 cmdedit_y -= count_y;
369 cmdedit_x = w * count_y - num;
370 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000371 /* go to 1st column; go up; go to correct column */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000372 printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x);
Erik Andersen13456d12000-03-16 08:09:57 +0000373}
374
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000375static void put_prompt(void)
376{
Denys Vlasenko13ad9062009-11-11 03:19:30 +0100377 unsigned w;
378
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000379 out1str(cmdedit_prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100380 fflush_all();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000381 cursor = 0;
Denys Vlasenko13ad9062009-11-11 03:19:30 +0100382 w = cmdedit_termw; /* read volatile var once */
383 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
384 cmdedit_x = cmdedit_prmt_len % w;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000385}
386
Eric Andersenaff114c2004-04-14 17:51:38 +0000387/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000388static void redraw(int y, int back_cursor)
389{
Denys Vlasenko044b1802009-07-12 02:50:35 +0200390 if (y > 0) /* up to start y */
391 printf("\033[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000392 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000393 put_prompt();
Denys Vlasenko044b1802009-07-12 02:50:35 +0200394 input_end(); /* rewrite */
395 printf("\033[J"); /* erase after cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000396 input_backward(back_cursor);
397}
398
Paul Fox3f11b1b2005-08-04 19:04:46 +0000399/* Delete the char in front of the cursor, optionally saving it
400 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000401#if !ENABLE_FEATURE_EDITING_VI
402static void input_delete(void)
403#define input_delete(save) input_delete()
404#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000405static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000406#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000407{
Mark Whitley4e338752001-01-26 20:42:23 +0000408 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000409
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000410 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000411 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000412
Denis Vlasenko38f63192007-01-22 09:03:07 +0000413#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000414 if (save) {
415 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000416 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000417 newdelflag = 0;
418 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000419 if ((delptr - delbuf) < DELBUFSIZ)
420 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000421 }
422#endif
423
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200424 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200425 /* (command_len + 1 [because of NUL]) - (j + 1)
426 * simplified into (command_len - j) */
427 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000428 command_len--;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000429 input_end(); /* rewrite new line */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000430 cmdedit_set_out_char(' '); /* erase char */
Eric Andersenc470f442003-07-28 09:56:35 +0000431 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000432}
433
Denis Vlasenko38f63192007-01-22 09:03:07 +0000434#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000435static void put(void)
436{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000437 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000438 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000439
Paul Fox3f11b1b2005-08-04 19:04:46 +0000440 if (j == 0)
441 return;
442 ocursor = cursor;
443 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200444 memmove(command_ps + cursor + j, command_ps + cursor,
445 (command_len - cursor + 1) * sizeof(command_ps[0]));
446 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000447 command_len += j;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000448 input_end(); /* rewrite new line */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000449 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000450}
451#endif
452
Mark Whitley4e338752001-01-26 20:42:23 +0000453/* Delete the char in back of the cursor */
454static void input_backspace(void)
455{
456 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000457 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000458 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000459 }
460}
461
Eric Andersenaff114c2004-04-14 17:51:38 +0000462/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000463static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000464{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000465 if (cursor < command_len)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000466 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000467}
468
Denis Vlasenko38f63192007-01-22 09:03:07 +0000469#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000470
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000471static void free_tab_completion_data(void)
472{
473 if (matches) {
474 while (num_matches)
475 free(matches[--num_matches]);
476 free(matches);
477 matches = NULL;
478 }
479}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000480
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000481static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000482{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000483 matches = xrealloc_vector(matches, 4, num_matches);
484 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000485 num_matches++;
486}
487
Denis Vlasenko38f63192007-01-22 09:03:07 +0000488#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000489static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000490{
491 struct passwd *entry;
492 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000493
Eric Andersenc470f442003-07-28 09:56:35 +0000494 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000495 userlen = strlen(ud);
496
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000497 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000498 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000499 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000500
Eric Andersenc470f442003-07-28 09:56:35 +0000501 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000502 home = home_pwd_buf;
503 } else {
504 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000505 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000506 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000507 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000508 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000509 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000510 ud = temp;
511 if (entry)
512 home = entry->pw_dir;
513 }
514 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000515 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000516 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000517 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000518 }
519 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000520 } else {
521 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000522 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000523 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000524 struct passwd pwd;
525 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000526
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000527 setpwent();
528 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000529 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000530 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
531 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000532 }
533 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000534 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000535 }
536}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000537#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000538
539enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000540 FIND_EXE_ONLY = 0,
541 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000542 FIND_FILE_ONLY = 2,
543};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000544
Mark Whitley4e338752001-01-26 20:42:23 +0000545static int path_parse(char ***p, int flags)
546{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000547 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000548 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000549 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000550 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000551
Mark Whitley4e338752001-01-26 20:42:23 +0000552 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000553 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000554 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000555
556 if (state->flags & WITH_PATH_LOOKUP)
557 pth = state->path_lookup;
558 else
559 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000560 /* PATH=<empty> or PATH=:<empty> */
561 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
562 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000563
Denis Vlasenko253ce002007-01-22 08:34:44 +0000564 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000565 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000566 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000567 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000568 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000569 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000570 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000571 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000572 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000573 }
574
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000575 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000576 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000577 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000578 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000579 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000580 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000581 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000582 *tmp++ = '\0'; /* ':' -> '\0' */
583 if (*tmp == '\0')
584 break; /* :<empty> */
585 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000586 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000587 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000588 return npth;
589}
590
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000591static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000592{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000593 DIR *dir;
594 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000595 struct stat st;
596 char *path1[1];
597 char **paths = path1;
598 int npaths;
599 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000600 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000601 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000602/* char dirbuf[MAX_LINELEN]; */
603#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000604
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000605 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000606 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000607
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000608 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000609 /* no dir, if flags==EXE_ONLY - get paths, else "." */
610 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000611 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000612 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000613 /* dirbuf = ".../.../.../" */
614 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000615#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000616 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000617 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000618#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000619 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000620 /* point to 'l' in "..../last_component" */
621 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000622 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000623
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000624 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000625 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000626 if (!dir)
627 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000628
629 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000630 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000631 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000632
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000633 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000634 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000635 continue;
636 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000637 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000638 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000639 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000640 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000641 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000642 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000643 /* hmm, remove in progress? */
644 /* NB: stat() first so that we see is it a directory;
645 * but if that fails, use lstat() so that
646 * we still match dangling links */
647 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000648 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000649 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000650 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000651 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000652
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000653 len1 = strlen(found);
654 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000655 found[len1] = '\0';
656 found[len1+1] = '\0';
657
Mark Whitley4e338752001-01-26 20:42:23 +0000658 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000659 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000660 if (found[len1-1] != '/') {
661 found[len1] = '/';
662 }
Mark Whitley4e338752001-01-26 20:42:23 +0000663 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000664 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000665 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000666 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000667 }
Mark Whitley4e338752001-01-26 20:42:23 +0000668 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000669 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000670 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000671 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000672 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000673 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000674 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000675 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000676 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000677 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000678 free(paths);
679 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000680#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000681}
Erik Andersenf0657d32000-04-12 17:49:52 +0000682
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200683/* QUOT is used on elements of int_buf[], which are bytes,
684 * not Unicode chars. Therefore it works correctly even in Unicode mode.
685 */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000686#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000687
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200688#define int_buf (S.find_match__int_buf)
689#define pos_buf (S.find_match__pos_buf)
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200690/* is must be <= in */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200691static void collapse_pos(int is, int in)
692{
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200693 memmove(int_buf+is, int_buf+in, (MAX_LINELEN+1-in)*sizeof(int_buf[0]));
694 memmove(pos_buf+is, pos_buf+in, (MAX_LINELEN+1-in)*sizeof(pos_buf[0]));
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200695}
Denys Vlasenko044b1802009-07-12 02:50:35 +0200696static NOINLINE int find_match(char *matchBuf, int *len_with_quotes)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000697{
698 int i, j;
699 int command_mode;
700 int c, c2;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200701/* Were local, but it uses too much stack */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000702/* int16_t int_buf[MAX_LINELEN + 1]; */
703/* int16_t pos_buf[MAX_LINELEN + 1]; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000704
705 /* set to integer dimension characters and own positions */
706 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000707 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000708 if (int_buf[i] == 0) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200709 pos_buf[i] = -1; /* end-fo-line indicator */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000710 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000711 }
712 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000713 }
714
715 /* mask \+symbol and convert '\t' to ' ' */
716 for (i = j = 0; matchBuf[i]; i++, j++)
717 if (matchBuf[i] == '\\') {
718 collapse_pos(j, j + 1);
719 int_buf[j] |= QUOT;
720 i++;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000721#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200722 if (matchBuf[i] == '\t') /* algorithm equivalent */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000723 int_buf[j] = ' ' | QUOT;
724#endif
725 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000726#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000727 else if (matchBuf[i] == '\t')
728 int_buf[j] = ' ';
729#endif
730
731 /* mask "symbols" or 'symbols' */
732 c2 = 0;
733 for (i = 0; int_buf[i]; i++) {
734 c = int_buf[i];
735 if (c == '\'' || c == '"') {
736 if (c2 == 0)
737 c2 = c;
738 else {
739 if (c == c2)
740 c2 = 0;
741 else
742 int_buf[i] |= QUOT;
743 }
744 } else if (c2 != 0 && c != '$')
745 int_buf[i] |= QUOT;
746 }
747
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000748 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000749 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
750 for (i = 0; int_buf[i]; i++) {
751 c = int_buf[i];
752 c2 = int_buf[i + 1];
753 j = i ? int_buf[i - 1] : -1;
754 command_mode = 0;
755 if (c == ';' || c == '&' || c == '|') {
756 command_mode = 1 + (c == c2);
757 if (c == '&') {
758 if (j == '>' || j == '<')
759 command_mode = 0;
760 } else if (c == '|' && j == '>')
761 command_mode = 0;
762 }
763 if (command_mode) {
764 collapse_pos(0, i + command_mode);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200765 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000766 }
767 }
768 /* collapse `command...` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200769 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000770 if (int_buf[i] == '`') {
771 for (j = i + 1; int_buf[j]; j++)
772 if (int_buf[j] == '`') {
773 collapse_pos(i, j + 1);
774 j = 0;
775 break;
776 }
777 if (j) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200778 /* not found closing ` - command mode, collapse all previous */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000779 collapse_pos(0, i + 1);
780 break;
781 } else
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200782 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000783 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200784 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000785
786 /* collapse (command...(command...)...) or {command...{command...}...} */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200787 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000788 c2 = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200789 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000790 if (int_buf[i] == '(' || int_buf[i] == '{') {
791 if (int_buf[i] == '(')
792 c++;
793 else
794 c2++;
795 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200796 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000797 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200798 }
799 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000800 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
801 if (int_buf[i] == ')')
802 c--;
803 else
804 c2--;
805 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200806 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000807 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200808 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000809
810 /* skip first not quote space */
811 for (i = 0; int_buf[i]; i++)
812 if (int_buf[i] != ' ')
813 break;
814 if (i)
815 collapse_pos(0, i);
816
817 /* set find mode for completion */
818 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200819 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000820 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
821 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000822 && matchBuf[pos_buf[0]] == 'c'
823 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000824 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000825 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000826 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000827 command_mode = FIND_FILE_ONLY;
828 break;
829 }
830 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200831 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000832 for (i = 0; int_buf[i]; i++)
833 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000834 /* find last word */
835 for (--i; i >= 0; i--) {
836 c = int_buf[i];
837 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
838 collapse_pos(0, i + 1);
839 break;
840 }
841 }
842 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000843 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
844 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000845 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000846 while ((int_buf[i] & ~QUOT) == '/'
847 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
848 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000849 i++;
850 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000851
852 /* set only match and destroy quotes */
853 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000854 for (c = 0; pos_buf[i] >= 0; i++) {
855 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000856 j = pos_buf[i] + 1;
857 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000858 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000859 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000860 *len_with_quotes = j ? j - pos_buf[0] : 0;
861
862 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200863}
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000864#undef int_buf
865#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000866
Glenn L McGrath4d001292003-01-06 01:11:50 +0000867/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000868 * display by column (original idea from ls applet,
869 * very optimized by me :)
870 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000871static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000872{
873 int ncols, row;
874 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000875 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000876 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000877 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000878
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200879 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000880 for (row = 0; row < nrows; row++) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200881 l = bb_mbstrlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000882 if (column_width < l)
883 column_width = l;
884 }
885 column_width += 2; /* min space for columns */
886 ncols = cmdedit_termw / column_width;
887
888 if (ncols > 1) {
889 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000890 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000891 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000892 } else {
893 ncols = 1;
894 }
895 for (row = 0; row < nrows; row++) {
896 int n = row;
897 int nc;
898
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000899 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000900 printf("%s%-*s", matches[n],
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200901 (int)(column_width - bb_mbstrlen(matches[n])), ""
902 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000903 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +0000904 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000905 }
906}
907
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000908static char *add_quote_for_spec_chars(char *found)
909{
910 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200911 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000912
913 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200914 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000915 s[l++] = '\\';
916 s[l++] = *found++;
917 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200918 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000919 return s;
920}
921
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000922/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000923static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000924{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000925 if (!(state->flags & TAB_COMPLETION))
926 return;
927
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000928 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000929 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000930 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000931/* char matchBuf[MAX_LINELEN]; */
932#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000933 int find_type;
934 int recalc_pos;
Denys Vlasenko044b1802009-07-12 02:50:35 +0200935#if ENABLE_FEATURE_ASSUME_UNICODE
936 /* cursor pos in command converted to multibyte form */
937 int cursor_mb;
938#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000939
Eric Andersenc470f442003-07-28 09:56:35 +0000940 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000941
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200942 /* Make a local copy of the string --
943 * up to the position of the cursor */
944 save_string(matchBuf, cursor + 1);
Denys Vlasenko044b1802009-07-12 02:50:35 +0200945#if ENABLE_FEATURE_ASSUME_UNICODE
946 cursor_mb = strlen(matchBuf);
947#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200948 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000949
950 find_type = find_match(matchBuf, &recalc_pos);
951
952 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000953 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +0000954
Denis Vlasenko38f63192007-01-22 09:03:07 +0000955#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000956 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +0000957 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000958 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +0200959 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000960 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +0000961#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000962 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000963 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000964 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000965 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000966 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000967 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000968 unsigned i;
969 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +0000970 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000971 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000972 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000973 if (strcmp(matches[i], matches[i+1]) == 0) {
974 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000975 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000976 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000977 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +0000978 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000979 }
Denis Vlasenko92758142006-10-03 19:56:34 +0000980 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000981 matches[n] = matches[i];
982 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000983 }
Erik Andersenf0657d32000-04-12 17:49:52 +0000984 /* Did we find exactly one match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +0200985 if (!matches || num_matches > 1) { /* no */
Mark Whitley4e338752001-01-26 20:42:23 +0000986 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000987 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +0000988 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000989 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000990 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +0200991 for (tmp = tmp1; *tmp; tmp++) {
992 for (len_found = 1; len_found < num_matches; len_found++) {
993 if (matches[len_found][tmp - tmp1] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000994 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000995 break;
996 }
Denys Vlasenko044b1802009-07-12 02:50:35 +0200997 }
998 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000999 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001000 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001001 return;
1002 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001003 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001004 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +00001005 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001006 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001007 /* for next completion current found */
1008 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001009
1010 len_found = strlen(tmp);
1011 if (tmp[len_found-1] != '/') {
1012 tmp[len_found] = ' ';
1013 tmp[len_found+1] = '\0';
1014 }
Mark Whitley4e338752001-01-26 20:42:23 +00001015 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001016
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001017 len_found = strlen(tmp);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001018#if !ENABLE_FEATURE_ASSUME_UNICODE
Denys Vlasenko044b1802009-07-12 02:50:35 +02001019 /* have space to place the match? */
1020 /* The result consists of three parts with these lengths: */
1021 /* (cursor - recalc_pos) + len_found + (command_len - cursor) */
1022 /* it simplifies into: */
1023 if ((int)(len_found + command_len - recalc_pos) < S.maxsize) {
1024 /* save tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001025 strcpy(matchBuf, command_ps + cursor);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001026 /* add match and tail */
1027 sprintf(&command_ps[cursor - recalc_pos], "%s%s", tmp, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001028 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001029 /* new pos */
1030 recalc_pos = cursor - recalc_pos + len_found;
1031 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001032 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001033 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001034#else
1035 {
1036 char command[MAX_LINELEN];
1037 int len = save_string(command, sizeof(command));
1038 /* have space to place the match? */
1039 /* (cursor_mb - recalc_pos) + len_found + (len - cursor_mb) */
1040 if ((int)(len_found + len - recalc_pos) < MAX_LINELEN) {
1041 /* save tail */
1042 strcpy(matchBuf, command + cursor_mb);
1043 /* where do we want to have cursor after all? */
1044 strcpy(&command[cursor_mb - recalc_pos], tmp);
1045 len = load_string(command, S.maxsize);
1046 /* add match and tail */
1047 sprintf(&command[cursor_mb - recalc_pos], "%s%s", tmp, matchBuf);
1048 command_len = load_string(command, S.maxsize);
1049 /* write out the matched command */
1050 redraw(cmdedit_y, command_len - len);
1051 }
1052 }
1053#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001054 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001055#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001056 } else {
1057 /* Ok -- the last char was a TAB. Since they
1058 * just hit TAB again, print a list of all the
1059 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001060 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001061 /* changed by goto_new_line() */
1062 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001063
1064 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001065 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001066 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001067 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001068 }
1069 }
1070}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001071
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001072#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001073
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001074
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001075line_input_t* FAST_FUNC new_line_input_t(int flags)
1076{
1077 line_input_t *n = xzalloc(sizeof(*n));
1078 n->flags = flags;
1079 return n;
1080}
1081
1082
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001083#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001084
Denis Vlasenko682ad302008-09-27 01:28:56 +00001085static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001086{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001087 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001088 int cur = state->cur_history;
1089 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001090
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001091# if ENABLE_FEATURE_ASSUME_UNICODE
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001092 {
1093 char tbuf[MAX_LINELEN];
1094 save_string(tbuf, sizeof(tbuf));
1095 state->history[cur] = xstrdup(tbuf);
1096 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001097# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001098 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001099# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001100 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001101}
1102
1103/* state->flags is already checked to be nonzero */
1104static int get_previous_history(void)
1105{
1106 if ((state->flags & DO_HISTORY) && state->cur_history) {
1107 save_command_ps_at_cur_history();
1108 state->cur_history--;
1109 return 1;
1110 }
1111 beep();
1112 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001113}
1114
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001115static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001116{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001117 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001118 if (state->cur_history < state->cnt_history) {
1119 save_command_ps_at_cur_history(); /* save the current history line */
1120 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001121 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001122 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001123 beep();
1124 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001125}
Robert Griebl350d26b2002-12-03 22:45:46 +00001126
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001127# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001128/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001129 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001130 * Otherwise shell users get unhappy.
1131 *
1132 * History file is trimmed lazily, when it grows several times longer
1133 * than configured MAX_HISTORY lines.
1134 */
1135
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001136static void free_line_input_t(line_input_t *n)
1137{
1138 int i = n->cnt_history;
1139 while (i > 0)
1140 free(n->history[--i]);
1141 free(n);
1142}
1143
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001144/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001145static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001146{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001147 char *temp_h[MAX_HISTORY];
1148 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001149 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001150 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001151
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001152 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001153
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001154 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001155 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001156 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001157 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001158 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001159 free(st_parm->history[idx]);
1160 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001161 }
1162
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001163 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1164 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001165 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001166 while ((line = xmalloc_fgetline(fp)) != NULL) {
1167 if (line[0] == '\0') {
1168 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001169 continue;
1170 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001171 free(temp_h[idx]);
1172 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001173 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001174 idx++;
1175 if (idx == MAX_HISTORY)
1176 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001177 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001178 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001179
1180 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001181 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001182 while (temp_h[idx] == NULL) {
1183 idx++;
1184 if (idx == MAX_HISTORY)
1185 idx = 0;
1186 }
1187 }
1188
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001189 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001190 for (i = 0; i < MAX_HISTORY;) {
1191 line = temp_h[idx];
1192 if (!line)
1193 break;
1194 idx++;
1195 if (idx == MAX_HISTORY)
1196 idx = 0;
1197 line_len = strlen(line);
1198 if (line_len >= MAX_LINELEN)
1199 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001200 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001201 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001202 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001203 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001204}
1205
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001206/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001207static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001208{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001209 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001210 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001211
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001212 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1213 if (fd < 0)
1214 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001215 xlseek(fd, 0, SEEK_END); /* paranoia */
1216 len = strlen(str);
1217 str[len] = '\n'; /* we (try to) do atomic write */
1218 len2 = full_write(fd, str, len + 1);
1219 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001220 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001221 if (len2 != len + 1)
1222 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001223
1224 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001225 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001226 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1227 FILE *fp;
1228 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001229 line_input_t *st_temp;
1230 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001231
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001232 /* we may have concurrently written entries from others.
1233 * load them */
1234 st_temp = new_line_input_t(state->flags);
1235 st_temp->hist_file = state->hist_file;
1236 load_history(st_temp);
1237
1238 /* write out temp file and replace hist_file atomically */
1239 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001240 fp = fopen_for_write(new_name);
1241 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001242 for (i = 0; i < st_temp->cnt_history; i++)
1243 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001244 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001245 if (rename(new_name, state->hist_file) == 0)
1246 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001247 }
1248 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001249 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001250 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001251}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001252# else
1253# define load_history(a) ((void)0)
1254# define save_history(a) ((void)0)
1255# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001256
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001257static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001258{
1259 int i;
1260
1261 if (!(state->flags & DO_HISTORY))
1262 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001263 if (str[0] == '\0')
1264 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001265 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001266 /* Don't save dupes */
1267 if (i && strcmp(state->history[i-1], str) == 0)
1268 return;
1269
1270 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1271 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1272
1273 /* If history[] is full, remove the oldest command */
1274 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001275 if (i >= MAX_HISTORY) {
1276 free(state->history[0]);
1277 for (i = 0; i < MAX_HISTORY-1; i++)
1278 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001279 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001280 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001281 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001282 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001283 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001284 state->cur_history = i;
1285 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001286# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001287 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001288 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001289# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001290 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001291}
1292
1293#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001294# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001295#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001296
1297
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001298#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001299/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001300 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001301 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001302static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001303vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001304{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001305 CHAR_T *command = command_ps;
1306
1307 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001308 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001309 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001310 input_forward();
1311}
1312
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001313static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001314vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001315{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001316 CHAR_T *command = command_ps;
1317
1318 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001319 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001320 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1321 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001322 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001323 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001324 } else if (BB_ispunct(command[cursor])) {
1325 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001326 input_forward();
1327 }
1328
Denis Vlasenko253ce002007-01-22 08:34:44 +00001329 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001330 input_forward();
1331
Denys Vlasenko13028922009-07-12 00:51:15 +02001332 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001333 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001334 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001335 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001336}
1337
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001338static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001339vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001340{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001341 CHAR_T *command = command_ps;
1342
Paul Fox3f11b1b2005-08-04 19:04:46 +00001343 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001344 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001345 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001346 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001347 input_forward();
1348}
1349
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001350static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001351vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001352{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001353 CHAR_T *command = command_ps;
1354
Denis Vlasenko253ce002007-01-22 08:34:44 +00001355 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001356 return;
1357 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001358 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001359 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001360 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001361 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001362 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001363 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001364 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001365 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001366 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001367 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001368 } else if (BB_ispunct(command[cursor])) {
1369 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001370 input_forward();
1371 }
1372}
1373
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001374static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001375vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001376{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001377 CHAR_T *command = command_ps;
1378
1379 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001380 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001381 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001382 input_backward(1);
1383}
1384
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001385static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001386vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001387{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001388 CHAR_T *command = command_ps;
1389
Paul Fox3f11b1b2005-08-04 19:04:46 +00001390 if (cursor <= 0)
1391 return;
1392 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001393 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001394 input_backward(1);
1395 if (cursor <= 0)
1396 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001397 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001398 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001399 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001400 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001401 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001402 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001403 } else if (BB_ispunct(command[cursor])) {
1404 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001405 input_backward(1);
1406 }
1407}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001408#endif
1409
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001410/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1411static void ctrl_left(void)
1412{
1413 CHAR_T *command = command_ps;
1414
1415 while (1) {
1416 CHAR_T c;
1417
1418 input_backward(1);
1419 if (cursor == 0)
1420 break;
1421 c = command[cursor];
1422 if (c != ' ' && !BB_ispunct(c)) {
1423 /* we reached a "word" delimited by spaces/punct.
1424 * go to its beginning */
1425 while (1) {
1426 c = command[cursor - 1];
1427 if (c == ' ' || BB_ispunct(c))
1428 break;
1429 input_backward(1);
1430 if (cursor == 0)
1431 break;
1432 }
1433 break;
1434 }
1435 }
1436}
1437static void ctrl_right(void)
1438{
1439 CHAR_T *command = command_ps;
1440
1441 while (1) {
1442 CHAR_T c;
1443
1444 c = command[cursor];
1445 if (c == BB_NUL)
1446 break;
1447 if (c != ' ' && !BB_ispunct(c)) {
1448 /* we reached a "word" delimited by spaces/punct.
1449 * go to its end + 1 */
1450 while (1) {
1451 input_forward();
1452 c = command[cursor];
1453 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1454 break;
1455 }
1456 break;
1457 }
1458 input_forward();
1459 }
1460}
1461
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001462
1463/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001464 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001465 */
1466
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001467#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1468static void ask_terminal(void)
1469{
1470 /* Ask terminal where is the cursor now.
1471 * lineedit_read_key handles response and corrects
1472 * our idea of current cursor position.
1473 * Testcase: run "echo -n long_line_long_line_long_line",
1474 * then type in a long, wrapping command and try to
1475 * delete it using backspace key.
1476 * Note: we print it _after_ prompt, because
1477 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1478 */
1479 /* Problem: if there is buffered input on stdin,
1480 * the response will be delivered later,
1481 * possibly to an unsuspecting application.
1482 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1483 * Result:
1484 * ~/srcdevel/bbox/fix/busybox.t4 #
1485 * ~/srcdevel/bbox/fix/busybox.t4 #
1486 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1487 * ~/srcdevel/bbox/fix/busybox.t4 #
1488 *
1489 * Checking for input with poll only makes the race narrower,
1490 * I still can trigger it. Strace:
1491 *
1492 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1493 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1494 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1495 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1496 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1497 */
1498 struct pollfd pfd;
1499
1500 pfd.fd = STDIN_FILENO;
1501 pfd.events = POLLIN;
1502 if (safe_poll(&pfd, 1, 0) == 0) {
1503 S.sent_ESC_br6n = 1;
1504 out1str("\033" "[6n");
1505 fflush_all(); /* make terminal see it ASAP! */
1506 }
1507}
1508#else
1509#define ask_terminal() ((void)0)
1510#endif
1511
Denis Vlasenko38f63192007-01-22 09:03:07 +00001512#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001513static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001514{
1515 cmdedit_prompt = prmt_ptr;
1516 cmdedit_prmt_len = strlen(prmt_ptr);
1517 put_prompt();
1518}
1519#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001520static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001521{
1522 int prmt_len = 0;
1523 size_t cur_prmt_len = 0;
1524 char flg_not_length = '[';
1525 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001526 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1527 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001528 char c;
1529 char *pbuf;
1530
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001531 cmdedit_prmt_len = 0;
1532
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001533 if (!cwd_buf) {
1534 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001535 }
1536
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001537 cbuf[1] = '\0'; /* never changes */
1538
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001539 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001540 char *free_me = NULL;
1541
1542 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001543 c = *prmt_ptr++;
1544 if (c == '\\') {
1545 const char *cp = prmt_ptr;
1546 int l;
1547
1548 c = bb_process_escape_sequence(&prmt_ptr);
1549 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001550 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001551 break;
1552 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001553
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001554 switch (c) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001555# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001556 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001557 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001558 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001559# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001560 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001561 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001562 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001563 break;
1564 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001565 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001566 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001567# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001568 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001569 /* /home/user[/something] -> ~[/something] */
1570 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001571 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001572 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001573 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1574 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1575 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001576 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001577 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001578 }
1579 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001580# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001581 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001582 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001583 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001584 if (cp != NULL && cp != pbuf)
1585 pbuf += (cp-pbuf) + 1;
1586 break;
1587 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001588 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001589 break;
1590 case 'e': case 'E': /* \e \E = \033 */
1591 c = '\033';
1592 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001593 case 'x': case 'X': {
1594 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001595 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001596 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001597 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001598 buf2[l] = '\0';
1599 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001600 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001601 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001602 break;
1603 }
1604 prmt_ptr++;
1605 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001606 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001607 if (c == 0)
1608 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001609 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001610 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001611 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001612 case '[': case ']':
1613 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001614 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001615 continue;
1616 }
1617 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001618 } /* switch */
1619 } /* if */
1620 } /* if */
1621 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001622 cur_prmt_len = strlen(pbuf);
1623 prmt_len += cur_prmt_len;
1624 if (flg_not_length != ']')
1625 cmdedit_prmt_len += cur_prmt_len;
1626 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001627 free(free_me);
1628 } /* while */
1629
1630 if (cwd_buf != (char *)bb_msg_unknown)
1631 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001632 cmdedit_prompt = prmt_mem_ptr;
1633 put_prompt();
1634}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001635#endif
1636
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001637static void cmdedit_setwidth(unsigned w, int redraw_flg)
1638{
1639 cmdedit_termw = w;
1640 if (redraw_flg) {
1641 /* new y for current cursor */
1642 int new_y = (cursor + cmdedit_prmt_len) / w;
1643 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001644 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001645 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001646 }
1647}
1648
1649static void win_changed(int nsig)
1650{
Denis Vlasenko55995022008-05-18 22:28:26 +00001651 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001652 get_terminal_width_height(0, &width, NULL);
1653 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1654 if (nsig == SIGWINCH)
1655 signal(SIGWINCH, win_changed); /* rearm ourself */
1656}
1657
Denys Vlasenko020f4062009-05-17 16:44:54 +02001658static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001659{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001660 int64_t ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001661 struct pollfd pfd;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001662 int delay = -1;
1663#if ENABLE_FEATURE_ASSUME_UNICODE
1664 char unicode_buf[MB_CUR_MAX + 1];
1665 int unicode_idx = 0;
1666#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001667
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001668 pfd.fd = STDIN_FILENO;
1669 pfd.events = POLLIN;
1670 do {
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001671#if ENABLE_FEATURE_EDITING_ASK_TERMINAL || ENABLE_FEATURE_ASSUME_UNICODE
1672 poll_again:
1673#endif
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001674 if (read_key_buffer[0] == 0) {
1675 /* Wait for input. Can't just call read_key,
1676 * it returns at once if stdin
1677 * is in non-blocking mode. */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001678 safe_poll(&pfd, 1, delay);
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001679 }
1680 /* Note: read_key sets errno to 0 on success: */
Denys Vlasenko020f4062009-05-17 16:44:54 +02001681 ic = read_key(STDIN_FILENO, read_key_buffer);
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001682
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001683#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1684 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001685 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001686 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001687 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001688 if (cursor == 0) { /* otherwise it may be bogus */
1689 int col = ((ic >> 32) & 0x7fff) - 1;
1690 if (col > cmdedit_prmt_len) {
1691 cmdedit_x += (col - cmdedit_prmt_len);
1692 while (cmdedit_x >= cmdedit_termw) {
1693 cmdedit_x -= cmdedit_termw;
1694 cmdedit_y++;
1695 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001696 }
1697 }
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001698 goto poll_again;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001699 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001700#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001701
1702#if ENABLE_FEATURE_ASSUME_UNICODE
1703 {
1704 wchar_t wc;
1705
1706 if ((int32_t)ic < 0) /* KEYCODE_xxx */
1707 return ic;
1708 unicode_buf[unicode_idx++] = ic;
1709 unicode_buf[unicode_idx] = '\0';
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001710 if (mbstowcs(&wc, unicode_buf, 1) != 1 && unicode_idx < MB_CUR_MAX) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001711 delay = 50;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001712 goto poll_again;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001713 }
1714 ic = wc;
1715 }
1716#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001717 } while (errno == EAGAIN);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001718
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001719 return ic;
1720}
1721
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001722/* leave out the "vi-mode"-only case labels if vi editing isn't
1723 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001724#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001725
1726/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001727#undef CTRL
1728#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001729
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001730/* maxsize must be >= 2.
1731 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001732 * -1 on read errors or EOF, or on bare Ctrl-D,
1733 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001734 * >0 length of input string, including terminating '\n'
1735 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001736int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001737{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001738 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001739#if ENABLE_FEATURE_TAB_COMPLETION
1740 smallint lastWasTab = FALSE;
1741#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001742 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001743#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001744 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001745#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001746 struct termios initial_settings;
1747 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001748 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001749
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001750 INIT_S();
1751
1752 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1753 || !(initial_settings.c_lflag & ECHO)
1754 ) {
1755 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001756 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001757 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001758 if (fgets(command, maxsize, stdin) == NULL)
1759 len = -1; /* EOF or error */
1760 else
1761 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001762 DEINIT_S();
1763 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001764 }
1765
Denys Vlasenko28055022010-01-04 20:49:58 +01001766 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001767
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001768// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001769 if (maxsize > MAX_LINELEN)
1770 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001771 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001772
1773 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001774 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001775#if MAX_HISTORY > 0
1776# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001777 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001778 if (state->cnt_history == 0)
1779 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001780# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001781 if (state->flags & DO_HISTORY)
1782 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001783#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001784
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001785 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001786 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001787 command_len = 0;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001788#if ENABLE_FEATURE_ASSUME_UNICODE
1789 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1790#else
Mark Whitley4e338752001-01-26 20:42:23 +00001791 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001792 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001793#endif
1794#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001795
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001796 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001797 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1798 /* Turn off echoing and CTRL-C, so we can trap it */
1799 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001800 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001801 new_settings.c_cc[VMIN] = 1;
1802 new_settings.c_cc[VTIME] = 0;
1803 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001804#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001805# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001806#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001807 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001808 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001809
Eric Andersen6faae7d2001-02-16 20:09:17 +00001810 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001811 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1812 win_changed(0); /* do initial resizing */
1813#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1814 {
1815 struct passwd *entry;
1816
1817 entry = getpwuid(geteuid());
1818 if (entry) {
1819 user_buf = xstrdup(entry->pw_name);
1820 home_pwd_buf = xstrdup(entry->pw_dir);
1821 }
1822 }
1823#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001824
1825#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001826 for (i = 0; i <= MAX_HISTORY; i++)
1827 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001828 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1829#endif
1830
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001831 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001832 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001833 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001834
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001835 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001836 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001837 /*
1838 * The emacs and vi modes share much of the code in the big
1839 * command loop. Commands entered when in vi's command mode
1840 * (aka "escape mode") get an extra bit added to distinguish
1841 * them - this keeps them from being self-inserted. This
1842 * clutters the big switch a bit, but keeps all the code
1843 * in one place.
1844 */
1845 enum {
1846 VI_CMDMODE_BIT = 0x40000000,
1847 /* 0x80000000 bit flags KEYCODE_xxx */
1848 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001849 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001850
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001851 fflush_all();
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001852 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001853
Denis Vlasenko38f63192007-01-22 09:03:07 +00001854#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001855 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001856 if (vi_cmdmode) {
1857 /* btw, since KEYCODE_xxx are all < 0, this doesn't
1858 * change ic if it contains one of them: */
1859 ic |= VI_CMDMODE_BIT;
1860 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001861#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001862
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001863 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001864 case '\n':
1865 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001866 vi_case('\n'|VI_CMDMODE_BIT:)
1867 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001868 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001869 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001870 break_out = 1;
1871 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001872 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001873 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001874 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001875 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001876 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001877 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001878 vi_case('h'|VI_CMDMODE_BIT:)
1879 vi_case('\b'|VI_CMDMODE_BIT:)
1880 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Erik Andersenf0657d32000-04-12 17:49:52 +00001881 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001882 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001883 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001884 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001885 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001886 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001887 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001888 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001889 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001890 vi_case('l'|VI_CMDMODE_BIT:)
1891 vi_case(' '|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001892 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001893 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001894 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001895 case '\b':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001896 case '\x7f': /* DEL */
Erik Andersen1d1d9502000-04-21 01:26:49 +00001897 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001898 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001899 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001900#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00001901 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001902 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001903 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001904#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001905 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00001906 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001907 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001908 command_len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001909 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001910 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001911 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001912 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001913 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001914 printf("\033[H");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001915 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001916 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001917#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001918 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001919 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
1920 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001921 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001922 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001923 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001924 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001925 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001926 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
1927 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001928 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001929 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001930 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001931 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001932#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001933 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001934 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001935 /* Control-U -- Clear line before cursor */
1936 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001937 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001938 memmove(command_ps, command_ps + cursor,
1939 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001940 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001941 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001942 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001943 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001944 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001945 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001946 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001947 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001948 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001949 input_backspace();
1950 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001951
Denis Vlasenko38f63192007-01-22 09:03:07 +00001952#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001953 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001954 vi_cmdmode = 0;
1955 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001956 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001957 input_backward(cursor);
1958 vi_cmdmode = 0;
1959 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001960 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001961 input_forward();
1962 vi_cmdmode = 0;
1963 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001964 case 'A'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001965 input_end();
1966 vi_cmdmode = 0;
1967 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001968 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001969 input_delete(1);
1970 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001971 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001972 if (cursor > 0) {
1973 input_backward(1);
1974 input_delete(1);
1975 }
1976 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001977 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001978 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001979 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001980 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001981 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001982 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001983 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001984 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001985 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001986 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001987 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001988 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001989 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001990 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001991 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001992 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001993 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001994 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001995 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001996 vi_cmdmode = 0;
1997 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001998 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001999 goto clear_to_eol;
2000
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002001 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002002 vi_cmdmode = 0;
2003 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002004 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002005 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002006
Denys Vlasenko020f4062009-05-17 16:44:54 +02002007 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002008 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002009 goto prepare_to_die;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002010 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002011 input_backward(cursor);
2012 goto clear_to_eol;
2013 break;
2014 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002015
2016 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002017 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002018 case 'w':
2019 case 'W':
2020 case 'e':
2021 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002022 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002023 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002024 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002025 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002026 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002027 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002028 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002029 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002030 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002031 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002032 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002033 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002034 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002035 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002036 break;
2037 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002038 nc = cursor;
2039 input_backward(cursor - sc);
2040 while (nc-- > cursor)
2041 input_delete(1);
2042 break;
2043 case 'b': /* "db", "cb" */
2044 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002045 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002046 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002047 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002048 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002049 while (sc-- > cursor)
2050 input_delete(1);
2051 break;
2052 case ' ': /* "d ", "c " */
2053 input_delete(1);
2054 break;
2055 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002056 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002057 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002058 input_delete(1);
2059 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002060 }
2061 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002062 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002063 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002064 input_forward();
2065 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002066 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002067 put();
2068 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002069 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002070//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002071 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002072 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002073 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002074 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002075 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002076 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002077 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002078 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002079 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002080 }
2081 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002082 case '\x1b': /* ESC */
2083 if (state->flags & VI_MODE) {
2084 /* insert mode --> command mode */
2085 vi_cmdmode = 1;
2086 input_backward(1);
2087 }
2088 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002089#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002090
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002091#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002092 case KEYCODE_UP:
2093 if (get_previous_history())
2094 goto rewrite_line;
2095 beep();
2096 break;
2097 case KEYCODE_DOWN:
2098 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002099 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002100 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002101 /* Rewrite the line with the selected history item */
2102 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002103 command_len = load_string(state->history[state->cur_history] ?
2104 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002105 /* redraw and go to eol (bol, in vi) */
2106 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2107 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002108#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002109 case KEYCODE_RIGHT:
2110 input_forward();
2111 break;
2112 case KEYCODE_LEFT:
2113 input_backward(1);
2114 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002115 case KEYCODE_CTRL_LEFT:
2116 ctrl_left();
2117 break;
2118 case KEYCODE_CTRL_RIGHT:
2119 ctrl_right();
2120 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002121 case KEYCODE_DELETE:
2122 input_delete(0);
2123 break;
2124 case KEYCODE_HOME:
2125 input_backward(cursor);
2126 break;
2127 case KEYCODE_END:
2128 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002129 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002130
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002131 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002132 if (initial_settings.c_cc[VINTR] != 0
2133 && ic_raw == initial_settings.c_cc[VINTR]
2134 ) {
2135 /* Ctrl-C (usually) - stop gathering input */
2136 goto_new_line();
2137 command_len = 0;
2138 break_out = -1; /* "do not append '\n'" */
2139 break;
2140 }
2141 if (initial_settings.c_cc[VEOF] != 0
2142 && ic_raw == initial_settings.c_cc[VEOF]
2143 ) {
2144 /* Ctrl-D (usually) - delete one character,
2145 * or exit if len=0 and no chars to delete */
2146 if (command_len == 0) {
2147 errno = 0;
2148#if ENABLE_FEATURE_EDITING_VI
2149 prepare_to_die:
2150#endif
2151 break_out = command_len = -1;
2152 break;
2153 }
2154 input_delete(0);
2155 break;
2156 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002157// /* Control-V -- force insert of next char */
2158// if (c == CTRL('V')) {
2159// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2160// goto prepare_to_die;
2161// if (c == 0) {
2162// beep();
2163// break;
2164// }
2165// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002166 if (ic < ' '
2167 || (!ENABLE_FEATURE_ASSUME_UNICODE && ic >= 256)
2168 || (ENABLE_FEATURE_ASSUME_UNICODE && ic >= VI_CMDMODE_BIT)
2169 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002170 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002171 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002172 * Otherwise, we are here if ic is a
2173 * control char or an unhandled ESC sequence,
2174 * which is also ignored.
2175 */
2176 break;
2177 }
2178 if ((int)command_len >= (maxsize - 2)) {
2179 /* Not enough space for the char and EOL */
2180 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002181 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002182
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002183 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002184 if (cursor == (command_len - 1)) {
2185 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002186 command_ps[cursor] = ic;
2187 command_ps[cursor + 1] = BB_NUL;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002188 cmdedit_set_out_char(' ');
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002189 } else {
2190 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002191 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002192
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002193 memmove(command_ps + sc + 1, command_ps + sc,
2194 (command_len - sc) * sizeof(command_ps[0]));
2195 command_ps[sc] = ic;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002196 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00002197 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002198 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00002199 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002200 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002201 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002202 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002203 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002204
2205 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002206 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002207
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002208#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002209 if (ic_raw != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002210 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002211#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002212 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002213
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002214#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002215 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002216 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2217 * We sent "ESC [ 6 n", but got '\n' first, and
2218 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2219 * It's bad already and not much can be done with it
2220 * (it _will_ be visible for the next process to read stdin),
2221 * but without this delay it even shows up on the screen
2222 * as garbage because we restore echo settings with tcsetattr
2223 * before it comes in. UGLY!
2224 */
2225 usleep(20*1000);
2226 }
2227#endif
2228
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002229/* Stop bug catching using "command_must_not_be_used" trick */
2230#undef command
2231
2232#if ENABLE_FEATURE_ASSUME_UNICODE
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002233 command[0] = '\0';
2234 if (command_len > 0)
2235 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002236 free(command_ps);
2237#endif
2238
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002239 if (command_len > 0)
2240 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002241
Eric Andersen27bb7902003-12-23 20:24:51 +00002242 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002243 command[command_len++] = '\n';
2244 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002245 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002246
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002247#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002248 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002249#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002250
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002251 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002252 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002253 /* restore SIGWINCH handler */
2254 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002255 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002256
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002257 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002258 DEINIT_S();
2259
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002260 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002261}
2262
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002263#else
2264
2265#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002266int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002267{
2268 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002269 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002270 fgets(command, maxsize, stdin);
2271 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002272}
2273
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002274#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002275
2276
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002277/*
2278 * Testing
2279 */
2280
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002281#ifdef TEST
2282
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002283#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002284
2285const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002286
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002287int main(int argc, char **argv)
2288{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002289 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002290 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002291#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002292 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2293 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2294 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002295#else
2296 "% ";
2297#endif
2298
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002299#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002300 setlocale(LC_ALL, "");
2301#endif
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002302 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002303 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002304 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002305 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002306 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002307 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002308 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002309 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002310 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002311 return 0;
2312}
2313
Eric Andersenc470f442003-07-28 09:56:35 +00002314#endif /* TEST */