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