blob: a2b23860322e117b9fd24b56a12578b6203aafa3 [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 Andersen5f2c79d2001-02-16 18:36:04 +00005 * Copyright (c) 1986-2001 may safely be consumed by a BSD or GPL license.
6 * Written by: Vladimir Oleynik <vodz@usa.net>
7 *
8 * Used ideas:
9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995
12 * Erik Andersen <andersee@debian.org> (Majorly adjusted for busybox)
13 *
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 Andersene5dfced2001-04-09 22:48:12 +000046#ifdef BB_LOCALE_SUPPORT
47#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 Andersenb3d6e2d2001-03-13 22:57:56 +000058#define BB_FEATURE_COMMAND_EDITING
59#define BB_FEATURE_COMMAND_TAB_COMPLETION
60#define BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen94456f52001-02-18 20:26:48 +000061#define BB_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen94456f52001-02-18 20:26:48 +000062#define BB_FEATURE_CLEAN_UP
Eric Andersen5f2c79d2001-02-16 18:36:04 +000063
Eric Andersen5f2c79d2001-02-16 18:36:04 +000064#define D(x) x
65
66#endif /* TEST */
67
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000068#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5165fbe2001-02-20 06:42:29 +000069#include <dirent.h>
70#include <sys/stat.h>
71#endif
72
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000073#ifdef BB_FEATURE_COMMAND_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000074
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000075#ifndef BB_FEATURE_COMMAND_TAB_COMPLETION
76#undef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +000077#endif
78
Eric Andersen004015e2001-05-21 20:30:51 +000079#if defined(BB_FEATURE_COMMAND_USERNAME_COMPLETION) || defined(BB_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000080#define BB_FEATURE_GETUSERNAME_AND_HOMEDIR
81#endif
82
Eric Andersen5f2c79d2001-02-16 18:36:04 +000083#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
84#ifndef TEST
Eric Andersenaf4ac772001-02-01 22:43:49 +000085#include "pwd_grp/pwd.h"
Eric Andersen5f2c79d2001-02-16 18:36:04 +000086#else
87#include <pwd.h>
88#endif /* TEST */
89#endif /* advanced FEATURES */
Eric Andersenaf4ac772001-02-01 22:43:49 +000090
91
Eric Andersen5f2c79d2001-02-16 18:36:04 +000092
93struct history {
94 char *s;
95 struct history *p;
96 struct history *n;
Mark Whitley59ab0252001-01-23 22:30:04 +000097};
98
Eric Andersen5f2c79d2001-02-16 18:36:04 +000099/* Maximum length of the linked list for the command line history */
100static const int MAX_HISTORY = 15;
Erik Andersen13456d12000-03-16 08:09:57 +0000101
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000102/* First element in command line list */
103static struct history *his_front = NULL;
104
105/* Last element in command line list */
106static struct history *his_end = NULL;
107
Erik Andersen1d1d9502000-04-21 01:26:49 +0000108
109/* ED: sparc termios is broken: revert back to old termio handling. */
Erik Andersen1d1d9502000-04-21 01:26:49 +0000110
111#if #cpu(sparc)
112# include <termio.h>
113# define termios termio
114# define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp)
115# define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp)
116#else
117# include <termios.h>
118# define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
119# define getTermSettings(fd,argp) tcgetattr(fd, argp);
120#endif
121
122/* Current termio and the previous termio before starting sh */
Eric Andersen63a86222000-11-07 06:52:13 +0000123static struct termios initial_settings, new_settings;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000124
125
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000126#ifndef _POSIX_VDISABLE
127#define _POSIX_VDISABLE '\0'
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000128#endif
129
Erik Andersen1d1d9502000-04-21 01:26:49 +0000130
Mark Whitley4e338752001-01-26 20:42:23 +0000131static
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000132volatile int cmdedit_termw = 80; /* actual terminal width */
133static int history_counter = 0; /* Number of commands in history list */
Mark Whitley4e338752001-01-26 20:42:23 +0000134static
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000135volatile int handlers_sets = 0; /* Set next bites: */
136
Mark Whitley4e338752001-01-26 20:42:23 +0000137enum {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000138 SET_ATEXIT = 1, /* when atexit() has been called
139 and get euid,uid,gid to fast compare */
140 SET_TERM_HANDLERS = 2, /* set many terminates signal handlers */
141 SET_WCHG_HANDLERS = 4, /* winchg signal handler */
142 SET_RESET_TERM = 8, /* if the terminal needs to be reset upon exit */
Mark Whitley4e338752001-01-26 20:42:23 +0000143};
Erik Andersen13456d12000-03-16 08:09:57 +0000144
Mark Whitley4e338752001-01-26 20:42:23 +0000145
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000146static int cmdedit_x; /* real x terminal position */
147static int cmdedit_y; /* pseudoreal y terminal position */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000148static int cmdedit_prmt_len; /* lenght prompt without colores string */
Eric Andersen86349772000-12-18 20:25:50 +0000149
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000150static int cursor; /* required global for signal handler */
151static int len; /* --- "" - - "" - -"- --""-- --""--- */
152static char *command_ps; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000153static
Eric Andersen004015e2001-05-21 20:30:51 +0000154#ifndef BB_FEATURE_SH_FANCY_PROMPT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000155 const
156#endif
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000157char *cmdedit_prompt; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000158
159/* Link into lash to reset context to 0 on ^C and such */
Eric Andersen86349772000-12-18 20:25:50 +0000160extern unsigned int shell_context;
161
Erik Andersen13456d12000-03-16 08:09:57 +0000162
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000163#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
164static char *user_buf = "";
165static char *home_pwd_buf = "";
166static int my_euid;
167#endif
168
Eric Andersen004015e2001-05-21 20:30:51 +0000169#ifdef BB_FEATURE_SH_FANCY_PROMPT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000170static char *hostname_buf = "";
171static int num_ok_lines = 1;
172#endif
173
174
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000175#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000176
177#ifndef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
178static int my_euid;
179#endif
180
181static int my_uid;
182static int my_gid;
183
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000184#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000185
Erik Andersen13456d12000-03-16 08:09:57 +0000186
Mark Whitley4e338752001-01-26 20:42:23 +0000187static void cmdedit_setwidth(int w, int redraw_flg);
Erik Andersen13456d12000-03-16 08:09:57 +0000188
Mark Whitley4e338752001-01-26 20:42:23 +0000189static void win_changed(int nsig)
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000190{
191 struct winsize win = { 0, 0, 0, 0 };
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000192 static __sighandler_t previous_SIGWINCH_handler; /* for reset */
Erik Andersen61677fe2000-04-13 01:18:56 +0000193
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000194 /* emulate || signal call */
195 if (nsig == -SIGWINCH || nsig == SIGWINCH) {
Mark Whitley4e338752001-01-26 20:42:23 +0000196 ioctl(0, TIOCGWINSZ, &win);
197 if (win.ws_col > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000198 cmdedit_setwidth(win.ws_col, nsig == SIGWINCH);
199 }
Mark Whitley4e338752001-01-26 20:42:23 +0000200 }
Eric Andersen4bbdd782001-01-30 22:23:17 +0000201 /* Unix not all standart in recall signal */
Mark Whitley4e338752001-01-26 20:42:23 +0000202
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000203 if (nsig == -SIGWINCH) /* save previous handler */
Mark Whitley4e338752001-01-26 20:42:23 +0000204 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000205 else if (nsig == SIGWINCH) /* signaled called handler */
206 signal(SIGWINCH, win_changed); /* set for next call */
207 else /* nsig == 0 */
208 /* set previous handler */
209 signal(SIGWINCH, previous_SIGWINCH_handler); /* reset */
Mark Whitley4e338752001-01-26 20:42:23 +0000210}
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000211
212static void cmdedit_reset_term(void)
Erik Andersen13456d12000-03-16 08:09:57 +0000213{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000214 if ((handlers_sets & SET_RESET_TERM) != 0) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000215/* sparc and other have broken termios support: use old termio handling. */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000216 setTermSettings(fileno(stdin), (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +0000217 handlers_sets &= ~SET_RESET_TERM;
218 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000219 if ((handlers_sets & SET_WCHG_HANDLERS) != 0) {
Mark Whitley4e338752001-01-26 20:42:23 +0000220 /* reset SIGWINCH handler to previous (default) */
221 win_changed(0);
222 handlers_sets &= ~SET_WCHG_HANDLERS;
223 }
224 fflush(stdout);
Eric Andersenb040d4f2000-07-25 18:01:20 +0000225#ifdef BB_FEATURE_CLEAN_UP
226 if (his_front) {
227 struct history *n;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000228
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000229 while (his_front != his_end) {
Eric Andersenb040d4f2000-07-25 18:01:20 +0000230 n = his_front->n;
231 free(his_front->s);
232 free(his_front);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000233 his_front = n;
Eric Andersenb040d4f2000-07-25 18:01:20 +0000234 }
235 }
236#endif
Erik Andersen13456d12000-03-16 08:09:57 +0000237}
238
Mark Whitley4e338752001-01-26 20:42:23 +0000239
Mark Whitley4e338752001-01-26 20:42:23 +0000240/* special for recount position for scroll and remove terminal margin effect */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000241static void cmdedit_set_out_char(int next_char)
242{
243
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000244 int c = (int)((unsigned char) command_ps[cursor]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000245
246 if (c == 0)
Eric Andersene5dfced2001-04-09 22:48:12 +0000247 c = ' '; /* destroy end char? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000248#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersene5dfced2001-04-09 22:48:12 +0000249 if (!Isprint(c)) { /* Inverse put non-printable characters */
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000250 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000251 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000252 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000253 c += '@';
254 if (c == 127)
255 c = '?';
256 printf("\033[7m%c\033[0m", c);
257 } else
258#endif
259 putchar(c);
260 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000261 /* terminal is scrolled down */
262 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000263 cmdedit_x = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000264
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000265 if (!next_char)
Mark Whitley4e338752001-01-26 20:42:23 +0000266 next_char = ' ';
267 /* destroy "(auto)margin" */
268 putchar(next_char);
269 putchar('\b');
270 }
271 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000272}
273
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000274/* Move to end line. Bonus: rewrite line from cursor */
275static void input_end(void)
276{
277 while (cursor < len)
278 cmdedit_set_out_char(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000279}
280
281/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000282static void goto_new_line(void)
283{
Mark Whitley4e338752001-01-26 20:42:23 +0000284 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000285 if (cmdedit_x)
286 putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000287}
288
289
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000290static inline void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000291{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000292 fputs(s, stdout);
293}
294static inline void beep(void)
295{
296 putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000297}
298
Mark Whitley4e338752001-01-26 20:42:23 +0000299/* Move back one charactor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000300/* special for slow terminal */
301static void input_backward(int num)
302{
303 if (num > cursor)
304 num = cursor;
Eric Andersene5dfced2001-04-09 22:48:12 +0000305 cursor -= num; /* new cursor (in command, not terminal) */
Erik Andersen13456d12000-03-16 08:09:57 +0000306
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000307 if (cmdedit_x >= num) { /* no to up line */
308 cmdedit_x -= num;
309 if (num < 4)
310 while (num-- > 0)
311 putchar('\b');
312
313 else
314 printf("\033[%dD", num);
315 } else {
316 int count_y;
317
318 if (cmdedit_x) {
319 putchar('\r'); /* back to first terminal pos. */
320 num -= cmdedit_x; /* set previous backward */
321 }
322 count_y = 1 + num / cmdedit_termw;
323 printf("\033[%dA", count_y);
324 cmdedit_y -= count_y;
325 /* require forward after uping */
326 cmdedit_x = cmdedit_termw * count_y - num;
327 printf("\033[%dC", cmdedit_x); /* set term cursor */
Erik Andersen13456d12000-03-16 08:09:57 +0000328 }
Erik Andersen13456d12000-03-16 08:09:57 +0000329}
330
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000331static void put_prompt(void)
332{
333 out1str(cmdedit_prompt);
334 cmdedit_x = cmdedit_prmt_len; /* count real x terminal position */
335 cursor = 0;
336}
337
Eric Andersen004015e2001-05-21 20:30:51 +0000338#ifndef BB_FEATURE_SH_FANCY_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000339static void parse_prompt(const char *prmt_ptr)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000340{
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000341 cmdedit_prompt = prmt_ptr;
342 cmdedit_prmt_len = strlen(prmt_ptr);
343 put_prompt();
344}
345#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000346static void parse_prompt(const char *prmt_ptr)
347{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000348 int prmt_len = 0;
349 int sub_len = 0;
Eric Andersene5dfced2001-04-09 22:48:12 +0000350 char flg_not_length = '[';
351 char *prmt_mem_ptr = xcalloc(1, 1);
352 char *pwd_buf = xgetcwd(0);
353 char buf2[PATH_MAX + 1];
354 char buf[2];
355 char c;
356 char *pbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000357
Eric Andersen5f265b72001-05-11 16:58:46 +0000358 if (!pwd_buf) {
359 pwd_buf=unknown;
360 }
361
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000362 while (*prmt_ptr) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000363 pbuf = buf;
364 pbuf[1] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000365 c = *prmt_ptr++;
366 if (c == '\\') {
Eric Andersene5dfced2001-04-09 22:48:12 +0000367 const char *cp = prmt_ptr;
368 int l;
369
370 c = process_escape_sequence(&prmt_ptr);
371 if(prmt_ptr==cp) {
372 if (*cp == 0)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000373 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000374 c = *prmt_ptr++;
375 switch (c) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000376#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersene5dfced2001-04-09 22:48:12 +0000377 case 'u':
378 pbuf = user_buf;
379 break;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000380#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000381 case 'h':
382 pbuf = hostname_buf;
383 if (*pbuf == 0) {
384 pbuf = xcalloc(256, 1);
385 if (gethostname(pbuf, 255) < 0) {
386 strcpy(pbuf, "?");
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000387 } else {
Eric Andersene5dfced2001-04-09 22:48:12 +0000388 char *s = strchr(pbuf, '.');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000389
390 if (s)
391 *s = 0;
392 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000393 hostname_buf = pbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000394 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000395 break;
396 case '$':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000397 c = my_euid == 0 ? '#' : '$';
398 break;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000399#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersene5dfced2001-04-09 22:48:12 +0000400 case 'w':
401 pbuf = pwd_buf;
402 l = strlen(home_pwd_buf);
403 if (home_pwd_buf[0] != 0 &&
404 strncmp(home_pwd_buf, pbuf, l) == 0 &&
405 (pbuf[l]=='/' || pbuf[l]=='\0') &&
406 strlen(pwd_buf+l)<PATH_MAX) {
407 pbuf = buf2;
408 *pbuf = '~';
409 strcpy(pbuf+1, pwd_buf+l);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000410 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000411 break;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000412#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000413 case 'W':
414 pbuf = pwd_buf;
415 cp = strrchr(pbuf,'/');
416 if ( (cp != NULL) && (cp != pbuf) )
417 pbuf += (cp-pbuf)+1;
418 break;
419 case '!':
420 snprintf(pbuf = buf2, sizeof(buf2), "%d", num_ok_lines);
421 break;
422 case 'e': case 'E': /* \e \E = \033 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000423 c = '\033';
424 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000425 case 'x': case 'X':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000426 for (l = 0; l < 3;) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000427 int h;
428 buf2[l++] = *prmt_ptr;
429 buf2[l] = 0;
430 h = strtol(buf2, &pbuf, 16);
431 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000432 l--;
433 break;
434 }
435 prmt_ptr++;
436 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000437 buf2[l] = 0;
438 c = (char)strtol(buf2, 0, 16);
439 if(c==0)
440 c = '?';
441 pbuf = buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000442 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000443 case '[': case ']':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000444 if (c == flg_not_length) {
445 flg_not_length = flg_not_length == '[' ? ']' : '[';
446 continue;
447 }
448 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000449 }
450 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000451 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000452 if(pbuf == buf)
453 *pbuf = c;
454 prmt_len += strlen(pbuf);
455 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000456 if (flg_not_length == ']')
457 sub_len++;
458 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000459 free(pwd_buf);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000460 cmdedit_prompt = prmt_mem_ptr;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000461 cmdedit_prmt_len = prmt_len - sub_len;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000462 put_prompt();
463}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000464#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000465
466
467/* draw promt, editor line, and clear tail */
468static void redraw(int y, int back_cursor)
469{
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000470 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000471 printf("\033[%dA", y);
472 cmdedit_y = 0; /* new quasireal y */
473 putchar('\r');
474 put_prompt();
475 input_end(); /* rewrite */
476 printf("\033[J"); /* destroy tail after cursor */
477 input_backward(back_cursor);
478}
479
Erik Andersenf0657d32000-04-12 17:49:52 +0000480/* Delete the char in front of the cursor */
Mark Whitley4e338752001-01-26 20:42:23 +0000481static void input_delete(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000482{
Mark Whitley4e338752001-01-26 20:42:23 +0000483 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000484
Mark Whitley4e338752001-01-26 20:42:23 +0000485 if (j == len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000486 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000487
488 strcpy(command_ps + j, command_ps + j + 1);
Mark Whitley4e338752001-01-26 20:42:23 +0000489 len--;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000490 input_end(); /* rewtite new line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000491 cmdedit_set_out_char(0); /* destroy end char */
492 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000493}
494
Mark Whitley4e338752001-01-26 20:42:23 +0000495/* Delete the char in back of the cursor */
496static void input_backspace(void)
497{
498 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000499 input_backward(1);
500 input_delete();
Mark Whitley4e338752001-01-26 20:42:23 +0000501 }
502}
503
504
Erik Andersenf0657d32000-04-12 17:49:52 +0000505/* Move forward one charactor */
Mark Whitley4e338752001-01-26 20:42:23 +0000506static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000507{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000508 if (cursor < len)
509 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000510}
511
512
Mark Whitley4e338752001-01-26 20:42:23 +0000513static void clean_up_and_die(int sig)
514{
515 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000516 if (sig != SIGINT)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000517 exit(EXIT_SUCCESS); /* cmdedit_reset_term() called in atexit */
Mark Whitley4e338752001-01-26 20:42:23 +0000518 cmdedit_reset_term();
519}
520
521static void cmdedit_setwidth(int w, int redraw_flg)
522{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000523 cmdedit_termw = cmdedit_prmt_len + 2;
Eric Andersen6faae7d2001-02-16 20:09:17 +0000524 if (w <= cmdedit_termw) {
525 cmdedit_termw = cmdedit_termw % w;
526 }
Mark Whitley4e338752001-01-26 20:42:23 +0000527 if (w > cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000528 cmdedit_termw = w;
529
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000530 if (redraw_flg) {
531 /* new y for current cursor */
532 int new_y = (cursor + cmdedit_prmt_len) / w;
Mark Whitley4e338752001-01-26 20:42:23 +0000533
534 /* redraw */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000535 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), len - cursor);
536 fflush(stdout);
Mark Whitley4e338752001-01-26 20:42:23 +0000537 }
Eric Andersen6faae7d2001-02-16 20:09:17 +0000538 }
Mark Whitley4e338752001-01-26 20:42:23 +0000539}
540
541extern void cmdedit_init(void)
542{
Eric Andersen61173a52001-03-19 17:48:55 +0000543 cmdedit_prmt_len = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000544 if ((handlers_sets & SET_WCHG_HANDLERS) == 0) {
545 /* emulate usage handler to set handler and call yours work */
Mark Whitley4e338752001-01-26 20:42:23 +0000546 win_changed(-SIGWINCH);
547 handlers_sets |= SET_WCHG_HANDLERS;
548 }
549
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000550 if ((handlers_sets & SET_ATEXIT) == 0) {
551#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
552 struct passwd *entry;
553
554 my_euid = geteuid();
555 entry = getpwuid(my_euid);
556 if (entry) {
557 user_buf = xstrdup(entry->pw_name);
558 home_pwd_buf = xstrdup(entry->pw_dir);
559 }
560#endif
561
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000562#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000563
564#ifndef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
565 my_euid = geteuid();
566#endif
567 my_uid = getuid();
568 my_gid = getgid();
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000569#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000570 handlers_sets |= SET_ATEXIT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000571 atexit(cmdedit_reset_term); /* be sure to do this only once */
Mark Whitley4e338752001-01-26 20:42:23 +0000572 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000573
574 if ((handlers_sets & SET_TERM_HANDLERS) == 0) {
Mark Whitley4e338752001-01-26 20:42:23 +0000575 signal(SIGKILL, clean_up_and_die);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000576 signal(SIGINT, clean_up_and_die);
Mark Whitley4e338752001-01-26 20:42:23 +0000577 signal(SIGQUIT, clean_up_and_die);
578 signal(SIGTERM, clean_up_and_die);
579 handlers_sets |= SET_TERM_HANDLERS;
580 }
581}
Erik Andersenf0657d32000-04-12 17:49:52 +0000582
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000583#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000584
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000585static int is_execute(const struct stat *st)
Erik Andersen6273f652000-03-17 01:12:41 +0000586{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000587 if ((!my_euid && (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) ||
588 (my_uid == st->st_uid && (st->st_mode & S_IXUSR)) ||
589 (my_gid == st->st_gid && (st->st_mode & S_IXGRP)) ||
590 (st->st_mode & S_IXOTH)) return TRUE;
591 return FALSE;
Erik Andersen6273f652000-03-17 01:12:41 +0000592}
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000593
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000594#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000595
596static char **username_tab_completion(char *ud, int *num_matches)
597{
598 struct passwd *entry;
599 int userlen;
600 char *temp;
601
602
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000603 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000604 userlen = strlen(ud);
605
606 if (num_matches == 0) { /* "~/..." or "~user/..." */
607 char *sav_ud = ud - 1;
608 char *home = 0;
609
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000610 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000611 home = home_pwd_buf;
612 } else {
613 /* "~user/..." */
614 temp = strchr(ud, '/');
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000615 *temp = 0; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000616 entry = getpwnam(ud);
617 *temp = '/'; /* restore ~user/... */
618 ud = temp;
619 if (entry)
620 home = entry->pw_dir;
621 }
622 if (home) {
623 if ((userlen + strlen(home) + 1) < BUFSIZ) {
624 char temp2[BUFSIZ]; /* argument size */
625
626 /* /home/user/... */
627 sprintf(temp2, "%s%s", home, ud);
628 strcpy(sav_ud, temp2);
629 }
630 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000631 return 0; /* void, result save to argument :-) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000632 } else {
633 /* "~[^/]*" */
634 char **matches = (char **) NULL;
635 int nm = 0;
636
637 setpwent();
638
639 while ((entry = getpwent()) != NULL) {
640 /* Null usernames should result in all users as possible completions. */
641 if ( /*!userlen || */ !strncmp(ud, entry->pw_name, userlen)) {
642
643 temp = xmalloc(3 + strlen(entry->pw_name));
644 sprintf(temp, "~%s/", entry->pw_name);
645 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
646
647 matches[nm++] = temp;
648 }
649 }
650
651 endpwent();
652 (*num_matches) = nm;
653 return (matches);
654 }
655}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000656#endif /* BB_FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000657
658enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000659 FIND_EXE_ONLY = 0,
660 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000661 FIND_FILE_ONLY = 2,
662};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000663
Mark Whitley4e338752001-01-26 20:42:23 +0000664static int path_parse(char ***p, int flags)
665{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000666 int npth;
Mark Whitley4e338752001-01-26 20:42:23 +0000667 char *tmp;
668 char *pth;
669
Mark Whitley4e338752001-01-26 20:42:23 +0000670 /* if not setenv PATH variable, to search cur dir "." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000671 if (flags != FIND_EXE_ONLY || (pth = getenv("PATH")) == 0 ||
672 /* PATH=<empty> or PATH=:<empty> */
673 *pth == 0 || (*pth == ':' && *(pth + 1) == 0)) {
Mark Whitley4e338752001-01-26 20:42:23 +0000674 return 1;
675 }
676
677 tmp = pth;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000678 npth = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000679
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000680 for (;;) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000681 npth++; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000682 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000683 if (tmp) {
684 if (*++tmp == 0)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000685 break; /* :<empty> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000686 } else
Mark Whitley4e338752001-01-26 20:42:23 +0000687 break;
688 }
689
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000690 *p = xmalloc(npth * sizeof(char *));
Mark Whitley4e338752001-01-26 20:42:23 +0000691
692 tmp = pth;
693 (*p)[0] = xstrdup(tmp);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000694 npth = 1; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000695
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000696 for (;;) {
Mark Whitley4e338752001-01-26 20:42:23 +0000697 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000698 if (tmp) {
699 (*p)[0][(tmp - pth)] = 0; /* ':' -> '\0' */
700 if (*++tmp == 0)
701 break; /* :<empty> */
Mark Whitley4e338752001-01-26 20:42:23 +0000702 } else
703 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000704 (*p)[npth++] = &(*p)[0][(tmp - pth)]; /* p[next]=p[0][&'\0'+1] */
Mark Whitley4e338752001-01-26 20:42:23 +0000705 }
706
707 return npth;
708}
709
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000710static char *add_quote_for_spec_chars(char *found)
Erik Andersen6273f652000-03-17 01:12:41 +0000711{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000712 int l = 0;
713 char *s = xmalloc((strlen(found) + 1) * 2);
714
715 while (*found) {
716 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
717 s[l++] = '\\';
718 s[l++] = *found++;
719 }
720 s[l] = 0;
721 return s;
722}
723
724static char **exe_n_cwd_tab_completion(char *command, int *num_matches,
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000725 int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000726{
727
728 char **matches = 0;
Erik Andersen1dbe3402000-03-19 10:46:06 +0000729 DIR *dir;
730 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000731 char dirbuf[BUFSIZ];
732 int nm = *num_matches;
733 struct stat st;
734 char *path1[1];
735 char **paths = path1;
736 int npaths;
737 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000738 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000739 char *pfind = strrchr(command, '/');
Mark Whitley4e338752001-01-26 20:42:23 +0000740
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000741 path1[0] = ".";
Mark Whitley4e338752001-01-26 20:42:23 +0000742
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000743 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000744 /* no dir, if flags==EXE_ONLY - get paths, else "." */
745 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000746 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000747 } else {
748 /* with dir */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000749 /* save for change */
750 strcpy(dirbuf, command);
751 /* set dir only */
752 dirbuf[(pfind - command) + 1] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000753#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000754 if (dirbuf[0] == '~') /* ~/... or ~user/... */
755 username_tab_completion(dirbuf, 0);
756#endif
757 /* "strip" dirname in command */
758 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000759
Mark Whitley4e338752001-01-26 20:42:23 +0000760 paths[0] = dirbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000761 npaths = 1; /* only 1 dir */
Mark Whitley4e338752001-01-26 20:42:23 +0000762 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000763
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000764 for (i = 0; i < npaths; i++) {
Erik Andersenc7c634b2000-03-19 05:28:55 +0000765
Mark Whitley4e338752001-01-26 20:42:23 +0000766 dir = opendir(paths[i]);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000767 if (!dir) /* Don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000768 continue;
769
770 while ((next = readdir(dir)) != NULL) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000771 char *str_found = next->d_name;
772
Mark Whitley4e338752001-01-26 20:42:23 +0000773 /* matched ? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000774 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000775 continue;
776 /* not see .name without .match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000777 if (*str_found == '.' && *pfind == 0) {
778 if (*paths[i] == '/' && paths[i][1] == 0
779 && str_found[1] == 0) str_found = ""; /* only "/" */
780 else
Mark Whitley4e338752001-01-26 20:42:23 +0000781 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000782 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000783 found = concat_path_file(paths[i], str_found);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000784 /* hmm, remover in progress? */
Eric Andersene5dfced2001-04-09 22:48:12 +0000785 if (stat(found, &st) < 0)
786 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000787 /* find with dirs ? */
788 if (paths[i] != dirbuf)
789 strcpy(found, next->d_name); /* only name */
Mark Whitley4e338752001-01-26 20:42:23 +0000790 if (S_ISDIR(st.st_mode)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000791 /* name is directory */
Eric Andersene5dfced2001-04-09 22:48:12 +0000792 str_found = found;
793 found = concat_path_file(found, "");
794 free(str_found);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000795 str_found = add_quote_for_spec_chars(found);
Mark Whitley4e338752001-01-26 20:42:23 +0000796 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000797 /* not put found file if search only dirs for cd */
Eric Andersene5dfced2001-04-09 22:48:12 +0000798 if (type == FIND_DIR_ONLY)
799 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000800 str_found = add_quote_for_spec_chars(found);
801 if (type == FIND_FILE_ONLY ||
802 (type == FIND_EXE_ONLY && is_execute(&st) == TRUE))
803 strcat(str_found, " ");
804 }
Mark Whitley4e338752001-01-26 20:42:23 +0000805 /* Add it to the list */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000806 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
807
808 matches[nm++] = str_found;
Eric Andersene5dfced2001-04-09 22:48:12 +0000809cont:
810 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000811 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000812 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000813 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000814 if (paths != path1) {
815 free(paths[0]); /* allocated memory only in first member */
816 free(paths);
817 }
Mark Whitley4e338752001-01-26 20:42:23 +0000818 *num_matches = nm;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000819 return (matches);
Erik Andersen6273f652000-03-17 01:12:41 +0000820}
Erik Andersenf0657d32000-04-12 17:49:52 +0000821
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000822static int match_compare(const void *a, const void *b)
823{
824 return strcmp(*(char **) a, *(char **) b);
825}
826
827
828
829#define QUOT (UCHAR_MAX+1)
830
831#define collapse_pos(is, in) { \
832 memcpy(int_buf+is, int_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); \
833 memcpy(pos_buf+is, pos_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); }
834
835static int find_match(char *matchBuf, int *len_with_quotes)
836{
837 int i, j;
838 int command_mode;
839 int c, c2;
840 int int_buf[BUFSIZ + 1];
841 int pos_buf[BUFSIZ + 1];
842
843 /* set to integer dimension characters and own positions */
844 for (i = 0;; i++) {
845 int_buf[i] = (int) ((unsigned char) matchBuf[i]);
846 if (int_buf[i] == 0) {
847 pos_buf[i] = -1; /* indicator end line */
848 break;
849 } else
850 pos_buf[i] = i;
851 }
852
853 /* mask \+symbol and convert '\t' to ' ' */
854 for (i = j = 0; matchBuf[i]; i++, j++)
855 if (matchBuf[i] == '\\') {
856 collapse_pos(j, j + 1);
857 int_buf[j] |= QUOT;
858 i++;
859#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
860 if (matchBuf[i] == '\t') /* algorithm equivalent */
861 int_buf[j] = ' ' | QUOT;
862#endif
863 }
864#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
865 else if (matchBuf[i] == '\t')
866 int_buf[j] = ' ';
867#endif
868
869 /* mask "symbols" or 'symbols' */
870 c2 = 0;
871 for (i = 0; int_buf[i]; i++) {
872 c = int_buf[i];
873 if (c == '\'' || c == '"') {
874 if (c2 == 0)
875 c2 = c;
876 else {
877 if (c == c2)
878 c2 = 0;
879 else
880 int_buf[i] |= QUOT;
881 }
882 } else if (c2 != 0 && c != '$')
883 int_buf[i] |= QUOT;
884 }
885
886 /* skip commands with arguments if line have commands delimiters */
887 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
888 for (i = 0; int_buf[i]; i++) {
889 c = int_buf[i];
890 c2 = int_buf[i + 1];
891 j = i ? int_buf[i - 1] : -1;
892 command_mode = 0;
893 if (c == ';' || c == '&' || c == '|') {
894 command_mode = 1 + (c == c2);
895 if (c == '&') {
896 if (j == '>' || j == '<')
897 command_mode = 0;
898 } else if (c == '|' && j == '>')
899 command_mode = 0;
900 }
901 if (command_mode) {
902 collapse_pos(0, i + command_mode);
903 i = -1; /* hack incremet */
904 }
905 }
906 /* collapse `command...` */
907 for (i = 0; int_buf[i]; i++)
908 if (int_buf[i] == '`') {
909 for (j = i + 1; int_buf[j]; j++)
910 if (int_buf[j] == '`') {
911 collapse_pos(i, j + 1);
912 j = 0;
913 break;
914 }
915 if (j) {
916 /* not found close ` - command mode, collapse all previous */
917 collapse_pos(0, i + 1);
918 break;
919 } else
920 i--; /* hack incremet */
921 }
922
923 /* collapse (command...(command...)...) or {command...{command...}...} */
924 c = 0; /* "recursive" level */
925 c2 = 0;
926 for (i = 0; int_buf[i]; i++)
927 if (int_buf[i] == '(' || int_buf[i] == '{') {
928 if (int_buf[i] == '(')
929 c++;
930 else
931 c2++;
932 collapse_pos(0, i + 1);
933 i = -1; /* hack incremet */
934 }
935 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
936 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
937 if (int_buf[i] == ')')
938 c--;
939 else
940 c2--;
941 collapse_pos(0, i + 1);
942 i = -1; /* hack incremet */
943 }
944
945 /* skip first not quote space */
946 for (i = 0; int_buf[i]; i++)
947 if (int_buf[i] != ' ')
948 break;
949 if (i)
950 collapse_pos(0, i);
951
952 /* set find mode for completion */
953 command_mode = FIND_EXE_ONLY;
954 for (i = 0; int_buf[i]; i++)
955 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
956 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000957 && matchBuf[pos_buf[0]]=='c'
958 && matchBuf[pos_buf[1]]=='d' )
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000959 command_mode = FIND_DIR_ONLY;
960 else {
961 command_mode = FIND_FILE_ONLY;
962 break;
963 }
964 }
965 /* "strlen" */
966 for (i = 0; int_buf[i]; i++);
967 /* find last word */
968 for (--i; i >= 0; i--) {
969 c = int_buf[i];
970 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
971 collapse_pos(0, i + 1);
972 break;
973 }
974 }
975 /* skip first not quoted '\'' or '"' */
976 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++);
977 /* collapse quote or unquote // or /~ */
Mark Whitley7e5291f2001-03-08 19:31:12 +0000978 while ((int_buf[i] & ~QUOT) == '/' &&
979 ((int_buf[i + 1] & ~QUOT) == '/'
980 || (int_buf[i + 1] & ~QUOT) == '~')) {
981 i++;
982 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000983
984 /* set only match and destroy quotes */
985 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000986 for (c = 0; pos_buf[i] >= 0; i++) {
987 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000988 j = pos_buf[i] + 1;
989 }
Eric Andersen4f990532001-05-31 17:15:57 +0000990 matchBuf[c] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000991 /* old lenght matchBuf with quotes symbols */
992 *len_with_quotes = j ? j - pos_buf[0] : 0;
993
994 return command_mode;
995}
996
997
998static void input_tab(int *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000999{
1000 /* Do TAB completion */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001001 static int num_matches;
Mark Whitley4e338752001-01-26 20:42:23 +00001002 static char **matches;
1003
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001004 if (lastWasTab == 0) { /* free all memory */
Erik Andersenf0657d32000-04-12 17:49:52 +00001005 if (matches) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001006 while (num_matches > 0)
Mark Whitley4e338752001-01-26 20:42:23 +00001007 free(matches[--num_matches]);
Erik Andersenf0657d32000-04-12 17:49:52 +00001008 free(matches);
1009 matches = (char **) NULL;
1010 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001011 return;
1012 }
1013 if (*lastWasTab == FALSE) {
1014
1015 char *tmp;
1016 int len_found;
1017 char matchBuf[BUFSIZ];
1018 int find_type;
1019 int recalc_pos;
1020
1021 *lastWasTab = TRUE; /* flop trigger */
1022
1023 /* Make a local copy of the string -- up
1024 * to the position of the cursor */
1025 tmp = strncpy(matchBuf, command_ps, cursor);
1026 tmp[cursor] = 0;
1027
1028 find_type = find_match(matchBuf, &recalc_pos);
1029
1030 /* Free up any memory already allocated */
1031 input_tab(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001032
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001033#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001034 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001035 * then try completing this word as a username. */
1036
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001037 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
Mark Whitley4e338752001-01-26 20:42:23 +00001038 matches = username_tab_completion(matchBuf, &num_matches);
Mark Whitley4e338752001-01-26 20:42:23 +00001039#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001040 /* Try to match any executable in our path and everything
Erik Andersenf0657d32000-04-12 17:49:52 +00001041 * in the current working directory that matches. */
1042 if (!matches)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001043 matches =
1044 exe_n_cwd_tab_completion(matchBuf, &num_matches,
1045 find_type);
Erik Andersenf0657d32000-04-12 17:49:52 +00001046
1047 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001048 if (!matches || num_matches > 1) {
1049 char *tmp1;
1050
Mark Whitley4e338752001-01-26 20:42:23 +00001051 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001052 if (!matches)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001053 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001054 /* sort */
1055 qsort(matches, num_matches, sizeof(char *), match_compare);
1056
1057 /* find minimal match */
1058 tmp = xstrdup(matches[0]);
1059 for (tmp1 = tmp; *tmp1; tmp1++)
1060 for (len_found = 1; len_found < num_matches; len_found++)
1061 if (matches[len_found][(tmp1 - tmp)] != *tmp1) {
1062 *tmp1 = 0;
1063 break;
1064 }
1065 if (*tmp == 0) { /* have unique */
1066 free(tmp);
1067 return;
1068 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001069 } else { /* one match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001070 tmp = matches[0];
1071 /* for next completion current found */
1072 *lastWasTab = FALSE;
Mark Whitley4e338752001-01-26 20:42:23 +00001073 }
1074
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001075 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +00001076 /* have space to placed match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001077 if ((len_found - strlen(matchBuf) + len) < BUFSIZ) {
Mark Whitley4e338752001-01-26 20:42:23 +00001078
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001079 /* before word for match */
1080 command_ps[cursor - recalc_pos] = 0;
1081 /* save tail line */
1082 strcpy(matchBuf, command_ps + cursor);
1083 /* add match */
1084 strcat(command_ps, tmp);
1085 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +00001086 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001087 /* back to begin word for match */
1088 input_backward(recalc_pos);
1089 /* new pos */
1090 recalc_pos = cursor + len_found;
1091 /* new len */
1092 len = strlen(command_ps);
1093 /* write out the matched command */
Eric Andersen4f990532001-05-31 17:15:57 +00001094 redraw(cmdedit_y, len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001095 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001096 if (tmp != matches[0])
1097 free(tmp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001098 } else {
1099 /* Ok -- the last char was a TAB. Since they
1100 * just hit TAB again, print a list of all the
1101 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001102 if (matches && num_matches > 0) {
1103 int i, col, l;
1104 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +00001105
1106 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001107 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001108 for (i = 0, col = 0; i < num_matches; i++) {
1109 l = strlen(matches[i]);
1110 if (l < 14)
1111 l = 14;
1112 printf("%-14s ", matches[i]);
1113 if ((l += 2) > 16)
1114 while (l % 16) {
1115 putchar(' ');
1116 l++;
1117 }
1118 col += l;
1119 col -= (col / cmdedit_termw) * cmdedit_termw;
1120 if (col > 60 && matches[i + 1] != NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +00001121 putchar('\n');
Erik Andersenf0657d32000-04-12 17:49:52 +00001122 col = 0;
1123 }
1124 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001125 /* Go to the next line and rewrite */
1126 putchar('\n');
1127 redraw(0, len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001128 }
1129 }
1130}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001131#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001132
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001133static void get_previous_history(struct history **hp, struct history *p)
Erik Andersenf0657d32000-04-12 17:49:52 +00001134{
Eric Andersen91a44002000-07-19 17:37:57 +00001135 if ((*hp)->s)
1136 free((*hp)->s);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001137 (*hp)->s = xstrdup(command_ps);
1138 *hp = p;
Erik Andersenf0657d32000-04-12 17:49:52 +00001139}
1140
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001141static inline void get_next_history(struct history **hp)
Erik Andersenf0657d32000-04-12 17:49:52 +00001142{
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001143 get_previous_history(hp, (*hp)->n);
Erik Andersenf0657d32000-04-12 17:49:52 +00001144}
1145
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001146enum {
1147 ESC = 27,
1148 DEL = 127,
1149};
1150
1151
Erik Andersen6273f652000-03-17 01:12:41 +00001152/*
1153 * This function is used to grab a character buffer
1154 * from the input file descriptor and allows you to
1155 * a string with full command editing (sortof like
1156 * a mini readline).
1157 *
1158 * The following standard commands are not implemented:
1159 * ESC-b -- Move back one word
1160 * ESC-f -- Move forward one word
1161 * ESC-d -- Delete back one word
1162 * ESC-h -- Delete forward one word
1163 * CTL-t -- Transpose two characters
1164 *
1165 * Furthermore, the "vi" command editing keys are not implemented.
1166 *
Erik Andersen6273f652000-03-17 01:12:41 +00001167 */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001168
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001169extern void cmdedit_read_input(char *prompt, char command[BUFSIZ])
Erik Andersen13456d12000-03-16 08:09:57 +00001170{
1171
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001172 int inputFd = fileno(stdin);
Mark Whitley4e338752001-01-26 20:42:23 +00001173
Erik Andersenc7c634b2000-03-19 05:28:55 +00001174 int break_out = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001175 int lastWasTab = FALSE;
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001176 unsigned char c = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001177 struct history *hp = his_end;
Erik Andersen13456d12000-03-16 08:09:57 +00001178
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001179 /* prepare before init handlers */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001180 cmdedit_y = 0; /* quasireal y, not true work if line > xt*yt */
Mark Whitley4e338752001-01-26 20:42:23 +00001181 len = 0;
Mark Whitley4e338752001-01-26 20:42:23 +00001182 command_ps = command;
1183
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001184 if (new_settings.c_cc[VMIN] == 0) { /* first call */
1185
1186 getTermSettings(inputFd, (void *) &initial_settings);
Erik Andersen1d1d9502000-04-21 01:26:49 +00001187 memcpy(&new_settings, &initial_settings, sizeof(struct termios));
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001188
Erik Andersen1d1d9502000-04-21 01:26:49 +00001189 new_settings.c_cc[VMIN] = 1;
1190 new_settings.c_cc[VTIME] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001191 /* Turn off CTRL-C, so we can trap it */
1192 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001193 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001194 /* Turn off echoing */
1195 new_settings.c_lflag &= ~(ECHO | ECHOCTL | ECHONL);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001196 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001197
1198 command[0] = 0;
1199
1200 setTermSettings(inputFd, (void *) &new_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001201 handlers_sets |= SET_RESET_TERM;
Erik Andersen13456d12000-03-16 08:09:57 +00001202
Eric Andersen6faae7d2001-02-16 20:09:17 +00001203 /* Now initialize things */
1204 cmdedit_init();
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001205 /* Print out the command prompt */
1206 parse_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001207
Erik Andersenc7c634b2000-03-19 05:28:55 +00001208 while (1) {
Erik Andersen6273f652000-03-17 01:12:41 +00001209
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001210 fflush(stdout); /* buffered out to fast */
Mark Whitley4e338752001-01-26 20:42:23 +00001211
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001212 if (read(inputFd, &c, 1) < 1)
Eric Andersened424db2001-04-23 15:28:28 +00001213 /* if we can't read input then exit */
1214 goto prepare_to_die;
Erik Andersenf3b3d172000-04-09 18:24:05 +00001215
Erik Andersen13456d12000-03-16 08:09:57 +00001216 switch (c) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001217 case '\n':
1218 case '\r':
1219 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001220 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001221 break_out = 1;
1222 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001223 case 1:
1224 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001225 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001226 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001227 case 2:
1228 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001229 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001230 break;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001231 case 3:
Eric Andersen86349772000-12-18 20:25:50 +00001232 /* Control-c -- stop gathering input */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001233
Eric Andersen86349772000-12-18 20:25:50 +00001234 /* Link into lash to reset context to 0 on ^C and such */
1235 shell_context = 0;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001236
1237 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001238 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001239 command[0] = 0;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001240
Eric Andersen86349772000-12-18 20:25:50 +00001241 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001242 case 4:
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001243 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001244 * if the len=0 and no chars to delete */
1245 if (len == 0) {
Eric Andersened424db2001-04-23 15:28:28 +00001246prepare_to_die:
Mark Whitley4e338752001-01-26 20:42:23 +00001247 printf("exit");
Erik Andersenf0657d32000-04-12 17:49:52 +00001248 clean_up_and_die(0);
1249 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001250 input_delete();
Erik Andersenf0657d32000-04-12 17:49:52 +00001251 }
1252 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001253 case 5:
1254 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001255 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001256 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001257 case 6:
1258 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001259 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001260 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001261 case '\b':
1262 case DEL:
Erik Andersen1d1d9502000-04-21 01:26:49 +00001263 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001264 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001265 break;
1266 case '\t':
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001267#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001268 input_tab(&lastWasTab);
Erik Andersena2685732000-04-09 18:27:46 +00001269#endif
Erik Andersenc7c634b2000-03-19 05:28:55 +00001270 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001271 case 14:
1272 /* Control-n -- Get next command in history */
1273 if (hp && hp->n && hp->n->s) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001274 get_next_history(&hp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001275 goto rewrite_line;
1276 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001277 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001278 }
1279 break;
1280 case 16:
1281 /* Control-p -- Get previous command from history */
1282 if (hp && hp->p) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001283 get_previous_history(&hp, hp->p);
Erik Andersenf0657d32000-04-12 17:49:52 +00001284 goto rewrite_line;
1285 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001286 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001287 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001288 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001289 case 21:
1290 /* Control-U -- Clear line before cursor */
1291 if (cursor) {
1292 strcpy(command, command + cursor);
1293 redraw(cmdedit_y, len -= cursor);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001294 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001295 break;
1296
1297 case ESC:{
1298 /* escape sequence follows */
1299 if (read(inputFd, &c, 1) < 1)
1300 return;
1301 /* different vt100 emulations */
1302 if (c == '[' || c == 'O') {
1303 if (read(inputFd, &c, 1) < 1)
1304 return;
1305 }
1306 switch (c) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001307#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001308 case '\t': /* Alt-Tab */
1309
1310 input_tab(&lastWasTab);
1311 break;
1312#endif
1313 case 'A':
1314 /* Up Arrow -- Get previous command from history */
1315 if (hp && hp->p) {
1316 get_previous_history(&hp, hp->p);
1317 goto rewrite_line;
1318 } else {
1319 beep();
1320 }
1321 break;
1322 case 'B':
1323 /* Down Arrow -- Get next command in history */
1324 if (hp && hp->n && hp->n->s) {
1325 get_next_history(&hp);
1326 goto rewrite_line;
1327 } else {
1328 beep();
1329 }
1330 break;
1331
1332 /* Rewrite the line with the selected history item */
1333 rewrite_line:
1334 /* change command */
1335 len = strlen(strcpy(command, hp->s));
1336 /* redraw and go to end line */
1337 redraw(cmdedit_y, 0);
1338 break;
1339 case 'C':
1340 /* Right Arrow -- Move forward one character */
1341 input_forward();
1342 break;
1343 case 'D':
1344 /* Left Arrow -- Move back one character */
1345 input_backward(1);
1346 break;
1347 case '3':
1348 /* Delete */
1349 input_delete();
1350 break;
1351 case '1':
1352 case 'H':
1353 /* Home (Ctrl-A) */
1354 input_backward(cursor);
1355 break;
1356 case '4':
1357 case 'F':
1358 /* End (Ctrl-E) */
1359 input_end();
1360 break;
1361 default:
1362 if (!(c >= '1' && c <= '9'))
1363 c = 0;
1364 beep();
1365 }
1366 if (c >= '1' && c <= '9')
1367 do
1368 if (read(inputFd, &c, 1) < 1)
1369 return;
1370 while (c != '~');
1371 break;
1372 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001373
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001374 default: /* If it's regular input, do the normal thing */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001375#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1376 /* Control-V -- Add non-printable symbol */
1377 if (c == 22) {
1378 if (read(inputFd, &c, 1) < 1)
1379 return;
1380 if (c == 0) {
1381 beep();
1382 break;
1383 }
1384 } else
1385#endif
Eric Andersene5dfced2001-04-09 22:48:12 +00001386 if (!Isprint(c)) /* Skip non-printable characters */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001387 break;
1388
1389 if (len >= (BUFSIZ - 2)) /* Need to leave space for enter */
1390 break;
1391
1392 len++;
1393
1394 if (cursor == (len - 1)) { /* Append if at the end of the line */
Erik Andersenf0657d32000-04-12 17:49:52 +00001395 *(command + cursor) = c;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001396 *(command + cursor + 1) = 0;
1397 cmdedit_set_out_char(0);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001398 } else { /* Insert otherwise */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001399 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001400
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001401 memmove(command + sc + 1, command + sc, len - sc);
1402 *(command + sc) = c;
1403 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00001404 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001405 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00001406 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001407 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001408 }
1409
Erik Andersenc7c634b2000-03-19 05:28:55 +00001410 break;
Erik Andersen13456d12000-03-16 08:09:57 +00001411 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001412 if (break_out) /* Enter is the command terminator, no more input. */
1413 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001414
1415 if (c != '\t')
1416 lastWasTab = FALSE;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001417 }
1418
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001419 setTermSettings(inputFd, (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001420 handlers_sets &= ~SET_RESET_TERM;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001421
1422 /* Handle command history log */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001423 if (len) { /* no put empty line */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001424
1425 struct history *h = his_end;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001426 char *ss;
Mark Whitley4e338752001-01-26 20:42:23 +00001427
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001428 ss = xstrdup(command); /* duplicate */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001429
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001430 if (h == 0) {
Eric Andersen91a44002000-07-19 17:37:57 +00001431 /* No previous history -- this memory is never freed */
Matt Kraai322ae932000-09-13 02:46:14 +00001432 h = his_front = xmalloc(sizeof(struct history));
1433 h->n = xmalloc(sizeof(struct history));
Erik Andersenc7c634b2000-03-19 05:28:55 +00001434
1435 h->p = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +00001436 h->s = ss;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001437 h->n->p = h;
1438 h->n->n = NULL;
1439 h->n->s = NULL;
1440 his_end = h->n;
1441 history_counter++;
1442 } else {
Eric Andersen91a44002000-07-19 17:37:57 +00001443 /* Add a new history command -- this memory is never freed */
Matt Kraai322ae932000-09-13 02:46:14 +00001444 h->n = xmalloc(sizeof(struct history));
Erik Andersenc7c634b2000-03-19 05:28:55 +00001445
1446 h->n->p = h;
1447 h->n->n = NULL;
1448 h->n->s = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +00001449 h->s = ss;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001450 his_end = h->n;
1451
1452 /* After max history, remove the oldest command */
1453 if (history_counter >= MAX_HISTORY) {
1454
1455 struct history *p = his_front->n;
1456
1457 p->p = NULL;
1458 free(his_front->s);
1459 free(his_front);
1460 his_front = p;
1461 } else {
1462 history_counter++;
1463 }
Erik Andersen13456d12000-03-16 08:09:57 +00001464 }
Eric Andersen004015e2001-05-21 20:30:51 +00001465#if defined(BB_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001466 num_ok_lines++;
1467#endif
Erik Andersen6273f652000-03-17 01:12:41 +00001468 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001469 command[len++] = '\n'; /* set '\n' */
1470 command[len] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001471#if defined(BB_FEATURE_CLEAN_UP) && defined(BB_FEATURE_COMMAND_TAB_COMPLETION)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001472 input_tab(0); /* strong free */
1473#endif
Eric Andersen004015e2001-05-21 20:30:51 +00001474#if defined(BB_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001475 free(cmdedit_prompt);
1476#endif
Erik Andersenf0657d32000-04-12 17:49:52 +00001477 return;
Erik Andersen13456d12000-03-16 08:09:57 +00001478}
1479
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001480
Mark Whitley4e338752001-01-26 20:42:23 +00001481/* Undo the effects of cmdedit_init(). */
Eric Andersen501c88b2000-07-28 15:14:45 +00001482extern void cmdedit_terminate(void)
1483{
1484 cmdedit_reset_term();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001485 if ((handlers_sets & SET_TERM_HANDLERS) != 0) {
Mark Whitley4e338752001-01-26 20:42:23 +00001486 signal(SIGKILL, SIG_DFL);
1487 signal(SIGINT, SIG_DFL);
1488 signal(SIGQUIT, SIG_DFL);
1489 signal(SIGTERM, SIG_DFL);
1490 signal(SIGWINCH, SIG_DFL);
1491 handlers_sets &= ~SET_TERM_HANDLERS;
1492 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001493}
1494
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001495#endif /* BB_FEATURE_COMMAND_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00001496
1497
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001498#ifdef TEST
1499
Eric Andersene5dfced2001-04-09 22:48:12 +00001500const char *applet_name = "debug stuff usage";
1501const char *memory_exhausted = "Memory exhausted";
1502
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001503#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1504#include <locale.h>
1505#endif
1506
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001507unsigned int shell_context;
1508
1509int main(int argc, char **argv)
1510{
1511 char buff[BUFSIZ];
1512 char *prompt =
Eric Andersen004015e2001-05-21 20:30:51 +00001513#if defined(BB_FEATURE_SH_FANCY_PROMPT)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001514 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:\
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001515\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] \
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001516\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001517#else
1518 "% ";
1519#endif
1520
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001521#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1522 setlocale(LC_ALL, "");
1523#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001524 shell_context = 1;
1525 do {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001526 int l;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001527 cmdedit_read_input(prompt, buff);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001528 l = strlen(buff);
1529 if(l > 0 && buff[l-1] == '\n')
1530 buff[l-1] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001531 printf("*** cmdedit_read_input() returned line =%s=\n", buff);
1532 } while (shell_context);
1533 printf("*** cmdedit_read_input() detect ^C\n");
1534 return 0;
1535}
1536
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001537#endif /* TEST */