blob: a3710812f079f13f06e5a90424e14638d4d356dd [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 Andersen6faae7d2001-02-16 20:09:17 +000034//#define TEST
Eric Andersen5f2c79d2001-02-16 18:36:04 +000035
Eric Andersencbe31da2001-02-20 06:14:08 +000036#include <stdio.h>
37#include <errno.h>
38#include <unistd.h>
39#include <stdlib.h>
40#include <string.h>
41#include <sys/ioctl.h>
42#include <ctype.h>
43#include <signal.h>
44#include <limits.h>
45
Eric Andersen5f2c79d2001-02-16 18:36:04 +000046#ifndef TEST
Mark Whitley4e338752001-01-26 20:42:23 +000047
Eric Andersen3570a342000-09-25 21:45:58 +000048#include "busybox.h"
Mark Whitley4e338752001-01-26 20:42:23 +000049
Eric Andersen5f2c79d2001-02-16 18:36:04 +000050#define D(x)
51
52#else
53
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000054#define BB_FEATURE_COMMAND_EDITING
55#define BB_FEATURE_COMMAND_TAB_COMPLETION
56#define BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen94456f52001-02-18 20:26:48 +000057#define BB_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen94456f52001-02-18 20:26:48 +000058#define BB_FEATURE_CLEAN_UP
Eric Andersen5f2c79d2001-02-16 18:36:04 +000059
Eric Andersen5f2c79d2001-02-16 18:36:04 +000060#define D(x) x
61
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000062#ifndef TRUE
63#define TRUE 1
64#endif
65#ifndef FALSE
66#define FALSE 0
67#endif
68
Eric Andersen5f2c79d2001-02-16 18:36:04 +000069#endif /* TEST */
70
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000071#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5165fbe2001-02-20 06:42:29 +000072#include <dirent.h>
73#include <sys/stat.h>
74#endif
75
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000076#ifdef BB_FEATURE_COMMAND_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000077
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000078#ifndef BB_FEATURE_COMMAND_TAB_COMPLETION
79#undef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +000080#endif
81
Mark Whitleyf5949862001-03-14 00:29:14 +000082#if defined(BB_FEATURE_COMMAND_USERNAME_COMPLETION) || !defined(BB_FEATURE_SH_SIMPLE_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000083#define BB_FEATURE_GETUSERNAME_AND_HOMEDIR
84#endif
85
Eric Andersen5f2c79d2001-02-16 18:36:04 +000086#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
87#ifndef TEST
Eric Andersenaf4ac772001-02-01 22:43:49 +000088#include "pwd_grp/pwd.h"
Eric Andersen5f2c79d2001-02-16 18:36:04 +000089#else
90#include <pwd.h>
91#endif /* TEST */
92#endif /* advanced FEATURES */
Eric Andersenaf4ac772001-02-01 22:43:49 +000093
94
Eric Andersen5f2c79d2001-02-16 18:36:04 +000095#ifdef TEST
96void *xrealloc(void *old, size_t size)
97{
98 return realloc(old, size);
99}
Erik Andersen13456d12000-03-16 08:09:57 +0000100
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000101void *xmalloc(size_t size)
102{
103 return malloc(size);
104}
105char *xstrdup(const char *s)
106{
107 return strdup(s);
108}
109
110void *xcalloc(size_t size, size_t se)
111{
112 return calloc(size, se);
113}
114
115#define error_msg(s, d) fprintf(stderr, s, d)
Eric Andersen92d23242001-03-19 23:49:41 +0000116#endif /* TEST */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000117
118
119struct history {
120 char *s;
121 struct history *p;
122 struct history *n;
Mark Whitley59ab0252001-01-23 22:30:04 +0000123};
124
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000125/* Maximum length of the linked list for the command line history */
126static const int MAX_HISTORY = 15;
Erik Andersen13456d12000-03-16 08:09:57 +0000127
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000128/* First element in command line list */
129static struct history *his_front = NULL;
130
131/* Last element in command line list */
132static struct history *his_end = NULL;
133
Erik Andersen1d1d9502000-04-21 01:26:49 +0000134
135/* ED: sparc termios is broken: revert back to old termio handling. */
Erik Andersen1d1d9502000-04-21 01:26:49 +0000136
137#if #cpu(sparc)
138# include <termio.h>
139# define termios termio
140# define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp)
141# define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp)
142#else
143# include <termios.h>
144# define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
145# define getTermSettings(fd,argp) tcgetattr(fd, argp);
146#endif
147
148/* Current termio and the previous termio before starting sh */
Eric Andersen63a86222000-11-07 06:52:13 +0000149static struct termios initial_settings, new_settings;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000150
151
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000152#ifndef _POSIX_VDISABLE
153#define _POSIX_VDISABLE '\0'
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000154#endif
155
Erik Andersen1d1d9502000-04-21 01:26:49 +0000156
Mark Whitley4e338752001-01-26 20:42:23 +0000157static
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000158volatile int cmdedit_termw = 80; /* actual terminal width */
159static int history_counter = 0; /* Number of commands in history list */
Mark Whitley4e338752001-01-26 20:42:23 +0000160static
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000161volatile int handlers_sets = 0; /* Set next bites: */
162
Mark Whitley4e338752001-01-26 20:42:23 +0000163enum {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000164 SET_ATEXIT = 1, /* when atexit() has been called
165 and get euid,uid,gid to fast compare */
166 SET_TERM_HANDLERS = 2, /* set many terminates signal handlers */
167 SET_WCHG_HANDLERS = 4, /* winchg signal handler */
168 SET_RESET_TERM = 8, /* if the terminal needs to be reset upon exit */
Mark Whitley4e338752001-01-26 20:42:23 +0000169};
Erik Andersen13456d12000-03-16 08:09:57 +0000170
Mark Whitley4e338752001-01-26 20:42:23 +0000171
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000172static int cmdedit_x; /* real x terminal position */
173static int cmdedit_y; /* pseudoreal y terminal position */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000174static int cmdedit_prmt_len; /* lenght prompt without colores string */
Eric Andersen86349772000-12-18 20:25:50 +0000175
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000176static int cursor; /* required global for signal handler */
177static int len; /* --- "" - - "" - -"- --""-- --""--- */
178static char *command_ps; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000179static
Mark Whitleyf5949862001-03-14 00:29:14 +0000180#ifdef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000181 const
182#endif
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000183char *cmdedit_prompt; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000184
185/* Link into lash to reset context to 0 on ^C and such */
Eric Andersen86349772000-12-18 20:25:50 +0000186extern unsigned int shell_context;
187
Erik Andersen13456d12000-03-16 08:09:57 +0000188
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000189#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
190static char *user_buf = "";
191static char *home_pwd_buf = "";
192static int my_euid;
193#endif
194
Mark Whitleyf5949862001-03-14 00:29:14 +0000195#ifndef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000196static char *hostname_buf = "";
197static int num_ok_lines = 1;
198#endif
199
200
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000201#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000202
203#ifndef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
204static int my_euid;
205#endif
206
207static int my_uid;
208static int my_gid;
209
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000210#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000211
Erik Andersen13456d12000-03-16 08:09:57 +0000212
Mark Whitley4e338752001-01-26 20:42:23 +0000213static void cmdedit_setwidth(int w, int redraw_flg);
Erik Andersen13456d12000-03-16 08:09:57 +0000214
Mark Whitley4e338752001-01-26 20:42:23 +0000215static void win_changed(int nsig)
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000216{
217 struct winsize win = { 0, 0, 0, 0 };
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000218 static __sighandler_t previous_SIGWINCH_handler; /* for reset */
Erik Andersen61677fe2000-04-13 01:18:56 +0000219
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000220 /* emulate || signal call */
221 if (nsig == -SIGWINCH || nsig == SIGWINCH) {
Mark Whitley4e338752001-01-26 20:42:23 +0000222 ioctl(0, TIOCGWINSZ, &win);
223 if (win.ws_col > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000224 cmdedit_setwidth(win.ws_col, nsig == SIGWINCH);
225 }
Mark Whitley4e338752001-01-26 20:42:23 +0000226 }
Eric Andersen4bbdd782001-01-30 22:23:17 +0000227 /* Unix not all standart in recall signal */
Mark Whitley4e338752001-01-26 20:42:23 +0000228
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000229 if (nsig == -SIGWINCH) /* save previous handler */
Mark Whitley4e338752001-01-26 20:42:23 +0000230 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000231 else if (nsig == SIGWINCH) /* signaled called handler */
232 signal(SIGWINCH, win_changed); /* set for next call */
233 else /* nsig == 0 */
234 /* set previous handler */
235 signal(SIGWINCH, previous_SIGWINCH_handler); /* reset */
Mark Whitley4e338752001-01-26 20:42:23 +0000236}
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000237
238static void cmdedit_reset_term(void)
Erik Andersen13456d12000-03-16 08:09:57 +0000239{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000240 if ((handlers_sets & SET_RESET_TERM) != 0) {
Erik Andersena6c75222000-04-18 00:00:52 +0000241 /* sparc and other have broken termios support: use old termio handling. */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000242 setTermSettings(fileno(stdin), (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +0000243 handlers_sets &= ~SET_RESET_TERM;
244 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000245 if ((handlers_sets & SET_WCHG_HANDLERS) != 0) {
Mark Whitley4e338752001-01-26 20:42:23 +0000246 /* reset SIGWINCH handler to previous (default) */
247 win_changed(0);
248 handlers_sets &= ~SET_WCHG_HANDLERS;
249 }
250 fflush(stdout);
Eric Andersenb040d4f2000-07-25 18:01:20 +0000251#ifdef BB_FEATURE_CLEAN_UP
252 if (his_front) {
253 struct history *n;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000254
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000255 while (his_front != his_end) {
Eric Andersenb040d4f2000-07-25 18:01:20 +0000256 n = his_front->n;
257 free(his_front->s);
258 free(his_front);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000259 his_front = n;
Eric Andersenb040d4f2000-07-25 18:01:20 +0000260 }
261 }
262#endif
Erik Andersen13456d12000-03-16 08:09:57 +0000263}
264
Mark Whitley4e338752001-01-26 20:42:23 +0000265
Mark Whitley4e338752001-01-26 20:42:23 +0000266/* special for recount position for scroll and remove terminal margin effect */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000267static void cmdedit_set_out_char(int next_char)
268{
269
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000270 int c = (int)((unsigned char) command_ps[cursor]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000271
272 if (c == 0)
273 c = ' '; /* destroy end char? */
274#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
275 if (!isprint(c)) { /* Inverse put non-printable characters */
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000276 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000277 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000278 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000279 c += '@';
280 if (c == 127)
281 c = '?';
282 printf("\033[7m%c\033[0m", c);
283 } else
284#endif
285 putchar(c);
286 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000287 /* terminal is scrolled down */
288 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000289 cmdedit_x = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000290
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000291 if (!next_char)
Mark Whitley4e338752001-01-26 20:42:23 +0000292 next_char = ' ';
293 /* destroy "(auto)margin" */
294 putchar(next_char);
295 putchar('\b');
296 }
297 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000298}
299
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000300/* Move to end line. Bonus: rewrite line from cursor */
301static void input_end(void)
302{
303 while (cursor < len)
304 cmdedit_set_out_char(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000305}
306
307/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000308static void goto_new_line(void)
309{
Mark Whitley4e338752001-01-26 20:42:23 +0000310 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000311 if (cmdedit_x)
312 putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000313}
314
315
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000316static inline void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000317{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000318 fputs(s, stdout);
319}
320static inline void beep(void)
321{
322 putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000323}
324
Mark Whitley4e338752001-01-26 20:42:23 +0000325/* Move back one charactor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000326/* special for slow terminal */
327static void input_backward(int num)
328{
329 if (num > cursor)
330 num = cursor;
331 cursor -= num; /* new cursor (in command, not terminal) */
Erik Andersen13456d12000-03-16 08:09:57 +0000332
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000333 if (cmdedit_x >= num) { /* no to up line */
334 cmdedit_x -= num;
335 if (num < 4)
336 while (num-- > 0)
337 putchar('\b');
338
339 else
340 printf("\033[%dD", num);
341 } else {
342 int count_y;
343
344 if (cmdedit_x) {
345 putchar('\r'); /* back to first terminal pos. */
346 num -= cmdedit_x; /* set previous backward */
347 }
348 count_y = 1 + num / cmdedit_termw;
349 printf("\033[%dA", count_y);
350 cmdedit_y -= count_y;
351 /* require forward after uping */
352 cmdedit_x = cmdedit_termw * count_y - num;
353 printf("\033[%dC", cmdedit_x); /* set term cursor */
Erik Andersen13456d12000-03-16 08:09:57 +0000354 }
Erik Andersen13456d12000-03-16 08:09:57 +0000355}
356
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000357static void put_prompt(void)
358{
359 out1str(cmdedit_prompt);
360 cmdedit_x = cmdedit_prmt_len; /* count real x terminal position */
361 cursor = 0;
362}
363
Mark Whitleyf5949862001-03-14 00:29:14 +0000364#ifdef BB_FEATURE_SH_SIMPLE_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000365static void parse_prompt(const char *prmt_ptr)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000366{
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000367 cmdedit_prompt = prmt_ptr;
368 cmdedit_prmt_len = strlen(prmt_ptr);
369 put_prompt();
370}
371#else
372static void add_to_prompt(char **prmt_mem_ptr, int *alm,
373 int *prmt_len, const char *addb)
374{
375 *prmt_len += strlen(addb);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000376 if (*alm < (*prmt_len) + 1) {
377 *alm = (*prmt_len) + 1;
378 *prmt_mem_ptr = xrealloc(*prmt_mem_ptr, *alm);
379 }
380 strcat(*prmt_mem_ptr, addb);
381}
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000382
383static void parse_prompt(const char *prmt_ptr)
384{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000385 int alm = strlen(prmt_ptr) + 1; /* supposedly require memory */
386 int prmt_len = 0;
387 int sub_len = 0;
388 int flg_not_length = '[';
389 char *prmt_mem_ptr = xstrdup(prmt_ptr);
390 char pwd_buf[PATH_MAX + 1];
391 char buf[16];
392 int c;
393
394 pwd_buf[0] = 0;
395 *prmt_mem_ptr = 0;
396
397 while (*prmt_ptr) {
398 c = *prmt_ptr++;
399 if (c == '\\') {
400 c = *prmt_ptr;
401 if (c == 0)
402 break;
403 prmt_ptr++;
404 switch (c) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000405#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000406 case 'u':
407 add_to_prompt(&prmt_mem_ptr, &alm, &prmt_len, user_buf);
408 continue;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000409#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000410 case 'h':
411 if (hostname_buf[0] == 0) {
412 hostname_buf = xcalloc(256, 1);
413 if (gethostname(hostname_buf, 255) < 0) {
414 strcpy(hostname_buf, "?");
415 } else {
416 char *s = strchr(hostname_buf, '.');
417
418 if (s)
419 *s = 0;
420 }
421 }
422 add_to_prompt(&prmt_mem_ptr, &alm, &prmt_len,
423 hostname_buf);
424 continue;
425 case '$':
426 c = my_euid == 0 ? '#' : '$';
427 break;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000428#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000429 case 'w':
430 if (pwd_buf[0] == 0) {
431 int l;
432
433 getcwd(pwd_buf, PATH_MAX);
434 l = strlen(home_pwd_buf);
435 if (home_pwd_buf[0] != 0 &&
436 strncmp(home_pwd_buf, pwd_buf, l) == 0) {
437 strcpy(pwd_buf + 1, pwd_buf + l);
438 pwd_buf[0] = '~';
439 }
440 }
441 add_to_prompt(&prmt_mem_ptr, &alm, &prmt_len, pwd_buf);
442 continue;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000443#endif
Eric Andersenc270ec12001-04-05 23:00:47 +0000444 case 'W':
445 if (pwd_buf[0] == 0) {
446 char *z;
447
448 getcwd(pwd_buf, PATH_MAX);
449 z = strrchr(pwd_buf,'/');
450 if ( (z != NULL) && (z != pwd_buf) ) {
451 z++;
452 strcpy(pwd_buf,z);
453 }
454 }
455 add_to_prompt(&prmt_mem_ptr, &alm, &prmt_len, pwd_buf);
456 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000457 case '!':
458 snprintf(buf, sizeof(buf), "%d", num_ok_lines);
459 add_to_prompt(&prmt_mem_ptr, &alm, &prmt_len, buf);
460 continue;
461 case 'e':
462 case 'E': /* \e \E = \033 */
463 c = '\033';
464 break;
465 case 'x':
466 case 'X':
467 case '0':
468 case '1':
469 case '2':
470 case '3':
471 case '4':
472 case '5':
473 case '6':
474 case '7':{
475 int l;
476 int ho = 0;
477 char *eho;
478
479 if (c == 'X')
480 c = 'x';
481
482 for (l = 0; l < 3;) {
483
484 buf[l++] = *prmt_ptr;
485 buf[l] = 0;
486 ho = strtol(buf, &eho, c == 'x' ? 16 : 8);
487 if (ho > UCHAR_MAX || (eho - buf) < l) {
488 l--;
489 break;
490 }
491 prmt_ptr++;
492 }
493 buf[l] = 0;
494 ho = strtol(buf, 0, c == 'x' ? 16 : 8);
495 c = ho == 0 ? '?' : (char) ho;
496 break;
497 }
498 case '[':
499 case ']':
500 if (c == flg_not_length) {
501 flg_not_length = flg_not_length == '[' ? ']' : '[';
502 continue;
503 }
504 break;
505 }
506 }
507 buf[0] = c;
508 buf[1] = 0;
509 add_to_prompt(&prmt_mem_ptr, &alm, &prmt_len, buf);
510 if (flg_not_length == ']')
511 sub_len++;
512 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000513 cmdedit_prompt = prmt_mem_ptr;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000514 cmdedit_prmt_len = prmt_len - sub_len;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000515 put_prompt();
516}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000517#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000518
519
520/* draw promt, editor line, and clear tail */
521static void redraw(int y, int back_cursor)
522{
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000523 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000524 printf("\033[%dA", y);
525 cmdedit_y = 0; /* new quasireal y */
526 putchar('\r');
527 put_prompt();
528 input_end(); /* rewrite */
529 printf("\033[J"); /* destroy tail after cursor */
530 input_backward(back_cursor);
531}
532
Erik Andersenf0657d32000-04-12 17:49:52 +0000533/* Delete the char in front of the cursor */
Mark Whitley4e338752001-01-26 20:42:23 +0000534static void input_delete(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000535{
Mark Whitley4e338752001-01-26 20:42:23 +0000536 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000537
Mark Whitley4e338752001-01-26 20:42:23 +0000538 if (j == len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000539 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000540
541 strcpy(command_ps + j, command_ps + j + 1);
Mark Whitley4e338752001-01-26 20:42:23 +0000542 len--;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000543 input_end(); /* rewtite new line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000544 cmdedit_set_out_char(0); /* destroy end char */
545 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000546}
547
Mark Whitley4e338752001-01-26 20:42:23 +0000548/* Delete the char in back of the cursor */
549static void input_backspace(void)
550{
551 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000552 input_backward(1);
553 input_delete();
Mark Whitley4e338752001-01-26 20:42:23 +0000554 }
555}
556
557
Erik Andersenf0657d32000-04-12 17:49:52 +0000558/* Move forward one charactor */
Mark Whitley4e338752001-01-26 20:42:23 +0000559static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000560{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000561 if (cursor < len)
562 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000563}
564
565
Mark Whitley4e338752001-01-26 20:42:23 +0000566static void clean_up_and_die(int sig)
567{
568 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000569 if (sig != SIGINT)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000570 exit(EXIT_SUCCESS); /* cmdedit_reset_term() called in atexit */
Mark Whitley4e338752001-01-26 20:42:23 +0000571 cmdedit_reset_term();
572}
573
574static void cmdedit_setwidth(int w, int redraw_flg)
575{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000576 cmdedit_termw = cmdedit_prmt_len + 2;
Eric Andersen6faae7d2001-02-16 20:09:17 +0000577 if (w <= cmdedit_termw) {
578 cmdedit_termw = cmdedit_termw % w;
579 }
Mark Whitley4e338752001-01-26 20:42:23 +0000580 if (w > cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000581 cmdedit_termw = w;
582
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000583 if (redraw_flg) {
584 /* new y for current cursor */
585 int new_y = (cursor + cmdedit_prmt_len) / w;
Mark Whitley4e338752001-01-26 20:42:23 +0000586
587 /* redraw */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000588 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), len - cursor);
589 fflush(stdout);
Mark Whitley4e338752001-01-26 20:42:23 +0000590 }
Eric Andersen6faae7d2001-02-16 20:09:17 +0000591 }
Mark Whitley4e338752001-01-26 20:42:23 +0000592}
593
594extern void cmdedit_init(void)
595{
Eric Andersen61173a52001-03-19 17:48:55 +0000596 cmdedit_prmt_len = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000597 if ((handlers_sets & SET_WCHG_HANDLERS) == 0) {
598 /* emulate usage handler to set handler and call yours work */
Mark Whitley4e338752001-01-26 20:42:23 +0000599 win_changed(-SIGWINCH);
600 handlers_sets |= SET_WCHG_HANDLERS;
601 }
602
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000603 if ((handlers_sets & SET_ATEXIT) == 0) {
604#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
605 struct passwd *entry;
606
607 my_euid = geteuid();
608 entry = getpwuid(my_euid);
609 if (entry) {
610 user_buf = xstrdup(entry->pw_name);
611 home_pwd_buf = xstrdup(entry->pw_dir);
612 }
613#endif
614
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000615#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000616
617#ifndef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
618 my_euid = geteuid();
619#endif
620 my_uid = getuid();
621 my_gid = getgid();
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000622#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000623 handlers_sets |= SET_ATEXIT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000624 atexit(cmdedit_reset_term); /* be sure to do this only once */
Mark Whitley4e338752001-01-26 20:42:23 +0000625 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000626
627 if ((handlers_sets & SET_TERM_HANDLERS) == 0) {
Mark Whitley4e338752001-01-26 20:42:23 +0000628 signal(SIGKILL, clean_up_and_die);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000629 signal(SIGINT, clean_up_and_die);
Mark Whitley4e338752001-01-26 20:42:23 +0000630 signal(SIGQUIT, clean_up_and_die);
631 signal(SIGTERM, clean_up_and_die);
632 handlers_sets |= SET_TERM_HANDLERS;
633 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000634
Mark Whitley4e338752001-01-26 20:42:23 +0000635}
Erik Andersenf0657d32000-04-12 17:49:52 +0000636
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000637#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000638
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000639static int is_execute(const struct stat *st)
Erik Andersen6273f652000-03-17 01:12:41 +0000640{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000641 if ((!my_euid && (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) ||
642 (my_uid == st->st_uid && (st->st_mode & S_IXUSR)) ||
643 (my_gid == st->st_gid && (st->st_mode & S_IXGRP)) ||
644 (st->st_mode & S_IXOTH)) return TRUE;
645 return FALSE;
Erik Andersen6273f652000-03-17 01:12:41 +0000646}
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000647
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000648#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000649
650static char **username_tab_completion(char *ud, int *num_matches)
651{
652 struct passwd *entry;
653 int userlen;
654 char *temp;
655
656
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000657 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000658 userlen = strlen(ud);
659
660 if (num_matches == 0) { /* "~/..." or "~user/..." */
661 char *sav_ud = ud - 1;
662 char *home = 0;
663
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000664 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000665 home = home_pwd_buf;
666 } else {
667 /* "~user/..." */
668 temp = strchr(ud, '/');
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000669 *temp = 0; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000670 entry = getpwnam(ud);
671 *temp = '/'; /* restore ~user/... */
672 ud = temp;
673 if (entry)
674 home = entry->pw_dir;
675 }
676 if (home) {
677 if ((userlen + strlen(home) + 1) < BUFSIZ) {
678 char temp2[BUFSIZ]; /* argument size */
679
680 /* /home/user/... */
681 sprintf(temp2, "%s%s", home, ud);
682 strcpy(sav_ud, temp2);
683 }
684 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000685 return 0; /* void, result save to argument :-) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000686 } else {
687 /* "~[^/]*" */
688 char **matches = (char **) NULL;
689 int nm = 0;
690
691 setpwent();
692
693 while ((entry = getpwent()) != NULL) {
694 /* Null usernames should result in all users as possible completions. */
695 if ( /*!userlen || */ !strncmp(ud, entry->pw_name, userlen)) {
696
697 temp = xmalloc(3 + strlen(entry->pw_name));
698 sprintf(temp, "~%s/", entry->pw_name);
699 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
700
701 matches[nm++] = temp;
702 }
703 }
704
705 endpwent();
706 (*num_matches) = nm;
707 return (matches);
708 }
709}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000710#endif /* BB_FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000711
712enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000713 FIND_EXE_ONLY = 0,
714 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000715 FIND_FILE_ONLY = 2,
716};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000717
Mark Whitley4e338752001-01-26 20:42:23 +0000718static int path_parse(char ***p, int flags)
719{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000720 int npth;
Mark Whitley4e338752001-01-26 20:42:23 +0000721 char *tmp;
722 char *pth;
723
Mark Whitley4e338752001-01-26 20:42:23 +0000724 /* if not setenv PATH variable, to search cur dir "." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000725 if (flags != FIND_EXE_ONLY || (pth = getenv("PATH")) == 0 ||
726 /* PATH=<empty> or PATH=:<empty> */
727 *pth == 0 || (*pth == ':' && *(pth + 1) == 0)) {
Mark Whitley4e338752001-01-26 20:42:23 +0000728 return 1;
729 }
730
731 tmp = pth;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000732 npth = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000733
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000734 for (;;) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000735 npth++; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000736 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000737 if (tmp) {
738 if (*++tmp == 0)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000739 break; /* :<empty> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000740 } else
Mark Whitley4e338752001-01-26 20:42:23 +0000741 break;
742 }
743
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000744 *p = xmalloc(npth * sizeof(char *));
Mark Whitley4e338752001-01-26 20:42:23 +0000745
746 tmp = pth;
747 (*p)[0] = xstrdup(tmp);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000748 npth = 1; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000749
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000750 for (;;) {
Mark Whitley4e338752001-01-26 20:42:23 +0000751 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000752 if (tmp) {
753 (*p)[0][(tmp - pth)] = 0; /* ':' -> '\0' */
754 if (*++tmp == 0)
755 break; /* :<empty> */
Mark Whitley4e338752001-01-26 20:42:23 +0000756 } else
757 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000758 (*p)[npth++] = &(*p)[0][(tmp - pth)]; /* p[next]=p[0][&'\0'+1] */
Mark Whitley4e338752001-01-26 20:42:23 +0000759 }
760
761 return npth;
762}
763
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000764static char *add_quote_for_spec_chars(char *found)
Erik Andersen6273f652000-03-17 01:12:41 +0000765{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000766 int l = 0;
767 char *s = xmalloc((strlen(found) + 1) * 2);
768
769 while (*found) {
770 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
771 s[l++] = '\\';
772 s[l++] = *found++;
773 }
774 s[l] = 0;
775 return s;
776}
777
778static char **exe_n_cwd_tab_completion(char *command, int *num_matches,
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000779 int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000780{
781
782 char **matches = 0;
Erik Andersen1dbe3402000-03-19 10:46:06 +0000783 DIR *dir;
784 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000785 char dirbuf[BUFSIZ];
786 int nm = *num_matches;
787 struct stat st;
788 char *path1[1];
789 char **paths = path1;
790 int npaths;
791 int i;
792 char found[BUFSIZ + 4 + PATH_MAX];
793 char *pfind = strrchr(command, '/');
Mark Whitley4e338752001-01-26 20:42:23 +0000794
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000795 path1[0] = ".";
Mark Whitley4e338752001-01-26 20:42:23 +0000796
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000797 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000798 /* no dir, if flags==EXE_ONLY - get paths, else "." */
799 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000800 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000801 } else {
802 /* with dir */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000803 /* save for change */
804 strcpy(dirbuf, command);
805 /* set dir only */
806 dirbuf[(pfind - command) + 1] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000807#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000808 if (dirbuf[0] == '~') /* ~/... or ~user/... */
809 username_tab_completion(dirbuf, 0);
810#endif
811 /* "strip" dirname in command */
812 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000813
Mark Whitley4e338752001-01-26 20:42:23 +0000814 paths[0] = dirbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000815 npaths = 1; /* only 1 dir */
Mark Whitley4e338752001-01-26 20:42:23 +0000816 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000817
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000818 for (i = 0; i < npaths; i++) {
Erik Andersenc7c634b2000-03-19 05:28:55 +0000819
Mark Whitley4e338752001-01-26 20:42:23 +0000820 dir = opendir(paths[i]);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000821 if (!dir) /* Don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000822 continue;
823
824 while ((next = readdir(dir)) != NULL) {
825 const char *str_merge = "%s/%s";
826 char *str_found = next->d_name;
827
Mark Whitley4e338752001-01-26 20:42:23 +0000828 /* matched ? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000829 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000830 continue;
831 /* not see .name without .match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000832 if (*str_found == '.' && *pfind == 0) {
833 if (*paths[i] == '/' && paths[i][1] == 0
834 && str_found[1] == 0) str_found = ""; /* only "/" */
835 else
Mark Whitley4e338752001-01-26 20:42:23 +0000836 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000837 }
838 if (paths[i][strlen(paths[i]) - 1] == '/')
839 str_merge = "%s%s";
840 sprintf(found, str_merge, paths[i], str_found);
841 /* hmm, remover in progress? */
842 if (stat(found, &st) < 0)
843 continue;
844 /* find with dirs ? */
845 if (paths[i] != dirbuf)
846 strcpy(found, next->d_name); /* only name */
Mark Whitley4e338752001-01-26 20:42:23 +0000847 if (S_ISDIR(st.st_mode)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000848 /* name is directory */
849 /* algorithmic only "/" ? */
850 if (*str_found)
851 strcat(found, "/");
852 str_found = add_quote_for_spec_chars(found);
Mark Whitley4e338752001-01-26 20:42:23 +0000853 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000854 /* not put found file if search only dirs for cd */
855 if (type == FIND_DIR_ONLY)
856 continue;
857 str_found = add_quote_for_spec_chars(found);
858 if (type == FIND_FILE_ONLY ||
859 (type == FIND_EXE_ONLY && is_execute(&st) == TRUE))
860 strcat(str_found, " ");
861 }
Mark Whitley4e338752001-01-26 20:42:23 +0000862 /* Add it to the list */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000863 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
864
865 matches[nm++] = str_found;
Erik Andersen1dbe3402000-03-19 10:46:06 +0000866 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000867 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000868 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000869 if (paths != path1) {
870 free(paths[0]); /* allocated memory only in first member */
871 free(paths);
872 }
Mark Whitley4e338752001-01-26 20:42:23 +0000873 *num_matches = nm;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000874 return (matches);
Erik Andersen6273f652000-03-17 01:12:41 +0000875}
Erik Andersenf0657d32000-04-12 17:49:52 +0000876
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000877static int match_compare(const void *a, const void *b)
878{
879 return strcmp(*(char **) a, *(char **) b);
880}
881
882
883
884#define QUOT (UCHAR_MAX+1)
885
886#define collapse_pos(is, in) { \
887 memcpy(int_buf+is, int_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); \
888 memcpy(pos_buf+is, pos_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); }
889
890static int find_match(char *matchBuf, int *len_with_quotes)
891{
892 int i, j;
893 int command_mode;
894 int c, c2;
895 int int_buf[BUFSIZ + 1];
896 int pos_buf[BUFSIZ + 1];
897
898 /* set to integer dimension characters and own positions */
899 for (i = 0;; i++) {
900 int_buf[i] = (int) ((unsigned char) matchBuf[i]);
901 if (int_buf[i] == 0) {
902 pos_buf[i] = -1; /* indicator end line */
903 break;
904 } else
905 pos_buf[i] = i;
906 }
907
908 /* mask \+symbol and convert '\t' to ' ' */
909 for (i = j = 0; matchBuf[i]; i++, j++)
910 if (matchBuf[i] == '\\') {
911 collapse_pos(j, j + 1);
912 int_buf[j] |= QUOT;
913 i++;
914#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
915 if (matchBuf[i] == '\t') /* algorithm equivalent */
916 int_buf[j] = ' ' | QUOT;
917#endif
918 }
919#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
920 else if (matchBuf[i] == '\t')
921 int_buf[j] = ' ';
922#endif
923
924 /* mask "symbols" or 'symbols' */
925 c2 = 0;
926 for (i = 0; int_buf[i]; i++) {
927 c = int_buf[i];
928 if (c == '\'' || c == '"') {
929 if (c2 == 0)
930 c2 = c;
931 else {
932 if (c == c2)
933 c2 = 0;
934 else
935 int_buf[i] |= QUOT;
936 }
937 } else if (c2 != 0 && c != '$')
938 int_buf[i] |= QUOT;
939 }
940
941 /* skip commands with arguments if line have commands delimiters */
942 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
943 for (i = 0; int_buf[i]; i++) {
944 c = int_buf[i];
945 c2 = int_buf[i + 1];
946 j = i ? int_buf[i - 1] : -1;
947 command_mode = 0;
948 if (c == ';' || c == '&' || c == '|') {
949 command_mode = 1 + (c == c2);
950 if (c == '&') {
951 if (j == '>' || j == '<')
952 command_mode = 0;
953 } else if (c == '|' && j == '>')
954 command_mode = 0;
955 }
956 if (command_mode) {
957 collapse_pos(0, i + command_mode);
958 i = -1; /* hack incremet */
959 }
960 }
961 /* collapse `command...` */
962 for (i = 0; int_buf[i]; i++)
963 if (int_buf[i] == '`') {
964 for (j = i + 1; int_buf[j]; j++)
965 if (int_buf[j] == '`') {
966 collapse_pos(i, j + 1);
967 j = 0;
968 break;
969 }
970 if (j) {
971 /* not found close ` - command mode, collapse all previous */
972 collapse_pos(0, i + 1);
973 break;
974 } else
975 i--; /* hack incremet */
976 }
977
978 /* collapse (command...(command...)...) or {command...{command...}...} */
979 c = 0; /* "recursive" level */
980 c2 = 0;
981 for (i = 0; int_buf[i]; i++)
982 if (int_buf[i] == '(' || int_buf[i] == '{') {
983 if (int_buf[i] == '(')
984 c++;
985 else
986 c2++;
987 collapse_pos(0, i + 1);
988 i = -1; /* hack incremet */
989 }
990 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
991 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
992 if (int_buf[i] == ')')
993 c--;
994 else
995 c2--;
996 collapse_pos(0, i + 1);
997 i = -1; /* hack incremet */
998 }
999
1000 /* skip first not quote space */
1001 for (i = 0; int_buf[i]; i++)
1002 if (int_buf[i] != ' ')
1003 break;
1004 if (i)
1005 collapse_pos(0, i);
1006
1007 /* set find mode for completion */
1008 command_mode = FIND_EXE_ONLY;
1009 for (i = 0; int_buf[i]; i++)
1010 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
1011 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001012 && matchBuf[pos_buf[0]]=='c'
1013 && matchBuf[pos_buf[1]]=='d' )
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001014 command_mode = FIND_DIR_ONLY;
1015 else {
1016 command_mode = FIND_FILE_ONLY;
1017 break;
1018 }
1019 }
1020 /* "strlen" */
1021 for (i = 0; int_buf[i]; i++);
1022 /* find last word */
1023 for (--i; i >= 0; i--) {
1024 c = int_buf[i];
1025 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
1026 collapse_pos(0, i + 1);
1027 break;
1028 }
1029 }
1030 /* skip first not quoted '\'' or '"' */
1031 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++);
1032 /* collapse quote or unquote // or /~ */
Mark Whitley7e5291f2001-03-08 19:31:12 +00001033 while ((int_buf[i] & ~QUOT) == '/' &&
1034 ((int_buf[i + 1] & ~QUOT) == '/'
1035 || (int_buf[i + 1] & ~QUOT) == '~')) {
1036 i++;
1037 }
1038 if (i) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001039 collapse_pos(0, i);
Mark Whitley7e5291f2001-03-08 19:31:12 +00001040 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001041
1042 /* set only match and destroy quotes */
1043 j = 0;
1044 for (i = 0; pos_buf[i] >= 0; i++) {
1045 matchBuf[i] = matchBuf[pos_buf[i]];
1046 j = pos_buf[i] + 1;
1047 }
1048 matchBuf[i] = 0;
1049 /* old lenght matchBuf with quotes symbols */
1050 *len_with_quotes = j ? j - pos_buf[0] : 0;
1051
1052 return command_mode;
1053}
1054
1055
1056static void input_tab(int *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001057{
1058 /* Do TAB completion */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001059 static int num_matches;
Mark Whitley4e338752001-01-26 20:42:23 +00001060 static char **matches;
1061
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001062 if (lastWasTab == 0) { /* free all memory */
Erik Andersenf0657d32000-04-12 17:49:52 +00001063 if (matches) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001064 while (num_matches > 0)
Mark Whitley4e338752001-01-26 20:42:23 +00001065 free(matches[--num_matches]);
Erik Andersenf0657d32000-04-12 17:49:52 +00001066 free(matches);
1067 matches = (char **) NULL;
1068 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001069 return;
1070 }
1071 if (*lastWasTab == FALSE) {
1072
1073 char *tmp;
1074 int len_found;
1075 char matchBuf[BUFSIZ];
1076 int find_type;
1077 int recalc_pos;
1078
1079 *lastWasTab = TRUE; /* flop trigger */
1080
1081 /* Make a local copy of the string -- up
1082 * to the position of the cursor */
1083 tmp = strncpy(matchBuf, command_ps, cursor);
1084 tmp[cursor] = 0;
1085
1086 find_type = find_match(matchBuf, &recalc_pos);
1087
1088 /* Free up any memory already allocated */
1089 input_tab(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001090
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001091#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001092 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001093 * then try completing this word as a username. */
1094
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001095 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
Mark Whitley4e338752001-01-26 20:42:23 +00001096 matches = username_tab_completion(matchBuf, &num_matches);
Mark Whitley4e338752001-01-26 20:42:23 +00001097#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001098 /* Try to match any executable in our path and everything
Erik Andersenf0657d32000-04-12 17:49:52 +00001099 * in the current working directory that matches. */
1100 if (!matches)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001101 matches =
1102 exe_n_cwd_tab_completion(matchBuf, &num_matches,
1103 find_type);
Erik Andersenf0657d32000-04-12 17:49:52 +00001104
1105 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001106 if (!matches || num_matches > 1) {
1107 char *tmp1;
1108
Mark Whitley4e338752001-01-26 20:42:23 +00001109 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001110 if (!matches)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001111 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001112 /* sort */
1113 qsort(matches, num_matches, sizeof(char *), match_compare);
1114
1115 /* find minimal match */
1116 tmp = xstrdup(matches[0]);
1117 for (tmp1 = tmp; *tmp1; tmp1++)
1118 for (len_found = 1; len_found < num_matches; len_found++)
1119 if (matches[len_found][(tmp1 - tmp)] != *tmp1) {
1120 *tmp1 = 0;
1121 break;
1122 }
1123 if (*tmp == 0) { /* have unique */
1124 free(tmp);
1125 return;
1126 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001127 } else { /* one match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001128 tmp = matches[0];
1129 /* for next completion current found */
1130 *lastWasTab = FALSE;
Mark Whitley4e338752001-01-26 20:42:23 +00001131 }
1132
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001133 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +00001134 /* have space to placed match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001135 if ((len_found - strlen(matchBuf) + len) < BUFSIZ) {
Mark Whitley4e338752001-01-26 20:42:23 +00001136
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001137 /* before word for match */
1138 command_ps[cursor - recalc_pos] = 0;
1139 /* save tail line */
1140 strcpy(matchBuf, command_ps + cursor);
1141 /* add match */
1142 strcat(command_ps, tmp);
1143 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +00001144 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001145 /* back to begin word for match */
1146 input_backward(recalc_pos);
1147 /* new pos */
1148 recalc_pos = cursor + len_found;
1149 /* new len */
1150 len = strlen(command_ps);
1151 /* write out the matched command */
1152 input_end();
1153 input_backward(cursor - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001154 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001155 if (tmp != matches[0])
1156 free(tmp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001157 } else {
1158 /* Ok -- the last char was a TAB. Since they
1159 * just hit TAB again, print a list of all the
1160 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001161 if (matches && num_matches > 0) {
1162 int i, col, l;
1163 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +00001164
1165 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001166 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001167 for (i = 0, col = 0; i < num_matches; i++) {
1168 l = strlen(matches[i]);
1169 if (l < 14)
1170 l = 14;
1171 printf("%-14s ", matches[i]);
1172 if ((l += 2) > 16)
1173 while (l % 16) {
1174 putchar(' ');
1175 l++;
1176 }
1177 col += l;
1178 col -= (col / cmdedit_termw) * cmdedit_termw;
1179 if (col > 60 && matches[i + 1] != NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +00001180 putchar('\n');
Erik Andersenf0657d32000-04-12 17:49:52 +00001181 col = 0;
1182 }
1183 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001184 /* Go to the next line and rewrite */
1185 putchar('\n');
1186 redraw(0, len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001187 }
1188 }
1189}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001190#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001191
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001192static void get_previous_history(struct history **hp, struct history *p)
Erik Andersenf0657d32000-04-12 17:49:52 +00001193{
Eric Andersen91a44002000-07-19 17:37:57 +00001194 if ((*hp)->s)
1195 free((*hp)->s);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001196 (*hp)->s = xstrdup(command_ps);
1197 *hp = p;
Erik Andersenf0657d32000-04-12 17:49:52 +00001198}
1199
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001200static inline void get_next_history(struct history **hp)
Erik Andersenf0657d32000-04-12 17:49:52 +00001201{
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001202 get_previous_history(hp, (*hp)->n);
Erik Andersenf0657d32000-04-12 17:49:52 +00001203}
1204
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001205enum {
1206 ESC = 27,
1207 DEL = 127,
1208};
1209
1210
Erik Andersen6273f652000-03-17 01:12:41 +00001211/*
1212 * This function is used to grab a character buffer
1213 * from the input file descriptor and allows you to
1214 * a string with full command editing (sortof like
1215 * a mini readline).
1216 *
1217 * The following standard commands are not implemented:
1218 * ESC-b -- Move back one word
1219 * ESC-f -- Move forward one word
1220 * ESC-d -- Delete back one word
1221 * ESC-h -- Delete forward one word
1222 * CTL-t -- Transpose two characters
1223 *
1224 * Furthermore, the "vi" command editing keys are not implemented.
1225 *
Erik Andersen6273f652000-03-17 01:12:41 +00001226 */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001227
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001228extern void cmdedit_read_input(char *prompt, char command[BUFSIZ])
Erik Andersen13456d12000-03-16 08:09:57 +00001229{
1230
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001231 int inputFd = fileno(stdin);
Mark Whitley4e338752001-01-26 20:42:23 +00001232
Erik Andersenc7c634b2000-03-19 05:28:55 +00001233 int break_out = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001234 int lastWasTab = FALSE;
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001235 unsigned char c = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001236 struct history *hp = his_end;
Erik Andersen13456d12000-03-16 08:09:57 +00001237
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001238 /* prepare before init handlers */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001239 cmdedit_y = 0; /* quasireal y, not true work if line > xt*yt */
Mark Whitley4e338752001-01-26 20:42:23 +00001240 len = 0;
Mark Whitley4e338752001-01-26 20:42:23 +00001241 command_ps = command;
1242
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001243 if (new_settings.c_cc[VMIN] == 0) { /* first call */
1244
1245 getTermSettings(inputFd, (void *) &initial_settings);
Erik Andersen1d1d9502000-04-21 01:26:49 +00001246 memcpy(&new_settings, &initial_settings, sizeof(struct termios));
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001247
Erik Andersen1d1d9502000-04-21 01:26:49 +00001248 new_settings.c_cc[VMIN] = 1;
1249 new_settings.c_cc[VTIME] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001250 /* Turn off CTRL-C, so we can trap it */
1251 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001252 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001253 /* Turn off echoing */
1254 new_settings.c_lflag &= ~(ECHO | ECHOCTL | ECHONL);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001255 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001256
1257 command[0] = 0;
1258
1259 setTermSettings(inputFd, (void *) &new_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001260 handlers_sets |= SET_RESET_TERM;
Erik Andersen13456d12000-03-16 08:09:57 +00001261
Eric Andersen6faae7d2001-02-16 20:09:17 +00001262 /* Now initialize things */
1263 cmdedit_init();
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001264 /* Print out the command prompt */
1265 parse_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001266
Erik Andersenc7c634b2000-03-19 05:28:55 +00001267 while (1) {
Erik Andersen6273f652000-03-17 01:12:41 +00001268
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001269 fflush(stdout); /* buffered out to fast */
Mark Whitley4e338752001-01-26 20:42:23 +00001270
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001271 if (read(inputFd, &c, 1) < 1)
Erik Andersenf0657d32000-04-12 17:49:52 +00001272 return;
Erik Andersenf3b3d172000-04-09 18:24:05 +00001273
Erik Andersen13456d12000-03-16 08:09:57 +00001274 switch (c) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001275 case '\n':
1276 case '\r':
1277 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001278 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001279 break_out = 1;
1280 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001281 case 1:
1282 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001283 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001284 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001285 case 2:
1286 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001287 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001288 break;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001289 case 3:
Eric Andersen86349772000-12-18 20:25:50 +00001290 /* Control-c -- stop gathering input */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001291
Eric Andersen86349772000-12-18 20:25:50 +00001292 /* Link into lash to reset context to 0 on ^C and such */
1293 shell_context = 0;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001294
1295 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001296 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001297 command[0] = 0;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001298
Eric Andersen86349772000-12-18 20:25:50 +00001299 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001300 case 4:
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001301 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001302 * if the len=0 and no chars to delete */
1303 if (len == 0) {
Mark Whitley4e338752001-01-26 20:42:23 +00001304 printf("exit");
Erik Andersenf0657d32000-04-12 17:49:52 +00001305 clean_up_and_die(0);
1306 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001307 input_delete();
Erik Andersenf0657d32000-04-12 17:49:52 +00001308 }
1309 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001310 case 5:
1311 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001312 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001313 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001314 case 6:
1315 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001316 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001317 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001318 case '\b':
1319 case DEL:
Erik Andersen1d1d9502000-04-21 01:26:49 +00001320 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001321 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001322 break;
1323 case '\t':
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001324#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001325 input_tab(&lastWasTab);
Erik Andersena2685732000-04-09 18:27:46 +00001326#endif
Erik Andersenc7c634b2000-03-19 05:28:55 +00001327 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001328 case 14:
1329 /* Control-n -- Get next command in history */
1330 if (hp && hp->n && hp->n->s) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001331 get_next_history(&hp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001332 goto rewrite_line;
1333 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001334 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001335 }
1336 break;
1337 case 16:
1338 /* Control-p -- Get previous command from history */
1339 if (hp && hp->p) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001340 get_previous_history(&hp, hp->p);
Erik Andersenf0657d32000-04-12 17:49:52 +00001341 goto rewrite_line;
1342 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001343 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001344 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001345 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001346 case 21:
1347 /* Control-U -- Clear line before cursor */
1348 if (cursor) {
1349 strcpy(command, command + cursor);
1350 redraw(cmdedit_y, len -= cursor);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001351 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001352 break;
1353
1354 case ESC:{
1355 /* escape sequence follows */
1356 if (read(inputFd, &c, 1) < 1)
1357 return;
1358 /* different vt100 emulations */
1359 if (c == '[' || c == 'O') {
1360 if (read(inputFd, &c, 1) < 1)
1361 return;
1362 }
1363 switch (c) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001364#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001365 case '\t': /* Alt-Tab */
1366
1367 input_tab(&lastWasTab);
1368 break;
1369#endif
1370 case 'A':
1371 /* Up Arrow -- Get previous command from history */
1372 if (hp && hp->p) {
1373 get_previous_history(&hp, hp->p);
1374 goto rewrite_line;
1375 } else {
1376 beep();
1377 }
1378 break;
1379 case 'B':
1380 /* Down Arrow -- Get next command in history */
1381 if (hp && hp->n && hp->n->s) {
1382 get_next_history(&hp);
1383 goto rewrite_line;
1384 } else {
1385 beep();
1386 }
1387 break;
1388
1389 /* Rewrite the line with the selected history item */
1390 rewrite_line:
1391 /* change command */
1392 len = strlen(strcpy(command, hp->s));
1393 /* redraw and go to end line */
1394 redraw(cmdedit_y, 0);
1395 break;
1396 case 'C':
1397 /* Right Arrow -- Move forward one character */
1398 input_forward();
1399 break;
1400 case 'D':
1401 /* Left Arrow -- Move back one character */
1402 input_backward(1);
1403 break;
1404 case '3':
1405 /* Delete */
1406 input_delete();
1407 break;
1408 case '1':
1409 case 'H':
1410 /* Home (Ctrl-A) */
1411 input_backward(cursor);
1412 break;
1413 case '4':
1414 case 'F':
1415 /* End (Ctrl-E) */
1416 input_end();
1417 break;
1418 default:
1419 if (!(c >= '1' && c <= '9'))
1420 c = 0;
1421 beep();
1422 }
1423 if (c >= '1' && c <= '9')
1424 do
1425 if (read(inputFd, &c, 1) < 1)
1426 return;
1427 while (c != '~');
1428 break;
1429 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001430
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001431 default: /* If it's regular input, do the normal thing */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001432#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1433 /* Control-V -- Add non-printable symbol */
1434 if (c == 22) {
1435 if (read(inputFd, &c, 1) < 1)
1436 return;
1437 if (c == 0) {
1438 beep();
1439 break;
1440 }
1441 } else
1442#endif
1443 if (!isprint(c)) /* Skip non-printable characters */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001444 break;
1445
1446 if (len >= (BUFSIZ - 2)) /* Need to leave space for enter */
1447 break;
1448
1449 len++;
1450
1451 if (cursor == (len - 1)) { /* Append if at the end of the line */
Erik Andersenf0657d32000-04-12 17:49:52 +00001452 *(command + cursor) = c;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001453 *(command + cursor + 1) = 0;
1454 cmdedit_set_out_char(0);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001455 } else { /* Insert otherwise */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001456 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001457
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001458 memmove(command + sc + 1, command + sc, len - sc);
1459 *(command + sc) = c;
1460 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00001461 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001462 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00001463 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001464 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001465 }
1466
Erik Andersenc7c634b2000-03-19 05:28:55 +00001467 break;
Erik Andersen13456d12000-03-16 08:09:57 +00001468 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001469 if (break_out) /* Enter is the command terminator, no more input. */
1470 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001471
1472 if (c != '\t')
1473 lastWasTab = FALSE;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001474 }
1475
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001476 setTermSettings(inputFd, (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001477 handlers_sets &= ~SET_RESET_TERM;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001478
1479 /* Handle command history log */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001480 if (len) { /* no put empty line */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001481
1482 struct history *h = his_end;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001483 char *ss;
Mark Whitley4e338752001-01-26 20:42:23 +00001484
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001485 ss = xstrdup(command); /* duplicate */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001486
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001487 if (h == 0) {
Eric Andersen91a44002000-07-19 17:37:57 +00001488 /* No previous history -- this memory is never freed */
Matt Kraai322ae932000-09-13 02:46:14 +00001489 h = his_front = xmalloc(sizeof(struct history));
1490 h->n = xmalloc(sizeof(struct history));
Erik Andersenc7c634b2000-03-19 05:28:55 +00001491
1492 h->p = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +00001493 h->s = ss;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001494 h->n->p = h;
1495 h->n->n = NULL;
1496 h->n->s = NULL;
1497 his_end = h->n;
1498 history_counter++;
1499 } else {
Eric Andersen91a44002000-07-19 17:37:57 +00001500 /* Add a new history command -- this memory is never freed */
Matt Kraai322ae932000-09-13 02:46:14 +00001501 h->n = xmalloc(sizeof(struct history));
Erik Andersenc7c634b2000-03-19 05:28:55 +00001502
1503 h->n->p = h;
1504 h->n->n = NULL;
1505 h->n->s = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +00001506 h->s = ss;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001507 his_end = h->n;
1508
1509 /* After max history, remove the oldest command */
1510 if (history_counter >= MAX_HISTORY) {
1511
1512 struct history *p = his_front->n;
1513
1514 p->p = NULL;
1515 free(his_front->s);
1516 free(his_front);
1517 his_front = p;
1518 } else {
1519 history_counter++;
1520 }
Erik Andersen13456d12000-03-16 08:09:57 +00001521 }
Mark Whitleyf5949862001-03-14 00:29:14 +00001522#if !defined(BB_FEATURE_SH_SIMPLE_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001523 num_ok_lines++;
1524#endif
Erik Andersen6273f652000-03-17 01:12:41 +00001525 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001526 command[len++] = '\n'; /* set '\n' */
1527 command[len] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001528#if defined(BB_FEATURE_CLEAN_UP) && defined(BB_FEATURE_COMMAND_TAB_COMPLETION)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001529 input_tab(0); /* strong free */
1530#endif
Mark Whitleyf5949862001-03-14 00:29:14 +00001531#if !defined(BB_FEATURE_SH_SIMPLE_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001532 free(cmdedit_prompt);
1533#endif
Erik Andersenf0657d32000-04-12 17:49:52 +00001534 return;
Erik Andersen13456d12000-03-16 08:09:57 +00001535}
1536
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001537
Mark Whitley4e338752001-01-26 20:42:23 +00001538/* Undo the effects of cmdedit_init(). */
Eric Andersen501c88b2000-07-28 15:14:45 +00001539extern void cmdedit_terminate(void)
1540{
1541 cmdedit_reset_term();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001542 if ((handlers_sets & SET_TERM_HANDLERS) != 0) {
Mark Whitley4e338752001-01-26 20:42:23 +00001543 signal(SIGKILL, SIG_DFL);
1544 signal(SIGINT, SIG_DFL);
1545 signal(SIGQUIT, SIG_DFL);
1546 signal(SIGTERM, SIG_DFL);
1547 signal(SIGWINCH, SIG_DFL);
1548 handlers_sets &= ~SET_TERM_HANDLERS;
1549 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001550}
1551
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001552#endif /* BB_FEATURE_COMMAND_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00001553
1554
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001555#ifdef TEST
1556
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001557#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1558#include <locale.h>
1559#endif
1560
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001561unsigned int shell_context;
1562
1563int main(int argc, char **argv)
1564{
1565 char buff[BUFSIZ];
1566 char *prompt =
Mark Whitleyf5949862001-03-14 00:29:14 +00001567#if !defined(BB_FEATURE_SH_SIMPLE_PROMPT)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001568 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:\
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001569\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] \
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001570\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001571#else
1572 "% ";
1573#endif
1574
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001575#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1576 setlocale(LC_ALL, "");
1577#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001578 shell_context = 1;
1579 do {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001580 int l;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001581 cmdedit_read_input(prompt, buff);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001582 l = strlen(buff);
1583 if(l > 0 && buff[l-1] == '\n')
1584 buff[l-1] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001585 printf("*** cmdedit_read_input() returned line =%s=\n", buff);
1586 } while (shell_context);
1587 printf("*** cmdedit_read_input() detect ^C\n");
1588 return 0;
1589}
1590
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001591#endif /* TEST */