blob: af1b6276458f572d1d36021fe0e369e8e3de00e1 [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:
19 * Terminal key codes are not extensive, and more will probably
20 * need to be added. This version was created on Debian GNU/Linux 2.x.
21 * 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 *
25 * lineedit does not know that the terminal escape sequences do not
26 * take up space on the screen. The redisplay code assumes, unless
27 * told otherwise, that each character in the prompt is a printable
28 * character that takes up one character position on the screen.
29 * You need to tell lineedit that some sequences of characters
30 * in the prompt take up no screen space. Compatibly with readline,
31 * use the \[ escape to begin a sequence of non-printing characters,
32 * and the \] escape to signal the end of such a sequence. Example:
33 *
34 * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
Erik Andersen13456d12000-03-16 08:09:57 +000035 */
36
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000037#include "libbb.h"
Glenn L McGrath67285962004-01-14 09:34:51 +000038
Glenn L McGrath475820c2004-01-22 12:42:23 +000039
Denis Vlasenko7f1dc212006-12-19 01:10:25 +000040/* FIXME: obsolete CONFIG item? */
41#define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
42
43
Glenn L McGrath3b251852004-01-03 12:07:32 +000044#ifdef TEST
Eric Andersen5f2c79d2001-02-16 18:36:04 +000045
Denis Vlasenko38f63192007-01-22 09:03:07 +000046#define ENABLE_FEATURE_EDITING 0
47#define ENABLE_FEATURE_TAB_COMPLETION 0
48#define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denis Vlasenko7f1dc212006-12-19 01:10:25 +000049#define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
Eric Andersen5f2c79d2001-02-16 18:36:04 +000050
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +000051#endif /* TEST */
Eric Andersen5f2c79d2001-02-16 18:36:04 +000052
Eric Andersen5165fbe2001-02-20 06:42:29 +000053
Denis Vlasenko82b39e82007-01-21 19:18:19 +000054/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000055#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000056
Denis Vlasenko82b39e82007-01-21 19:18:19 +000057#if ENABLE_LOCALE_SUPPORT
58#define Isprint(c) isprint(c)
59#else
60#define Isprint(c) ((c) >= ' ' && (c) != ((unsigned char)'\233'))
61#endif
62
Denis Vlasenko7e46cf72006-12-23 01:21:55 +000063#define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000064 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
65#define USE_FEATURE_GETUSERNAME_AND_HOMEDIR(...)
66#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
67#undef USE_FEATURE_GETUSERNAME_AND_HOMEDIR
68#define USE_FEATURE_GETUSERNAME_AND_HOMEDIR(...) __VA_ARGS__
69#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000070
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000071enum {
72 /* We use int16_t for positions, need to limit line len */
73 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +000074 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000075 : 0x7ff0
76};
Robert Griebl350d26b2002-12-03 22:45:46 +000077
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000078#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
79static const char null_str[] ALIGN1 = "";
80#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +000081
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000082/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +000083struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000084 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +000085
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000086 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
87 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +000088
Denis Vlasenkob267ed92008-05-25 21:52:03 +000089 unsigned cmdedit_x; /* real x terminal position */
90 unsigned cmdedit_y; /* pseudoreal y terminal position */
91 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +000092
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000093 unsigned cursor;
94 unsigned command_len;
95 char *command_ps;
96
97 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +000098#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000099 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000100#endif
101
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000102#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000103 char *user_buf;
104 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000105#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000106
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000107#if ENABLE_FEATURE_TAB_COMPLETION
108 char **matches;
109 unsigned num_matches;
110#endif
111
112#if ENABLE_FEATURE_EDITING_VI
113#define DELBUFSIZ 128
114 char *delptr;
115 smallint newdelflag; /* whether delbuf should be reused yet */
116 char delbuf[DELBUFSIZ]; /* a place to store deleted characters */
117#endif
118
119 /* Formerly these were big buffers on stack: */
120#if ENABLE_FEATURE_TAB_COMPLETION
121 char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
122 char input_tab__matchBuf[MAX_LINELEN];
123 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
124 int16_t find_match__pos_buf[MAX_LINELEN + 1];
125#endif
126};
127
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000128/* See lineedit_ptr_hack.c */
129extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000130
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000131#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000132#define state (S.state )
133#define cmdedit_termw (S.cmdedit_termw )
134#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
135#define cmdedit_x (S.cmdedit_x )
136#define cmdedit_y (S.cmdedit_y )
137#define cmdedit_prmt_len (S.cmdedit_prmt_len)
138#define cursor (S.cursor )
139#define command_len (S.command_len )
140#define command_ps (S.command_ps )
141#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000142#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000143#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000144#define home_pwd_buf (S.home_pwd_buf )
145#define matches (S.matches )
146#define num_matches (S.num_matches )
147#define delptr (S.delptr )
148#define newdelflag (S.newdelflag )
149#define delbuf (S.delbuf )
150
151#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000152 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000153 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000154 cmdedit_termw = 80; \
155 USE_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
156 USE_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \
157} while (0)
158static void deinit_S(void)
159{
160#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000161 /* This one is allocated only if FANCY_PROMPT is on
162 * (otherwise it points to verbatim prompt (NOT malloced) */
163 free((char*)cmdedit_prompt);
164#endif
165#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
166 free(user_buf);
167 if (home_pwd_buf != null_str)
168 free(home_pwd_buf);
169#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000170 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000171}
172#define DEINIT_S() deinit_S()
173
Denis Vlasenko2c844952008-04-25 18:44:35 +0000174
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000175/* Put 'command_ps[cursor]', cursor++.
176 * Advance cursor on screen. If we reached right margin, scroll text up
177 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000178#define HACK_FOR_WRONG_WIDTH 1
179#if HACK_FOR_WRONG_WIDTH
180static void cmdedit_set_out_char(void)
181#define cmdedit_set_out_char(next_char) cmdedit_set_out_char()
182#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000183static void cmdedit_set_out_char(int next_char)
Denis Vlasenko2c844952008-04-25 18:44:35 +0000184#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000185{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000186 int c = (unsigned char)command_ps[cursor];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000187
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000188 if (c == '\0') {
189 /* erase character after end of input string */
190 c = ' ';
191 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000192#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000193 /* Display non-printable characters in reverse */
194 if (!Isprint(c)) {
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000195 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000196 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000197 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000198 c += '@';
199 if (c == 127)
200 c = '?';
201 printf("\033[7m%c\033[0m", c);
202 } else
203#endif
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000204 {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000205 bb_putchar(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000206 }
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000207 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000208 /* terminal is scrolled down */
209 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000210 cmdedit_x = 0;
Denis Vlasenko2c844952008-04-25 18:44:35 +0000211#if HACK_FOR_WRONG_WIDTH
212 /* This works better if our idea of term width is wrong
213 * and it is actually wider (often happens on serial lines).
214 * Printing CR,LF *forces* cursor to next line.
215 * OTOH if terminal width is correct AND terminal does NOT
216 * have automargin (IOW: it is moving cursor to next line
217 * by itself (which is wrong for VT-10x terminals)),
218 * this will break things: there will be one extra empty line */
219 puts("\r"); /* + implicit '\n' */
220#else
221 /* Works ok only if cmdedit_termw is correct */
Mark Whitley4e338752001-01-26 20:42:23 +0000222 /* destroy "(auto)margin" */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000223 bb_putchar(next_char);
224 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000225#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000226 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000227// Huh? What if command_ps[cursor] == '\0' (we are at the end already?)
Mark Whitley4e338752001-01-26 20:42:23 +0000228 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000229}
230
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000231/* Move to end of line (by printing all chars till the end) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000232static void input_end(void)
233{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000234 while (cursor < command_len)
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000235 cmdedit_set_out_char(' ');
Mark Whitley4e338752001-01-26 20:42:23 +0000236}
237
238/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000239static void goto_new_line(void)
240{
Mark Whitley4e338752001-01-26 20:42:23 +0000241 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000242 if (cmdedit_x)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000243 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000244}
245
246
Rob Landley88621d72006-08-29 19:41:06 +0000247static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000248{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000249 if (s)
Robert Grieblb2301592002-07-30 23:13:51 +0000250 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000251}
Eric Andersen81fe1232003-07-29 06:38:40 +0000252
Rob Landley88621d72006-08-29 19:41:06 +0000253static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000254{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000255 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000256}
257
Eric Andersenaff114c2004-04-14 17:51:38 +0000258/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000259/* (optimized for slow terminals) */
260static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000261{
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000262 int count_y;
263
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000264 if (num > cursor)
265 num = cursor;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000266 if (!num)
267 return;
268 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000269
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000270 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000271 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000272 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000273 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000274 * Also gets miscompiled for ARM users
275 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000276 * printf(("\b\b\b\b" + 4) - num);
277 * return;
278 */
279 do {
280 bb_putchar('\b');
281 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000282 return;
283 }
284 printf("\033[%uD", num);
285 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000286 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000287
288 /* Need to go one or more lines up */
289 num -= cmdedit_x;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000290 {
291 unsigned w = cmdedit_termw; /* volatile var */
292 count_y = 1 + (num / w);
293 cmdedit_y -= count_y;
294 cmdedit_x = w * count_y - num;
295 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000296 /* go to 1st column; go up; go to correct column */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000297 printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x);
Erik Andersen13456d12000-03-16 08:09:57 +0000298}
299
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000300static void put_prompt(void)
301{
302 out1str(cmdedit_prompt);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000303 cursor = 0;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000304 {
305 unsigned w = cmdedit_termw; /* volatile var */
306 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
307 cmdedit_x = cmdedit_prmt_len % w;
308 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000309}
310
Eric Andersenaff114c2004-04-14 17:51:38 +0000311/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000312static void redraw(int y, int back_cursor)
313{
Eric Andersenc470f442003-07-28 09:56:35 +0000314 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000315 printf("\033[%dA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000316 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000317 put_prompt();
Eric Andersenc470f442003-07-28 09:56:35 +0000318 input_end(); /* rewrite */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000319 printf("\033[J"); /* erase after cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000320 input_backward(back_cursor);
321}
322
Paul Fox3f11b1b2005-08-04 19:04:46 +0000323/* Delete the char in front of the cursor, optionally saving it
324 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000325#if !ENABLE_FEATURE_EDITING_VI
326static void input_delete(void)
327#define input_delete(save) input_delete()
328#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000329static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000330#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000331{
Mark Whitley4e338752001-01-26 20:42:23 +0000332 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000333
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000334 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000335 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000336
Denis Vlasenko38f63192007-01-22 09:03:07 +0000337#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000338 if (save) {
339 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000340 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000341 newdelflag = 0;
342 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000343 if ((delptr - delbuf) < DELBUFSIZ)
344 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000345 }
346#endif
347
Denis Vlasenko41660c52008-07-22 20:25:24 +0000348 overlapping_strcpy(command_ps + j, command_ps + j + 1);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000349 command_len--;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000350 input_end(); /* rewrite new line */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000351 cmdedit_set_out_char(' '); /* erase char */
Eric Andersenc470f442003-07-28 09:56:35 +0000352 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000353}
354
Denis Vlasenko38f63192007-01-22 09:03:07 +0000355#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000356static void put(void)
357{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000358 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000359 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000360
Paul Fox3f11b1b2005-08-04 19:04:46 +0000361 if (j == 0)
362 return;
363 ocursor = cursor;
364 /* open hole and then fill it */
Denis Vlasenko253ce002007-01-22 08:34:44 +0000365 memmove(command_ps + cursor + j, command_ps + cursor, command_len - cursor + 1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000366 strncpy(command_ps + cursor, delbuf, j);
Denis Vlasenko253ce002007-01-22 08:34:44 +0000367 command_len += j;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000368 input_end(); /* rewrite new line */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000369 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000370}
371#endif
372
Mark Whitley4e338752001-01-26 20:42:23 +0000373/* Delete the char in back of the cursor */
374static void input_backspace(void)
375{
376 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000377 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000378 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000379 }
380}
381
Eric Andersenaff114c2004-04-14 17:51:38 +0000382/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000383static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000384{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000385 if (cursor < command_len)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000386 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000387}
388
Denis Vlasenko38f63192007-01-22 09:03:07 +0000389#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000390
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000391static void free_tab_completion_data(void)
392{
393 if (matches) {
394 while (num_matches)
395 free(matches[--num_matches]);
396 free(matches);
397 matches = NULL;
398 }
399}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000400
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000401static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000402{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000403 matches = xrealloc_vector(matches, 4, num_matches);
404 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000405 num_matches++;
406}
407
Denis Vlasenko38f63192007-01-22 09:03:07 +0000408#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000409static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000410{
411 struct passwd *entry;
412 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000413
Eric Andersenc470f442003-07-28 09:56:35 +0000414 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000415 userlen = strlen(ud);
416
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000417 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000418 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000419 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000420
Eric Andersenc470f442003-07-28 09:56:35 +0000421 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000422 home = home_pwd_buf;
423 } else {
424 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000425 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000426 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000427 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000428 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000429 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000430 ud = temp;
431 if (entry)
432 home = entry->pw_dir;
433 }
434 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000435 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000436 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000437 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000438 }
439 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000440 } else {
441 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000442 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000443 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000444 struct passwd pwd;
445 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000446
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000447 setpwent();
448 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000449 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000450 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
451 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000452 }
453 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000454 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000455 }
456}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000457#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000458
459enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000460 FIND_EXE_ONLY = 0,
461 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000462 FIND_FILE_ONLY = 2,
463};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000464
Mark Whitley4e338752001-01-26 20:42:23 +0000465static int path_parse(char ***p, int flags)
466{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000467 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000468 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000469 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000470 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000471
Mark Whitley4e338752001-01-26 20:42:23 +0000472 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000473 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000474 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000475
476 if (state->flags & WITH_PATH_LOOKUP)
477 pth = state->path_lookup;
478 else
479 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000480 /* PATH=<empty> or PATH=:<empty> */
481 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
482 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000483
Denis Vlasenko253ce002007-01-22 08:34:44 +0000484 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000485 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000486 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000487 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000488 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000489 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000490 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000491 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000492 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000493 }
494
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000495 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000496 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000497 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000498 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000499 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000500 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000501 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000502 *tmp++ = '\0'; /* ':' -> '\0' */
503 if (*tmp == '\0')
504 break; /* :<empty> */
505 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000506 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000507 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000508 return npth;
509}
510
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000511static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000512{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000513 DIR *dir;
514 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000515 struct stat st;
516 char *path1[1];
517 char **paths = path1;
518 int npaths;
519 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000520 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000521 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000522/* char dirbuf[MAX_LINELEN]; */
523#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000524
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000525 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000526 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000527
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000528 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000529 /* no dir, if flags==EXE_ONLY - get paths, else "." */
530 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000531 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000532 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000533 /* dirbuf = ".../.../.../" */
534 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000535#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000536 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000537 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000538#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000539 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000540 /* point to 'l' in "..../last_component" */
541 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000542 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000543
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000544 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000545 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000546 if (!dir)
547 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000548
549 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000550 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000551 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000552
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000553 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000554 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000555 continue;
556 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000557 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000558 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000559 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000560 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000561 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000562 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000563 /* hmm, remove in progress? */
564 /* NB: stat() first so that we see is it a directory;
565 * but if that fails, use lstat() so that
566 * we still match dangling links */
567 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000568 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000569 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000570 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000571 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000572
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000573 len1 = strlen(found);
574 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000575 found[len1] = '\0';
576 found[len1+1] = '\0';
577
Mark Whitley4e338752001-01-26 20:42:23 +0000578 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000579 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000580 if (found[len1-1] != '/') {
581 found[len1] = '/';
582 }
Mark Whitley4e338752001-01-26 20:42:23 +0000583 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000584 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000585 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000586 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000587 }
Mark Whitley4e338752001-01-26 20:42:23 +0000588 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000589 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000590 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000591 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000592 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000593 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000594 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000595 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000596 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000597 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000598 free(paths);
599 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000600#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000601}
Erik Andersenf0657d32000-04-12 17:49:52 +0000602
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000603#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000604
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000605#define collapse_pos(is, in) do { \
606 memmove(int_buf+(is), int_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
607 memmove(pos_buf+(is), pos_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
608} while (0)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000609
610static int find_match(char *matchBuf, int *len_with_quotes)
611{
612 int i, j;
613 int command_mode;
614 int c, c2;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000615/* int16_t int_buf[MAX_LINELEN + 1]; */
616/* int16_t pos_buf[MAX_LINELEN + 1]; */
617#define int_buf (S.find_match__int_buf)
618#define pos_buf (S.find_match__pos_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000619
620 /* set to integer dimension characters and own positions */
621 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000622 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000623 if (int_buf[i] == 0) {
Eric Andersenc470f442003-07-28 09:56:35 +0000624 pos_buf[i] = -1; /* indicator end line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000625 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000626 }
627 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000628 }
629
630 /* mask \+symbol and convert '\t' to ' ' */
631 for (i = j = 0; matchBuf[i]; i++, j++)
632 if (matchBuf[i] == '\\') {
633 collapse_pos(j, j + 1);
634 int_buf[j] |= QUOT;
635 i++;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000636#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenc470f442003-07-28 09:56:35 +0000637 if (matchBuf[i] == '\t') /* algorithm equivalent */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000638 int_buf[j] = ' ' | QUOT;
639#endif
640 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000641#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000642 else if (matchBuf[i] == '\t')
643 int_buf[j] = ' ';
644#endif
645
646 /* mask "symbols" or 'symbols' */
647 c2 = 0;
648 for (i = 0; int_buf[i]; i++) {
649 c = int_buf[i];
650 if (c == '\'' || c == '"') {
651 if (c2 == 0)
652 c2 = c;
653 else {
654 if (c == c2)
655 c2 = 0;
656 else
657 int_buf[i] |= QUOT;
658 }
659 } else if (c2 != 0 && c != '$')
660 int_buf[i] |= QUOT;
661 }
662
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000663 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000664 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
665 for (i = 0; int_buf[i]; i++) {
666 c = int_buf[i];
667 c2 = int_buf[i + 1];
668 j = i ? int_buf[i - 1] : -1;
669 command_mode = 0;
670 if (c == ';' || c == '&' || c == '|') {
671 command_mode = 1 + (c == c2);
672 if (c == '&') {
673 if (j == '>' || j == '<')
674 command_mode = 0;
675 } else if (c == '|' && j == '>')
676 command_mode = 0;
677 }
678 if (command_mode) {
679 collapse_pos(0, i + command_mode);
Eric Andersenc470f442003-07-28 09:56:35 +0000680 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000681 }
682 }
683 /* collapse `command...` */
684 for (i = 0; int_buf[i]; i++)
685 if (int_buf[i] == '`') {
686 for (j = i + 1; int_buf[j]; j++)
687 if (int_buf[j] == '`') {
688 collapse_pos(i, j + 1);
689 j = 0;
690 break;
691 }
692 if (j) {
693 /* not found close ` - command mode, collapse all previous */
694 collapse_pos(0, i + 1);
695 break;
696 } else
Eric Andersenc470f442003-07-28 09:56:35 +0000697 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000698 }
699
700 /* collapse (command...(command...)...) or {command...{command...}...} */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000701 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000702 c2 = 0;
703 for (i = 0; int_buf[i]; i++)
704 if (int_buf[i] == '(' || int_buf[i] == '{') {
705 if (int_buf[i] == '(')
706 c++;
707 else
708 c2++;
709 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000710 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000711 }
712 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
713 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
714 if (int_buf[i] == ')')
715 c--;
716 else
717 c2--;
718 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000719 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000720 }
721
722 /* skip first not quote space */
723 for (i = 0; int_buf[i]; i++)
724 if (int_buf[i] != ' ')
725 break;
726 if (i)
727 collapse_pos(0, i);
728
729 /* set find mode for completion */
730 command_mode = FIND_EXE_ONLY;
731 for (i = 0; int_buf[i]; i++)
732 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
733 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000734 && matchBuf[pos_buf[0]] == 'c'
735 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000736 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000737 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000738 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000739 command_mode = FIND_FILE_ONLY;
740 break;
741 }
742 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000743 for (i = 0; int_buf[i]; i++)
744 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000745 /* find last word */
746 for (--i; i >= 0; i--) {
747 c = int_buf[i];
748 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
749 collapse_pos(0, i + 1);
750 break;
751 }
752 }
753 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000754 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
755 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000756 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000757 while ((int_buf[i] & ~QUOT) == '/'
758 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
759 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000760 i++;
761 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000762
763 /* set only match and destroy quotes */
764 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000765 for (c = 0; pos_buf[i] >= 0; i++) {
766 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000767 j = pos_buf[i] + 1;
768 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000769 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000770 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000771 *len_with_quotes = j ? j - pos_buf[0] : 0;
772
773 return command_mode;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000774#undef int_buf
775#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000776}
777
Glenn L McGrath4d001292003-01-06 01:11:50 +0000778/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000779 * display by column (original idea from ls applet,
780 * very optimized by me :)
781 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000782static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000783{
784 int ncols, row;
785 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000786 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000787 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000788 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000789
790 /* find the longest file name- use that as the column width */
791 for (row = 0; row < nrows; row++) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000792 l = strlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000793 if (column_width < l)
794 column_width = l;
795 }
796 column_width += 2; /* min space for columns */
797 ncols = cmdedit_termw / column_width;
798
799 if (ncols > 1) {
800 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000801 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000802 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000803 } else {
804 ncols = 1;
805 }
806 for (row = 0; row < nrows; row++) {
807 int n = row;
808 int nc;
809
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000810 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000811 printf("%s%-*s", matches[n],
Mike Frysinger57ec5742006-12-28 21:41:09 +0000812 (int)(column_width - strlen(matches[n])), "");
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000813 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +0000814 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000815 }
816}
817
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000818static char *add_quote_for_spec_chars(char *found)
819{
820 int l = 0;
821 char *s = xmalloc((strlen(found) + 1) * 2);
822
823 while (*found) {
824 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
825 s[l++] = '\\';
826 s[l++] = *found++;
827 }
828 s[l] = 0;
829 return s;
830}
831
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000832/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000833static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000834{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000835 if (!(state->flags & TAB_COMPLETION))
836 return;
837
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000838 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000839 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000840 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000841/* char matchBuf[MAX_LINELEN]; */
842#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000843 int find_type;
844 int recalc_pos;
845
Eric Andersenc470f442003-07-28 09:56:35 +0000846 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000847
848 /* Make a local copy of the string -- up
849 * to the position of the cursor */
850 tmp = strncpy(matchBuf, command_ps, cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000851 tmp[cursor] = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000852
853 find_type = find_match(matchBuf, &recalc_pos);
854
855 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000856 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +0000857
Denis Vlasenko38f63192007-01-22 09:03:07 +0000858#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000859 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +0000860 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000861 if (state->flags & USERNAME_COMPLETION)
862 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
863 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +0000864#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000865 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000866 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000867 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000868 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000869 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000870 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000871 unsigned i;
872 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +0000873 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000874 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000875 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000876 if (strcmp(matches[i], matches[i+1]) == 0) {
877 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000878 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000879 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000880 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +0000881 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000882 }
Denis Vlasenko92758142006-10-03 19:56:34 +0000883 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000884 matches[n] = matches[i];
885 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000886 }
Erik Andersenf0657d32000-04-12 17:49:52 +0000887 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000888 if (!matches || num_matches > 1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000889 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000890 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +0000891 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000892 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000893 tmp1 = xstrdup(matches[0]);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000894 for (tmp = tmp1; *tmp; tmp++)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000895 for (len_found = 1; len_found < num_matches; len_found++)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000896 if (matches[len_found][(tmp - tmp1)] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000897 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000898 break;
899 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000900 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000901 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000902 return;
903 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000904 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000905 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +0000906 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000907 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000908 /* for next completion current found */
909 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000910
911 len_found = strlen(tmp);
912 if (tmp[len_found-1] != '/') {
913 tmp[len_found] = ' ';
914 tmp[len_found+1] = '\0';
915 }
Mark Whitley4e338752001-01-26 20:42:23 +0000916 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000917 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +0000918 /* have space to placed match? */
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000919 if ((len_found - strlen(matchBuf) + command_len) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000920 /* before word for match */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000921 command_ps[cursor - recalc_pos] = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000922 /* save tail line */
923 strcpy(matchBuf, command_ps + cursor);
924 /* add match */
925 strcat(command_ps, tmp);
926 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +0000927 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000928 /* back to begin word for match */
929 input_backward(recalc_pos);
930 /* new pos */
931 recalc_pos = cursor + len_found;
932 /* new len */
Denis Vlasenko253ce002007-01-22 08:34:44 +0000933 command_len = strlen(command_ps);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000934 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +0000935 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +0000936 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000937 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000938#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +0000939 } else {
940 /* Ok -- the last char was a TAB. Since they
941 * just hit TAB again, print a list of all the
942 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000943 if (matches && num_matches > 0) {
Eric Andersenc470f442003-07-28 09:56:35 +0000944 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +0000945
946 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +0000947 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000948 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +0000949 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +0000950 }
951 }
952}
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000953
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000954#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +0000955
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000956
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000957#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000958
Denis Vlasenko682ad302008-09-27 01:28:56 +0000959static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000960{
Denis Vlasenko682ad302008-09-27 01:28:56 +0000961 if (command_ps[0] != '\0') {
962 int cur = state->cur_history;
963 free(state->history[cur]);
964 state->history[cur] = xstrdup(command_ps);
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000965 }
Denis Vlasenko682ad302008-09-27 01:28:56 +0000966}
967
968/* state->flags is already checked to be nonzero */
969static int get_previous_history(void)
970{
971 if ((state->flags & DO_HISTORY) && state->cur_history) {
972 save_command_ps_at_cur_history();
973 state->cur_history--;
974 return 1;
975 }
976 beep();
977 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +0000978}
979
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000980static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000981{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000982 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +0000983 if (state->cur_history < state->cnt_history) {
984 save_command_ps_at_cur_history(); /* save the current history line */
985 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000986 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000987 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000988 beep();
989 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +0000990}
Robert Griebl350d26b2002-12-03 22:45:46 +0000991
Denis Vlasenko38f63192007-01-22 09:03:07 +0000992#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +0000993/* We try to ensure that concurrent additions to the history
994 * do not overwrite each other, and that additions to the history
995 * by one user are noticed by others.
996 * Otherwise shell users get unhappy.
997 *
998 * History file is trimmed lazily, when it grows several times longer
999 * than configured MAX_HISTORY lines.
1000 */
1001
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001002/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001003static void load_history(void)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001004{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001005 char *temp_h[MAX_HISTORY];
1006 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001007 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001008 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001009
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001010 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001011
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001012 fp = fopen_for_read(state->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001013 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001014 /* clean up old history */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001015 for (idx = state->cnt_history; idx > 0;) {
1016 idx--;
1017 free(state->history[idx]);
1018 state->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001019 }
1020
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001021 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1022 memset(temp_h, 0, sizeof(temp_h));
1023 state->cnt_history_in_file = idx = 0;
1024 while ((line = xmalloc_fgetline(fp)) != NULL) {
1025 if (line[0] == '\0') {
1026 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001027 continue;
1028 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001029 free(temp_h[idx]);
1030 temp_h[idx] = line;
1031 state->cnt_history_in_file++;
1032 idx++;
1033 if (idx == MAX_HISTORY)
1034 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001035 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001036 state->last_history_end = lseek(fileno(fp), 0, SEEK_CUR);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001037 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001038
1039 /* find first non-NULL temp_h[], if any */
1040 if (state->cnt_history_in_file) {
1041 while (temp_h[idx] == NULL) {
1042 idx++;
1043 if (idx == MAX_HISTORY)
1044 idx = 0;
1045 }
1046 }
1047
1048 /* copy temp_h[] to state->history[] */
1049 for (i = 0; i < MAX_HISTORY;) {
1050 line = temp_h[idx];
1051 if (!line)
1052 break;
1053 idx++;
1054 if (idx == MAX_HISTORY)
1055 idx = 0;
1056 line_len = strlen(line);
1057 if (line_len >= MAX_LINELEN)
1058 line[MAX_LINELEN-1] = '\0';
1059 state->history[i++] = line;
1060 }
1061 state->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001062 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001063}
1064
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001065/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001066static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001067{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001068 off_t end;
1069 int fd;
1070 int len;
Eric Andersenc470f442003-07-28 09:56:35 +00001071
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001072 len = strlen(str);
1073 again:
1074 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1075 if (fd < 0)
1076 return;
Eric Andersenc470f442003-07-28 09:56:35 +00001077
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001078 end = lseek(fd, 0, SEEK_END);
1079
1080 if (str) {
1081 str[len] = '\n';
1082 full_write(fd, str, len + 1);
1083 str[len] = '\0';
1084 str = NULL;
1085 state->cnt_history_in_file++;
1086 }
1087 close(fd);
1088
1089 /* if it was not a 1st write */
1090 if (state->last_history_end >= 0) {
1091 /* did someone else write anything there? */
1092 if (state->last_history_end != end) {
1093 load_history(); /* note: updates cnt_history_in_file */
1094 state->last_history_end = -1;
1095 goto again;
Robert Griebl350d26b2002-12-03 22:45:46 +00001096 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001097 }
1098 state->last_history_end = end + len + 1;
1099
1100 /* did we write so much that history file needs trimming? */
1101 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1102 FILE *fp;
1103 char *new_name;
1104
1105 new_name = xasprintf("%s.new", state->hist_file);
1106 fp = fopen_for_write(new_name);
1107 if (fp) {
1108 int i;
1109
1110 for (i = 0; i < state->cnt_history; i++) {
1111 fprintf(fp, "%s\n", state->history[i]);
1112 }
1113 state->cnt_history_in_file = i; /* == cnt_history */
1114 state->last_history_end = lseek(fileno(fp), 0, SEEK_CUR);
1115 fclose(fp);
1116 /* replace hist_file atomically */
1117 rename(new_name, state->hist_file);
1118 }
1119 free(new_name);
Robert Griebl350d26b2002-12-03 22:45:46 +00001120 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001121}
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001122#else
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001123#define load_history() ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001124#define save_history(a) ((void)0)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001125#endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001126
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001127static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001128{
1129 int i;
1130
1131 if (!(state->flags & DO_HISTORY))
1132 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001133 if (str[0] == '\0')
1134 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001135 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001136 /* Don't save dupes */
1137 if (i && strcmp(state->history[i-1], str) == 0)
1138 return;
1139
1140 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1141 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1142
1143 /* If history[] is full, remove the oldest command */
1144 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001145 if (i >= MAX_HISTORY) {
1146 free(state->history[0]);
1147 for (i = 0; i < MAX_HISTORY-1; i++)
1148 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001149 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001150 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001151 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001152 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001153 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001154 state->cur_history = i;
1155 state->cnt_history = i;
Denis Vlasenko09221922007-04-15 13:21:01 +00001156#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001157 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001158 save_history(str);
Denis Vlasenko09221922007-04-15 13:21:01 +00001159#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00001160 USE_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001161}
1162
1163#else /* MAX_HISTORY == 0 */
1164#define remember_in_history(a) ((void)0)
1165#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001166
1167
Erik Andersen6273f652000-03-17 01:12:41 +00001168/*
1169 * This function is used to grab a character buffer
1170 * from the input file descriptor and allows you to
Eric Andersen9b3ce772004-04-12 15:03:51 +00001171 * a string with full command editing (sort of like
Erik Andersen6273f652000-03-17 01:12:41 +00001172 * a mini readline).
1173 *
1174 * The following standard commands are not implemented:
1175 * ESC-b -- Move back one word
1176 * ESC-f -- Move forward one word
1177 * ESC-d -- Delete back one word
1178 * ESC-h -- Delete forward one word
1179 * CTL-t -- Transpose two characters
1180 *
Paul Fox3f11b1b2005-08-04 19:04:46 +00001181 * Minimalist vi-style command line editing available if configured.
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001182 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001183 */
Eric Andersenc470f442003-07-28 09:56:35 +00001184
Denis Vlasenko38f63192007-01-22 09:03:07 +00001185#if ENABLE_FEATURE_EDITING_VI
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001186static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001187vi_Word_motion(char *command, int eat)
1188{
Denis Vlasenko253ce002007-01-22 08:34:44 +00001189 while (cursor < command_len && !isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001190 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001191 if (eat) while (cursor < command_len && isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001192 input_forward();
1193}
1194
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001195static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001196vi_word_motion(char *command, int eat)
1197{
1198 if (isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001199 while (cursor < command_len
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001200 && (isalnum(command[cursor+1]) || command[cursor+1] == '_'))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001201 input_forward();
1202 } else if (ispunct(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001203 while (cursor < command_len && ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001204 input_forward();
1205 }
1206
Denis Vlasenko253ce002007-01-22 08:34:44 +00001207 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001208 input_forward();
1209
Denis Vlasenko253ce002007-01-22 08:34:44 +00001210 if (eat && cursor < command_len && isspace(command[cursor]))
1211 while (cursor < command_len && isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001212 input_forward();
1213}
1214
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001215static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001216vi_End_motion(char *command)
1217{
1218 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001219 while (cursor < command_len && isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001220 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001221 while (cursor < command_len-1 && !isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001222 input_forward();
1223}
1224
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001225static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001226vi_end_motion(char *command)
1227{
Denis Vlasenko253ce002007-01-22 08:34:44 +00001228 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001229 return;
1230 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001231 while (cursor < command_len-1 && isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001232 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001233 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001234 return;
1235 if (isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001236 while (cursor < command_len-1
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001237 && (isalnum(command[cursor+1]) || command[cursor+1] == '_')
1238 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001239 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001240 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001241 } else if (ispunct(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001242 while (cursor < command_len-1 && ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001243 input_forward();
1244 }
1245}
1246
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001247static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001248vi_Back_motion(char *command)
1249{
1250 while (cursor > 0 && isspace(command[cursor-1]))
1251 input_backward(1);
1252 while (cursor > 0 && !isspace(command[cursor-1]))
1253 input_backward(1);
1254}
1255
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001256static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001257vi_back_motion(char *command)
1258{
1259 if (cursor <= 0)
1260 return;
1261 input_backward(1);
1262 while (cursor > 0 && isspace(command[cursor]))
1263 input_backward(1);
1264 if (cursor <= 0)
1265 return;
1266 if (isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001267 while (cursor > 0
1268 && (isalnum(command[cursor-1]) || command[cursor-1] == '_')
1269 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001270 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001271 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001272 } else if (ispunct(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001273 while (cursor > 0 && ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001274 input_backward(1);
1275 }
1276}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001277#endif
1278
1279
1280/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001281 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001282 */
1283
Denis Vlasenko38f63192007-01-22 09:03:07 +00001284#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001285static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001286{
1287 cmdedit_prompt = prmt_ptr;
1288 cmdedit_prmt_len = strlen(prmt_ptr);
1289 put_prompt();
1290}
1291#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001292static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001293{
1294 int prmt_len = 0;
1295 size_t cur_prmt_len = 0;
1296 char flg_not_length = '[';
1297 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001298 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1299 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001300 char c;
1301 char *pbuf;
1302
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001303 cmdedit_prmt_len = 0;
1304
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001305 if (!cwd_buf) {
1306 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001307 }
1308
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001309 cbuf[1] = '\0'; /* never changes */
1310
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001311 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001312 char *free_me = NULL;
1313
1314 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001315 c = *prmt_ptr++;
1316 if (c == '\\') {
1317 const char *cp = prmt_ptr;
1318 int l;
1319
1320 c = bb_process_escape_sequence(&prmt_ptr);
1321 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001322 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001323 break;
1324 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001325
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001326 switch (c) {
1327#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1328 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001329 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001330 break;
1331#endif
1332 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001333 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001334 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001335 break;
1336 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001337 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001338 break;
1339#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1340 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001341 /* /home/user[/something] -> ~[/something] */
1342 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001343 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001344 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001345 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1346 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1347 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001348 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001349 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001350 }
1351 break;
1352#endif
1353 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001354 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001355 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001356 if (cp != NULL && cp != pbuf)
1357 pbuf += (cp-pbuf) + 1;
1358 break;
1359 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001360 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001361 break;
1362 case 'e': case 'E': /* \e \E = \033 */
1363 c = '\033';
1364 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001365 case 'x': case 'X': {
1366 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001367 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001368 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001369 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001370 buf2[l] = '\0';
1371 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001372 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001373 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001374 break;
1375 }
1376 prmt_ptr++;
1377 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001378 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001379 if (c == 0)
1380 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001381 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001382 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001383 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001384 case '[': case ']':
1385 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001386 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001387 continue;
1388 }
1389 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001390 } /* switch */
1391 } /* if */
1392 } /* if */
1393 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001394 cur_prmt_len = strlen(pbuf);
1395 prmt_len += cur_prmt_len;
1396 if (flg_not_length != ']')
1397 cmdedit_prmt_len += cur_prmt_len;
1398 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001399 free(free_me);
1400 } /* while */
1401
1402 if (cwd_buf != (char *)bb_msg_unknown)
1403 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001404 cmdedit_prompt = prmt_mem_ptr;
1405 put_prompt();
1406}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001407#endif
1408
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001409static void cmdedit_setwidth(unsigned w, int redraw_flg)
1410{
1411 cmdedit_termw = w;
1412 if (redraw_flg) {
1413 /* new y for current cursor */
1414 int new_y = (cursor + cmdedit_prmt_len) / w;
1415 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001416 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001417 fflush(stdout);
1418 }
1419}
1420
1421static void win_changed(int nsig)
1422{
Denis Vlasenko55995022008-05-18 22:28:26 +00001423 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001424 get_terminal_width_height(0, &width, NULL);
1425 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1426 if (nsig == SIGWINCH)
1427 signal(SIGWINCH, win_changed); /* rearm ourself */
1428}
1429
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001430/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001431 * The emacs and vi modes share much of the code in the big
1432 * command loop. Commands entered when in vi's command mode (aka
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001433 * "escape mode") get an extra bit added to distinguish them --
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001434 * this keeps them from being self-inserted. This clutters the
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001435 * big switch a bit, but keeps all the code in one place.
Paul Fox3f11b1b2005-08-04 19:04:46 +00001436 */
1437
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001438#define vbit 0x100
1439
1440/* leave out the "vi-mode"-only case labels if vi editing isn't
1441 * configured. */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001442#define vi_case(caselabel) USE_FEATURE_EDITING(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001443
1444/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001445#undef CTRL
1446#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001447
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001448/* Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001449 * -1 on read errors or EOF, or on bare Ctrl-D,
1450 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001451 * >0 length of input string, including terminating '\n'
1452 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001453int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001454{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001455 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001456#if ENABLE_FEATURE_TAB_COMPLETION
1457 smallint lastWasTab = FALSE;
1458#endif
Denis Vlasenko55995022008-05-18 22:28:26 +00001459 unsigned ic;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001460 unsigned char c;
1461 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001462#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001463 smallint vi_cmdmode = 0;
1464 smalluint prevc;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001465#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001466 struct termios initial_settings;
1467 struct termios new_settings;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001468
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001469 INIT_S();
1470
1471 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1472 || !(initial_settings.c_lflag & ECHO)
1473 ) {
1474 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001475 parse_and_put_prompt(prompt);
Denis Vlasenko037576d2007-10-20 18:30:38 +00001476 fflush(stdout);
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001477 if (fgets(command, maxsize, stdin) == NULL)
1478 len = -1; /* EOF or error */
1479 else
1480 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001481 DEINIT_S();
1482 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001483 }
1484
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001485// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001486 if (maxsize > MAX_LINELEN)
1487 maxsize = MAX_LINELEN;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001488
1489 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001490 state = st ? st : (line_input_t*) &const_int_0;
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001491#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001492 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001493 load_history();
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001494#endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001495 if (state->flags & DO_HISTORY)
1496 state->cur_history = state->cnt_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001497
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001498 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001499 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001500 command_len = 0;
Mark Whitley4e338752001-01-26 20:42:23 +00001501 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001502 command[0] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +00001503
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001504 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001505 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1506 /* Turn off echoing and CTRL-C, so we can trap it */
1507 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001508 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001509 new_settings.c_cc[VMIN] = 1;
1510 new_settings.c_cc[VTIME] = 0;
1511 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001512#ifndef _POSIX_VDISABLE
1513#define _POSIX_VDISABLE '\0'
1514#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001515 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001516 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001517
Eric Andersen6faae7d2001-02-16 20:09:17 +00001518 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001519 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1520 win_changed(0); /* do initial resizing */
1521#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1522 {
1523 struct passwd *entry;
1524
1525 entry = getpwuid(geteuid());
1526 if (entry) {
1527 user_buf = xstrdup(entry->pw_name);
1528 home_pwd_buf = xstrdup(entry->pw_dir);
1529 }
1530 }
1531#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001532
1533#if 0
1534 for (ic = 0; ic <= MAX_HISTORY; ic++)
1535 bb_error_msg("history[%d]:'%s'", ic, state->history[ic]);
1536 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1537#endif
1538
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001539 /* Print out the command prompt */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001540 parse_and_put_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001541
Erik Andersenc7c634b2000-03-19 05:28:55 +00001542 while (1) {
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001543 fflush(NULL);
Mark Whitley4e338752001-01-26 20:42:23 +00001544
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001545 if (nonblock_safe_read(STDIN_FILENO, &c, 1) < 1) {
Eric Andersened424db2001-04-23 15:28:28 +00001546 /* if we can't read input then exit */
1547 goto prepare_to_die;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001548 }
Erik Andersenf3b3d172000-04-09 18:24:05 +00001549
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001550 ic = c;
1551
Denis Vlasenko38f63192007-01-22 09:03:07 +00001552#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001553 newdelflag = 1;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001554 if (vi_cmdmode)
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001555 ic |= vbit;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001556#endif
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001557 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001558 case '\n':
1559 case '\r':
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001560 vi_case('\n'|vbit:)
1561 vi_case('\r'|vbit:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001562 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001563 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001564 break_out = 1;
1565 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001566 case CTRL('A'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001567 vi_case('0'|vbit:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001568 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001569 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001570 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001571 case CTRL('B'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001572 vi_case('h'|vbit:)
1573 vi_case('\b'|vbit:)
1574 vi_case('\x7f'|vbit:) /* DEL */
Erik Andersenf0657d32000-04-12 17:49:52 +00001575 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001576 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001577 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001578 case CTRL('C'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001579 vi_case(CTRL('C')|vbit:)
Eric Andersen86349772000-12-18 20:25:50 +00001580 /* Control-c -- stop gathering input */
Mark Whitley4e338752001-01-26 20:42:23 +00001581 goto_new_line();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001582 command_len = 0;
1583 break_out = -1; /* "do not append '\n'" */
Eric Andersen7467c8d2001-07-12 20:26:32 +00001584 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001585 case CTRL('D'):
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001586 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001587 * if the len=0 and no chars to delete */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001588 if (command_len == 0) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001589 errno = 0;
1590 prepare_to_die:
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001591 /* to control stopped jobs */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001592 break_out = command_len = -1;
Eric Andersen044228d2001-07-17 01:12:36 +00001593 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001594 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001595 input_delete(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001596 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001597
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001598 case CTRL('E'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001599 vi_case('$'|vbit:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001600 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001601 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001602 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001603 case CTRL('F'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001604 vi_case('l'|vbit:)
1605 vi_case(' '|vbit:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001606 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001607 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001608 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001609
Erik Andersenf0657d32000-04-12 17:49:52 +00001610 case '\b':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001611 case '\x7f': /* DEL */
Erik Andersen1d1d9502000-04-21 01:26:49 +00001612 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001613 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001614 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001615
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001616#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00001617 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001618 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001619 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001620#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001621
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001622 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00001623 /* Control-k -- clear to end of line */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001624 command[cursor] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001625 command_len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001626 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001627 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001628 case CTRL('L'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001629 vi_case(CTRL('L')|vbit:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001630 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001631 printf("\033[H");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001632 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001633 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001634
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001635#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001636 case CTRL('N'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001637 vi_case(CTRL('N')|vbit:)
1638 vi_case('j'|vbit:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001639 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001640 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001641 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001642 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001643 case CTRL('P'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001644 vi_case(CTRL('P')|vbit:)
1645 vi_case('k'|vbit:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001646 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001647 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001648 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001649 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001650#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001651
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001652 case CTRL('U'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001653 vi_case(CTRL('U')|vbit:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001654 /* Control-U -- Clear line before cursor */
1655 if (cursor) {
Denis Vlasenko0f293b92008-07-22 20:16:55 +00001656 overlapping_strcpy(command, command + cursor);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001657 command_len -= cursor;
1658 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001659 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001660 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001661 case CTRL('W'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001662 vi_case(CTRL('W')|vbit:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001663 /* Control-W -- Remove the last word */
1664 while (cursor > 0 && isspace(command[cursor-1]))
1665 input_backspace();
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001666 while (cursor > 0 && !isspace(command[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001667 input_backspace();
1668 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001669
Denis Vlasenko38f63192007-01-22 09:03:07 +00001670#if ENABLE_FEATURE_EDITING_VI
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001671 case 'i'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001672 vi_cmdmode = 0;
1673 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001674 case 'I'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001675 input_backward(cursor);
1676 vi_cmdmode = 0;
1677 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001678 case 'a'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001679 input_forward();
1680 vi_cmdmode = 0;
1681 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001682 case 'A'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001683 input_end();
1684 vi_cmdmode = 0;
1685 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001686 case 'x'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001687 input_delete(1);
1688 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001689 case 'X'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001690 if (cursor > 0) {
1691 input_backward(1);
1692 input_delete(1);
1693 }
1694 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001695 case 'W'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001696 vi_Word_motion(command, 1);
1697 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001698 case 'w'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001699 vi_word_motion(command, 1);
1700 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001701 case 'E'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001702 vi_End_motion(command);
1703 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001704 case 'e'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001705 vi_end_motion(command);
1706 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001707 case 'B'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001708 vi_Back_motion(command);
1709 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001710 case 'b'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001711 vi_back_motion(command);
1712 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001713 case 'C'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001714 vi_cmdmode = 0;
1715 /* fall through */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001716 case 'D'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001717 goto clear_to_eol;
1718
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001719 case 'c'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001720 vi_cmdmode = 0;
1721 /* fall through */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001722 case 'd'|vbit: {
1723 int nc, sc;
1724 sc = cursor;
1725 prevc = ic;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001726 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001727 goto prepare_to_die;
1728 if (c == (prevc & 0xff)) {
1729 /* "cc", "dd" */
1730 input_backward(cursor);
1731 goto clear_to_eol;
1732 break;
1733 }
1734 switch (c) {
1735 case 'w':
1736 case 'W':
1737 case 'e':
1738 case 'E':
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001739 switch (c) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001740 case 'w': /* "dw", "cw" */
1741 vi_word_motion(command, vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001742 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001743 case 'W': /* 'dW', 'cW' */
1744 vi_Word_motion(command, vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001745 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001746 case 'e': /* 'de', 'ce' */
1747 vi_end_motion(command);
1748 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001749 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001750 case 'E': /* 'dE', 'cE' */
1751 vi_End_motion(command);
1752 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001753 break;
1754 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001755 nc = cursor;
1756 input_backward(cursor - sc);
1757 while (nc-- > cursor)
1758 input_delete(1);
1759 break;
1760 case 'b': /* "db", "cb" */
1761 case 'B': /* implemented as B */
1762 if (c == 'b')
1763 vi_back_motion(command);
1764 else
1765 vi_Back_motion(command);
1766 while (sc-- > cursor)
1767 input_delete(1);
1768 break;
1769 case ' ': /* "d ", "c " */
1770 input_delete(1);
1771 break;
1772 case '$': /* "d$", "c$" */
1773 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001774 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001775 input_delete(1);
1776 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001777 }
1778 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001779 }
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001780 case 'p'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001781 input_forward();
1782 /* fallthrough */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001783 case 'P'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001784 put();
1785 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001786 case 'r'|vbit:
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001787 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001788 goto prepare_to_die;
1789 if (c == 0)
1790 beep();
1791 else {
1792 *(command + cursor) = c;
Denis Vlasenko4daad902007-09-27 10:20:47 +00001793 bb_putchar(c);
1794 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00001795 }
1796 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001797#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001798
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001799 case '\x1b': /* ESC */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001800
Denis Vlasenko38f63192007-01-22 09:03:07 +00001801#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001802 if (state->flags & VI_MODE) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001803 /* ESC: insert mode --> command mode */
1804 vi_cmdmode = 1;
1805 input_backward(1);
1806 break;
1807 }
1808#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001809 /* escape sequence follows */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001810 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Eric Andersen7467c8d2001-07-12 20:26:32 +00001811 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001812 /* different vt100 emulations */
1813 if (c == '[' || c == 'O') {
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001814 vi_case('['|vbit:)
1815 vi_case('O'|vbit:)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001816 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Eric Andersen7467c8d2001-07-12 20:26:32 +00001817 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001818 }
Glenn L McGrath475820c2004-01-22 12:42:23 +00001819 if (c >= '1' && c <= '9') {
1820 unsigned char dummy;
1821
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001822 if (safe_read(STDIN_FILENO, &dummy, 1) < 1)
Glenn L McGrath475820c2004-01-22 12:42:23 +00001823 goto prepare_to_die;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001824 if (dummy != '~')
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001825 c = '\0';
Glenn L McGrath475820c2004-01-22 12:42:23 +00001826 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001827
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001828 switch (c) {
Denis Vlasenko38f63192007-01-22 09:03:07 +00001829#if ENABLE_FEATURE_TAB_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +00001830 case '\t': /* Alt-Tab */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001831 input_tab(&lastWasTab);
1832 break;
1833#endif
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001834#if MAX_HISTORY > 0
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001835 case 'A':
1836 /* Up Arrow -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001837 if (get_previous_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001838 goto rewrite_line;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001839 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001840 break;
1841 case 'B':
1842 /* Down Arrow -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001843 if (!get_next_history())
Paul Fox3f11b1b2005-08-04 19:04:46 +00001844 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001845 rewrite_line:
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001846 /* Rewrite the line with the selected history item */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001847 /* change command */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001848 command_len = strlen(strcpy(command, state->history[state->cur_history] ? : ""));
Paul Fox3f11b1b2005-08-04 19:04:46 +00001849 /* redraw and go to eol (bol, in vi */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001850 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001851 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001852#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001853 case 'C':
1854 /* Right Arrow -- Move forward one character */
1855 input_forward();
1856 break;
1857 case 'D':
1858 /* Left Arrow -- Move back one character */
1859 input_backward(1);
1860 break;
1861 case '3':
1862 /* Delete */
Paul Fox3f11b1b2005-08-04 19:04:46 +00001863 input_delete(0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001864 break;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001865 case '1': // vt100? linux vt? or what?
1866 case '7': // vt100? linux vt? or what?
1867 case 'H': /* xterm's <Home> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001868 input_backward(cursor);
1869 break;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001870 case '4': // vt100? linux vt? or what?
1871 case '8': // vt100? linux vt? or what?
1872 case 'F': /* xterm's <End> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001873 input_end();
1874 break;
1875 default:
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001876 c = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001877 beep();
1878 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001879 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001880
Eric Andersenc470f442003-07-28 09:56:35 +00001881 default: /* If it's regular input, do the normal thing */
Paul Fox84bbac52008-01-11 16:50:08 +00001882
1883 /* Control-V -- force insert of next char */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001884 if (c == CTRL('V')) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001885 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Eric Andersen7467c8d2001-07-12 20:26:32 +00001886 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001887 if (c == 0) {
1888 beep();
1889 break;
1890 }
Paul Fox84bbac52008-01-11 16:50:08 +00001891 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001892
Denis Vlasenko38f63192007-01-22 09:03:07 +00001893#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001894 if (vi_cmdmode) /* Don't self-insert */
1895 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001896#endif
Denis Vlasenko77ad97f2008-05-13 02:27:31 +00001897 if ((int)command_len >= (maxsize - 2)) /* Need to leave space for enter */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001898 break;
1899
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001900 command_len++;
1901 if (cursor == (command_len - 1)) { /* Append if at the end of the line */
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001902 command[cursor] = c;
1903 command[cursor+1] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001904 cmdedit_set_out_char(' ');
Eric Andersenc470f442003-07-28 09:56:35 +00001905 } else { /* Insert otherwise */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001906 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001907
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001908 memmove(command + sc + 1, command + sc, command_len - sc);
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001909 command[sc] = c;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001910 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00001911 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001912 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00001913 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001914 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001915 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001916 break;
Erik Andersen13456d12000-03-16 08:09:57 +00001917 }
Eric Andersenc470f442003-07-28 09:56:35 +00001918 if (break_out) /* Enter is the command terminator, no more input. */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001919 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001920
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001921#if ENABLE_FEATURE_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001922 if (c != '\t')
1923 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001924#endif
Erik Andersenc7c634b2000-03-19 05:28:55 +00001925 }
1926
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001927 if (command_len > 0)
1928 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001929
Eric Andersen27bb7902003-12-23 20:24:51 +00001930 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001931 command[command_len++] = '\n';
1932 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00001933 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001934
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001935#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001936 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001937#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001938
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001939 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00001940 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001941 /* restore SIGWINCH handler */
1942 signal(SIGWINCH, previous_SIGWINCH_handler);
1943 fflush(stdout);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001944
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001945 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001946 DEINIT_S();
1947
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001948 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001949}
1950
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001951line_input_t* FAST_FUNC new_line_input_t(int flags)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001952{
1953 line_input_t *n = xzalloc(sizeof(*n));
1954 n->flags = flags;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001955 n->last_history_end = -1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001956 return n;
1957}
1958
1959#else
1960
1961#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001962int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001963{
1964 fputs(prompt, stdout);
1965 fflush(stdout);
1966 fgets(command, maxsize, stdin);
1967 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00001968}
1969
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001970#endif /* FEATURE_COMMAND_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00001971
1972
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001973/*
1974 * Testing
1975 */
1976
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001977#ifdef TEST
1978
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001979#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001980
1981const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001982
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001983int main(int argc, char **argv)
1984{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001985 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001986 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00001987#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001988 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
1989 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
1990 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001991#else
1992 "% ";
1993#endif
1994
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001995#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001996 setlocale(LC_ALL, "");
1997#endif
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001998 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001999 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002000 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002001 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002002 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002003 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002004 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002005 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002006 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002007 return 0;
2008}
2009
Eric Andersenc470f442003-07-28 09:56:35 +00002010#endif /* TEST */