Patch from Lars Kellogg-Stedman <lars@larsshack.org> to fix bug
[oweals/busybox.git] / shell / cmdedit.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Termios command line History and Editting.
4  *
5  * 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  *
14  * This code is 'as is' with no warranty.
15  *
16  *
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.
25    Ctrl-E also works as End.
26
27    Small bugs (simple effect):
28    - not true viewing if terminal size (x*y symbols) less
29      size (prompt + editor`s line + 2 symbols)
30    - not true viewing if length prompt less terminal width
31  */
32
33
34 #include <stdio.h>
35 #include <errno.h>
36 #include <unistd.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <sys/ioctl.h>
40 #include <ctype.h>
41 #include <signal.h>
42 #include <limits.h>
43
44 #include "busybox.h"
45
46 #ifdef BB_LOCALE_SUPPORT
47 #define Isprint(c) isprint((c))
48 #else
49 #define Isprint(c) ( (c) >= ' ' && (c) != ((unsigned char)'\233') )
50 #endif
51
52 #ifndef TEST
53
54 #define D(x)
55
56 #else
57
58 #define BB_FEATURE_COMMAND_EDITING
59 #define BB_FEATURE_COMMAND_TAB_COMPLETION
60 #define BB_FEATURE_COMMAND_USERNAME_COMPLETION
61 #define BB_FEATURE_NONPRINTABLE_INVERSE_PUT
62 #define BB_FEATURE_CLEAN_UP
63
64 #define D(x)  x
65
66 #endif                                                  /* TEST */
67
68 #ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
69 #include <dirent.h>
70 #include <sys/stat.h>
71 #endif
72
73 #ifdef BB_FEATURE_COMMAND_EDITING
74
75 #ifndef BB_FEATURE_COMMAND_TAB_COMPLETION
76 #undef  BB_FEATURE_COMMAND_USERNAME_COMPLETION
77 #endif
78
79 #if defined(BB_FEATURE_COMMAND_USERNAME_COMPLETION) || defined(BB_FEATURE_SH_FANCY_PROMPT)
80 #define BB_FEATURE_GETUSERNAME_AND_HOMEDIR
81 #endif
82
83 #ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
84 #ifndef TEST
85 #include "pwd_grp/pwd.h"
86 #else
87 #include <pwd.h>
88 #endif                                                  /* TEST */
89 #endif                                                  /* advanced FEATURES */
90
91
92
93 struct history {
94         char *s;
95         struct history *p;
96         struct history *n;
97 };
98
99 /* Maximum length of the linked list for the command line history */
100 static const int MAX_HISTORY = 15;
101
102 /* First element in command line list */
103 static struct history *his_front = NULL;
104
105 /* Last element in command line list */
106 static struct history *his_end = NULL;
107
108
109 /* ED: sparc termios is broken: revert back to old termio handling. */
110
111 #if #cpu(sparc)
112 #      include <termio.h>
113 #      define termios termio
114 #      define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp)
115 #      define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp)
116 #else
117 #      include <termios.h>
118 #      define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
119 #      define getTermSettings(fd,argp) tcgetattr(fd, argp);
120 #endif
121
122 /* Current termio and the previous termio before starting sh */
123 static struct termios initial_settings, new_settings;
124
125
126 #ifndef _POSIX_VDISABLE
127 #define _POSIX_VDISABLE '\0'
128 #endif
129
130
131 static
132 volatile int cmdedit_termw = 80;        /* actual terminal width */
133 static int history_counter = 0; /* Number of commands in history list */
134 static
135 volatile int handlers_sets = 0; /* Set next bites: */
136
137 enum {
138         SET_ATEXIT = 1,         /* when atexit() has been called 
139                                    and get euid,uid,gid to fast compare */
140         SET_TERM_HANDLERS = 2,  /* set many terminates signal handlers */
141         SET_WCHG_HANDLERS = 4,  /* winchg signal handler */
142         SET_RESET_TERM = 8,     /* if the terminal needs to be reset upon exit */
143 };
144
145
146 static int cmdedit_x;           /* real x terminal position */
147 static int cmdedit_y;           /* pseudoreal y terminal position */
148 static int cmdedit_prmt_len;    /* lenght prompt without colores string */
149
150 static int cursor;              /* required global for signal handler */
151 static int len;                 /* --- "" - - "" - -"- --""-- --""--- */
152 static char *command_ps;        /* --- "" - - "" - -"- --""-- --""--- */
153 static
154 #ifndef BB_FEATURE_SH_FANCY_PROMPT
155         const
156 #endif
157 char *cmdedit_prompt;           /* --- "" - - "" - -"- --""-- --""--- */
158
159 /* Link into lash to reset context to 0 on ^C and such */
160 extern unsigned int shell_context;
161
162
163 #ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
164 static char *user_buf = "";
165 static char *home_pwd_buf = "";
166 static int my_euid;
167 #endif
168
169 #ifdef BB_FEATURE_SH_FANCY_PROMPT
170 static char *hostname_buf = "";
171 static int num_ok_lines = 1;
172 #endif
173
174
175 #ifdef  BB_FEATURE_COMMAND_TAB_COMPLETION
176
177 #ifndef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
178 static int my_euid;
179 #endif
180
181 static int my_uid;
182 static int my_gid;
183
184 #endif  /* BB_FEATURE_COMMAND_TAB_COMPLETION */
185
186
187 static void cmdedit_setwidth(int w, int redraw_flg);
188
189 static void win_changed(int nsig)
190 {
191         struct winsize win = { 0, 0, 0, 0 };
192         static __sighandler_t previous_SIGWINCH_handler;        /* for reset */
193
194         /*   emulate      || signal call */
195         if (nsig == -SIGWINCH || nsig == SIGWINCH) {
196                 ioctl(0, TIOCGWINSZ, &win);
197                 if (win.ws_col > 0) {
198                         cmdedit_setwidth(win.ws_col, nsig == SIGWINCH);
199                 } 
200         }
201         /* Unix not all standart in recall signal */
202
203         if (nsig == -SIGWINCH)          /* save previous handler   */
204                 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
205         else if (nsig == SIGWINCH)      /* signaled called handler */
206                 signal(SIGWINCH, win_changed);  /* set for next call       */
207         else                                            /* nsig == 0 */
208                 /* set previous handler    */
209                 signal(SIGWINCH, previous_SIGWINCH_handler);    /* reset    */
210 }
211
212 static void cmdedit_reset_term(void)
213 {
214         if ((handlers_sets & SET_RESET_TERM) != 0) {
215 /* sparc and other have broken termios support: use old termio handling. */
216                 setTermSettings(fileno(stdin), (void *) &initial_settings);
217                 handlers_sets &= ~SET_RESET_TERM;
218         }
219         if ((handlers_sets & SET_WCHG_HANDLERS) != 0) {
220                 /* reset SIGWINCH handler to previous (default) */
221                 win_changed(0);
222                 handlers_sets &= ~SET_WCHG_HANDLERS;
223         }
224         fflush(stdout);
225 #ifdef BB_FEATURE_CLEAN_UP
226         if (his_front) {
227                 struct history *n;
228
229                 while (his_front != his_end) {
230                         n = his_front->n;
231                         free(his_front->s);
232                         free(his_front);
233                         his_front = n;
234                 }
235         }
236 #endif
237 }
238
239
240 /* special for recount position for scroll and remove terminal margin effect */
241 static void cmdedit_set_out_char(int next_char)
242 {
243
244         int c = (int)((unsigned char) command_ps[cursor]);
245
246         if (c == 0)
247                 c = ' ';        /* destroy end char? */
248 #ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
249         if (!Isprint(c)) {      /* Inverse put non-printable characters */
250                 if (c >= 128)
251                         c -= 128;
252                 if (c < ' ')
253                         c += '@';
254                 if (c == 127)
255                         c = '?';
256                 printf("\033[7m%c\033[0m", c);
257         } else
258 #endif
259                 putchar(c);
260         if (++cmdedit_x >= cmdedit_termw) {
261                 /* terminal is scrolled down */
262                 cmdedit_y++;
263                 cmdedit_x = 0;
264
265                 if (!next_char)
266                         next_char = ' ';
267                 /* destroy "(auto)margin" */
268                 putchar(next_char);
269                 putchar('\b');
270         }
271         cursor++;
272 }
273
274 /* Move to end line. Bonus: rewrite line from cursor */
275 static void input_end(void)
276 {
277         while (cursor < len)
278                 cmdedit_set_out_char(0);
279 }
280
281 /* Go to the next line */
282 static void goto_new_line(void)
283 {
284         input_end();
285         if (cmdedit_x)
286                 putchar('\n');
287 }
288
289
290 static inline void out1str(const char *s)
291 {
292         fputs(s, stdout);
293 }
294 static inline void beep(void)
295 {
296         putchar('\007');
297 }
298
299 /* Move back one charactor */
300 /* special for slow terminal */
301 static void input_backward(int num)
302 {
303         if (num > cursor)
304                 num = cursor;
305         cursor -= num;          /* new cursor (in command, not terminal) */
306
307         if (cmdedit_x >= num) {         /* no to up line */
308                 cmdedit_x -= num;
309                 if (num < 4)
310                         while (num-- > 0)
311                                 putchar('\b');
312
313                 else
314                         printf("\033[%dD", num);
315         } else {
316                 int count_y;
317
318                 if (cmdedit_x) {
319                         putchar('\r');          /* back to first terminal pos.  */
320                         num -= cmdedit_x;       /* set previous backward        */
321                 }
322                 count_y = 1 + num / cmdedit_termw;
323                 printf("\033[%dA", count_y);
324                 cmdedit_y -= count_y;
325                 /*  require  forward  after  uping   */
326                 cmdedit_x = cmdedit_termw * count_y - num;
327                 printf("\033[%dC", cmdedit_x);  /* set term cursor   */
328         }
329 }
330
331 static void put_prompt(void)
332 {
333         out1str(cmdedit_prompt);
334         cmdedit_x = cmdedit_prmt_len;   /* count real x terminal position */
335         cursor = 0;
336 }
337
338 #ifndef BB_FEATURE_SH_FANCY_PROMPT
339 static void parse_prompt(const char *prmt_ptr)
340 {
341         cmdedit_prompt = prmt_ptr;
342         cmdedit_prmt_len = strlen(prmt_ptr);
343         put_prompt();
344 }
345 #else
346 static void parse_prompt(const char *prmt_ptr)
347 {
348         int prmt_len = 0;
349         int sub_len = 0;
350         char  flg_not_length = '[';
351         char *prmt_mem_ptr = xcalloc(1, 1);
352         char *pwd_buf = xgetcwd(0);
353         char  buf2[PATH_MAX + 1];
354         char  buf[2];
355         char  c;
356         char *pbuf;
357
358         if (!pwd_buf) {
359                 pwd_buf=unknown;
360         }
361
362         while (*prmt_ptr) {
363                 pbuf    = buf;
364                 pbuf[1] = 0;
365                 c = *prmt_ptr++;
366                 if (c == '\\') {
367                         const char *cp = prmt_ptr;
368                         int l;
369                         
370                         c = process_escape_sequence(&prmt_ptr);
371                         if(prmt_ptr==cp) {
372                           if (*cp == 0)
373                                 break;
374                           c = *prmt_ptr++;
375                           switch (c) {
376 #ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
377                           case 'u':
378                                 pbuf = user_buf;
379                                 break;
380 #endif  
381                           case 'h':
382                                 pbuf = hostname_buf;
383                                 if (*pbuf == 0) {
384                                         pbuf = xcalloc(256, 1);
385                                         if (gethostname(pbuf, 255) < 0) {
386                                                 strcpy(pbuf, "?");
387                                         } else {
388                                                 char *s = strchr(pbuf, '.');
389
390                                                 if (s)
391                                                         *s = 0;
392                                         }
393                                         hostname_buf = pbuf;
394                                 }
395                                 break;
396                           case '$':
397                                 c = my_euid == 0 ? '#' : '$';
398                                 break;
399 #ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
400                           case 'w':
401                                 pbuf = pwd_buf;
402                                 l = strlen(home_pwd_buf);
403                                 if (home_pwd_buf[0] != 0 &&
404                                     strncmp(home_pwd_buf, pbuf, l) == 0 &&
405                                     (pbuf[l]=='/' || pbuf[l]=='\0') &&
406                                     strlen(pwd_buf+l)<PATH_MAX) {
407                                         pbuf = buf2;
408                                         *pbuf = '~';
409                                         strcpy(pbuf+1, pwd_buf+l);
410                                         }
411                                 break;
412 #endif  
413                           case 'W':
414                                 pbuf = pwd_buf;
415                                 cp = strrchr(pbuf,'/');
416                                 if ( (cp != NULL) && (cp != pbuf) )
417                                         pbuf += (cp-pbuf)+1;
418                                 break;
419                           case '!':
420                                 snprintf(pbuf = buf2, sizeof(buf2), "%d", num_ok_lines);
421                                 break;
422                           case 'e': case 'E':     /* \e \E = \033 */
423                                 c = '\033';
424                                 break;
425                           case 'x': case 'X': 
426                                 for (l = 0; l < 3;) {
427                                         int h;
428                                         buf2[l++] = *prmt_ptr;
429                                         buf2[l] = 0;
430                                         h = strtol(buf2, &pbuf, 16);
431                                         if (h > UCHAR_MAX || (pbuf - buf2) < l) {
432                                                 l--;
433                                                 break;
434                                         }
435                                         prmt_ptr++;
436                                 }
437                                 buf2[l] = 0;
438                                 c = (char)strtol(buf2, 0, 16);
439                                 if(c==0)
440                                         c = '?';
441                                 pbuf = buf;
442                                 break;
443                           case '[': case ']':
444                                 if (c == flg_not_length) {
445                                         flg_not_length = flg_not_length == '[' ? ']' : '[';
446                                         continue;
447                                 }
448                                 break;
449                           }
450                         } 
451                 }
452                 if(pbuf == buf)
453                         *pbuf = c;
454                 prmt_len += strlen(pbuf);
455                 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
456                 if (flg_not_length == ']')
457                         sub_len++;
458         }
459         free(pwd_buf);
460         cmdedit_prompt = prmt_mem_ptr;
461         cmdedit_prmt_len = prmt_len - sub_len;
462         put_prompt();
463 }
464 #endif
465
466
467 /* draw promt, editor line, and clear tail */
468 static void redraw(int y, int back_cursor)
469 {
470         if (y > 0)                              /* up to start y */
471                 printf("\033[%dA", y);
472         cmdedit_y = 0;                          /* new quasireal y */
473         putchar('\r');
474         put_prompt();
475         input_end();                            /* rewrite */
476         printf("\033[J");                       /* destroy tail after cursor */
477         input_backward(back_cursor);
478 }
479
480 /* Delete the char in front of the cursor */
481 static void input_delete(void)
482 {
483         int j = cursor;
484
485         if (j == len)
486                 return;
487
488         strcpy(command_ps + j, command_ps + j + 1);
489         len--;
490         input_end();                    /* rewtite new line */
491         cmdedit_set_out_char(0);        /* destroy end char */
492         input_backward(cursor - j);     /* back to old pos cursor */
493 }
494
495 /* Delete the char in back of the cursor */
496 static void input_backspace(void)
497 {
498         if (cursor > 0) {
499                 input_backward(1);
500                 input_delete();
501         }
502 }
503
504
505 /* Move forward one charactor */
506 static void input_forward(void)
507 {
508         if (cursor < len)
509                 cmdedit_set_out_char(command_ps[cursor + 1]);
510 }
511
512
513 static void clean_up_and_die(int sig)
514 {
515         goto_new_line();
516         if (sig != SIGINT)
517                 exit(EXIT_SUCCESS);     /* cmdedit_reset_term() called in atexit */
518         cmdedit_reset_term();
519 }
520
521 static void cmdedit_setwidth(int w, int redraw_flg)
522 {
523         cmdedit_termw = cmdedit_prmt_len + 2;
524         if (w <= cmdedit_termw) {
525                 cmdedit_termw = cmdedit_termw % w;
526         }
527         if (w > cmdedit_termw) {
528                 cmdedit_termw = w;
529
530                 if (redraw_flg) {
531                         /* new y for current cursor */
532                         int new_y = (cursor + cmdedit_prmt_len) / w;
533
534                         /* redraw */
535                         redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), len - cursor);
536                         fflush(stdout);
537                 }
538         } 
539 }
540
541 extern void cmdedit_init(void)
542 {
543         cmdedit_prmt_len = 0;
544         if ((handlers_sets & SET_WCHG_HANDLERS) == 0) {
545                 /* emulate usage handler to set handler and call yours work */
546                 win_changed(-SIGWINCH);
547                 handlers_sets |= SET_WCHG_HANDLERS;
548         }
549
550         if ((handlers_sets & SET_ATEXIT) == 0) {
551 #ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
552                 struct passwd *entry;
553
554                 my_euid = geteuid();
555                 entry = getpwuid(my_euid);
556                 if (entry) {
557                         user_buf = xstrdup(entry->pw_name);
558                         home_pwd_buf = xstrdup(entry->pw_dir);
559                 }
560 #endif
561
562 #ifdef  BB_FEATURE_COMMAND_TAB_COMPLETION
563
564 #ifndef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
565                 my_euid = geteuid();
566 #endif
567                 my_uid = getuid();
568                 my_gid = getgid();
569 #endif  /* BB_FEATURE_COMMAND_TAB_COMPLETION */
570                 handlers_sets |= SET_ATEXIT;
571                 atexit(cmdedit_reset_term);     /* be sure to do this only once */
572         }
573
574 #if 0
575         if ((handlers_sets & SET_TERM_HANDLERS) == 0) {
576                 signal(SIGKILL, clean_up_and_die);
577                 signal(SIGINT, clean_up_and_die);
578                 signal(SIGQUIT, clean_up_and_die);
579                 signal(SIGTERM, clean_up_and_die);
580                 handlers_sets |= SET_TERM_HANDLERS;
581         }
582 #endif  
583
584 }
585
586 #ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
587
588 static int is_execute(const struct stat *st)
589 {
590         if ((!my_euid && (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) ||
591                 (my_uid == st->st_uid && (st->st_mode & S_IXUSR)) ||
592                 (my_gid == st->st_gid && (st->st_mode & S_IXGRP)) ||
593                 (st->st_mode & S_IXOTH)) return TRUE;
594         return FALSE;
595 }
596
597 #ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
598
599 static char **username_tab_completion(char *ud, int *num_matches)
600 {
601         struct passwd *entry;
602         int userlen;
603         char *temp;
604
605
606         ud++;                           /* ~user/... to user/... */
607         userlen = strlen(ud);
608
609         if (num_matches == 0) {         /* "~/..." or "~user/..." */
610                 char *sav_ud = ud - 1;
611                 char *home = 0;
612
613                 if (*ud == '/') {       /* "~/..."     */
614                         home = home_pwd_buf;
615                 } else {
616                         /* "~user/..." */
617                         temp = strchr(ud, '/');
618                         *temp = 0;              /* ~user\0 */
619                         entry = getpwnam(ud);
620                         *temp = '/';            /* restore ~user/... */
621                         ud = temp;
622                         if (entry)
623                                 home = entry->pw_dir;
624                 }
625                 if (home) {
626                         if ((userlen + strlen(home) + 1) < BUFSIZ) {
627                                 char temp2[BUFSIZ];     /* argument size */
628
629                                 /* /home/user/... */
630                                 sprintf(temp2, "%s%s", home, ud);
631                                 strcpy(sav_ud, temp2);
632                         }
633                 }
634                 return 0;       /* void, result save to argument :-) */
635         } else {
636                 /* "~[^/]*" */
637                 char **matches = (char **) NULL;
638                 int nm = 0;
639
640                 setpwent();
641
642                 while ((entry = getpwent()) != NULL) {
643                         /* Null usernames should result in all users as possible completions. */
644                         if ( /*!userlen || */ !strncmp(ud, entry->pw_name, userlen)) {
645
646                                 temp = xmalloc(3 + strlen(entry->pw_name));
647                                 sprintf(temp, "~%s/", entry->pw_name);
648                                 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
649
650                                 matches[nm++] = temp;
651                         }
652                 }
653
654                 endpwent();
655                 (*num_matches) = nm;
656                 return (matches);
657         }
658 }
659 #endif  /* BB_FEATURE_COMMAND_USERNAME_COMPLETION */
660
661 enum {
662         FIND_EXE_ONLY = 0,
663         FIND_DIR_ONLY = 1,
664         FIND_FILE_ONLY = 2,
665 };
666
667 static int path_parse(char ***p, int flags)
668 {
669         int npth;
670         char *tmp;
671         char *pth;
672
673         /* if not setenv PATH variable, to search cur dir "." */
674         if (flags != FIND_EXE_ONLY || (pth = getenv("PATH")) == 0 ||
675                 /* PATH=<empty> or PATH=:<empty> */
676                 *pth == 0 || (*pth == ':' && *(pth + 1) == 0)) {
677                 return 1;
678         }
679
680         tmp = pth;
681         npth = 0;
682
683         for (;;) {
684                 npth++;                 /* count words is + 1 count ':' */
685                 tmp = strchr(tmp, ':');
686                 if (tmp) {
687                         if (*++tmp == 0)
688                                 break;  /* :<empty> */
689                 } else
690                         break;
691         }
692
693         *p = xmalloc(npth * sizeof(char *));
694
695         tmp = pth;
696         (*p)[0] = xstrdup(tmp);
697         npth = 1;                       /* count words is + 1 count ':' */
698
699         for (;;) {
700                 tmp = strchr(tmp, ':');
701                 if (tmp) {
702                         (*p)[0][(tmp - pth)] = 0;       /* ':' -> '\0' */
703                         if (*++tmp == 0)
704                                 break;                  /* :<empty> */
705                 } else
706                         break;
707                 (*p)[npth++] = &(*p)[0][(tmp - pth)];   /* p[next]=p[0][&'\0'+1] */
708         }
709
710         return npth;
711 }
712
713 static char *add_quote_for_spec_chars(char *found)
714 {
715         int l = 0;
716         char *s = xmalloc((strlen(found) + 1) * 2);
717
718         while (*found) {
719                 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
720                         s[l++] = '\\';
721                 s[l++] = *found++;
722         }
723         s[l] = 0;
724         return s;
725 }
726
727 static char **exe_n_cwd_tab_completion(char *command, int *num_matches,
728                                         int type)
729 {
730
731         char **matches = 0;
732         DIR *dir;
733         struct dirent *next;
734         char dirbuf[BUFSIZ];
735         int nm = *num_matches;
736         struct stat st;
737         char *path1[1];
738         char **paths = path1;
739         int npaths;
740         int i;
741         char *found;
742         char *pfind = strrchr(command, '/');
743
744         path1[0] = ".";
745
746         if (pfind == NULL) {
747                 /* no dir, if flags==EXE_ONLY - get paths, else "." */
748                 npaths = path_parse(&paths, type);
749                 pfind = command;
750         } else {
751                 /* with dir */
752                 /* save for change */
753                 strcpy(dirbuf, command);
754                 /* set dir only */
755                 dirbuf[(pfind - command) + 1] = 0;
756 #ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
757                 if (dirbuf[0] == '~')   /* ~/... or ~user/... */
758                         username_tab_completion(dirbuf, 0);
759 #endif
760                 /* "strip" dirname in command */
761                 pfind++;
762
763                 paths[0] = dirbuf;
764                 npaths = 1;                             /* only 1 dir */
765         }
766
767         for (i = 0; i < npaths; i++) {
768
769                 dir = opendir(paths[i]);
770                 if (!dir)                       /* Don't print an error */
771                         continue;
772
773                 while ((next = readdir(dir)) != NULL) {
774                         char *str_found = next->d_name;
775
776                         /* matched ? */
777                         if (strncmp(str_found, pfind, strlen(pfind)))
778                                 continue;
779                         /* not see .name without .match */
780                         if (*str_found == '.' && *pfind == 0) {
781                                 if (*paths[i] == '/' && paths[i][1] == 0
782                                         && str_found[1] == 0) str_found = "";   /* only "/" */
783                                 else
784                                         continue;
785                         }
786                         found = concat_path_file(paths[i], str_found);
787                         /* hmm, remover in progress? */
788                         if (stat(found, &st) < 0) 
789                                 goto cont;
790                         /* find with dirs ? */
791                         if (paths[i] != dirbuf)
792                                 strcpy(found, next->d_name);    /* only name */
793                         if (S_ISDIR(st.st_mode)) {
794                                 /* name is directory      */
795                                 str_found = found;
796                                 found = concat_path_file(found, "");
797                                 free(str_found);
798                                 str_found = add_quote_for_spec_chars(found);
799                         } else {
800                                 /* not put found file if search only dirs for cd */
801                                 if (type == FIND_DIR_ONLY) 
802                                         goto cont;
803                                 str_found = add_quote_for_spec_chars(found);
804                                 if (type == FIND_FILE_ONLY ||
805                                         (type == FIND_EXE_ONLY && is_execute(&st) == TRUE))
806                                         strcat(str_found, " ");
807                         }
808                         /* Add it to the list */
809                         matches = xrealloc(matches, (nm + 1) * sizeof(char *));
810
811                         matches[nm++] = str_found;
812 cont:
813                         free(found);
814                 }
815                 closedir(dir);
816         }
817         if (paths != path1) {
818                 free(paths[0]);                 /* allocated memory only in first member */
819                 free(paths);
820         }
821         *num_matches = nm;
822         return (matches);
823 }
824
825 static int match_compare(const void *a, const void *b)
826 {
827         return strcmp(*(char **) a, *(char **) b);
828 }
829
830
831
832 #define QUOT    (UCHAR_MAX+1)
833
834 #define collapse_pos(is, in) { \
835         memcpy(int_buf+is, int_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); \
836         memcpy(pos_buf+is, pos_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); }
837
838 static int find_match(char *matchBuf, int *len_with_quotes)
839 {
840         int i, j;
841         int command_mode;
842         int c, c2;
843         int int_buf[BUFSIZ + 1];
844         int pos_buf[BUFSIZ + 1];
845
846         /* set to integer dimension characters and own positions */
847         for (i = 0;; i++) {
848                 int_buf[i] = (int) ((unsigned char) matchBuf[i]);
849                 if (int_buf[i] == 0) {
850                         pos_buf[i] = -1;        /* indicator end line */
851                         break;
852                 } else
853                         pos_buf[i] = i;
854         }
855
856         /* mask \+symbol and convert '\t' to ' ' */
857         for (i = j = 0; matchBuf[i]; i++, j++)
858                 if (matchBuf[i] == '\\') {
859                         collapse_pos(j, j + 1);
860                         int_buf[j] |= QUOT;
861                         i++;
862 #ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
863                         if (matchBuf[i] == '\t')        /* algorithm equivalent */
864                                 int_buf[j] = ' ' | QUOT;
865 #endif
866                 }
867 #ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
868                 else if (matchBuf[i] == '\t')
869                         int_buf[j] = ' ';
870 #endif
871
872         /* mask "symbols" or 'symbols' */
873         c2 = 0;
874         for (i = 0; int_buf[i]; i++) {
875                 c = int_buf[i];
876                 if (c == '\'' || c == '"') {
877                         if (c2 == 0)
878                                 c2 = c;
879                         else {
880                                 if (c == c2)
881                                         c2 = 0;
882                                 else
883                                         int_buf[i] |= QUOT;
884                         }
885                 } else if (c2 != 0 && c != '$')
886                         int_buf[i] |= QUOT;
887         }
888
889         /* skip commands with arguments if line have commands delimiters */
890         /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
891         for (i = 0; int_buf[i]; i++) {
892                 c = int_buf[i];
893                 c2 = int_buf[i + 1];
894                 j = i ? int_buf[i - 1] : -1;
895                 command_mode = 0;
896                 if (c == ';' || c == '&' || c == '|') {
897                         command_mode = 1 + (c == c2);
898                         if (c == '&') {
899                                 if (j == '>' || j == '<')
900                                         command_mode = 0;
901                         } else if (c == '|' && j == '>')
902                                 command_mode = 0;
903                 }
904                 if (command_mode) {
905                         collapse_pos(0, i + command_mode);
906                         i = -1;                         /* hack incremet */
907                 }
908         }
909         /* collapse `command...` */
910         for (i = 0; int_buf[i]; i++)
911                 if (int_buf[i] == '`') {
912                         for (j = i + 1; int_buf[j]; j++)
913                                 if (int_buf[j] == '`') {
914                                         collapse_pos(i, j + 1);
915                                         j = 0;
916                                         break;
917                                 }
918                         if (j) {
919                                 /* not found close ` - command mode, collapse all previous */
920                                 collapse_pos(0, i + 1);
921                                 break;
922                         } else
923                                 i--;                    /* hack incremet */
924                 }
925
926         /* collapse (command...(command...)...) or {command...{command...}...} */
927         c = 0;                                          /* "recursive" level */
928         c2 = 0;
929         for (i = 0; int_buf[i]; i++)
930                 if (int_buf[i] == '(' || int_buf[i] == '{') {
931                         if (int_buf[i] == '(')
932                                 c++;
933                         else
934                                 c2++;
935                         collapse_pos(0, i + 1);
936                         i = -1;                         /* hack incremet */
937                 }
938         for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
939                 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
940                         if (int_buf[i] == ')')
941                                 c--;
942                         else
943                                 c2--;
944                         collapse_pos(0, i + 1);
945                         i = -1;                         /* hack incremet */
946                 }
947
948         /* skip first not quote space */
949         for (i = 0; int_buf[i]; i++)
950                 if (int_buf[i] != ' ')
951                         break;
952         if (i)
953                 collapse_pos(0, i);
954
955         /* set find mode for completion */
956         command_mode = FIND_EXE_ONLY;
957         for (i = 0; int_buf[i]; i++)
958                 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
959                         if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
960                                 && matchBuf[pos_buf[0]]=='c'
961                                 && matchBuf[pos_buf[1]]=='d' )
962                                 command_mode = FIND_DIR_ONLY;
963                         else {
964                                 command_mode = FIND_FILE_ONLY;
965                                 break;
966                         }
967                 }
968         /* "strlen" */
969         for (i = 0; int_buf[i]; i++);
970         /* find last word */
971         for (--i; i >= 0; i--) {
972                 c = int_buf[i];
973                 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
974                         collapse_pos(0, i + 1);
975                         break;
976                 }
977         }
978         /* skip first not quoted '\'' or '"' */
979         for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++);
980         /* collapse quote or unquote // or /~ */
981         while ((int_buf[i] & ~QUOT) == '/' && 
982                         ((int_buf[i + 1] & ~QUOT) == '/'
983                          || (int_buf[i + 1] & ~QUOT) == '~')) {
984                 i++;
985         }
986         if (i) {
987                 collapse_pos(0, i);
988         }
989
990         /* set only match and destroy quotes */
991         j = 0;
992         for (i = 0; pos_buf[i] >= 0; i++) {
993                 matchBuf[i] = matchBuf[pos_buf[i]];
994                 j = pos_buf[i] + 1;
995         }
996         matchBuf[i] = 0;
997         /* old lenght matchBuf with quotes symbols */
998         *len_with_quotes = j ? j - pos_buf[0] : 0;
999
1000         return command_mode;
1001 }
1002
1003
1004 static void input_tab(int *lastWasTab)
1005 {
1006         /* Do TAB completion */
1007         static int num_matches;
1008         static char **matches;
1009
1010         if (lastWasTab == 0) {          /* free all memory */
1011                 if (matches) {
1012                         while (num_matches > 0)
1013                                 free(matches[--num_matches]);
1014                         free(matches);
1015                         matches = (char **) NULL;
1016                 }
1017                 return;
1018         }
1019         if (*lastWasTab == FALSE) {
1020
1021                 char *tmp;
1022                 int len_found;
1023                 char matchBuf[BUFSIZ];
1024                 int find_type;
1025                 int recalc_pos;
1026
1027                 *lastWasTab = TRUE;             /* flop trigger */
1028
1029                 /* Make a local copy of the string -- up
1030                  * to the position of the cursor */
1031                 tmp = strncpy(matchBuf, command_ps, cursor);
1032                 tmp[cursor] = 0;
1033
1034                 find_type = find_match(matchBuf, &recalc_pos);
1035
1036                 /* Free up any memory already allocated */
1037                 input_tab(0);
1038
1039 #ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
1040                 /* If the word starts with `~' and there is no slash in the word,
1041                  * then try completing this word as a username. */
1042
1043                 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
1044                         matches = username_tab_completion(matchBuf, &num_matches);
1045 #endif
1046                 /* Try to match any executable in our path and everything
1047                  * in the current working directory that matches.  */
1048                 if (!matches)
1049                         matches =
1050                                 exe_n_cwd_tab_completion(matchBuf, &num_matches,
1051                                                                                  find_type);
1052
1053                 /* Did we find exactly one match? */
1054                 if (!matches || num_matches > 1) {
1055                         char *tmp1;
1056
1057                         beep();
1058                         if (!matches)
1059                                 return;         /* not found */
1060                         /* sort */
1061                         qsort(matches, num_matches, sizeof(char *), match_compare);
1062
1063                         /* find minimal match */
1064                         tmp = xstrdup(matches[0]);
1065                         for (tmp1 = tmp; *tmp1; tmp1++)
1066                                 for (len_found = 1; len_found < num_matches; len_found++)
1067                                         if (matches[len_found][(tmp1 - tmp)] != *tmp1) {
1068                                                 *tmp1 = 0;
1069                                                 break;
1070                                         }
1071                         if (*tmp == 0) {        /* have unique */
1072                                 free(tmp);
1073                                 return;
1074                         }
1075                 } else {                        /* one match */
1076                         tmp = matches[0];
1077                         /* for next completion current found */
1078                         *lastWasTab = FALSE;
1079                 }
1080
1081                 len_found = strlen(tmp);
1082                 /* have space to placed match? */
1083                 if ((len_found - strlen(matchBuf) + len) < BUFSIZ) {
1084
1085                         /* before word for match   */
1086                         command_ps[cursor - recalc_pos] = 0;
1087                         /* save   tail line        */
1088                         strcpy(matchBuf, command_ps + cursor);
1089                         /* add    match            */
1090                         strcat(command_ps, tmp);
1091                         /* add    tail             */
1092                         strcat(command_ps, matchBuf);
1093                         /* back to begin word for match    */
1094                         input_backward(recalc_pos);
1095                         /* new pos                         */
1096                         recalc_pos = cursor + len_found;
1097                         /* new len                         */
1098                         len = strlen(command_ps);
1099                         /* write out the matched command   */
1100                         input_end();
1101                         input_backward(cursor - recalc_pos);
1102                 }
1103                 if (tmp != matches[0])
1104                         free(tmp);
1105         } else {
1106                 /* Ok -- the last char was a TAB.  Since they
1107                  * just hit TAB again, print a list of all the
1108                  * available choices... */
1109                 if (matches && num_matches > 0) {
1110                         int i, col, l;
1111                         int sav_cursor = cursor;        /* change goto_new_line() */
1112
1113                         /* Go to the next line */
1114                         goto_new_line();
1115                         for (i = 0, col = 0; i < num_matches; i++) {
1116                                 l = strlen(matches[i]);
1117                                 if (l < 14)
1118                                         l = 14;
1119                                 printf("%-14s  ", matches[i]);
1120                                 if ((l += 2) > 16)
1121                                         while (l % 16) {
1122                                                 putchar(' ');
1123                                                 l++;
1124                                         }
1125                                 col += l;
1126                                 col -= (col / cmdedit_termw) * cmdedit_termw;
1127                                 if (col > 60 && matches[i + 1] != NULL) {
1128                                         putchar('\n');
1129                                         col = 0;
1130                                 }
1131                         }
1132                         /* Go to the next line and rewrite */
1133                         putchar('\n');
1134                         redraw(0, len - sav_cursor);
1135                 }
1136         }
1137 }
1138 #endif  /* BB_FEATURE_COMMAND_TAB_COMPLETION */
1139
1140 static void get_previous_history(struct history **hp, struct history *p)
1141 {
1142         if ((*hp)->s)
1143                 free((*hp)->s);
1144         (*hp)->s = xstrdup(command_ps);
1145         *hp = p;
1146 }
1147
1148 static inline void get_next_history(struct history **hp)
1149 {
1150         get_previous_history(hp, (*hp)->n);
1151 }
1152
1153 enum {
1154         ESC = 27,
1155         DEL = 127,
1156 };
1157
1158
1159 /*
1160  * This function is used to grab a character buffer
1161  * from the input file descriptor and allows you to
1162  * a string with full command editing (sortof like
1163  * a mini readline).
1164  *
1165  * The following standard commands are not implemented:
1166  * ESC-b -- Move back one word
1167  * ESC-f -- Move forward one word
1168  * ESC-d -- Delete back one word
1169  * ESC-h -- Delete forward one word
1170  * CTL-t -- Transpose two characters
1171  *
1172  * Furthermore, the "vi" command editing keys are not implemented.
1173  *
1174  */
1175  
1176 extern void cmdedit_read_input(char *prompt, char command[BUFSIZ])
1177 {
1178
1179         int inputFd = fileno(stdin);
1180
1181         int break_out = 0;
1182         int lastWasTab = FALSE;
1183         unsigned char c = 0;
1184         struct history *hp = his_end;
1185
1186         /* prepare before init handlers */
1187         cmdedit_y = 0;  /* quasireal y, not true work if line > xt*yt */
1188         len = 0;
1189         command_ps = command;
1190
1191         if (new_settings.c_cc[VMIN] == 0) {     /* first call */
1192
1193                 getTermSettings(inputFd, (void *) &initial_settings);
1194                 memcpy(&new_settings, &initial_settings, sizeof(struct termios));
1195
1196                 new_settings.c_cc[VMIN] = 1;
1197                 new_settings.c_cc[VTIME] = 0;
1198                 /* Turn off CTRL-C, so we can trap it */
1199                 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;     
1200                 new_settings.c_lflag &= ~ICANON;        /* unbuffered input */
1201                 /* Turn off echoing */
1202                 new_settings.c_lflag &= ~(ECHO | ECHOCTL | ECHONL);     
1203         }
1204
1205         command[0] = 0;
1206
1207         setTermSettings(inputFd, (void *) &new_settings);
1208         handlers_sets |= SET_RESET_TERM;
1209
1210         /* Now initialize things */
1211         cmdedit_init();
1212         /* Print out the command prompt */
1213         parse_prompt(prompt);
1214
1215         while (1) {
1216
1217                 fflush(stdout);                 /* buffered out to fast */
1218
1219                 if (read(inputFd, &c, 1) < 1)
1220                         /* if we can't read input then exit */
1221                         goto prepare_to_die;
1222
1223                 switch (c) {
1224                 case '\n':
1225                 case '\r':
1226                         /* Enter */
1227                         goto_new_line();
1228                         break_out = 1;
1229                         break;
1230                 case 1:
1231                         /* Control-a -- Beginning of line */
1232                         input_backward(cursor);
1233                         break;
1234                 case 2:
1235                         /* Control-b -- Move back one character */
1236                         input_backward(1);
1237                         break;
1238                 case 3:
1239                         /* Control-c -- stop gathering input */
1240
1241                         /* Link into lash to reset context to 0 on ^C and such */
1242                         shell_context = 0;
1243
1244                         /* Go to the next line */
1245                         goto_new_line();
1246                         command[0] = 0;
1247
1248                         return;
1249                 case 4:
1250                         /* Control-d -- Delete one character, or exit
1251                          * if the len=0 and no chars to delete */
1252                         if (len == 0) {
1253 prepare_to_die:
1254                                 printf("exit");
1255                                 clean_up_and_die(0);
1256                         } else {
1257                                 input_delete();
1258                         }
1259                         break;
1260                 case 5:
1261                         /* Control-e -- End of line */
1262                         input_end();
1263                         break;
1264                 case 6:
1265                         /* Control-f -- Move forward one character */
1266                         input_forward();
1267                         break;
1268                 case '\b':
1269                 case DEL:
1270                         /* Control-h and DEL */
1271                         input_backspace();
1272                         break;
1273                 case '\t':
1274 #ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
1275                         input_tab(&lastWasTab);
1276 #endif
1277                         break;
1278                 case 14:
1279                         /* Control-n -- Get next command in history */
1280                         if (hp && hp->n && hp->n->s) {
1281                                 get_next_history(&hp);
1282                                 goto rewrite_line;
1283                         } else {
1284                                 beep();
1285                         }
1286                         break;
1287                 case 16:
1288                         /* Control-p -- Get previous command from history */
1289                         if (hp && hp->p) {
1290                                 get_previous_history(&hp, hp->p);
1291                                 goto rewrite_line;
1292                         } else {
1293                                 beep();
1294                         }
1295                         break;
1296                 case 21:
1297                         /* Control-U -- Clear line before cursor */
1298                         if (cursor) {
1299                                 strcpy(command, command + cursor);
1300                                 redraw(cmdedit_y, len -= cursor);
1301                         }
1302                         break;
1303
1304                 case ESC:{
1305                         /* escape sequence follows */
1306                         if (read(inputFd, &c, 1) < 1)
1307                                 return;
1308                         /* different vt100 emulations */
1309                         if (c == '[' || c == 'O') {
1310                                 if (read(inputFd, &c, 1) < 1)
1311                                         return;
1312                         }
1313                         switch (c) {
1314 #ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
1315                         case '\t':                      /* Alt-Tab */
1316
1317                                 input_tab(&lastWasTab);
1318                                 break;
1319 #endif
1320                         case 'A':
1321                                 /* Up Arrow -- Get previous command from history */
1322                                 if (hp && hp->p) {
1323                                         get_previous_history(&hp, hp->p);
1324                                         goto rewrite_line;
1325                                 } else {
1326                                         beep();
1327                                 }
1328                                 break;
1329                         case 'B':
1330                                 /* Down Arrow -- Get next command in history */
1331                                 if (hp && hp->n && hp->n->s) {
1332                                         get_next_history(&hp);
1333                                         goto rewrite_line;
1334                                 } else {
1335                                         beep();
1336                                 }
1337                                 break;
1338
1339                                 /* Rewrite the line with the selected history item */
1340                           rewrite_line:
1341                                 /* change command */
1342                                 len = strlen(strcpy(command, hp->s));
1343                                 /* redraw and go to end line */
1344                                 redraw(cmdedit_y, 0);
1345                                 break;
1346                         case 'C':
1347                                 /* Right Arrow -- Move forward one character */
1348                                 input_forward();
1349                                 break;
1350                         case 'D':
1351                                 /* Left Arrow -- Move back one character */
1352                                 input_backward(1);
1353                                 break;
1354                         case '3':
1355                                 /* Delete */
1356                                 input_delete();
1357                                 break;
1358                         case '1':
1359                         case 'H':
1360                                 /* Home (Ctrl-A) */
1361                                 input_backward(cursor);
1362                                 break;
1363                         case '4':
1364                         case 'F':
1365                                 /* End (Ctrl-E) */
1366                                 input_end();
1367                                 break;
1368                         default:
1369                                 if (!(c >= '1' && c <= '9'))
1370                                         c = 0;
1371                                 beep();
1372                         }
1373                         if (c >= '1' && c <= '9')
1374                                 do
1375                                         if (read(inputFd, &c, 1) < 1)
1376                                                 return;
1377                                 while (c != '~');
1378                         break;
1379                 }
1380
1381                 default:        /* If it's regular input, do the normal thing */
1382 #ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1383                         /* Control-V -- Add non-printable symbol */
1384                         if (c == 22) {
1385                                 if (read(inputFd, &c, 1) < 1)
1386                                         return;
1387                                 if (c == 0) {
1388                                         beep();
1389                                         break;
1390                                 }
1391                         } else
1392 #endif
1393                         if (!Isprint(c))        /* Skip non-printable characters */
1394                                 break;
1395
1396                         if (len >= (BUFSIZ - 2))        /* Need to leave space for enter */
1397                                 break;
1398
1399                         len++;
1400
1401                         if (cursor == (len - 1)) {      /* Append if at the end of the line */
1402                                 *(command + cursor) = c;
1403                                 *(command + cursor + 1) = 0;
1404                                 cmdedit_set_out_char(0);
1405                         } else {                        /* Insert otherwise */
1406                                 int sc = cursor;
1407
1408                                 memmove(command + sc + 1, command + sc, len - sc);
1409                                 *(command + sc) = c;
1410                                 sc++;
1411                                 /* rewrite from cursor */
1412                                 input_end();
1413                                 /* to prev x pos + 1 */
1414                                 input_backward(cursor - sc);
1415                         }
1416
1417                         break;
1418                 }
1419                 if (break_out)                  /* Enter is the command terminator, no more input. */
1420                         break;
1421
1422                 if (c != '\t')
1423                         lastWasTab = FALSE;
1424         }
1425
1426         setTermSettings(inputFd, (void *) &initial_settings);
1427         handlers_sets &= ~SET_RESET_TERM;
1428
1429         /* Handle command history log */
1430         if (len) {                                      /* no put empty line */
1431
1432                 struct history *h = his_end;
1433                 char *ss;
1434
1435                 ss = xstrdup(command);  /* duplicate */
1436
1437                 if (h == 0) {
1438                         /* No previous history -- this memory is never freed */
1439                         h = his_front = xmalloc(sizeof(struct history));
1440                         h->n = xmalloc(sizeof(struct history));
1441
1442                         h->p = NULL;
1443                         h->s = ss;
1444                         h->n->p = h;
1445                         h->n->n = NULL;
1446                         h->n->s = NULL;
1447                         his_end = h->n;
1448                         history_counter++;
1449                 } else {
1450                         /* Add a new history command -- this memory is never freed */
1451                         h->n = xmalloc(sizeof(struct history));
1452
1453                         h->n->p = h;
1454                         h->n->n = NULL;
1455                         h->n->s = NULL;
1456                         h->s = ss;
1457                         his_end = h->n;
1458
1459                         /* After max history, remove the oldest command */
1460                         if (history_counter >= MAX_HISTORY) {
1461
1462                                 struct history *p = his_front->n;
1463
1464                                 p->p = NULL;
1465                                 free(his_front->s);
1466                                 free(his_front);
1467                                 his_front = p;
1468                         } else {
1469                                 history_counter++;
1470                         }
1471                 }
1472 #if defined(BB_FEATURE_SH_FANCY_PROMPT)
1473                 num_ok_lines++;
1474 #endif
1475         }
1476         command[len++] = '\n';          /* set '\n' */
1477         command[len] = 0;
1478 #if defined(BB_FEATURE_CLEAN_UP) && defined(BB_FEATURE_COMMAND_TAB_COMPLETION)
1479         input_tab(0);                           /* strong free */
1480 #endif
1481 #if defined(BB_FEATURE_SH_FANCY_PROMPT)
1482         free(cmdedit_prompt);
1483 #endif
1484         return;
1485 }
1486
1487
1488 /* Undo the effects of cmdedit_init(). */
1489 extern void cmdedit_terminate(void)
1490 {
1491         cmdedit_reset_term();
1492 #if 0
1493         if ((handlers_sets & SET_TERM_HANDLERS) != 0) {
1494                 signal(SIGKILL, SIG_DFL);
1495                 signal(SIGINT, SIG_DFL);
1496                 signal(SIGQUIT, SIG_DFL);
1497                 signal(SIGTERM, SIG_DFL);
1498                 signal(SIGWINCH, SIG_DFL);
1499                 handlers_sets &= ~SET_TERM_HANDLERS;
1500         }
1501 #endif  
1502 }
1503
1504 #endif  /* BB_FEATURE_COMMAND_EDITING */
1505
1506
1507 #ifdef TEST
1508
1509 const char *applet_name = "debug stuff usage";
1510 const char *memory_exhausted = "Memory exhausted";
1511
1512 #ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1513 #include <locale.h>
1514 #endif
1515
1516 unsigned int shell_context;
1517
1518 int main(int argc, char **argv)
1519 {
1520         char buff[BUFSIZ];
1521         char *prompt =
1522 #if defined(BB_FEATURE_SH_FANCY_PROMPT)
1523                 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:\
1524 \\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] \
1525 \\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
1526 #else
1527                 "% ";
1528 #endif
1529
1530 #ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1531         setlocale(LC_ALL, "");
1532 #endif
1533         shell_context = 1;
1534         do {
1535                 int l;
1536                 cmdedit_read_input(prompt, buff);
1537                 l = strlen(buff);
1538                 if(l > 0 && buff[l-1] == '\n')
1539                         buff[l-1] = 0;
1540                 printf("*** cmdedit_read_input() returned line =%s=\n", buff);
1541         } while (shell_context);
1542         printf("*** cmdedit_read_input() detect ^C\n");
1543         return 0;
1544 }
1545
1546 #endif  /* TEST */