blob: 6dcc33844f2ee50604212b3b3b34704307fa9dcc [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)
116#endif
117
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 Andersen5f2c79d2001-02-16 18:36:04 +0000444 case '!':
445 snprintf(buf, sizeof(buf), "%d", num_ok_lines);
446 add_to_prompt(&prmt_mem_ptr, &alm, &prmt_len, buf);
447 continue;
448 case 'e':
449 case 'E': /* \e \E = \033 */
450 c = '\033';
451 break;
452 case 'x':
453 case 'X':
454 case '0':
455 case '1':
456 case '2':
457 case '3':
458 case '4':
459 case '5':
460 case '6':
461 case '7':{
462 int l;
463 int ho = 0;
464 char *eho;
465
466 if (c == 'X')
467 c = 'x';
468
469 for (l = 0; l < 3;) {
470
471 buf[l++] = *prmt_ptr;
472 buf[l] = 0;
473 ho = strtol(buf, &eho, c == 'x' ? 16 : 8);
474 if (ho > UCHAR_MAX || (eho - buf) < l) {
475 l--;
476 break;
477 }
478 prmt_ptr++;
479 }
480 buf[l] = 0;
481 ho = strtol(buf, 0, c == 'x' ? 16 : 8);
482 c = ho == 0 ? '?' : (char) ho;
483 break;
484 }
485 case '[':
486 case ']':
487 if (c == flg_not_length) {
488 flg_not_length = flg_not_length == '[' ? ']' : '[';
489 continue;
490 }
491 break;
492 }
493 }
494 buf[0] = c;
495 buf[1] = 0;
496 add_to_prompt(&prmt_mem_ptr, &alm, &prmt_len, buf);
497 if (flg_not_length == ']')
498 sub_len++;
499 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000500 cmdedit_prompt = prmt_mem_ptr;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000501 cmdedit_prmt_len = prmt_len - sub_len;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000502 put_prompt();
503}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000504#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000505
506
507/* draw promt, editor line, and clear tail */
508static void redraw(int y, int back_cursor)
509{
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000510 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000511 printf("\033[%dA", y);
512 cmdedit_y = 0; /* new quasireal y */
513 putchar('\r');
514 put_prompt();
515 input_end(); /* rewrite */
516 printf("\033[J"); /* destroy tail after cursor */
517 input_backward(back_cursor);
518}
519
Erik Andersenf0657d32000-04-12 17:49:52 +0000520/* Delete the char in front of the cursor */
Mark Whitley4e338752001-01-26 20:42:23 +0000521static void input_delete(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000522{
Mark Whitley4e338752001-01-26 20:42:23 +0000523 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000524
Mark Whitley4e338752001-01-26 20:42:23 +0000525 if (j == len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000526 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000527
528 strcpy(command_ps + j, command_ps + j + 1);
Mark Whitley4e338752001-01-26 20:42:23 +0000529 len--;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000530 input_end(); /* rewtite new line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000531 cmdedit_set_out_char(0); /* destroy end char */
532 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000533}
534
Mark Whitley4e338752001-01-26 20:42:23 +0000535/* Delete the char in back of the cursor */
536static void input_backspace(void)
537{
538 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000539 input_backward(1);
540 input_delete();
Mark Whitley4e338752001-01-26 20:42:23 +0000541 }
542}
543
544
Erik Andersenf0657d32000-04-12 17:49:52 +0000545/* Move forward one charactor */
Mark Whitley4e338752001-01-26 20:42:23 +0000546static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000547{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000548 if (cursor < len)
549 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000550}
551
552
Mark Whitley4e338752001-01-26 20:42:23 +0000553static void clean_up_and_die(int sig)
554{
555 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000556 if (sig != SIGINT)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000557 exit(EXIT_SUCCESS); /* cmdedit_reset_term() called in atexit */
Mark Whitley4e338752001-01-26 20:42:23 +0000558 cmdedit_reset_term();
559}
560
561static void cmdedit_setwidth(int w, int redraw_flg)
562{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000563 cmdedit_termw = cmdedit_prmt_len + 2;
Eric Andersen6faae7d2001-02-16 20:09:17 +0000564 if (w <= cmdedit_termw) {
565 cmdedit_termw = cmdedit_termw % w;
566 }
Mark Whitley4e338752001-01-26 20:42:23 +0000567 if (w > cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000568 cmdedit_termw = w;
569
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000570 if (redraw_flg) {
571 /* new y for current cursor */
572 int new_y = (cursor + cmdedit_prmt_len) / w;
Mark Whitley4e338752001-01-26 20:42:23 +0000573
574 /* redraw */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000575 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), len - cursor);
576 fflush(stdout);
Mark Whitley4e338752001-01-26 20:42:23 +0000577 }
Eric Andersen6faae7d2001-02-16 20:09:17 +0000578 }
Mark Whitley4e338752001-01-26 20:42:23 +0000579}
580
581extern void cmdedit_init(void)
582{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000583 if ((handlers_sets & SET_WCHG_HANDLERS) == 0) {
584 /* emulate usage handler to set handler and call yours work */
Mark Whitley4e338752001-01-26 20:42:23 +0000585 win_changed(-SIGWINCH);
586 handlers_sets |= SET_WCHG_HANDLERS;
587 }
588
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000589 if ((handlers_sets & SET_ATEXIT) == 0) {
590#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
591 struct passwd *entry;
592
593 my_euid = geteuid();
594 entry = getpwuid(my_euid);
595 if (entry) {
596 user_buf = xstrdup(entry->pw_name);
597 home_pwd_buf = xstrdup(entry->pw_dir);
598 }
599#endif
600
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000601#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000602
603#ifndef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
604 my_euid = geteuid();
605#endif
606 my_uid = getuid();
607 my_gid = getgid();
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000608#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000609 handlers_sets |= SET_ATEXIT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000610 atexit(cmdedit_reset_term); /* be sure to do this only once */
Mark Whitley4e338752001-01-26 20:42:23 +0000611 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000612
613 if ((handlers_sets & SET_TERM_HANDLERS) == 0) {
Mark Whitley4e338752001-01-26 20:42:23 +0000614 signal(SIGKILL, clean_up_and_die);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000615 signal(SIGINT, clean_up_and_die);
Mark Whitley4e338752001-01-26 20:42:23 +0000616 signal(SIGQUIT, clean_up_and_die);
617 signal(SIGTERM, clean_up_and_die);
618 handlers_sets |= SET_TERM_HANDLERS;
619 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000620
Mark Whitley4e338752001-01-26 20:42:23 +0000621}
Erik Andersenf0657d32000-04-12 17:49:52 +0000622
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000623#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000624
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000625static int is_execute(const struct stat *st)
Erik Andersen6273f652000-03-17 01:12:41 +0000626{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000627 if ((!my_euid && (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) ||
628 (my_uid == st->st_uid && (st->st_mode & S_IXUSR)) ||
629 (my_gid == st->st_gid && (st->st_mode & S_IXGRP)) ||
630 (st->st_mode & S_IXOTH)) return TRUE;
631 return FALSE;
Erik Andersen6273f652000-03-17 01:12:41 +0000632}
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000633
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000634#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000635
636static char **username_tab_completion(char *ud, int *num_matches)
637{
638 struct passwd *entry;
639 int userlen;
640 char *temp;
641
642
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000643 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000644 userlen = strlen(ud);
645
646 if (num_matches == 0) { /* "~/..." or "~user/..." */
647 char *sav_ud = ud - 1;
648 char *home = 0;
649
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000650 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000651 home = home_pwd_buf;
652 } else {
653 /* "~user/..." */
654 temp = strchr(ud, '/');
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000655 *temp = 0; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000656 entry = getpwnam(ud);
657 *temp = '/'; /* restore ~user/... */
658 ud = temp;
659 if (entry)
660 home = entry->pw_dir;
661 }
662 if (home) {
663 if ((userlen + strlen(home) + 1) < BUFSIZ) {
664 char temp2[BUFSIZ]; /* argument size */
665
666 /* /home/user/... */
667 sprintf(temp2, "%s%s", home, ud);
668 strcpy(sav_ud, temp2);
669 }
670 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000671 return 0; /* void, result save to argument :-) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000672 } else {
673 /* "~[^/]*" */
674 char **matches = (char **) NULL;
675 int nm = 0;
676
677 setpwent();
678
679 while ((entry = getpwent()) != NULL) {
680 /* Null usernames should result in all users as possible completions. */
681 if ( /*!userlen || */ !strncmp(ud, entry->pw_name, userlen)) {
682
683 temp = xmalloc(3 + strlen(entry->pw_name));
684 sprintf(temp, "~%s/", entry->pw_name);
685 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
686
687 matches[nm++] = temp;
688 }
689 }
690
691 endpwent();
692 (*num_matches) = nm;
693 return (matches);
694 }
695}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000696#endif /* BB_FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000697
698enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000699 FIND_EXE_ONLY = 0,
700 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000701 FIND_FILE_ONLY = 2,
702};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000703
Mark Whitley4e338752001-01-26 20:42:23 +0000704static int path_parse(char ***p, int flags)
705{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000706 int npth;
Mark Whitley4e338752001-01-26 20:42:23 +0000707 char *tmp;
708 char *pth;
709
Mark Whitley4e338752001-01-26 20:42:23 +0000710 /* if not setenv PATH variable, to search cur dir "." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000711 if (flags != FIND_EXE_ONLY || (pth = getenv("PATH")) == 0 ||
712 /* PATH=<empty> or PATH=:<empty> */
713 *pth == 0 || (*pth == ':' && *(pth + 1) == 0)) {
Mark Whitley4e338752001-01-26 20:42:23 +0000714 return 1;
715 }
716
717 tmp = pth;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000718 npth = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000719
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000720 for (;;) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000721 npth++; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000722 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000723 if (tmp) {
724 if (*++tmp == 0)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000725 break; /* :<empty> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000726 } else
Mark Whitley4e338752001-01-26 20:42:23 +0000727 break;
728 }
729
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000730 *p = xmalloc(npth * sizeof(char *));
Mark Whitley4e338752001-01-26 20:42:23 +0000731
732 tmp = pth;
733 (*p)[0] = xstrdup(tmp);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000734 npth = 1; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000735
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000736 for (;;) {
Mark Whitley4e338752001-01-26 20:42:23 +0000737 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000738 if (tmp) {
739 (*p)[0][(tmp - pth)] = 0; /* ':' -> '\0' */
740 if (*++tmp == 0)
741 break; /* :<empty> */
Mark Whitley4e338752001-01-26 20:42:23 +0000742 } else
743 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000744 (*p)[npth++] = &(*p)[0][(tmp - pth)]; /* p[next]=p[0][&'\0'+1] */
Mark Whitley4e338752001-01-26 20:42:23 +0000745 }
746
747 return npth;
748}
749
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000750static char *add_quote_for_spec_chars(char *found)
Erik Andersen6273f652000-03-17 01:12:41 +0000751{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000752 int l = 0;
753 char *s = xmalloc((strlen(found) + 1) * 2);
754
755 while (*found) {
756 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
757 s[l++] = '\\';
758 s[l++] = *found++;
759 }
760 s[l] = 0;
761 return s;
762}
763
764static char **exe_n_cwd_tab_completion(char *command, int *num_matches,
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000765 int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000766{
767
768 char **matches = 0;
Erik Andersen1dbe3402000-03-19 10:46:06 +0000769 DIR *dir;
770 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000771 char dirbuf[BUFSIZ];
772 int nm = *num_matches;
773 struct stat st;
774 char *path1[1];
775 char **paths = path1;
776 int npaths;
777 int i;
778 char found[BUFSIZ + 4 + PATH_MAX];
779 char *pfind = strrchr(command, '/');
Mark Whitley4e338752001-01-26 20:42:23 +0000780
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000781 path1[0] = ".";
Mark Whitley4e338752001-01-26 20:42:23 +0000782
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000783 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000784 /* no dir, if flags==EXE_ONLY - get paths, else "." */
785 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000786 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000787 } else {
788 /* with dir */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000789 /* save for change */
790 strcpy(dirbuf, command);
791 /* set dir only */
792 dirbuf[(pfind - command) + 1] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000793#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000794 if (dirbuf[0] == '~') /* ~/... or ~user/... */
795 username_tab_completion(dirbuf, 0);
796#endif
797 /* "strip" dirname in command */
798 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000799
Mark Whitley4e338752001-01-26 20:42:23 +0000800 paths[0] = dirbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000801 npaths = 1; /* only 1 dir */
Mark Whitley4e338752001-01-26 20:42:23 +0000802 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000803
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000804 for (i = 0; i < npaths; i++) {
Erik Andersenc7c634b2000-03-19 05:28:55 +0000805
Mark Whitley4e338752001-01-26 20:42:23 +0000806 dir = opendir(paths[i]);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000807 if (!dir) /* Don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000808 continue;
809
810 while ((next = readdir(dir)) != NULL) {
811 const char *str_merge = "%s/%s";
812 char *str_found = next->d_name;
813
Mark Whitley4e338752001-01-26 20:42:23 +0000814 /* matched ? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000815 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000816 continue;
817 /* not see .name without .match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000818 if (*str_found == '.' && *pfind == 0) {
819 if (*paths[i] == '/' && paths[i][1] == 0
820 && str_found[1] == 0) str_found = ""; /* only "/" */
821 else
Mark Whitley4e338752001-01-26 20:42:23 +0000822 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000823 }
824 if (paths[i][strlen(paths[i]) - 1] == '/')
825 str_merge = "%s%s";
826 sprintf(found, str_merge, paths[i], str_found);
827 /* hmm, remover in progress? */
828 if (stat(found, &st) < 0)
829 continue;
830 /* find with dirs ? */
831 if (paths[i] != dirbuf)
832 strcpy(found, next->d_name); /* only name */
Mark Whitley4e338752001-01-26 20:42:23 +0000833 if (S_ISDIR(st.st_mode)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000834 /* name is directory */
835 /* algorithmic only "/" ? */
836 if (*str_found)
837 strcat(found, "/");
838 str_found = add_quote_for_spec_chars(found);
Mark Whitley4e338752001-01-26 20:42:23 +0000839 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000840 /* not put found file if search only dirs for cd */
841 if (type == FIND_DIR_ONLY)
842 continue;
843 str_found = add_quote_for_spec_chars(found);
844 if (type == FIND_FILE_ONLY ||
845 (type == FIND_EXE_ONLY && is_execute(&st) == TRUE))
846 strcat(str_found, " ");
847 }
Mark Whitley4e338752001-01-26 20:42:23 +0000848 /* Add it to the list */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000849 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
850
851 matches[nm++] = str_found;
Erik Andersen1dbe3402000-03-19 10:46:06 +0000852 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000853 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000854 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000855 if (paths != path1) {
856 free(paths[0]); /* allocated memory only in first member */
857 free(paths);
858 }
Mark Whitley4e338752001-01-26 20:42:23 +0000859 *num_matches = nm;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000860 return (matches);
Erik Andersen6273f652000-03-17 01:12:41 +0000861}
Erik Andersenf0657d32000-04-12 17:49:52 +0000862
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000863static int match_compare(const void *a, const void *b)
864{
865 return strcmp(*(char **) a, *(char **) b);
866}
867
868
869
870#define QUOT (UCHAR_MAX+1)
871
872#define collapse_pos(is, in) { \
873 memcpy(int_buf+is, int_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); \
874 memcpy(pos_buf+is, pos_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); }
875
876static int find_match(char *matchBuf, int *len_with_quotes)
877{
878 int i, j;
879 int command_mode;
880 int c, c2;
881 int int_buf[BUFSIZ + 1];
882 int pos_buf[BUFSIZ + 1];
883
884 /* set to integer dimension characters and own positions */
885 for (i = 0;; i++) {
886 int_buf[i] = (int) ((unsigned char) matchBuf[i]);
887 if (int_buf[i] == 0) {
888 pos_buf[i] = -1; /* indicator end line */
889 break;
890 } else
891 pos_buf[i] = i;
892 }
893
894 /* mask \+symbol and convert '\t' to ' ' */
895 for (i = j = 0; matchBuf[i]; i++, j++)
896 if (matchBuf[i] == '\\') {
897 collapse_pos(j, j + 1);
898 int_buf[j] |= QUOT;
899 i++;
900#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
901 if (matchBuf[i] == '\t') /* algorithm equivalent */
902 int_buf[j] = ' ' | QUOT;
903#endif
904 }
905#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
906 else if (matchBuf[i] == '\t')
907 int_buf[j] = ' ';
908#endif
909
910 /* mask "symbols" or 'symbols' */
911 c2 = 0;
912 for (i = 0; int_buf[i]; i++) {
913 c = int_buf[i];
914 if (c == '\'' || c == '"') {
915 if (c2 == 0)
916 c2 = c;
917 else {
918 if (c == c2)
919 c2 = 0;
920 else
921 int_buf[i] |= QUOT;
922 }
923 } else if (c2 != 0 && c != '$')
924 int_buf[i] |= QUOT;
925 }
926
927 /* skip commands with arguments if line have commands delimiters */
928 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
929 for (i = 0; int_buf[i]; i++) {
930 c = int_buf[i];
931 c2 = int_buf[i + 1];
932 j = i ? int_buf[i - 1] : -1;
933 command_mode = 0;
934 if (c == ';' || c == '&' || c == '|') {
935 command_mode = 1 + (c == c2);
936 if (c == '&') {
937 if (j == '>' || j == '<')
938 command_mode = 0;
939 } else if (c == '|' && j == '>')
940 command_mode = 0;
941 }
942 if (command_mode) {
943 collapse_pos(0, i + command_mode);
944 i = -1; /* hack incremet */
945 }
946 }
947 /* collapse `command...` */
948 for (i = 0; int_buf[i]; i++)
949 if (int_buf[i] == '`') {
950 for (j = i + 1; int_buf[j]; j++)
951 if (int_buf[j] == '`') {
952 collapse_pos(i, j + 1);
953 j = 0;
954 break;
955 }
956 if (j) {
957 /* not found close ` - command mode, collapse all previous */
958 collapse_pos(0, i + 1);
959 break;
960 } else
961 i--; /* hack incremet */
962 }
963
964 /* collapse (command...(command...)...) or {command...{command...}...} */
965 c = 0; /* "recursive" level */
966 c2 = 0;
967 for (i = 0; int_buf[i]; i++)
968 if (int_buf[i] == '(' || int_buf[i] == '{') {
969 if (int_buf[i] == '(')
970 c++;
971 else
972 c2++;
973 collapse_pos(0, i + 1);
974 i = -1; /* hack incremet */
975 }
976 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
977 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
978 if (int_buf[i] == ')')
979 c--;
980 else
981 c2--;
982 collapse_pos(0, i + 1);
983 i = -1; /* hack incremet */
984 }
985
986 /* skip first not quote space */
987 for (i = 0; int_buf[i]; i++)
988 if (int_buf[i] != ' ')
989 break;
990 if (i)
991 collapse_pos(0, i);
992
993 /* set find mode for completion */
994 command_mode = FIND_EXE_ONLY;
995 for (i = 0; int_buf[i]; i++)
996 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
997 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000998 && matchBuf[pos_buf[0]]=='c'
999 && matchBuf[pos_buf[1]]=='d' )
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001000 command_mode = FIND_DIR_ONLY;
1001 else {
1002 command_mode = FIND_FILE_ONLY;
1003 break;
1004 }
1005 }
1006 /* "strlen" */
1007 for (i = 0; int_buf[i]; i++);
1008 /* find last word */
1009 for (--i; i >= 0; i--) {
1010 c = int_buf[i];
1011 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
1012 collapse_pos(0, i + 1);
1013 break;
1014 }
1015 }
1016 /* skip first not quoted '\'' or '"' */
1017 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++);
1018 /* collapse quote or unquote // or /~ */
Mark Whitley7e5291f2001-03-08 19:31:12 +00001019 while ((int_buf[i] & ~QUOT) == '/' &&
1020 ((int_buf[i + 1] & ~QUOT) == '/'
1021 || (int_buf[i + 1] & ~QUOT) == '~')) {
1022 i++;
1023 }
1024 if (i) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001025 collapse_pos(0, i);
Mark Whitley7e5291f2001-03-08 19:31:12 +00001026 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001027
1028 /* set only match and destroy quotes */
1029 j = 0;
1030 for (i = 0; pos_buf[i] >= 0; i++) {
1031 matchBuf[i] = matchBuf[pos_buf[i]];
1032 j = pos_buf[i] + 1;
1033 }
1034 matchBuf[i] = 0;
1035 /* old lenght matchBuf with quotes symbols */
1036 *len_with_quotes = j ? j - pos_buf[0] : 0;
1037
1038 return command_mode;
1039}
1040
1041
1042static void input_tab(int *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001043{
1044 /* Do TAB completion */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001045 static int num_matches;
Mark Whitley4e338752001-01-26 20:42:23 +00001046 static char **matches;
1047
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001048 if (lastWasTab == 0) { /* free all memory */
Erik Andersenf0657d32000-04-12 17:49:52 +00001049 if (matches) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001050 while (num_matches > 0)
Mark Whitley4e338752001-01-26 20:42:23 +00001051 free(matches[--num_matches]);
Erik Andersenf0657d32000-04-12 17:49:52 +00001052 free(matches);
1053 matches = (char **) NULL;
1054 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001055 return;
1056 }
1057 if (*lastWasTab == FALSE) {
1058
1059 char *tmp;
1060 int len_found;
1061 char matchBuf[BUFSIZ];
1062 int find_type;
1063 int recalc_pos;
1064
1065 *lastWasTab = TRUE; /* flop trigger */
1066
1067 /* Make a local copy of the string -- up
1068 * to the position of the cursor */
1069 tmp = strncpy(matchBuf, command_ps, cursor);
1070 tmp[cursor] = 0;
1071
1072 find_type = find_match(matchBuf, &recalc_pos);
1073
1074 /* Free up any memory already allocated */
1075 input_tab(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001076
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001077#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001078 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001079 * then try completing this word as a username. */
1080
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001081 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
Mark Whitley4e338752001-01-26 20:42:23 +00001082 matches = username_tab_completion(matchBuf, &num_matches);
Mark Whitley4e338752001-01-26 20:42:23 +00001083#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001084 /* Try to match any executable in our path and everything
Erik Andersenf0657d32000-04-12 17:49:52 +00001085 * in the current working directory that matches. */
1086 if (!matches)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001087 matches =
1088 exe_n_cwd_tab_completion(matchBuf, &num_matches,
1089 find_type);
Erik Andersenf0657d32000-04-12 17:49:52 +00001090
1091 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001092 if (!matches || num_matches > 1) {
1093 char *tmp1;
1094
Mark Whitley4e338752001-01-26 20:42:23 +00001095 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001096 if (!matches)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001097 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001098 /* sort */
1099 qsort(matches, num_matches, sizeof(char *), match_compare);
1100
1101 /* find minimal match */
1102 tmp = xstrdup(matches[0]);
1103 for (tmp1 = tmp; *tmp1; tmp1++)
1104 for (len_found = 1; len_found < num_matches; len_found++)
1105 if (matches[len_found][(tmp1 - tmp)] != *tmp1) {
1106 *tmp1 = 0;
1107 break;
1108 }
1109 if (*tmp == 0) { /* have unique */
1110 free(tmp);
1111 return;
1112 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001113 } else { /* one match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001114 tmp = matches[0];
1115 /* for next completion current found */
1116 *lastWasTab = FALSE;
Mark Whitley4e338752001-01-26 20:42:23 +00001117 }
1118
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001119 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +00001120 /* have space to placed match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001121 if ((len_found - strlen(matchBuf) + len) < BUFSIZ) {
Mark Whitley4e338752001-01-26 20:42:23 +00001122
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001123 /* before word for match */
1124 command_ps[cursor - recalc_pos] = 0;
1125 /* save tail line */
1126 strcpy(matchBuf, command_ps + cursor);
1127 /* add match */
1128 strcat(command_ps, tmp);
1129 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +00001130 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001131 /* back to begin word for match */
1132 input_backward(recalc_pos);
1133 /* new pos */
1134 recalc_pos = cursor + len_found;
1135 /* new len */
1136 len = strlen(command_ps);
1137 /* write out the matched command */
1138 input_end();
1139 input_backward(cursor - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001140 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001141 if (tmp != matches[0])
1142 free(tmp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001143 } else {
1144 /* Ok -- the last char was a TAB. Since they
1145 * just hit TAB again, print a list of all the
1146 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001147 if (matches && num_matches > 0) {
1148 int i, col, l;
1149 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +00001150
1151 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001152 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001153 for (i = 0, col = 0; i < num_matches; i++) {
1154 l = strlen(matches[i]);
1155 if (l < 14)
1156 l = 14;
1157 printf("%-14s ", matches[i]);
1158 if ((l += 2) > 16)
1159 while (l % 16) {
1160 putchar(' ');
1161 l++;
1162 }
1163 col += l;
1164 col -= (col / cmdedit_termw) * cmdedit_termw;
1165 if (col > 60 && matches[i + 1] != NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +00001166 putchar('\n');
Erik Andersenf0657d32000-04-12 17:49:52 +00001167 col = 0;
1168 }
1169 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001170 /* Go to the next line and rewrite */
1171 putchar('\n');
1172 redraw(0, len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001173 }
1174 }
1175}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001176#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001177
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001178static void get_previous_history(struct history **hp, struct history *p)
Erik Andersenf0657d32000-04-12 17:49:52 +00001179{
Eric Andersen91a44002000-07-19 17:37:57 +00001180 if ((*hp)->s)
1181 free((*hp)->s);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001182 (*hp)->s = xstrdup(command_ps);
1183 *hp = p;
Erik Andersenf0657d32000-04-12 17:49:52 +00001184}
1185
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001186static inline void get_next_history(struct history **hp)
Erik Andersenf0657d32000-04-12 17:49:52 +00001187{
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001188 get_previous_history(hp, (*hp)->n);
Erik Andersenf0657d32000-04-12 17:49:52 +00001189}
1190
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001191enum {
1192 ESC = 27,
1193 DEL = 127,
1194};
1195
1196
Erik Andersen6273f652000-03-17 01:12:41 +00001197/*
1198 * This function is used to grab a character buffer
1199 * from the input file descriptor and allows you to
1200 * a string with full command editing (sortof like
1201 * a mini readline).
1202 *
1203 * The following standard commands are not implemented:
1204 * ESC-b -- Move back one word
1205 * ESC-f -- Move forward one word
1206 * ESC-d -- Delete back one word
1207 * ESC-h -- Delete forward one word
1208 * CTL-t -- Transpose two characters
1209 *
1210 * Furthermore, the "vi" command editing keys are not implemented.
1211 *
Erik Andersen6273f652000-03-17 01:12:41 +00001212 */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001213
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001214extern void cmdedit_read_input(char *prompt, char command[BUFSIZ])
Erik Andersen13456d12000-03-16 08:09:57 +00001215{
1216
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001217 int inputFd = fileno(stdin);
Mark Whitley4e338752001-01-26 20:42:23 +00001218
Erik Andersenc7c634b2000-03-19 05:28:55 +00001219 int break_out = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001220 int lastWasTab = FALSE;
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001221 unsigned char c = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001222 struct history *hp = his_end;
Erik Andersen13456d12000-03-16 08:09:57 +00001223
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001224 /* prepare before init handlers */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001225 cmdedit_y = 0; /* quasireal y, not true work if line > xt*yt */
Mark Whitley4e338752001-01-26 20:42:23 +00001226 len = 0;
Mark Whitley4e338752001-01-26 20:42:23 +00001227 command_ps = command;
1228
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001229 if (new_settings.c_cc[VMIN] == 0) { /* first call */
1230
1231 getTermSettings(inputFd, (void *) &initial_settings);
Erik Andersen1d1d9502000-04-21 01:26:49 +00001232 memcpy(&new_settings, &initial_settings, sizeof(struct termios));
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001233
Erik Andersen1d1d9502000-04-21 01:26:49 +00001234 new_settings.c_cc[VMIN] = 1;
1235 new_settings.c_cc[VTIME] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001236 /* Turn off CTRL-C, so we can trap it */
1237 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001238 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001239 /* Turn off echoing */
1240 new_settings.c_lflag &= ~(ECHO | ECHOCTL | ECHONL);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001241 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001242
1243 command[0] = 0;
1244
1245 setTermSettings(inputFd, (void *) &new_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001246 handlers_sets |= SET_RESET_TERM;
Erik Andersen13456d12000-03-16 08:09:57 +00001247
Eric Andersen6faae7d2001-02-16 20:09:17 +00001248 /* Now initialize things */
1249 cmdedit_init();
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001250 /* Print out the command prompt */
1251 parse_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001252
Erik Andersenc7c634b2000-03-19 05:28:55 +00001253 while (1) {
Erik Andersen6273f652000-03-17 01:12:41 +00001254
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001255 fflush(stdout); /* buffered out to fast */
Mark Whitley4e338752001-01-26 20:42:23 +00001256
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001257 if (read(inputFd, &c, 1) < 1)
Erik Andersenf0657d32000-04-12 17:49:52 +00001258 return;
Erik Andersenf3b3d172000-04-09 18:24:05 +00001259
Erik Andersen13456d12000-03-16 08:09:57 +00001260 switch (c) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001261 case '\n':
1262 case '\r':
1263 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001264 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001265 break_out = 1;
1266 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001267 case 1:
1268 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001269 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001270 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001271 case 2:
1272 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001273 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001274 break;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001275 case 3:
Eric Andersen86349772000-12-18 20:25:50 +00001276 /* Control-c -- stop gathering input */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001277
Eric Andersen86349772000-12-18 20:25:50 +00001278 /* Link into lash to reset context to 0 on ^C and such */
1279 shell_context = 0;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001280
1281 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001282 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001283 command[0] = 0;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001284
Eric Andersen86349772000-12-18 20:25:50 +00001285 return;
Erik Andersenf0657d32000-04-12 17:49:52 +00001286 case 4:
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001287 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001288 * if the len=0 and no chars to delete */
1289 if (len == 0) {
Mark Whitley4e338752001-01-26 20:42:23 +00001290 printf("exit");
Erik Andersenf0657d32000-04-12 17:49:52 +00001291 clean_up_and_die(0);
1292 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001293 input_delete();
Erik Andersenf0657d32000-04-12 17:49:52 +00001294 }
1295 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001296 case 5:
1297 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001298 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001299 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001300 case 6:
1301 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001302 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001303 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001304 case '\b':
1305 case DEL:
Erik Andersen1d1d9502000-04-21 01:26:49 +00001306 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001307 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001308 break;
1309 case '\t':
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001310#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001311 input_tab(&lastWasTab);
Erik Andersena2685732000-04-09 18:27:46 +00001312#endif
Erik Andersenc7c634b2000-03-19 05:28:55 +00001313 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001314 case 14:
1315 /* Control-n -- Get next command in history */
1316 if (hp && hp->n && hp->n->s) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001317 get_next_history(&hp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001318 goto rewrite_line;
1319 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001320 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001321 }
1322 break;
1323 case 16:
1324 /* Control-p -- Get previous command from history */
1325 if (hp && hp->p) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001326 get_previous_history(&hp, hp->p);
Erik Andersenf0657d32000-04-12 17:49:52 +00001327 goto rewrite_line;
1328 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001329 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001330 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001331 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001332 case 21:
1333 /* Control-U -- Clear line before cursor */
1334 if (cursor) {
1335 strcpy(command, command + cursor);
1336 redraw(cmdedit_y, len -= cursor);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001337 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001338 break;
1339
1340 case ESC:{
1341 /* escape sequence follows */
1342 if (read(inputFd, &c, 1) < 1)
1343 return;
1344 /* different vt100 emulations */
1345 if (c == '[' || c == 'O') {
1346 if (read(inputFd, &c, 1) < 1)
1347 return;
1348 }
1349 switch (c) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001350#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001351 case '\t': /* Alt-Tab */
1352
1353 input_tab(&lastWasTab);
1354 break;
1355#endif
1356 case 'A':
1357 /* Up Arrow -- Get previous command from history */
1358 if (hp && hp->p) {
1359 get_previous_history(&hp, hp->p);
1360 goto rewrite_line;
1361 } else {
1362 beep();
1363 }
1364 break;
1365 case 'B':
1366 /* Down Arrow -- Get next command in history */
1367 if (hp && hp->n && hp->n->s) {
1368 get_next_history(&hp);
1369 goto rewrite_line;
1370 } else {
1371 beep();
1372 }
1373 break;
1374
1375 /* Rewrite the line with the selected history item */
1376 rewrite_line:
1377 /* change command */
1378 len = strlen(strcpy(command, hp->s));
1379 /* redraw and go to end line */
1380 redraw(cmdedit_y, 0);
1381 break;
1382 case 'C':
1383 /* Right Arrow -- Move forward one character */
1384 input_forward();
1385 break;
1386 case 'D':
1387 /* Left Arrow -- Move back one character */
1388 input_backward(1);
1389 break;
1390 case '3':
1391 /* Delete */
1392 input_delete();
1393 break;
1394 case '1':
1395 case 'H':
1396 /* Home (Ctrl-A) */
1397 input_backward(cursor);
1398 break;
1399 case '4':
1400 case 'F':
1401 /* End (Ctrl-E) */
1402 input_end();
1403 break;
1404 default:
1405 if (!(c >= '1' && c <= '9'))
1406 c = 0;
1407 beep();
1408 }
1409 if (c >= '1' && c <= '9')
1410 do
1411 if (read(inputFd, &c, 1) < 1)
1412 return;
1413 while (c != '~');
1414 break;
1415 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001416
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001417 default: /* If it's regular input, do the normal thing */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001418#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1419 /* Control-V -- Add non-printable symbol */
1420 if (c == 22) {
1421 if (read(inputFd, &c, 1) < 1)
1422 return;
1423 if (c == 0) {
1424 beep();
1425 break;
1426 }
1427 } else
1428#endif
1429 if (!isprint(c)) /* Skip non-printable characters */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001430 break;
1431
1432 if (len >= (BUFSIZ - 2)) /* Need to leave space for enter */
1433 break;
1434
1435 len++;
1436
1437 if (cursor == (len - 1)) { /* Append if at the end of the line */
Erik Andersenf0657d32000-04-12 17:49:52 +00001438 *(command + cursor) = c;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001439 *(command + cursor + 1) = 0;
1440 cmdedit_set_out_char(0);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001441 } else { /* Insert otherwise */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001442 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001443
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001444 memmove(command + sc + 1, command + sc, len - sc);
1445 *(command + sc) = c;
1446 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00001447 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001448 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00001449 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001450 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001451 }
1452
Erik Andersenc7c634b2000-03-19 05:28:55 +00001453 break;
Erik Andersen13456d12000-03-16 08:09:57 +00001454 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001455 if (break_out) /* Enter is the command terminator, no more input. */
1456 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001457
1458 if (c != '\t')
1459 lastWasTab = FALSE;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001460 }
1461
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001462 setTermSettings(inputFd, (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001463 handlers_sets &= ~SET_RESET_TERM;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001464
1465 /* Handle command history log */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001466 if (len) { /* no put empty line */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001467
1468 struct history *h = his_end;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001469 char *ss;
Mark Whitley4e338752001-01-26 20:42:23 +00001470
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001471 ss = xstrdup(command); /* duplicate */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001472
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001473 if (h == 0) {
Eric Andersen91a44002000-07-19 17:37:57 +00001474 /* No previous history -- this memory is never freed */
Matt Kraai322ae932000-09-13 02:46:14 +00001475 h = his_front = xmalloc(sizeof(struct history));
1476 h->n = xmalloc(sizeof(struct history));
Erik Andersenc7c634b2000-03-19 05:28:55 +00001477
1478 h->p = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +00001479 h->s = ss;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001480 h->n->p = h;
1481 h->n->n = NULL;
1482 h->n->s = NULL;
1483 his_end = h->n;
1484 history_counter++;
1485 } else {
Eric Andersen91a44002000-07-19 17:37:57 +00001486 /* Add a new history command -- this memory is never freed */
Matt Kraai322ae932000-09-13 02:46:14 +00001487 h->n = xmalloc(sizeof(struct history));
Erik Andersenc7c634b2000-03-19 05:28:55 +00001488
1489 h->n->p = h;
1490 h->n->n = NULL;
1491 h->n->s = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +00001492 h->s = ss;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001493 his_end = h->n;
1494
1495 /* After max history, remove the oldest command */
1496 if (history_counter >= MAX_HISTORY) {
1497
1498 struct history *p = his_front->n;
1499
1500 p->p = NULL;
1501 free(his_front->s);
1502 free(his_front);
1503 his_front = p;
1504 } else {
1505 history_counter++;
1506 }
Erik Andersen13456d12000-03-16 08:09:57 +00001507 }
Mark Whitleyf5949862001-03-14 00:29:14 +00001508#if !defined(BB_FEATURE_SH_SIMPLE_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001509 num_ok_lines++;
1510#endif
Erik Andersen6273f652000-03-17 01:12:41 +00001511 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001512 command[len++] = '\n'; /* set '\n' */
1513 command[len] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001514#if defined(BB_FEATURE_CLEAN_UP) && defined(BB_FEATURE_COMMAND_TAB_COMPLETION)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001515 input_tab(0); /* strong free */
1516#endif
Mark Whitleyf5949862001-03-14 00:29:14 +00001517#if !defined(BB_FEATURE_SH_SIMPLE_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001518 free(cmdedit_prompt);
1519#endif
Erik Andersenf0657d32000-04-12 17:49:52 +00001520 return;
Erik Andersen13456d12000-03-16 08:09:57 +00001521}
1522
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001523
Mark Whitley4e338752001-01-26 20:42:23 +00001524/* Undo the effects of cmdedit_init(). */
Eric Andersen501c88b2000-07-28 15:14:45 +00001525extern void cmdedit_terminate(void)
1526{
1527 cmdedit_reset_term();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001528 if ((handlers_sets & SET_TERM_HANDLERS) != 0) {
Mark Whitley4e338752001-01-26 20:42:23 +00001529 signal(SIGKILL, SIG_DFL);
1530 signal(SIGINT, SIG_DFL);
1531 signal(SIGQUIT, SIG_DFL);
1532 signal(SIGTERM, SIG_DFL);
1533 signal(SIGWINCH, SIG_DFL);
1534 handlers_sets &= ~SET_TERM_HANDLERS;
1535 }
Eric Andersen501c88b2000-07-28 15:14:45 +00001536}
1537
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001538#endif /* BB_FEATURE_COMMAND_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00001539
1540
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001541#ifdef TEST
1542
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001543#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1544#include <locale.h>
1545#endif
1546
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001547unsigned int shell_context;
1548
1549int main(int argc, char **argv)
1550{
1551 char buff[BUFSIZ];
1552 char *prompt =
Mark Whitleyf5949862001-03-14 00:29:14 +00001553#if !defined(BB_FEATURE_SH_SIMPLE_PROMPT)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001554 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:\
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001555\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] \
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001556\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001557#else
1558 "% ";
1559#endif
1560
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001561#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1562 setlocale(LC_ALL, "");
1563#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001564 shell_context = 1;
1565 do {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001566 int l;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001567 cmdedit_read_input(prompt, buff);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001568 l = strlen(buff);
1569 if(l > 0 && buff[l-1] == '\n')
1570 buff[l-1] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001571 printf("*** cmdedit_read_input() returned line =%s=\n", buff);
1572 } while (shell_context);
1573 printf("*** cmdedit_read_input() detect ^C\n");
1574 return 0;
1575}
1576
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001577#endif /* TEST */