blob: 0ab1958038742d1e9312c41cc26da972def40164 [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 Andersen5f2c79d2001-02-16 18:36:04 +00003 * Termios command line History and Editting.
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Eric Andersen81fe1232003-07-29 06:38:40 +00005 * Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license.
Eric Andersen7467c8d2001-07-12 20:26:32 +00006 * Written by: Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersen5f2c79d2001-02-16 18:36:04 +00007 *
8 * Used ideas:
9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995
Eric Andersen81fe1232003-07-29 06:38:40 +000012 * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000013 *
Erik Andersen13456d12000-03-16 08:09:57 +000014 * This code is 'as is' with no warranty.
Erik Andersen13456d12000-03-16 08:09:57 +000015 *
Erik Andersen13456d12000-03-16 08:09:57 +000016 *
17 */
18
19/*
20 Usage and Known bugs:
21 Terminal key codes are not extensive, and more will probably
22 need to be added. This version was created on Debian GNU/Linux 2.x.
23 Delete, Backspace, Home, End, and the arrow keys were tested
24 to work in an Xterm and console. Ctrl-A also works as Home.
Mark Whitley4e338752001-01-26 20:42:23 +000025 Ctrl-E also works as End.
Erik Andersen13456d12000-03-16 08:09:57 +000026
Eric Andersen5f2c79d2001-02-16 18:36:04 +000027 Small bugs (simple effect):
28 - not true viewing if terminal size (x*y symbols) less
29 size (prompt + editor`s line + 2 symbols)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000030 - not true viewing if length prompt less terminal width
Erik Andersen13456d12000-03-16 08:09:57 +000031 */
32
Mark Whitley4e338752001-01-26 20:42:23 +000033
Eric Andersencbe31da2001-02-20 06:14:08 +000034#include <stdio.h>
35#include <errno.h>
36#include <unistd.h>
37#include <stdlib.h>
38#include <string.h>
39#include <sys/ioctl.h>
40#include <ctype.h>
41#include <signal.h>
42#include <limits.h>
43
Eric Andersen3570a342000-09-25 21:45:58 +000044#include "busybox.h"
Mark Whitley4e338752001-01-26 20:42:23 +000045
Eric Andersenbdfd0d72001-10-24 05:00:29 +000046#ifdef CONFIG_LOCALE_SUPPORT
Eric Andersene5dfced2001-04-09 22:48:12 +000047#define Isprint(c) isprint((c))
48#else
49#define Isprint(c) ( (c) >= ' ' && (c) != ((unsigned char)'\233') )
50#endif
51
52#ifndef TEST
53
Eric Andersen5f2c79d2001-02-16 18:36:04 +000054#define D(x)
55
56#else
57
Eric Andersenbdfd0d72001-10-24 05:00:29 +000058#define CONFIG_FEATURE_COMMAND_EDITING
59#define CONFIG_FEATURE_COMMAND_TAB_COMPLETION
60#define CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
61#define CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
62#define CONFIG_FEATURE_CLEAN_UP
Eric Andersen5f2c79d2001-02-16 18:36:04 +000063
Eric Andersen5f2c79d2001-02-16 18:36:04 +000064#define D(x) x
65
Eric Andersenc470f442003-07-28 09:56:35 +000066#endif /* TEST */
Eric Andersen5f2c79d2001-02-16 18:36:04 +000067
Eric Andersenbdfd0d72001-10-24 05:00:29 +000068#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5165fbe2001-02-20 06:42:29 +000069#include <dirent.h>
70#include <sys/stat.h>
71#endif
72
Eric Andersenbdfd0d72001-10-24 05:00:29 +000073#ifdef CONFIG_FEATURE_COMMAND_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000074
Eric Andersenbdfd0d72001-10-24 05:00:29 +000075#ifndef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
76#undef CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +000077#endif
78
Eric Andersenbdfd0d72001-10-24 05:00:29 +000079#if defined(CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION) || defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
80#define CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +000081#endif
82
Eric Andersenbdfd0d72001-10-24 05:00:29 +000083#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Glenn L McGrath78b0e372001-06-26 02:06:08 +000084# ifndef TEST
Eric Andersen887ca792002-07-03 23:19:26 +000085# include "pwd_.h"
Glenn L McGrath78b0e372001-06-26 02:06:08 +000086# else
87# include <pwd.h>
88# endif /* TEST */
Eric Andersenc470f442003-07-28 09:56:35 +000089#endif /* advanced FEATURES */
Eric Andersenaf4ac772001-02-01 22:43:49 +000090
91
Eric Andersen5f2c79d2001-02-16 18:36:04 +000092/* Maximum length of the linked list for the command line history */
Robert Griebl350d26b2002-12-03 22:45:46 +000093#ifndef CONFIG_FEATURE_COMMAND_HISTORY
94#define MAX_HISTORY 15
95#else
96#define MAX_HISTORY CONFIG_FEATURE_COMMAND_HISTORY
97#endif
98
Glenn L McGrath062c74f2002-11-27 09:29:49 +000099#if MAX_HISTORY < 1
100#warning cmdedit: You set MAX_HISTORY < 1. The history algorithm switched off.
101#else
102static char *history[MAX_HISTORY+1]; /* history + current */
103/* saved history lines */
104static int n_history;
105/* current pointer to history line */
106static int cur_history;
107#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000108
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000109#include <termios.h>
110#define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
111#define getTermSettings(fd,argp) tcgetattr(fd, argp);
Erik Andersen1d1d9502000-04-21 01:26:49 +0000112
113/* Current termio and the previous termio before starting sh */
Eric Andersen63a86222000-11-07 06:52:13 +0000114static struct termios initial_settings, new_settings;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000115
116
Mark Whitley4e338752001-01-26 20:42:23 +0000117static
Eric Andersenc470f442003-07-28 09:56:35 +0000118volatile int cmdedit_termw = 80; /* actual terminal width */
Mark Whitley4e338752001-01-26 20:42:23 +0000119static
Eric Andersenc470f442003-07-28 09:56:35 +0000120volatile int handlers_sets = 0; /* Set next bites: */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000121
Mark Whitley4e338752001-01-26 20:42:23 +0000122enum {
Eric Andersenc470f442003-07-28 09:56:35 +0000123 SET_ATEXIT = 1, /* when atexit() has been called
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000124 and get euid,uid,gid to fast compare */
Eric Andersen7467c8d2001-07-12 20:26:32 +0000125 SET_WCHG_HANDLERS = 2, /* winchg signal handler */
126 SET_RESET_TERM = 4, /* if the terminal needs to be reset upon exit */
Mark Whitley4e338752001-01-26 20:42:23 +0000127};
Erik Andersen13456d12000-03-16 08:09:57 +0000128
Mark Whitley4e338752001-01-26 20:42:23 +0000129
Eric Andersenc470f442003-07-28 09:56:35 +0000130static int cmdedit_x; /* real x terminal position */
131static int cmdedit_y; /* pseudoreal y terminal position */
132static int cmdedit_prmt_len; /* lenght prompt without colores string */
Eric Andersen86349772000-12-18 20:25:50 +0000133
Eric Andersenc470f442003-07-28 09:56:35 +0000134static int cursor; /* required global for signal handler */
135static int len; /* --- "" - - "" - -"- --""-- --""--- */
136static char *command_ps; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000137static
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000138#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000139 const
140#endif
Eric Andersenc470f442003-07-28 09:56:35 +0000141char *cmdedit_prompt; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000142
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000143#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000144static char *user_buf = "";
145static char *home_pwd_buf = "";
146static int my_euid;
147#endif
148
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000149#ifdef CONFIG_FEATURE_SH_FANCY_PROMPT
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000150static char *hostname_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000151static int num_ok_lines = 1;
152#endif
153
154
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000155#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000156
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000157#ifndef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000158static int my_euid;
159#endif
160
161static int my_uid;
162static int my_gid;
163
Eric Andersenc470f442003-07-28 09:56:35 +0000164#endif /* CONFIG_FEATURE_COMMAND_TAB_COMPLETION */
165
Mark Whitley4e338752001-01-26 20:42:23 +0000166static void cmdedit_setwidth(int w, int redraw_flg);
Erik Andersen13456d12000-03-16 08:09:57 +0000167
Mark Whitley4e338752001-01-26 20:42:23 +0000168static void win_changed(int nsig)
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000169{
170 struct winsize win = { 0, 0, 0, 0 };
Eric Andersenc470f442003-07-28 09:56:35 +0000171 static sighandler_t previous_SIGWINCH_handler; /* for reset */
Erik Andersen61677fe2000-04-13 01:18:56 +0000172
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000173 /* emulate || signal call */
174 if (nsig == -SIGWINCH || nsig == SIGWINCH) {
Mark Whitley4e338752001-01-26 20:42:23 +0000175 ioctl(0, TIOCGWINSZ, &win);
176 if (win.ws_col > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000177 cmdedit_setwidth(win.ws_col, nsig == SIGWINCH);
Eric Andersenc470f442003-07-28 09:56:35 +0000178 }
Mark Whitley4e338752001-01-26 20:42:23 +0000179 }
Eric Andersen4bbdd782001-01-30 22:23:17 +0000180 /* Unix not all standart in recall signal */
Mark Whitley4e338752001-01-26 20:42:23 +0000181
Eric Andersenc470f442003-07-28 09:56:35 +0000182 if (nsig == -SIGWINCH) /* save previous handler */
Mark Whitley4e338752001-01-26 20:42:23 +0000183 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
Eric Andersenc470f442003-07-28 09:56:35 +0000184 else if (nsig == SIGWINCH) /* signaled called handler */
185 signal(SIGWINCH, win_changed); /* set for next call */
186 else /* nsig == 0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000187 /* set previous handler */
Eric Andersenc470f442003-07-28 09:56:35 +0000188 signal(SIGWINCH, previous_SIGWINCH_handler); /* reset */
Mark Whitley4e338752001-01-26 20:42:23 +0000189}
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000190
191static void cmdedit_reset_term(void)
Erik Andersen13456d12000-03-16 08:09:57 +0000192{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000193 if ((handlers_sets & SET_RESET_TERM) != 0) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000194/* sparc and other have broken termios support: use old termio handling. */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000195 setTermSettings(fileno(stdin), (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +0000196 handlers_sets &= ~SET_RESET_TERM;
197 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000198 if ((handlers_sets & SET_WCHG_HANDLERS) != 0) {
Mark Whitley4e338752001-01-26 20:42:23 +0000199 /* reset SIGWINCH handler to previous (default) */
200 win_changed(0);
201 handlers_sets &= ~SET_WCHG_HANDLERS;
202 }
203 fflush(stdout);
Erik Andersen13456d12000-03-16 08:09:57 +0000204}
205
Mark Whitley4e338752001-01-26 20:42:23 +0000206
Mark Whitley4e338752001-01-26 20:42:23 +0000207/* special for recount position for scroll and remove terminal margin effect */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000208static void cmdedit_set_out_char(int next_char)
209{
210
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000211 int c = (int)((unsigned char) command_ps[cursor]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000212
213 if (c == 0)
Eric Andersenc470f442003-07-28 09:56:35 +0000214 c = ' '; /* destroy end char? */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000215#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenc470f442003-07-28 09:56:35 +0000216 if (!Isprint(c)) { /* Inverse put non-printable characters */
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000217 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000218 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000219 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000220 c += '@';
221 if (c == 127)
222 c = '?';
223 printf("\033[7m%c\033[0m", c);
224 } else
225#endif
226 putchar(c);
227 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000228 /* terminal is scrolled down */
229 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000230 cmdedit_x = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000231
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000232 if (!next_char)
Mark Whitley4e338752001-01-26 20:42:23 +0000233 next_char = ' ';
234 /* destroy "(auto)margin" */
235 putchar(next_char);
236 putchar('\b');
237 }
238 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000239}
240
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000241/* Move to end line. Bonus: rewrite line from cursor */
242static void input_end(void)
243{
244 while (cursor < len)
245 cmdedit_set_out_char(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000246}
247
248/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000249static void goto_new_line(void)
250{
Mark Whitley4e338752001-01-26 20:42:23 +0000251 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000252 if (cmdedit_x)
253 putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000254}
255
256
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000257static inline void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000258{
Robert Grieblb2301592002-07-30 23:13:51 +0000259 if ( s )
260 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000261}
Eric Andersen81fe1232003-07-29 06:38:40 +0000262
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000263static inline void beep(void)
264{
265 putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000266}
267
Mark Whitley4e338752001-01-26 20:42:23 +0000268/* Move back one charactor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000269/* special for slow terminal */
270static void input_backward(int num)
271{
272 if (num > cursor)
273 num = cursor;
Eric Andersenc470f442003-07-28 09:56:35 +0000274 cursor -= num; /* new cursor (in command, not terminal) */
Erik Andersen13456d12000-03-16 08:09:57 +0000275
Eric Andersenc470f442003-07-28 09:56:35 +0000276 if (cmdedit_x >= num) { /* no to up line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000277 cmdedit_x -= num;
278 if (num < 4)
279 while (num-- > 0)
280 putchar('\b');
281
282 else
283 printf("\033[%dD", num);
284 } else {
285 int count_y;
286
287 if (cmdedit_x) {
Eric Andersenc470f442003-07-28 09:56:35 +0000288 putchar('\r'); /* back to first terminal pos. */
289 num -= cmdedit_x; /* set previous backward */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000290 }
291 count_y = 1 + num / cmdedit_termw;
292 printf("\033[%dA", count_y);
293 cmdedit_y -= count_y;
294 /* require forward after uping */
295 cmdedit_x = cmdedit_termw * count_y - num;
Eric Andersenc470f442003-07-28 09:56:35 +0000296 printf("\033[%dC", cmdedit_x); /* set term cursor */
Erik Andersen13456d12000-03-16 08:09:57 +0000297 }
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 Andersenc470f442003-07-28 09:56:35 +0000303 cmdedit_x = cmdedit_prmt_len; /* count real x terminal position */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000304 cursor = 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000305 cmdedit_y = 0; /* new quasireal y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000306}
307
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000308#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000309static void parse_prompt(const char *prmt_ptr)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000310{
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000311 cmdedit_prompt = prmt_ptr;
312 cmdedit_prmt_len = strlen(prmt_ptr);
313 put_prompt();
314}
315#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000316static void parse_prompt(const char *prmt_ptr)
317{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000318 int prmt_len = 0;
319 int sub_len = 0;
Eric Andersene5dfced2001-04-09 22:48:12 +0000320 char flg_not_length = '[';
321 char *prmt_mem_ptr = xcalloc(1, 1);
322 char *pwd_buf = xgetcwd(0);
323 char buf2[PATH_MAX + 1];
324 char buf[2];
325 char c;
326 char *pbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000327
Eric Andersen5f265b72001-05-11 16:58:46 +0000328 if (!pwd_buf) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000329 pwd_buf=(char *)bb_msg_unknown;
Eric Andersen5f265b72001-05-11 16:58:46 +0000330 }
331
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000332 while (*prmt_ptr) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000333 pbuf = buf;
334 pbuf[1] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000335 c = *prmt_ptr++;
336 if (c == '\\') {
Eric Andersene5dfced2001-04-09 22:48:12 +0000337 const char *cp = prmt_ptr;
338 int l;
Eric Andersenc470f442003-07-28 09:56:35 +0000339
Manuel Novoa III cad53642003-03-19 09:13:01 +0000340 c = bb_process_escape_sequence(&prmt_ptr);
Eric Andersene5dfced2001-04-09 22:48:12 +0000341 if(prmt_ptr==cp) {
342 if (*cp == 0)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000343 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000344 c = *prmt_ptr++;
345 switch (c) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000346#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersene5dfced2001-04-09 22:48:12 +0000347 case 'u':
348 pbuf = user_buf;
349 break;
Eric Andersenc470f442003-07-28 09:56:35 +0000350#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000351 case 'h':
352 pbuf = hostname_buf;
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000353 if (pbuf == 0) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000354 pbuf = xcalloc(256, 1);
355 if (gethostname(pbuf, 255) < 0) {
356 strcpy(pbuf, "?");
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000357 } else {
Eric Andersene5dfced2001-04-09 22:48:12 +0000358 char *s = strchr(pbuf, '.');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000359
360 if (s)
361 *s = 0;
362 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000363 hostname_buf = pbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000364 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000365 break;
366 case '$':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000367 c = my_euid == 0 ? '#' : '$';
368 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000369#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersene5dfced2001-04-09 22:48:12 +0000370 case 'w':
371 pbuf = pwd_buf;
372 l = strlen(home_pwd_buf);
373 if (home_pwd_buf[0] != 0 &&
374 strncmp(home_pwd_buf, pbuf, l) == 0 &&
375 (pbuf[l]=='/' || pbuf[l]=='\0') &&
376 strlen(pwd_buf+l)<PATH_MAX) {
377 pbuf = buf2;
378 *pbuf = '~';
379 strcpy(pbuf+1, pwd_buf+l);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000380 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000381 break;
Eric Andersenc470f442003-07-28 09:56:35 +0000382#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000383 case 'W':
384 pbuf = pwd_buf;
385 cp = strrchr(pbuf,'/');
386 if ( (cp != NULL) && (cp != pbuf) )
387 pbuf += (cp-pbuf)+1;
388 break;
389 case '!':
390 snprintf(pbuf = buf2, sizeof(buf2), "%d", num_ok_lines);
391 break;
392 case 'e': case 'E': /* \e \E = \033 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000393 c = '\033';
394 break;
Eric Andersenc470f442003-07-28 09:56:35 +0000395 case 'x': case 'X':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000396 for (l = 0; l < 3;) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000397 int h;
398 buf2[l++] = *prmt_ptr;
399 buf2[l] = 0;
400 h = strtol(buf2, &pbuf, 16);
401 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000402 l--;
403 break;
404 }
405 prmt_ptr++;
406 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000407 buf2[l] = 0;
408 c = (char)strtol(buf2, 0, 16);
409 if(c==0)
410 c = '?';
411 pbuf = buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000412 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000413 case '[': case ']':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000414 if (c == flg_not_length) {
415 flg_not_length = flg_not_length == '[' ? ']' : '[';
416 continue;
417 }
418 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000419 }
Eric Andersenc470f442003-07-28 09:56:35 +0000420 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000421 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000422 if(pbuf == buf)
423 *pbuf = c;
424 prmt_len += strlen(pbuf);
425 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000426 if (flg_not_length == ']')
427 sub_len++;
428 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000429 if(pwd_buf!=(char *)bb_msg_unknown)
Eric Andersen8f697842001-07-02 15:36:57 +0000430 free(pwd_buf);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000431 cmdedit_prompt = prmt_mem_ptr;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000432 cmdedit_prmt_len = prmt_len - sub_len;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000433 put_prompt();
434}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000435#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000436
437
438/* draw promt, editor line, and clear tail */
439static void redraw(int y, int back_cursor)
440{
Eric Andersenc470f442003-07-28 09:56:35 +0000441 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000442 printf("\033[%dA", y);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000443 putchar('\r');
444 put_prompt();
Eric Andersenc470f442003-07-28 09:56:35 +0000445 input_end(); /* rewrite */
446 printf("\033[J"); /* destroy tail after cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000447 input_backward(back_cursor);
448}
449
Erik Andersenf0657d32000-04-12 17:49:52 +0000450/* Delete the char in front of the cursor */
Mark Whitley4e338752001-01-26 20:42:23 +0000451static void input_delete(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000452{
Mark Whitley4e338752001-01-26 20:42:23 +0000453 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000454
Mark Whitley4e338752001-01-26 20:42:23 +0000455 if (j == len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000456 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000457
458 strcpy(command_ps + j, command_ps + j + 1);
Mark Whitley4e338752001-01-26 20:42:23 +0000459 len--;
Eric Andersenc470f442003-07-28 09:56:35 +0000460 input_end(); /* rewtite new line */
461 cmdedit_set_out_char(0); /* destroy end char */
462 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000463}
464
Mark Whitley4e338752001-01-26 20:42:23 +0000465/* Delete the char in back of the cursor */
466static void input_backspace(void)
467{
468 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000469 input_backward(1);
470 input_delete();
Mark Whitley4e338752001-01-26 20:42:23 +0000471 }
472}
473
474
Erik Andersenf0657d32000-04-12 17:49:52 +0000475/* Move forward one charactor */
Mark Whitley4e338752001-01-26 20:42:23 +0000476static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000477{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000478 if (cursor < len)
479 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000480}
481
482
Mark Whitley4e338752001-01-26 20:42:23 +0000483static void cmdedit_setwidth(int w, int redraw_flg)
484{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000485 cmdedit_termw = cmdedit_prmt_len + 2;
Eric Andersen6faae7d2001-02-16 20:09:17 +0000486 if (w <= cmdedit_termw) {
487 cmdedit_termw = cmdedit_termw % w;
488 }
Mark Whitley4e338752001-01-26 20:42:23 +0000489 if (w > cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000490 cmdedit_termw = w;
491
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000492 if (redraw_flg) {
493 /* new y for current cursor */
494 int new_y = (cursor + cmdedit_prmt_len) / w;
Mark Whitley4e338752001-01-26 20:42:23 +0000495
496 /* redraw */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000497 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), len - cursor);
498 fflush(stdout);
Mark Whitley4e338752001-01-26 20:42:23 +0000499 }
Eric Andersenc470f442003-07-28 09:56:35 +0000500 }
Mark Whitley4e338752001-01-26 20:42:23 +0000501}
502
Eric Andersen7467c8d2001-07-12 20:26:32 +0000503static void cmdedit_init(void)
Mark Whitley4e338752001-01-26 20:42:23 +0000504{
Eric Andersen61173a52001-03-19 17:48:55 +0000505 cmdedit_prmt_len = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000506 if ((handlers_sets & SET_WCHG_HANDLERS) == 0) {
507 /* emulate usage handler to set handler and call yours work */
Mark Whitley4e338752001-01-26 20:42:23 +0000508 win_changed(-SIGWINCH);
509 handlers_sets |= SET_WCHG_HANDLERS;
510 }
511
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000512 if ((handlers_sets & SET_ATEXIT) == 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000513#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000514 struct passwd *entry;
515
516 my_euid = geteuid();
517 entry = getpwuid(my_euid);
518 if (entry) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000519 user_buf = bb_xstrdup(entry->pw_name);
520 home_pwd_buf = bb_xstrdup(entry->pw_dir);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000521 }
522#endif
523
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000524#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000525
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000526#ifndef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000527 my_euid = geteuid();
528#endif
529 my_uid = getuid();
530 my_gid = getgid();
Eric Andersenc470f442003-07-28 09:56:35 +0000531#endif /* CONFIG_FEATURE_COMMAND_TAB_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000532 handlers_sets |= SET_ATEXIT;
Eric Andersenc470f442003-07-28 09:56:35 +0000533 atexit(cmdedit_reset_term); /* be sure to do this only once */
Mark Whitley4e338752001-01-26 20:42:23 +0000534 }
Mark Whitley4e338752001-01-26 20:42:23 +0000535}
Erik Andersenf0657d32000-04-12 17:49:52 +0000536
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000537#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000538
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000539static int is_execute(const struct stat *st)
Erik Andersen6273f652000-03-17 01:12:41 +0000540{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000541 if ((!my_euid && (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) ||
542 (my_uid == st->st_uid && (st->st_mode & S_IXUSR)) ||
543 (my_gid == st->st_gid && (st->st_mode & S_IXGRP)) ||
544 (st->st_mode & S_IXOTH)) return TRUE;
545 return FALSE;
Erik Andersen6273f652000-03-17 01:12:41 +0000546}
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000547
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000548#ifdef CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000549
550static char **username_tab_completion(char *ud, int *num_matches)
551{
552 struct passwd *entry;
553 int userlen;
554 char *temp;
555
556
Eric Andersenc470f442003-07-28 09:56:35 +0000557 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000558 userlen = strlen(ud);
559
Eric Andersenc470f442003-07-28 09:56:35 +0000560 if (num_matches == 0) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000561 char *sav_ud = ud - 1;
562 char *home = 0;
563
Eric Andersenc470f442003-07-28 09:56:35 +0000564 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000565 home = home_pwd_buf;
566 } else {
567 /* "~user/..." */
568 temp = strchr(ud, '/');
Eric Andersenc470f442003-07-28 09:56:35 +0000569 *temp = 0; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000570 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000571 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000572 ud = temp;
573 if (entry)
574 home = entry->pw_dir;
575 }
576 if (home) {
577 if ((userlen + strlen(home) + 1) < BUFSIZ) {
Eric Andersenc470f442003-07-28 09:56:35 +0000578 char temp2[BUFSIZ]; /* argument size */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000579
580 /* /home/user/... */
581 sprintf(temp2, "%s%s", home, ud);
582 strcpy(sav_ud, temp2);
583 }
584 }
Eric Andersenc470f442003-07-28 09:56:35 +0000585 return 0; /* void, result save to argument :-) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000586 } else {
587 /* "~[^/]*" */
588 char **matches = (char **) NULL;
589 int nm = 0;
590
591 setpwent();
592
593 while ((entry = getpwent()) != NULL) {
594 /* Null usernames should result in all users as possible completions. */
595 if ( /*!userlen || */ !strncmp(ud, entry->pw_name, userlen)) {
596
Eric Andersenc470f442003-07-28 09:56:35 +0000597 bb_xasprintf(&temp, "~%s/", entry->pw_name);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000598 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
599
600 matches[nm++] = temp;
601 }
602 }
603
604 endpwent();
605 (*num_matches) = nm;
606 return (matches);
607 }
608}
Eric Andersenc470f442003-07-28 09:56:35 +0000609#endif /* CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000610
611enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000612 FIND_EXE_ONLY = 0,
613 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000614 FIND_FILE_ONLY = 2,
615};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000616
Mark Whitley4e338752001-01-26 20:42:23 +0000617static int path_parse(char ***p, int flags)
618{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000619 int npth;
Mark Whitley4e338752001-01-26 20:42:23 +0000620 char *tmp;
621 char *pth;
622
Mark Whitley4e338752001-01-26 20:42:23 +0000623 /* if not setenv PATH variable, to search cur dir "." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000624 if (flags != FIND_EXE_ONLY || (pth = getenv("PATH")) == 0 ||
625 /* PATH=<empty> or PATH=:<empty> */
626 *pth == 0 || (*pth == ':' && *(pth + 1) == 0)) {
Mark Whitley4e338752001-01-26 20:42:23 +0000627 return 1;
628 }
629
630 tmp = pth;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000631 npth = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000632
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000633 for (;;) {
Eric Andersenc470f442003-07-28 09:56:35 +0000634 npth++; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000635 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000636 if (tmp) {
637 if (*++tmp == 0)
Eric Andersenc470f442003-07-28 09:56:35 +0000638 break; /* :<empty> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000639 } else
Mark Whitley4e338752001-01-26 20:42:23 +0000640 break;
641 }
642
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000643 *p = xmalloc(npth * sizeof(char *));
Mark Whitley4e338752001-01-26 20:42:23 +0000644
645 tmp = pth;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000646 (*p)[0] = bb_xstrdup(tmp);
Eric Andersenc470f442003-07-28 09:56:35 +0000647 npth = 1; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000648
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000649 for (;;) {
Mark Whitley4e338752001-01-26 20:42:23 +0000650 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000651 if (tmp) {
Eric Andersenc470f442003-07-28 09:56:35 +0000652 (*p)[0][(tmp - pth)] = 0; /* ':' -> '\0' */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000653 if (*++tmp == 0)
Eric Andersenc470f442003-07-28 09:56:35 +0000654 break; /* :<empty> */
Mark Whitley4e338752001-01-26 20:42:23 +0000655 } else
656 break;
Eric Andersenc470f442003-07-28 09:56:35 +0000657 (*p)[npth++] = &(*p)[0][(tmp - pth)]; /* p[next]=p[0][&'\0'+1] */
Mark Whitley4e338752001-01-26 20:42:23 +0000658 }
659
660 return npth;
661}
662
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000663static char *add_quote_for_spec_chars(char *found)
Erik Andersen6273f652000-03-17 01:12:41 +0000664{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000665 int l = 0;
666 char *s = xmalloc((strlen(found) + 1) * 2);
667
668 while (*found) {
669 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
670 s[l++] = '\\';
671 s[l++] = *found++;
672 }
673 s[l] = 0;
674 return s;
675}
676
677static char **exe_n_cwd_tab_completion(char *command, int *num_matches,
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000678 int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000679{
680
681 char **matches = 0;
Erik Andersen1dbe3402000-03-19 10:46:06 +0000682 DIR *dir;
683 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000684 char dirbuf[BUFSIZ];
685 int nm = *num_matches;
686 struct stat st;
687 char *path1[1];
688 char **paths = path1;
689 int npaths;
690 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000691 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000692 char *pfind = strrchr(command, '/');
Mark Whitley4e338752001-01-26 20:42:23 +0000693
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000694 path1[0] = ".";
Mark Whitley4e338752001-01-26 20:42:23 +0000695
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000696 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000697 /* no dir, if flags==EXE_ONLY - get paths, else "." */
698 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000699 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000700 } else {
701 /* with dir */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000702 /* save for change */
703 strcpy(dirbuf, command);
704 /* set dir only */
705 dirbuf[(pfind - command) + 1] = 0;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000706#ifdef CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000707 if (dirbuf[0] == '~') /* ~/... or ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000708 username_tab_completion(dirbuf, 0);
709#endif
710 /* "strip" dirname in command */
711 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000712
Mark Whitley4e338752001-01-26 20:42:23 +0000713 paths[0] = dirbuf;
Eric Andersenc470f442003-07-28 09:56:35 +0000714 npaths = 1; /* only 1 dir */
Mark Whitley4e338752001-01-26 20:42:23 +0000715 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000716
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000717 for (i = 0; i < npaths; i++) {
Erik Andersenc7c634b2000-03-19 05:28:55 +0000718
Mark Whitley4e338752001-01-26 20:42:23 +0000719 dir = opendir(paths[i]);
Eric Andersenc470f442003-07-28 09:56:35 +0000720 if (!dir) /* Don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000721 continue;
722
723 while ((next = readdir(dir)) != NULL) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000724 char *str_found = next->d_name;
725
Mark Whitley4e338752001-01-26 20:42:23 +0000726 /* matched ? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000727 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000728 continue;
729 /* not see .name without .match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000730 if (*str_found == '.' && *pfind == 0) {
731 if (*paths[i] == '/' && paths[i][1] == 0
Eric Andersenc470f442003-07-28 09:56:35 +0000732 && str_found[1] == 0) str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000733 else
Mark Whitley4e338752001-01-26 20:42:23 +0000734 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000735 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000736 found = concat_path_file(paths[i], str_found);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000737 /* hmm, remover in progress? */
Eric Andersenc470f442003-07-28 09:56:35 +0000738 if (stat(found, &st) < 0)
Eric Andersene5dfced2001-04-09 22:48:12 +0000739 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000740 /* find with dirs ? */
741 if (paths[i] != dirbuf)
Eric Andersenc470f442003-07-28 09:56:35 +0000742 strcpy(found, next->d_name); /* only name */
Mark Whitley4e338752001-01-26 20:42:23 +0000743 if (S_ISDIR(st.st_mode)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000744 /* name is directory */
Eric Andersene5dfced2001-04-09 22:48:12 +0000745 str_found = found;
746 found = concat_path_file(found, "");
747 free(str_found);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000748 str_found = add_quote_for_spec_chars(found);
Mark Whitley4e338752001-01-26 20:42:23 +0000749 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000750 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000751 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000752 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000753 str_found = add_quote_for_spec_chars(found);
754 if (type == FIND_FILE_ONLY ||
Matt Kraai1f0c4362001-12-20 23:13:26 +0000755 (type == FIND_EXE_ONLY && is_execute(&st)))
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000756 strcat(str_found, " ");
757 }
Mark Whitley4e338752001-01-26 20:42:23 +0000758 /* Add it to the list */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000759 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
760
761 matches[nm++] = str_found;
Eric Andersene5dfced2001-04-09 22:48:12 +0000762cont:
763 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000764 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000765 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000766 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000767 if (paths != path1) {
Eric Andersenc470f442003-07-28 09:56:35 +0000768 free(paths[0]); /* allocated memory only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000769 free(paths);
770 }
Mark Whitley4e338752001-01-26 20:42:23 +0000771 *num_matches = nm;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000772 return (matches);
Erik Andersen6273f652000-03-17 01:12:41 +0000773}
Erik Andersenf0657d32000-04-12 17:49:52 +0000774
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000775static int match_compare(const void *a, const void *b)
776{
777 return strcmp(*(char **) a, *(char **) b);
778}
779
780
781
782#define QUOT (UCHAR_MAX+1)
783
784#define collapse_pos(is, in) { \
Eric Andersen889a3012002-03-20 14:31:15 +0000785 memcpy(int_buf+(is), int_buf+(in), (BUFSIZ+1-(is)-(in))*sizeof(int)); \
786 memcpy(pos_buf+(is), pos_buf+(in), (BUFSIZ+1-(is)-(in))*sizeof(int)); }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000787
788static int find_match(char *matchBuf, int *len_with_quotes)
789{
790 int i, j;
791 int command_mode;
792 int c, c2;
793 int int_buf[BUFSIZ + 1];
794 int pos_buf[BUFSIZ + 1];
795
796 /* set to integer dimension characters and own positions */
797 for (i = 0;; i++) {
798 int_buf[i] = (int) ((unsigned char) matchBuf[i]);
799 if (int_buf[i] == 0) {
Eric Andersenc470f442003-07-28 09:56:35 +0000800 pos_buf[i] = -1; /* indicator end line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000801 break;
802 } else
803 pos_buf[i] = i;
804 }
805
806 /* mask \+symbol and convert '\t' to ' ' */
807 for (i = j = 0; matchBuf[i]; i++, j++)
808 if (matchBuf[i] == '\\') {
809 collapse_pos(j, j + 1);
810 int_buf[j] |= QUOT;
811 i++;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000812#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenc470f442003-07-28 09:56:35 +0000813 if (matchBuf[i] == '\t') /* algorithm equivalent */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000814 int_buf[j] = ' ' | QUOT;
815#endif
816 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000817#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000818 else if (matchBuf[i] == '\t')
819 int_buf[j] = ' ';
820#endif
821
822 /* mask "symbols" or 'symbols' */
823 c2 = 0;
824 for (i = 0; int_buf[i]; i++) {
825 c = int_buf[i];
826 if (c == '\'' || c == '"') {
827 if (c2 == 0)
828 c2 = c;
829 else {
830 if (c == c2)
831 c2 = 0;
832 else
833 int_buf[i] |= QUOT;
834 }
835 } else if (c2 != 0 && c != '$')
836 int_buf[i] |= QUOT;
837 }
838
839 /* skip commands with arguments if line have commands delimiters */
840 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
841 for (i = 0; int_buf[i]; i++) {
842 c = int_buf[i];
843 c2 = int_buf[i + 1];
844 j = i ? int_buf[i - 1] : -1;
845 command_mode = 0;
846 if (c == ';' || c == '&' || c == '|') {
847 command_mode = 1 + (c == c2);
848 if (c == '&') {
849 if (j == '>' || j == '<')
850 command_mode = 0;
851 } else if (c == '|' && j == '>')
852 command_mode = 0;
853 }
854 if (command_mode) {
855 collapse_pos(0, i + command_mode);
Eric Andersenc470f442003-07-28 09:56:35 +0000856 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000857 }
858 }
859 /* collapse `command...` */
860 for (i = 0; int_buf[i]; i++)
861 if (int_buf[i] == '`') {
862 for (j = i + 1; int_buf[j]; j++)
863 if (int_buf[j] == '`') {
864 collapse_pos(i, j + 1);
865 j = 0;
866 break;
867 }
868 if (j) {
869 /* not found close ` - command mode, collapse all previous */
870 collapse_pos(0, i + 1);
871 break;
872 } else
Eric Andersenc470f442003-07-28 09:56:35 +0000873 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000874 }
875
876 /* collapse (command...(command...)...) or {command...{command...}...} */
Eric Andersenc470f442003-07-28 09:56:35 +0000877 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000878 c2 = 0;
879 for (i = 0; int_buf[i]; i++)
880 if (int_buf[i] == '(' || int_buf[i] == '{') {
881 if (int_buf[i] == '(')
882 c++;
883 else
884 c2++;
885 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000886 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000887 }
888 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
889 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
890 if (int_buf[i] == ')')
891 c--;
892 else
893 c2--;
894 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000895 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000896 }
897
898 /* skip first not quote space */
899 for (i = 0; int_buf[i]; i++)
900 if (int_buf[i] != ' ')
901 break;
902 if (i)
903 collapse_pos(0, i);
904
905 /* set find mode for completion */
906 command_mode = FIND_EXE_ONLY;
907 for (i = 0; int_buf[i]; i++)
908 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
909 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000910 && matchBuf[pos_buf[0]]=='c'
911 && matchBuf[pos_buf[1]]=='d' )
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000912 command_mode = FIND_DIR_ONLY;
913 else {
914 command_mode = FIND_FILE_ONLY;
915 break;
916 }
917 }
918 /* "strlen" */
919 for (i = 0; int_buf[i]; i++);
920 /* find last word */
921 for (--i; i >= 0; i--) {
922 c = int_buf[i];
923 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
924 collapse_pos(0, i + 1);
925 break;
926 }
927 }
928 /* skip first not quoted '\'' or '"' */
929 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++);
930 /* collapse quote or unquote // or /~ */
Eric Andersenc470f442003-07-28 09:56:35 +0000931 while ((int_buf[i] & ~QUOT) == '/' &&
Mark Whitley7e5291f2001-03-08 19:31:12 +0000932 ((int_buf[i + 1] & ~QUOT) == '/'
933 || (int_buf[i + 1] & ~QUOT) == '~')) {
934 i++;
935 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000936
937 /* set only match and destroy quotes */
938 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000939 for (c = 0; pos_buf[i] >= 0; i++) {
940 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000941 j = pos_buf[i] + 1;
942 }
Eric Andersen4f990532001-05-31 17:15:57 +0000943 matchBuf[c] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000944 /* old lenght matchBuf with quotes symbols */
945 *len_with_quotes = j ? j - pos_buf[0] : 0;
946
947 return command_mode;
948}
949
Glenn L McGrath4d001292003-01-06 01:11:50 +0000950/*
951 display by column original ideas from ls applet,
952 very optimize by my :)
953*/
954static void showfiles(char **matches, int nfiles)
955{
956 int ncols, row;
957 int column_width = 0;
958 int nrows = nfiles;
959
960 /* find the longest file name- use that as the column width */
961 for (row = 0; row < nrows; row++) {
962 int l = strlen(matches[row]);
963
964 if (column_width < l)
965 column_width = l;
966 }
967 column_width += 2; /* min space for columns */
968 ncols = cmdedit_termw / column_width;
969
970 if (ncols > 1) {
971 nrows /= ncols;
972 if(nfiles % ncols)
973 nrows++; /* round up fractionals */
974 column_width = -column_width; /* for printf("%-Ns", ...); */
975 } else {
976 ncols = 1;
977 }
978 for (row = 0; row < nrows; row++) {
979 int n = row;
980 int nc;
981
982 for(nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++)
983 printf("%*s", column_width, matches[n]);
984 printf("%s\n", matches[n]);
985 }
986}
987
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000988
989static void input_tab(int *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000990{
991 /* Do TAB completion */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000992 static int num_matches;
Mark Whitley4e338752001-01-26 20:42:23 +0000993 static char **matches;
994
Eric Andersenc470f442003-07-28 09:56:35 +0000995 if (lastWasTab == 0) { /* free all memory */
Erik Andersenf0657d32000-04-12 17:49:52 +0000996 if (matches) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000997 while (num_matches > 0)
Mark Whitley4e338752001-01-26 20:42:23 +0000998 free(matches[--num_matches]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000999 free(matches);
1000 matches = (char **) NULL;
1001 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001002 return;
1003 }
Matt Kraai1f0c4362001-12-20 23:13:26 +00001004 if (! *lastWasTab) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001005
1006 char *tmp;
1007 int len_found;
1008 char matchBuf[BUFSIZ];
1009 int find_type;
1010 int recalc_pos;
1011
Eric Andersenc470f442003-07-28 09:56:35 +00001012 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001013
1014 /* Make a local copy of the string -- up
1015 * to the position of the cursor */
1016 tmp = strncpy(matchBuf, command_ps, cursor);
1017 tmp[cursor] = 0;
1018
1019 find_type = find_match(matchBuf, &recalc_pos);
1020
1021 /* Free up any memory already allocated */
1022 input_tab(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001023
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001024#ifdef CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001025 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001026 * then try completing this word as a username. */
1027
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001028 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
Mark Whitley4e338752001-01-26 20:42:23 +00001029 matches = username_tab_completion(matchBuf, &num_matches);
Mark Whitley4e338752001-01-26 20:42:23 +00001030#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001031 /* Try to match any executable in our path and everything
Erik Andersenf0657d32000-04-12 17:49:52 +00001032 * in the current working directory that matches. */
1033 if (!matches)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001034 matches =
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001035 exe_n_cwd_tab_completion(matchBuf,
1036 &num_matches, find_type);
1037 /* Remove duplicate found */
1038 if(matches) {
1039 int i, j;
1040 /* bubble */
1041 for(i=0; i<(num_matches-1); i++)
1042 for(j=i+1; j<num_matches; j++)
1043 if(matches[i]!=0 && matches[j]!=0 &&
1044 strcmp(matches[i], matches[j])==0) {
1045 free(matches[j]);
1046 matches[j]=0;
1047 }
1048 j=num_matches;
1049 num_matches = 0;
1050 for(i=0; i<j; i++)
1051 if(matches[i]) {
1052 if(!strcmp(matches[i], "./"))
1053 matches[i][1]=0;
1054 else if(!strcmp(matches[i], "../"))
1055 matches[i][2]=0;
1056 matches[num_matches++]=matches[i];
1057 }
1058 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001059 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001060 if (!matches || num_matches > 1) {
1061 char *tmp1;
1062
Mark Whitley4e338752001-01-26 20:42:23 +00001063 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001064 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +00001065 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001066 /* sort */
1067 qsort(matches, num_matches, sizeof(char *), match_compare);
1068
1069 /* find minimal match */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001070 tmp = bb_xstrdup(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001071 for (tmp1 = tmp; *tmp1; tmp1++)
1072 for (len_found = 1; len_found < num_matches; len_found++)
1073 if (matches[len_found][(tmp1 - tmp)] != *tmp1) {
1074 *tmp1 = 0;
1075 break;
1076 }
Eric Andersenc470f442003-07-28 09:56:35 +00001077 if (*tmp == 0) { /* have unique */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001078 free(tmp);
1079 return;
1080 }
Eric Andersenc470f442003-07-28 09:56:35 +00001081 } else { /* one match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001082 tmp = matches[0];
1083 /* for next completion current found */
1084 *lastWasTab = FALSE;
Mark Whitley4e338752001-01-26 20:42:23 +00001085 }
1086
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001087 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +00001088 /* have space to placed match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001089 if ((len_found - strlen(matchBuf) + len) < BUFSIZ) {
Mark Whitley4e338752001-01-26 20:42:23 +00001090
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001091 /* before word for match */
1092 command_ps[cursor - recalc_pos] = 0;
1093 /* save tail line */
1094 strcpy(matchBuf, command_ps + cursor);
1095 /* add match */
1096 strcat(command_ps, tmp);
1097 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +00001098 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001099 /* back to begin word for match */
1100 input_backward(recalc_pos);
1101 /* new pos */
1102 recalc_pos = cursor + len_found;
1103 /* new len */
1104 len = strlen(command_ps);
1105 /* write out the matched command */
Eric Andersen4f990532001-05-31 17:15:57 +00001106 redraw(cmdedit_y, len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001107 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001108 if (tmp != matches[0])
1109 free(tmp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001110 } else {
1111 /* Ok -- the last char was a TAB. Since they
1112 * just hit TAB again, print a list of all the
1113 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001114 if (matches && num_matches > 0) {
Eric Andersenc470f442003-07-28 09:56:35 +00001115 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +00001116
1117 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001118 goto_new_line();
Glenn L McGrath4d001292003-01-06 01:11:50 +00001119 showfiles(matches, num_matches);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001120 redraw(0, len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001121 }
1122 }
1123}
Eric Andersenc470f442003-07-28 09:56:35 +00001124#endif /* CONFIG_FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001125
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001126#if MAX_HISTORY >= 1
1127static void get_previous_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001128{
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001129 if(command_ps[0] != 0 || history[cur_history] == 0) {
1130 free(history[cur_history]);
Manuel Novoa III cad53642003-03-19 09:13:01 +00001131 history[cur_history] = bb_xstrdup(command_ps);
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001132 }
1133 cur_history--;
Erik Andersenf0657d32000-04-12 17:49:52 +00001134}
1135
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001136static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001137{
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001138 int ch = cur_history;
1139
1140 if (ch < n_history) {
1141 get_previous_history(); /* save the current history line */
1142 return (cur_history = ch+1);
1143 } else {
1144 beep();
1145 return 0;
1146 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001147}
Robert Griebl350d26b2002-12-03 22:45:46 +00001148
Robert Griebl350d26b2002-12-03 22:45:46 +00001149#ifdef CONFIG_FEATURE_COMMAND_SAVEHISTORY
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001150extern void load_history ( const char *fromfile )
1151{
Robert Griebl350d26b2002-12-03 22:45:46 +00001152 FILE *fp;
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001153 int hi;
Robert Griebl350d26b2002-12-03 22:45:46 +00001154
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001155 /* cleanup old */
1156
1157 for(hi = n_history; hi > 0; ) {
1158 hi--;
1159 free ( history [hi] );
Robert Griebl350d26b2002-12-03 22:45:46 +00001160 }
1161
1162 if (( fp = fopen ( fromfile, "r" ))) {
Eric Andersenc470f442003-07-28 09:56:35 +00001163
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001164 for ( hi = 0; hi < MAX_HISTORY; ) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001165 char * hl = bb_get_chomped_line_from_file(fp);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001166 int l;
1167
1168 if(!hl)
Robert Griebl350d26b2002-12-03 22:45:46 +00001169 break;
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001170 l = strlen(hl);
1171 if(l >= BUFSIZ)
1172 hl[BUFSIZ-1] = 0;
1173 if(l == 0 || hl[0] == ' ') {
1174 free(hl);
1175 continue;
1176 }
1177 history [hi++] = hl;
Robert Griebl350d26b2002-12-03 22:45:46 +00001178 }
1179 fclose ( fp );
1180 }
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001181 cur_history = n_history = hi;
Robert Griebl350d26b2002-12-03 22:45:46 +00001182}
1183
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001184extern void save_history ( const char *tofile )
Robert Griebl350d26b2002-12-03 22:45:46 +00001185{
Robert Griebl350d26b2002-12-03 22:45:46 +00001186 FILE *fp = fopen ( tofile, "w" );
Eric Andersenc470f442003-07-28 09:56:35 +00001187
Robert Griebl350d26b2002-12-03 22:45:46 +00001188 if ( fp ) {
1189 int i;
Eric Andersenc470f442003-07-28 09:56:35 +00001190
Robert Griebl350d26b2002-12-03 22:45:46 +00001191 for ( i = 0; i < n_history; i++ ) {
1192 fputs ( history [i], fp );
1193 fputc ( '\n', fp );
1194 }
1195 fclose ( fp );
1196 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001197}
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001198#endif
Robert Griebl350d26b2002-12-03 22:45:46 +00001199
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001200#endif
Erik Andersenf0657d32000-04-12 17:49:52 +00001201
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001202enum {
1203 ESC = 27,
1204 DEL = 127,
1205};
1206
1207
Erik Andersen6273f652000-03-17 01:12:41 +00001208/*
1209 * This function is used to grab a character buffer
1210 * from the input file descriptor and allows you to
1211 * a string with full command editing (sortof like
1212 * a mini readline).
1213 *
1214 * The following standard commands are not implemented:
1215 * ESC-b -- Move back one word
1216 * ESC-f -- Move forward one word
1217 * ESC-d -- Delete back one word
1218 * ESC-h -- Delete forward one word
1219 * CTL-t -- Transpose two characters
1220 *
1221 * Furthermore, the "vi" command editing keys are not implemented.
1222 *
Erik Andersen6273f652000-03-17 01:12:41 +00001223 */
Eric Andersenc470f442003-07-28 09:56:35 +00001224
Eric Andersen044228d2001-07-17 01:12:36 +00001225
1226int cmdedit_read_input(char *prompt, char command[BUFSIZ])
Erik Andersen13456d12000-03-16 08:09:57 +00001227{
1228
Erik Andersenc7c634b2000-03-19 05:28:55 +00001229 int break_out = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001230 int lastWasTab = FALSE;
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001231 unsigned char c = 0;
Erik Andersen13456d12000-03-16 08:09:57 +00001232
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001233 /* prepare before init handlers */
Eric Andersenc470f442003-07-28 09:56:35 +00001234 cmdedit_y = 0; /* quasireal y, not true work if line > xt*yt */
Mark Whitley4e338752001-01-26 20:42:23 +00001235 len = 0;
Mark Whitley4e338752001-01-26 20:42:23 +00001236 command_ps = command;
1237
Eric Andersen34506362001-08-02 05:02:46 +00001238 getTermSettings(0, (void *) &initial_settings);
1239 memcpy(&new_settings, &initial_settings, sizeof(struct termios));
1240 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1241 /* Turn off echoing and CTRL-C, so we can trap it */
1242 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001243#ifndef linux
Eric Andersen34506362001-08-02 05:02:46 +00001244 /* Hmm, in linux c_cc[] not parsed if set ~ICANON */
1245 new_settings.c_cc[VMIN] = 1;
1246 new_settings.c_cc[VTIME] = 0;
1247 /* Turn off CTRL-C, so we can trap it */
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001248# ifndef _POSIX_VDISABLE
1249# define _POSIX_VDISABLE '\0'
1250# endif
Eric Andersenc470f442003-07-28 09:56:35 +00001251 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001252#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001253 command[0] = 0;
1254
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001255 setTermSettings(0, (void *) &new_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001256 handlers_sets |= SET_RESET_TERM;
Erik Andersen13456d12000-03-16 08:09:57 +00001257
Eric Andersen6faae7d2001-02-16 20:09:17 +00001258 /* Now initialize things */
1259 cmdedit_init();
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001260 /* Print out the command prompt */
1261 parse_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001262
Erik Andersenc7c634b2000-03-19 05:28:55 +00001263 while (1) {
Erik Andersen6273f652000-03-17 01:12:41 +00001264
Eric Andersenc470f442003-07-28 09:56:35 +00001265 fflush(stdout); /* buffered out to fast */
Mark Whitley4e338752001-01-26 20:42:23 +00001266
Eric Andersen7467c8d2001-07-12 20:26:32 +00001267 if (safe_read(0, &c, 1) < 1)
Eric Andersened424db2001-04-23 15:28:28 +00001268 /* if we can't read input then exit */
1269 goto prepare_to_die;
Erik Andersenf3b3d172000-04-09 18:24:05 +00001270
Erik Andersen13456d12000-03-16 08:09:57 +00001271 switch (c) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001272 case '\n':
1273 case '\r':
1274 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001275 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001276 break_out = 1;
1277 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001278 case 1:
1279 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001280 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001281 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001282 case 2:
1283 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001284 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001285 break;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001286 case 3:
Eric Andersen86349772000-12-18 20:25:50 +00001287 /* Control-c -- stop gathering input */
Mark Whitley4e338752001-01-26 20:42:23 +00001288 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001289 command[0] = 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +00001290 len = 0;
Eric Andersenc470f442003-07-28 09:56:35 +00001291#if !defined(CONFIG_ASH)
Eric Andersen7467c8d2001-07-12 20:26:32 +00001292 lastWasTab = FALSE;
1293 put_prompt();
Eric Andersenc470f442003-07-28 09:56:35 +00001294#else
1295 break_out = 2;
1296#endif
Eric Andersen7467c8d2001-07-12 20:26:32 +00001297 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001298 case 4:
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001299 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001300 * if the len=0 and no chars to delete */
1301 if (len == 0) {
Eric Andersened424db2001-04-23 15:28:28 +00001302prepare_to_die:
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001303#if !defined(CONFIG_ASH)
Mark Whitley4e338752001-01-26 20:42:23 +00001304 printf("exit");
Eric Andersen7467c8d2001-07-12 20:26:32 +00001305 goto_new_line();
1306 /* cmdedit_reset_term() called in atexit */
1307 exit(EXIT_SUCCESS);
Eric Andersen044228d2001-07-17 01:12:36 +00001308#else
1309 break_out = -1; /* for control stoped jobs */
1310 break;
1311#endif
Erik Andersenf0657d32000-04-12 17:49:52 +00001312 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001313 input_delete();
Erik Andersenf0657d32000-04-12 17:49:52 +00001314 }
1315 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001316 case 5:
1317 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001318 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001319 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001320 case 6:
1321 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001322 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001323 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001324 case '\b':
1325 case DEL:
Erik Andersen1d1d9502000-04-21 01:26:49 +00001326 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001327 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001328 break;
1329 case '\t':
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001330#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001331 input_tab(&lastWasTab);
Erik Andersena2685732000-04-09 18:27:46 +00001332#endif
Erik Andersenc7c634b2000-03-19 05:28:55 +00001333 break;
Eric Andersen65a07302002-04-13 13:26:49 +00001334 case 11:
Eric Andersenc470f442003-07-28 09:56:35 +00001335 /* Control-k -- clear to end of line */
Eric Andersen65a07302002-04-13 13:26:49 +00001336 *(command + cursor) = 0;
1337 len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001338 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001339 break;
Eric Andersenc470f442003-07-28 09:56:35 +00001340 case 12:
Eric Andersen65a07302002-04-13 13:26:49 +00001341 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001342 printf("\033[H");
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001343 redraw(0, len-cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001344 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001345#if MAX_HISTORY >= 1
Erik Andersenf0657d32000-04-12 17:49:52 +00001346 case 14:
1347 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001348 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001349 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001350 break;
1351 case 16:
1352 /* Control-p -- Get previous command from history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001353 if (cur_history > 0) {
1354 get_previous_history();
Erik Andersenf0657d32000-04-12 17:49:52 +00001355 goto rewrite_line;
1356 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001357 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001358 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001359 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001360#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001361 case 21:
1362 /* Control-U -- Clear line before cursor */
1363 if (cursor) {
1364 strcpy(command, command + cursor);
1365 redraw(cmdedit_y, len -= cursor);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001366 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001367 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001368 case ESC:{
1369 /* escape sequence follows */
Eric Andersen7467c8d2001-07-12 20:26:32 +00001370 if (safe_read(0, &c, 1) < 1)
1371 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001372 /* different vt100 emulations */
1373 if (c == '[' || c == 'O') {
Eric Andersen7467c8d2001-07-12 20:26:32 +00001374 if (safe_read(0, &c, 1) < 1)
1375 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001376 }
1377 switch (c) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001378#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +00001379 case '\t': /* Alt-Tab */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001380
1381 input_tab(&lastWasTab);
1382 break;
1383#endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001384#if MAX_HISTORY >= 1
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001385 case 'A':
1386 /* Up Arrow -- Get previous command from history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001387 if (cur_history > 0) {
1388 get_previous_history();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001389 goto rewrite_line;
1390 } else {
1391 beep();
1392 }
1393 break;
1394 case 'B':
1395 /* Down Arrow -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001396 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001397 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001398 /* Rewrite the line with the selected history item */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001399rewrite_line:
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001400 /* change command */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001401 len = strlen(strcpy(command, history[cur_history]));
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001402 /* redraw and go to end line */
1403 redraw(cmdedit_y, 0);
1404 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001405#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001406 case 'C':
1407 /* Right Arrow -- Move forward one character */
1408 input_forward();
1409 break;
1410 case 'D':
1411 /* Left Arrow -- Move back one character */
1412 input_backward(1);
1413 break;
1414 case '3':
1415 /* Delete */
1416 input_delete();
1417 break;
1418 case '1':
1419 case 'H':
1420 /* Home (Ctrl-A) */
1421 input_backward(cursor);
1422 break;
1423 case '4':
1424 case 'F':
1425 /* End (Ctrl-E) */
1426 input_end();
1427 break;
1428 default:
1429 if (!(c >= '1' && c <= '9'))
1430 c = 0;
1431 beep();
1432 }
1433 if (c >= '1' && c <= '9')
1434 do
Eric Andersen7467c8d2001-07-12 20:26:32 +00001435 if (safe_read(0, &c, 1) < 1)
1436 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001437 while (c != '~');
1438 break;
1439 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001440
Eric Andersenc470f442003-07-28 09:56:35 +00001441 default: /* If it's regular input, do the normal thing */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001442#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001443 /* Control-V -- Add non-printable symbol */
1444 if (c == 22) {
Eric Andersen7467c8d2001-07-12 20:26:32 +00001445 if (safe_read(0, &c, 1) < 1)
1446 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001447 if (c == 0) {
1448 beep();
1449 break;
1450 }
1451 } else
1452#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001453 if (!Isprint(c)) /* Skip non-printable characters */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001454 break;
1455
Eric Andersenc470f442003-07-28 09:56:35 +00001456 if (len >= (BUFSIZ - 2)) /* Need to leave space for enter */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001457 break;
1458
1459 len++;
1460
Eric Andersenc470f442003-07-28 09:56:35 +00001461 if (cursor == (len - 1)) { /* Append if at the end of the line */
Erik Andersenf0657d32000-04-12 17:49:52 +00001462 *(command + cursor) = c;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001463 *(command + cursor + 1) = 0;
1464 cmdedit_set_out_char(0);
Eric Andersenc470f442003-07-28 09:56:35 +00001465 } else { /* Insert otherwise */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001466 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001467
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001468 memmove(command + sc + 1, command + sc, len - sc);
1469 *(command + sc) = c;
1470 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00001471 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001472 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00001473 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001474 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001475 }
1476
Erik Andersenc7c634b2000-03-19 05:28:55 +00001477 break;
Erik Andersen13456d12000-03-16 08:09:57 +00001478 }
Eric Andersenc470f442003-07-28 09:56:35 +00001479 if (break_out) /* Enter is the command terminator, no more input. */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001480 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001481
1482 if (c != '\t')
1483 lastWasTab = FALSE;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001484 }
1485
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001486 setTermSettings(0, (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001487 handlers_sets &= ~SET_RESET_TERM;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001488
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001489#if MAX_HISTORY >= 1
Erik Andersenc7c634b2000-03-19 05:28:55 +00001490 /* Handle command history log */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001491 /* cleanup may be saved current command line */
1492 free(history[MAX_HISTORY]);
1493 history[MAX_HISTORY] = 0;
Eric Andersenc470f442003-07-28 09:56:35 +00001494 if (len) { /* no put empty line */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001495 int i = n_history;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001496 /* After max history, remove the oldest command */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001497 if (i >= MAX_HISTORY) {
1498 free(history[0]);
1499 for(i = 0; i < (MAX_HISTORY-1); i++)
1500 history[i] = history[i+1];
Erik Andersen13456d12000-03-16 08:09:57 +00001501 }
Manuel Novoa III cad53642003-03-19 09:13:01 +00001502 history[i++] = bb_xstrdup(command);
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001503 cur_history = i;
1504 n_history = i;
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001505#if defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001506 num_ok_lines++;
1507#endif
Erik Andersen6273f652000-03-17 01:12:41 +00001508 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001509#else /* MAX_HISTORY < 1 */
1510#if defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
1511 if (len) { /* no put empty line */
1512 num_ok_lines++;
1513 }
1514#endif
1515#endif /* MAX_HISTORY >= 1 */
Eric Andersenc470f442003-07-28 09:56:35 +00001516 if(break_out == 1) {
1517 command[len++] = '\n'; /* set '\n' */
1518 command[len] = 0;
Eric Andersen044228d2001-07-17 01:12:36 +00001519 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001520#if defined(CONFIG_FEATURE_CLEAN_UP) && defined(CONFIG_FEATURE_COMMAND_TAB_COMPLETION)
Eric Andersenc470f442003-07-28 09:56:35 +00001521 input_tab(0); /* strong free */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001522#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001523#if defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001524 free(cmdedit_prompt);
1525#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001526 cmdedit_reset_term();
Eric Andersenc470f442003-07-28 09:56:35 +00001527#if !defined(CONFIG_ASH)
Eric Andersen044228d2001-07-17 01:12:36 +00001528 return len;
Eric Andersenc470f442003-07-28 09:56:35 +00001529#else
1530 return break_out < 0 ? break_out : len;
1531#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001532}
1533
Eric Andersen7467c8d2001-07-12 20:26:32 +00001534
1535
Eric Andersenc470f442003-07-28 09:56:35 +00001536#endif /* CONFIG_FEATURE_COMMAND_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00001537
1538
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001539#ifdef TEST
1540
Manuel Novoa III cad53642003-03-19 09:13:01 +00001541const char *bb_applet_name = "debug stuff usage";
Eric Andersene5dfced2001-04-09 22:48:12 +00001542const char *memory_exhausted = "Memory exhausted";
1543
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001544#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001545#include <locale.h>
1546#endif
1547
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001548int main(int argc, char **argv)
1549{
1550 char buff[BUFSIZ];
1551 char *prompt =
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001552#if defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001553 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:\
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001554\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] \
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001555\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001556#else
1557 "% ";
1558#endif
1559
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001560#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001561 setlocale(LC_ALL, "");
1562#endif
Eric Andersen7467c8d2001-07-12 20:26:32 +00001563 while(1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001564 int l;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001565 cmdedit_read_input(prompt, buff);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001566 l = strlen(buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001567 if(l==0)
1568 break;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001569 if(l > 0 && buff[l-1] == '\n')
1570 buff[l-1] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001571 printf("*** cmdedit_read_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001572 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001573 printf("*** cmdedit_read_input() detect ^C\n");
1574 return 0;
1575}
1576
Eric Andersenc470f442003-07-28 09:56:35 +00001577#endif /* TEST */