Initial public busybox upstream commit
[busybox4maemo] / libbb / lineedit.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Termios command line History and Editing.
4  *
5  * Copyright (c) 1986-2003 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    Usage and known bugs:
19    Terminal key codes are not extensive, and more will probably
20    need to be added. This version was created on Debian GNU/Linux 2.x.
21    Delete, Backspace, Home, End, and the arrow keys were tested
22    to work in an Xterm and console. Ctrl-A also works as Home.
23    Ctrl-E also works as End.
24
25    Small bugs (simple effect):
26    - not true viewing if terminal size (x*y symbols) less
27      size (prompt + editor's line + 2 symbols)
28    - not true viewing if length prompt less terminal width
29  */
30
31 #include "libbb.h"
32
33
34 /* FIXME: obsolete CONFIG item? */
35 #define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
36
37
38 #ifdef TEST
39
40 #define ENABLE_FEATURE_EDITING 0
41 #define ENABLE_FEATURE_TAB_COMPLETION 0
42 #define ENABLE_FEATURE_USERNAME_COMPLETION 0
43 #define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
44
45 #endif  /* TEST */
46
47
48 /* Entire file (except TESTing part) sits inside this #if */
49 #if ENABLE_FEATURE_EDITING
50
51 #if ENABLE_LOCALE_SUPPORT
52 #define Isprint(c) isprint(c)
53 #else
54 #define Isprint(c) ((c) >= ' ' && (c) != ((unsigned char)'\233'))
55 #endif
56
57 #define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \
58         (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
59 #define USE_FEATURE_GETUSERNAME_AND_HOMEDIR(...)
60 #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
61 #undef USE_FEATURE_GETUSERNAME_AND_HOMEDIR
62 #define USE_FEATURE_GETUSERNAME_AND_HOMEDIR(...) __VA_ARGS__
63 #endif
64
65 enum {
66         /* We use int16_t for positions, need to limit line len */
67         MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
68                       ? CONFIG_FEATURE_EDITING_MAX_LEN
69                       : 0x7ff0
70 };
71
72 #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
73 static const char null_str[] ALIGN1 = "";
74 #endif
75
76 /* We try to minimize both static and stack usage. */
77 struct statics {
78         line_input_t *state;
79
80         volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
81         sighandler_t previous_SIGWINCH_handler;
82
83
84         int cmdedit_x;           /* real x terminal position */
85         int cmdedit_y;           /* pseudoreal y terminal position */
86         int cmdedit_prmt_len;    /* length of prompt (without colors etc) */
87
88         unsigned cursor;
89         unsigned command_len;
90         char *command_ps;
91
92         const char *cmdedit_prompt;
93 #if ENABLE_FEATURE_EDITING_FANCY_PROMPT
94         int num_ok_lines; /* = 1; */
95 #endif
96
97 #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
98         char *user_buf;
99         char *home_pwd_buf; /* = (char*)null_str; */
100 #endif
101
102 #if ENABLE_FEATURE_TAB_COMPLETION
103         char **matches;
104         unsigned num_matches;
105 #endif
106
107 #if ENABLE_FEATURE_EDITING_VI
108 #define DELBUFSIZ 128
109         char *delptr;
110         smallint newdelflag;     /* whether delbuf should be reused yet */
111         char delbuf[DELBUFSIZ];  /* a place to store deleted characters */
112 #endif
113
114         /* Formerly these were big buffers on stack: */
115 #if ENABLE_FEATURE_TAB_COMPLETION
116         char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
117         char input_tab__matchBuf[MAX_LINELEN];
118         int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
119         int16_t find_match__pos_buf[MAX_LINELEN + 1];
120 #endif
121 };
122
123 /* Make it reside in writable memory, yet make compiler understand
124  * that it is not going to change. */
125 static struct statics *const ptr_to_statics __attribute__ ((section (".data")));
126
127 #define S (*ptr_to_statics)
128 #define state            (S.state           )
129 #define cmdedit_termw    (S.cmdedit_termw   )
130 #define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
131 #define cmdedit_x        (S.cmdedit_x       )
132 #define cmdedit_y        (S.cmdedit_y       )
133 #define cmdedit_prmt_len (S.cmdedit_prmt_len)
134 #define cursor           (S.cursor          )
135 #define command_len      (S.command_len     )
136 #define command_ps       (S.command_ps      )
137 #define cmdedit_prompt   (S.cmdedit_prompt  )
138 #define num_ok_lines     (S.num_ok_lines    )
139 #define user_buf         (S.user_buf        )
140 #define home_pwd_buf     (S.home_pwd_buf    )
141 #define matches          (S.matches         )
142 #define num_matches      (S.num_matches     )
143 #define delptr           (S.delptr          )
144 #define newdelflag       (S.newdelflag      )
145 #define delbuf           (S.delbuf          )
146
147 #define INIT_S() do { \
148         (*(struct statics**)&ptr_to_statics) = xzalloc(sizeof(S)); \
149         barrier(); \
150         cmdedit_termw = 80; \
151         USE_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
152         USE_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \
153 } while (0)
154 static void deinit_S(void)
155 {
156 #if ENABLE_FEATURE_EDITING_FANCY_PROMPT
157         /* This one is allocated only if FANCY_PROMPT is on
158          * (otherwise it points to verbatim prompt (NOT malloced) */
159         free((char*)cmdedit_prompt);
160 #endif
161 #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
162         free(user_buf);
163         if (home_pwd_buf != null_str)
164                 free(home_pwd_buf);
165 #endif
166         free(ptr_to_statics);
167 }
168 #define DEINIT_S() deinit_S()
169
170 /* Put 'command_ps[cursor]', cursor++.
171  * Advance cursor on screen. If we reached right margin, scroll text up
172  * and remove terminal margin effect by printing 'next_char' */
173 static void cmdedit_set_out_char(int next_char)
174 {
175         int c = (unsigned char)command_ps[cursor];
176
177         if (c == '\0') {
178                 /* erase character after end of input string */
179                 c = ' ';
180         }
181 #if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
182         /* Display non-printable characters in reverse */
183         if (!Isprint(c)) {
184                 if (c >= 128)
185                         c -= 128;
186                 if (c < ' ')
187                         c += '@';
188                 if (c == 127)
189                         c = '?';
190                 printf("\033[7m%c\033[0m", c);
191         } else
192 #endif
193         {
194                 bb_putchar(c);
195         }
196         if (++cmdedit_x >= cmdedit_termw) {
197                 /* terminal is scrolled down */
198                 cmdedit_y++;
199                 cmdedit_x = 0;
200                 /* destroy "(auto)margin" */
201                 bb_putchar(next_char);
202                 bb_putchar('\b');
203         }
204 // Huh? What if command_ps[cursor] == '\0' (we are at the end already?)
205         cursor++;
206 }
207
208 /* Move to end of line (by printing all chars till the end) */
209 static void input_end(void)
210 {
211         while (cursor < command_len)
212                 cmdedit_set_out_char(' ');
213 }
214
215 /* Go to the next line */
216 static void goto_new_line(void)
217 {
218         input_end();
219         if (cmdedit_x)
220                 bb_putchar('\n');
221 }
222
223
224 static void out1str(const char *s)
225 {
226         if (s)
227                 fputs(s, stdout);
228 }
229
230 static void beep(void)
231 {
232         bb_putchar('\007');
233 }
234
235 /* Move back one character */
236 /* (optimized for slow terminals) */
237 static void input_backward(unsigned num)
238 {
239         int count_y;
240
241         if (num > cursor)
242                 num = cursor;
243         if (!num)
244                 return;
245         cursor -= num;
246
247         if (cmdedit_x >= num) {
248                 cmdedit_x -= num;
249                 if (num <= 4) {
250                         /* This is longer by 5 bytes on x86.
251                          * Also gets mysteriously
252                          * miscompiled for some ARM users.
253                          * printf(("\b\b\b\b" + 4) - num);
254                          * return;
255                          */
256                         do {
257                                 bb_putchar('\b');
258                         } while (--num);
259                         return;
260                 }
261                 printf("\033[%uD", num);
262                 return;
263         }
264
265         /* Need to go one or more lines up */
266         num -= cmdedit_x;
267         count_y = 1 + (num / cmdedit_termw);
268         cmdedit_y -= count_y;
269         cmdedit_x = cmdedit_termw * count_y - num;
270         /* go to 1st column; go up; go to correct column */
271         printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x);
272 }
273
274 static void put_prompt(void)
275 {
276         out1str(cmdedit_prompt);
277         cmdedit_x = cmdedit_prmt_len;
278         cursor = 0;
279 // Huh? what if cmdedit_prmt_len >= width?
280         cmdedit_y = 0;                  /* new quasireal y */
281 }
282
283 /* draw prompt, editor line, and clear tail */
284 static void redraw(int y, int back_cursor)
285 {
286         if (y > 0)                              /* up to start y */
287                 printf("\033[%dA", y);
288         bb_putchar('\r');
289         put_prompt();
290         input_end();                            /* rewrite */
291         printf("\033[J");                       /* erase after cursor */
292         input_backward(back_cursor);
293 }
294
295 /* Delete the char in front of the cursor, optionally saving it
296  * for later putback */
297 #if !ENABLE_FEATURE_EDITING_VI
298 static void input_delete(void)
299 #define input_delete(save) input_delete()
300 #else
301 static void input_delete(int save)
302 #endif
303 {
304         int j = cursor;
305
306         if (j == command_len)
307                 return;
308
309 #if ENABLE_FEATURE_EDITING_VI
310         if (save) {
311                 if (newdelflag) {
312                         delptr = delbuf;
313                         newdelflag = 0;
314                 }
315                 if ((delptr - delbuf) < DELBUFSIZ)
316                         *delptr++ = command_ps[j];
317         }
318 #endif
319
320         strcpy(command_ps + j, command_ps + j + 1);
321         command_len--;
322         input_end();                    /* rewrite new line */
323         cmdedit_set_out_char(' ');      /* erase char */
324         input_backward(cursor - j);     /* back to old pos cursor */
325 }
326
327 #if ENABLE_FEATURE_EDITING_VI
328 static void put(void)
329 {
330         int ocursor;
331         int j = delptr - delbuf;
332
333         if (j == 0)
334                 return;
335         ocursor = cursor;
336         /* open hole and then fill it */
337         memmove(command_ps + cursor + j, command_ps + cursor, command_len - cursor + 1);
338         strncpy(command_ps + cursor, delbuf, j);
339         command_len += j;
340         input_end();                    /* rewrite new line */
341         input_backward(cursor - ocursor - j + 1); /* at end of new text */
342 }
343 #endif
344
345 /* Delete the char in back of the cursor */
346 static void input_backspace(void)
347 {
348         if (cursor > 0) {
349                 input_backward(1);
350                 input_delete(0);
351         }
352 }
353
354 /* Move forward one character */
355 static void input_forward(void)
356 {
357         if (cursor < command_len)
358                 cmdedit_set_out_char(command_ps[cursor + 1]);
359 }
360
361 #if ENABLE_FEATURE_TAB_COMPLETION
362
363 static void free_tab_completion_data(void)
364 {
365         if (matches) {
366                 while (num_matches)
367                         free(matches[--num_matches]);
368                 free(matches);
369                 matches = NULL;
370         }
371 }
372
373 static void add_match(char *matched)
374 {
375         int nm = num_matches;
376         int nm1 = nm + 1;
377
378         matches = xrealloc(matches, nm1 * sizeof(char *));
379         matches[nm] = matched;
380         num_matches++;
381 }
382
383 #if ENABLE_FEATURE_USERNAME_COMPLETION
384 static void username_tab_completion(char *ud, char *with_shash_flg)
385 {
386         struct passwd *entry;
387         int userlen;
388
389         ud++;                           /* ~user/... to user/... */
390         userlen = strlen(ud);
391
392         if (with_shash_flg) {           /* "~/..." or "~user/..." */
393                 char *sav_ud = ud - 1;
394                 char *home = NULL;
395
396                 if (*ud == '/') {       /* "~/..."     */
397                         home = home_pwd_buf;
398                 } else {
399                         /* "~user/..." */
400                         char *temp;
401                         temp = strchr(ud, '/');
402                         *temp = '\0';           /* ~user\0 */
403                         entry = getpwnam(ud);
404                         *temp = '/';            /* restore ~user/... */
405                         ud = temp;
406                         if (entry)
407                                 home = entry->pw_dir;
408                 }
409                 if (home) {
410                         if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
411                                 /* /home/user/... */
412                                 sprintf(sav_ud, "%s%s", home, ud);
413                         }
414                 }
415         } else {
416                 /* "~[^/]*" */
417                 /* Using _r function to avoid pulling in static buffers */
418                 char line_buff[256];
419                 struct passwd pwd;
420                 struct passwd *result;
421
422                 setpwent();
423                 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
424                         /* Null usernames should result in all users as possible completions. */
425                         if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
426                                 add_match(xasprintf("~%s/", pwd.pw_name));
427                         }
428                 }
429                 endpwent();
430         }
431 }
432 #endif  /* FEATURE_COMMAND_USERNAME_COMPLETION */
433
434 enum {
435         FIND_EXE_ONLY = 0,
436         FIND_DIR_ONLY = 1,
437         FIND_FILE_ONLY = 2,
438 };
439
440 static int path_parse(char ***p, int flags)
441 {
442         int npth;
443         const char *pth;
444         char *tmp;
445         char **res;
446
447         /* if not setenv PATH variable, to search cur dir "." */
448         if (flags != FIND_EXE_ONLY)
449                 return 1;
450
451         if (state->flags & WITH_PATH_LOOKUP)
452                 pth = state->path_lookup;
453         else
454                 pth = getenv("PATH");
455         /* PATH=<empty> or PATH=:<empty> */
456         if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
457                 return 1;
458
459         tmp = (char*)pth;
460         npth = 1; /* path component count */
461         while (1) {
462                 tmp = strchr(tmp, ':');
463                 if (!tmp)
464                         break;
465                 if (*++tmp == '\0')
466                         break;  /* :<empty> */
467                 npth++;
468         }
469
470         res = xmalloc(npth * sizeof(char*));
471         res[0] = tmp = xstrdup(pth);
472         npth = 1;
473         while (1) {
474                 tmp = strchr(tmp, ':');
475                 if (!tmp)
476                         break;
477                 *tmp++ = '\0'; /* ':' -> '\0' */
478                 if (*tmp == '\0')
479                         break; /* :<empty> */
480                 res[npth++] = tmp;
481         }
482         *p = res;
483         return npth;
484 }
485
486 static void exe_n_cwd_tab_completion(char *command, int type)
487 {
488         DIR *dir;
489         struct dirent *next;
490         struct stat st;
491         char *path1[1];
492         char **paths = path1;
493         int npaths;
494         int i;
495         char *found;
496         char *pfind = strrchr(command, '/');
497 /*      char dirbuf[MAX_LINELEN]; */
498 #define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
499
500         npaths = 1;
501         path1[0] = (char*)".";
502
503         if (pfind == NULL) {
504                 /* no dir, if flags==EXE_ONLY - get paths, else "." */
505                 npaths = path_parse(&paths, type);
506                 pfind = command;
507         } else {
508                 /* dirbuf = ".../.../.../" */
509                 safe_strncpy(dirbuf, command, (pfind - command) + 2);
510 #if ENABLE_FEATURE_USERNAME_COMPLETION
511                 if (dirbuf[0] == '~')   /* ~/... or ~user/... */
512                         username_tab_completion(dirbuf, dirbuf);
513 #endif
514                 paths[0] = dirbuf;
515                 /* point to 'l' in "..../last_component" */
516                 pfind++;
517         }
518
519         for (i = 0; i < npaths; i++) {
520                 dir = opendir(paths[i]);
521                 if (!dir)
522                         continue; /* don't print an error */
523
524                 while ((next = readdir(dir)) != NULL) {
525                         int len1;
526                         const char *str_found = next->d_name;
527
528                         /* matched? */
529                         if (strncmp(str_found, pfind, strlen(pfind)))
530                                 continue;
531                         /* not see .name without .match */
532                         if (*str_found == '.' && *pfind == '\0') {
533                                 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
534                                         continue;
535                                 str_found = ""; /* only "/" */
536                         }
537                         found = concat_path_file(paths[i], str_found);
538                         /* hmm, remove in progress? */
539                         /* NB: stat() first so that we see is it a directory;
540                          * but if that fails, use lstat() so that
541                          * we still match dangling links */
542                         if (stat(found, &st) && lstat(found, &st))
543                                 goto cont;
544                         /* find with dirs? */
545                         if (paths[i] != dirbuf)
546                                 strcpy(found, next->d_name); /* only name */
547
548                         len1 = strlen(found);
549                         found = xrealloc(found, len1 + 2);
550                         found[len1] = '\0';
551                         found[len1+1] = '\0';
552
553                         if (S_ISDIR(st.st_mode)) {
554                                 /* name is a directory */
555                                 if (found[len1-1] != '/') {
556                                         found[len1] = '/';
557                                 }
558                         } else {
559                                 /* not put found file if search only dirs for cd */
560                                 if (type == FIND_DIR_ONLY)
561                                         goto cont;
562                         }
563                         /* Add it to the list */
564                         add_match(found);
565                         continue;
566  cont:
567                         free(found);
568                 }
569                 closedir(dir);
570         }
571         if (paths != path1) {
572                 free(paths[0]); /* allocated memory is only in first member */
573                 free(paths);
574         }
575 #undef dirbuf
576 }
577
578 #define QUOT (UCHAR_MAX+1)
579
580 #define collapse_pos(is, in) do { \
581         memmove(int_buf+(is), int_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
582         memmove(pos_buf+(is), pos_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
583 } while (0)
584
585 static int find_match(char *matchBuf, int *len_with_quotes)
586 {
587         int i, j;
588         int command_mode;
589         int c, c2;
590 /*      int16_t int_buf[MAX_LINELEN + 1]; */
591 /*      int16_t pos_buf[MAX_LINELEN + 1]; */
592 #define int_buf (S.find_match__int_buf)
593 #define pos_buf (S.find_match__pos_buf)
594
595         /* set to integer dimension characters and own positions */
596         for (i = 0;; i++) {
597                 int_buf[i] = (unsigned char)matchBuf[i];
598                 if (int_buf[i] == 0) {
599                         pos_buf[i] = -1;        /* indicator end line */
600                         break;
601                 }
602                 pos_buf[i] = i;
603         }
604
605         /* mask \+symbol and convert '\t' to ' ' */
606         for (i = j = 0; matchBuf[i]; i++, j++)
607                 if (matchBuf[i] == '\\') {
608                         collapse_pos(j, j + 1);
609                         int_buf[j] |= QUOT;
610                         i++;
611 #if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
612                         if (matchBuf[i] == '\t')        /* algorithm equivalent */
613                                 int_buf[j] = ' ' | QUOT;
614 #endif
615                 }
616 #if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
617                 else if (matchBuf[i] == '\t')
618                         int_buf[j] = ' ';
619 #endif
620
621         /* mask "symbols" or 'symbols' */
622         c2 = 0;
623         for (i = 0; int_buf[i]; i++) {
624                 c = int_buf[i];
625                 if (c == '\'' || c == '"') {
626                         if (c2 == 0)
627                                 c2 = c;
628                         else {
629                                 if (c == c2)
630                                         c2 = 0;
631                                 else
632                                         int_buf[i] |= QUOT;
633                         }
634                 } else if (c2 != 0 && c != '$')
635                         int_buf[i] |= QUOT;
636         }
637
638         /* skip commands with arguments if line has commands delimiters */
639         /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
640         for (i = 0; int_buf[i]; i++) {
641                 c = int_buf[i];
642                 c2 = int_buf[i + 1];
643                 j = i ? int_buf[i - 1] : -1;
644                 command_mode = 0;
645                 if (c == ';' || c == '&' || c == '|') {
646                         command_mode = 1 + (c == c2);
647                         if (c == '&') {
648                                 if (j == '>' || j == '<')
649                                         command_mode = 0;
650                         } else if (c == '|' && j == '>')
651                                 command_mode = 0;
652                 }
653                 if (command_mode) {
654                         collapse_pos(0, i + command_mode);
655                         i = -1;                         /* hack incremet */
656                 }
657         }
658         /* collapse `command...` */
659         for (i = 0; int_buf[i]; i++)
660                 if (int_buf[i] == '`') {
661                         for (j = i + 1; int_buf[j]; j++)
662                                 if (int_buf[j] == '`') {
663                                         collapse_pos(i, j + 1);
664                                         j = 0;
665                                         break;
666                                 }
667                         if (j) {
668                                 /* not found close ` - command mode, collapse all previous */
669                                 collapse_pos(0, i + 1);
670                                 break;
671                         } else
672                                 i--;                    /* hack incremet */
673                 }
674
675         /* collapse (command...(command...)...) or {command...{command...}...} */
676         c = 0;                                          /* "recursive" level */
677         c2 = 0;
678         for (i = 0; int_buf[i]; i++)
679                 if (int_buf[i] == '(' || int_buf[i] == '{') {
680                         if (int_buf[i] == '(')
681                                 c++;
682                         else
683                                 c2++;
684                         collapse_pos(0, i + 1);
685                         i = -1;                         /* hack incremet */
686                 }
687         for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
688                 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
689                         if (int_buf[i] == ')')
690                                 c--;
691                         else
692                                 c2--;
693                         collapse_pos(0, i + 1);
694                         i = -1;                         /* hack incremet */
695                 }
696
697         /* skip first not quote space */
698         for (i = 0; int_buf[i]; i++)
699                 if (int_buf[i] != ' ')
700                         break;
701         if (i)
702                 collapse_pos(0, i);
703
704         /* set find mode for completion */
705         command_mode = FIND_EXE_ONLY;
706         for (i = 0; int_buf[i]; i++)
707                 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
708                         if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
709                          && matchBuf[pos_buf[0]] == 'c'
710                          && matchBuf[pos_buf[1]] == 'd'
711                         ) {
712                                 command_mode = FIND_DIR_ONLY;
713                         } else {
714                                 command_mode = FIND_FILE_ONLY;
715                                 break;
716                         }
717                 }
718         for (i = 0; int_buf[i]; i++)
719                 /* "strlen" */;
720         /* find last word */
721         for (--i; i >= 0; i--) {
722                 c = int_buf[i];
723                 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
724                         collapse_pos(0, i + 1);
725                         break;
726                 }
727         }
728         /* skip first not quoted '\'' or '"' */
729         for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
730                 /*skip*/;
731         /* collapse quote or unquote // or /~ */
732         while ((int_buf[i] & ~QUOT) == '/'
733          && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
734         ) {
735                 i++;
736         }
737
738         /* set only match and destroy quotes */
739         j = 0;
740         for (c = 0; pos_buf[i] >= 0; i++) {
741                 matchBuf[c++] = matchBuf[pos_buf[i]];
742                 j = pos_buf[i] + 1;
743         }
744         matchBuf[c] = '\0';
745         /* old length matchBuf with quotes symbols */
746         *len_with_quotes = j ? j - pos_buf[0] : 0;
747
748         return command_mode;
749 #undef int_buf
750 #undef pos_buf
751 }
752
753 /*
754  * display by column (original idea from ls applet,
755  * very optimized by me :)
756  */
757 static void showfiles(void)
758 {
759         int ncols, row;
760         int column_width = 0;
761         int nfiles = num_matches;
762         int nrows = nfiles;
763         int l;
764
765         /* find the longest file name-  use that as the column width */
766         for (row = 0; row < nrows; row++) {
767                 l = strlen(matches[row]);
768                 if (column_width < l)
769                         column_width = l;
770         }
771         column_width += 2;              /* min space for columns */
772         ncols = cmdedit_termw / column_width;
773
774         if (ncols > 1) {
775                 nrows /= ncols;
776                 if (nfiles % ncols)
777                         nrows++;        /* round up fractionals */
778         } else {
779                 ncols = 1;
780         }
781         for (row = 0; row < nrows; row++) {
782                 int n = row;
783                 int nc;
784
785                 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
786                         printf("%s%-*s", matches[n],
787                                 (int)(column_width - strlen(matches[n])), "");
788                 }
789                 puts(matches[n]);
790         }
791 }
792
793 static char *add_quote_for_spec_chars(char *found)
794 {
795         int l = 0;
796         char *s = xmalloc((strlen(found) + 1) * 2);
797
798         while (*found) {
799                 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
800                         s[l++] = '\\';
801                 s[l++] = *found++;
802         }
803         s[l] = 0;
804         return s;
805 }
806
807 /* Do TAB completion */
808 static void input_tab(smallint *lastWasTab)
809 {
810         if (!(state->flags & TAB_COMPLETION))
811                 return;
812
813         if (!*lastWasTab) {
814                 char *tmp, *tmp1;
815                 int len_found;
816 /*              char matchBuf[MAX_LINELEN]; */
817 #define matchBuf (S.input_tab__matchBuf)
818                 int find_type;
819                 int recalc_pos;
820
821                 *lastWasTab = TRUE;             /* flop trigger */
822
823                 /* Make a local copy of the string -- up
824                  * to the position of the cursor */
825                 tmp = strncpy(matchBuf, command_ps, cursor);
826                 tmp[cursor] = '\0';
827
828                 find_type = find_match(matchBuf, &recalc_pos);
829
830                 /* Free up any memory already allocated */
831                 free_tab_completion_data();
832
833 #if ENABLE_FEATURE_USERNAME_COMPLETION
834                 /* If the word starts with `~' and there is no slash in the word,
835                  * then try completing this word as a username. */
836                 if (state->flags & USERNAME_COMPLETION)
837                         if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
838                                 username_tab_completion(matchBuf, NULL);
839 #endif
840                 /* Try to match any executable in our path and everything
841                  * in the current working directory */
842                 if (!matches)
843                         exe_n_cwd_tab_completion(matchBuf, find_type);
844                 /* Sort, then remove any duplicates found */
845                 if (matches) {
846                         int i, n = 0;
847                         qsort_string_vector(matches, num_matches);
848                         for (i = 0; i < num_matches - 1; ++i) {
849                                 if (matches[i] && matches[i+1]) { /* paranoia */
850                                         if (strcmp(matches[i], matches[i+1]) == 0) {
851                                                 free(matches[i]);
852                                                 matches[i] = NULL; /* paranoia */
853                                         } else {
854                                                 matches[n++] = matches[i];
855                                         }
856                                 }
857                         }
858                         matches[n] = matches[i];
859                         num_matches = n + 1;
860                 }
861                 /* Did we find exactly one match? */
862                 if (!matches || num_matches > 1) {
863                         beep();
864                         if (!matches)
865                                 return;         /* not found */
866                         /* find minimal match */
867                         tmp1 = xstrdup(matches[0]);
868                         for (tmp = tmp1; *tmp; tmp++)
869                                 for (len_found = 1; len_found < num_matches; len_found++)
870                                         if (matches[len_found][(tmp - tmp1)] != *tmp) {
871                                                 *tmp = '\0';
872                                                 break;
873                                         }
874                         if (*tmp1 == '\0') {        /* have unique */
875                                 free(tmp1);
876                                 return;
877                         }
878                         tmp = add_quote_for_spec_chars(tmp1);
879                         free(tmp1);
880                 } else {                        /* one match */
881                         tmp = add_quote_for_spec_chars(matches[0]);
882                         /* for next completion current found */
883                         *lastWasTab = FALSE;
884
885                         len_found = strlen(tmp);
886                         if (tmp[len_found-1] != '/') {
887                                 tmp[len_found] = ' ';
888                                 tmp[len_found+1] = '\0';
889                         }
890                 }
891                 len_found = strlen(tmp);
892                 /* have space to placed match? */
893                 if ((len_found - strlen(matchBuf) + command_len) < MAX_LINELEN) {
894                         /* before word for match   */
895                         command_ps[cursor - recalc_pos] = '\0';
896                         /* save   tail line        */
897                         strcpy(matchBuf, command_ps + cursor);
898                         /* add    match            */
899                         strcat(command_ps, tmp);
900                         /* add    tail             */
901                         strcat(command_ps, matchBuf);
902                         /* back to begin word for match    */
903                         input_backward(recalc_pos);
904                         /* new pos                         */
905                         recalc_pos = cursor + len_found;
906                         /* new len                         */
907                         command_len = strlen(command_ps);
908                         /* write out the matched command   */
909                         redraw(cmdedit_y, command_len - recalc_pos);
910                 }
911                 free(tmp);
912 #undef matchBuf
913         } else {
914                 /* Ok -- the last char was a TAB.  Since they
915                  * just hit TAB again, print a list of all the
916                  * available choices... */
917                 if (matches && num_matches > 0) {
918                         int sav_cursor = cursor;        /* change goto_new_line() */
919
920                         /* Go to the next line */
921                         goto_new_line();
922                         showfiles();
923                         redraw(0, command_len - sav_cursor);
924                 }
925         }
926 }
927
928 #endif  /* FEATURE_COMMAND_TAB_COMPLETION */
929
930
931 #if MAX_HISTORY > 0
932
933 /* state->flags is already checked to be nonzero */
934 static void get_previous_history(void)
935 {
936         if (command_ps[0] != '\0' || state->history[state->cur_history] == NULL) {
937                 free(state->history[state->cur_history]);
938                 state->history[state->cur_history] = xstrdup(command_ps);
939         }
940         state->cur_history--;
941 }
942
943 static int get_next_history(void)
944 {
945         if (state->flags & DO_HISTORY) {
946                 int ch = state->cur_history;
947                 if (ch < state->cnt_history) {
948                         get_previous_history(); /* save the current history line */
949                         state->cur_history = ch + 1;
950                         return state->cur_history;
951                 }
952         }
953         beep();
954         return 0;
955 }
956
957 #if ENABLE_FEATURE_EDITING_SAVEHISTORY
958 /* state->flags is already checked to be nonzero */
959 static void load_history(const char *fromfile)
960 {
961         FILE *fp;
962         int hi;
963
964         /* cleanup old */
965         for (hi = state->cnt_history; hi > 0;) {
966                 hi--;
967                 free(state->history[hi]);
968         }
969
970         fp = fopen(fromfile, "r");
971         if (fp) {
972                 for (hi = 0; hi < MAX_HISTORY;) {
973                         char *hl = xmalloc_getline(fp);
974                         int l;
975
976                         if (!hl)
977                                 break;
978                         l = strlen(hl);
979                         if (l >= MAX_LINELEN)
980                                 hl[MAX_LINELEN-1] = '\0';
981                         if (l == 0 || hl[0] == ' ') {
982                                 free(hl);
983                                 continue;
984                         }
985                         state->history[hi++] = hl;
986                 }
987                 fclose(fp);
988         }
989         state->cur_history = state->cnt_history = hi;
990 }
991
992 /* state->flags is already checked to be nonzero */
993 static void save_history(const char *tofile)
994 {
995         FILE *fp;
996
997         fp = fopen(tofile, "w");
998         if (fp) {
999                 int i;
1000
1001                 for (i = 0; i < state->cnt_history; i++) {
1002                         fprintf(fp, "%s\n", state->history[i]);
1003                 }
1004                 fclose(fp);
1005         }
1006 }
1007 #else
1008 #define load_history(a) ((void)0)
1009 #define save_history(a) ((void)0)
1010 #endif /* FEATURE_COMMAND_SAVEHISTORY */
1011
1012 static void remember_in_history(const char *str)
1013 {
1014         int i;
1015
1016         if (!(state->flags & DO_HISTORY))
1017                 return;
1018
1019         i = state->cnt_history;
1020         free(state->history[MAX_HISTORY]);
1021         state->history[MAX_HISTORY] = NULL;
1022         /* After max history, remove the oldest command */
1023         if (i >= MAX_HISTORY) {
1024                 free(state->history[0]);
1025                 for (i = 0; i < MAX_HISTORY-1; i++)
1026                         state->history[i] = state->history[i+1];
1027         }
1028 // Maybe "if (!i || strcmp(history[i-1], command) != 0) ..."
1029 // (i.e. do not save dups?)
1030         state->history[i++] = xstrdup(str);
1031         state->cur_history = i;
1032         state->cnt_history = i;
1033 #if ENABLE_FEATURE_EDITING_SAVEHISTORY
1034         if ((state->flags & SAVE_HISTORY) && state->hist_file)
1035                 save_history(state->hist_file);
1036 #endif
1037         USE_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
1038 }
1039
1040 #else /* MAX_HISTORY == 0 */
1041 #define remember_in_history(a) ((void)0)
1042 #endif /* MAX_HISTORY */
1043
1044
1045 /*
1046  * This function is used to grab a character buffer
1047  * from the input file descriptor and allows you to
1048  * a string with full command editing (sort of like
1049  * a mini readline).
1050  *
1051  * The following standard commands are not implemented:
1052  * ESC-b -- Move back one word
1053  * ESC-f -- Move forward one word
1054  * ESC-d -- Delete back one word
1055  * ESC-h -- Delete forward one word
1056  * CTL-t -- Transpose two characters
1057  *
1058  * Minimalist vi-style command line editing available if configured.
1059  * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
1060  */
1061
1062 #if ENABLE_FEATURE_EDITING_VI
1063 static void
1064 vi_Word_motion(char *command, int eat)
1065 {
1066         while (cursor < command_len && !isspace(command[cursor]))
1067                 input_forward();
1068         if (eat) while (cursor < command_len && isspace(command[cursor]))
1069                 input_forward();
1070 }
1071
1072 static void
1073 vi_word_motion(char *command, int eat)
1074 {
1075         if (isalnum(command[cursor]) || command[cursor] == '_') {
1076                 while (cursor < command_len
1077                  && (isalnum(command[cursor+1]) || command[cursor+1] == '_'))
1078                         input_forward();
1079         } else if (ispunct(command[cursor])) {
1080                 while (cursor < command_len && ispunct(command[cursor+1]))
1081                         input_forward();
1082         }
1083
1084         if (cursor < command_len)
1085                 input_forward();
1086
1087         if (eat && cursor < command_len && isspace(command[cursor]))
1088                 while (cursor < command_len && isspace(command[cursor]))
1089                         input_forward();
1090 }
1091
1092 static void
1093 vi_End_motion(char *command)
1094 {
1095         input_forward();
1096         while (cursor < command_len && isspace(command[cursor]))
1097                 input_forward();
1098         while (cursor < command_len-1 && !isspace(command[cursor+1]))
1099                 input_forward();
1100 }
1101
1102 static void
1103 vi_end_motion(char *command)
1104 {
1105         if (cursor >= command_len-1)
1106                 return;
1107         input_forward();
1108         while (cursor < command_len-1 && isspace(command[cursor]))
1109                 input_forward();
1110         if (cursor >= command_len-1)
1111                 return;
1112         if (isalnum(command[cursor]) || command[cursor] == '_') {
1113                 while (cursor < command_len-1
1114                  && (isalnum(command[cursor+1]) || command[cursor+1] == '_')
1115                 ) {
1116                         input_forward();
1117                 }
1118         } else if (ispunct(command[cursor])) {
1119                 while (cursor < command_len-1 && ispunct(command[cursor+1]))
1120                         input_forward();
1121         }
1122 }
1123
1124 static void
1125 vi_Back_motion(char *command)
1126 {
1127         while (cursor > 0 && isspace(command[cursor-1]))
1128                 input_backward(1);
1129         while (cursor > 0 && !isspace(command[cursor-1]))
1130                 input_backward(1);
1131 }
1132
1133 static void
1134 vi_back_motion(char *command)
1135 {
1136         if (cursor <= 0)
1137                 return;
1138         input_backward(1);
1139         while (cursor > 0 && isspace(command[cursor]))
1140                 input_backward(1);
1141         if (cursor <= 0)
1142                 return;
1143         if (isalnum(command[cursor]) || command[cursor] == '_') {
1144                 while (cursor > 0
1145                  && (isalnum(command[cursor-1]) || command[cursor-1] == '_')
1146                 ) {
1147                         input_backward(1);
1148                 }
1149         } else if (ispunct(command[cursor])) {
1150                 while (cursor > 0 && ispunct(command[cursor-1]))
1151                         input_backward(1);
1152         }
1153 }
1154 #endif
1155
1156
1157 /*
1158  * read_line_input and its helpers
1159  */
1160
1161 #if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
1162 static void parse_and_put_prompt(const char *prmt_ptr)
1163 {
1164         cmdedit_prompt = prmt_ptr;
1165         cmdedit_prmt_len = strlen(prmt_ptr);
1166         put_prompt();
1167 }
1168 #else
1169 static void parse_and_put_prompt(const char *prmt_ptr)
1170 {
1171         int prmt_len = 0;
1172         size_t cur_prmt_len = 0;
1173         char flg_not_length = '[';
1174         char *prmt_mem_ptr = xzalloc(1);
1175         char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1176         char cbuf[2];
1177         char c;
1178         char *pbuf;
1179
1180         cmdedit_prmt_len = 0;
1181
1182         if (!cwd_buf) {
1183                 cwd_buf = (char *)bb_msg_unknown;
1184         }
1185
1186         cbuf[1] = '\0'; /* never changes */
1187
1188         while (*prmt_ptr) {
1189                 char *free_me = NULL;
1190
1191                 pbuf = cbuf;
1192                 c = *prmt_ptr++;
1193                 if (c == '\\') {
1194                         const char *cp = prmt_ptr;
1195                         int l;
1196
1197                         c = bb_process_escape_sequence(&prmt_ptr);
1198                         if (prmt_ptr == cp) {
1199                                 if (*cp == '\0')
1200                                         break;
1201                                 c = *prmt_ptr++;
1202
1203                                 switch (c) {
1204 #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1205                                 case 'u':
1206                                         pbuf = user_buf ? user_buf : (char*)"";
1207                                         break;
1208 #endif
1209                                 case 'h':
1210                                         pbuf = free_me = safe_gethostname();
1211                                         *strchrnul(pbuf, '.') = '\0';
1212                                         break;
1213                                 case '$':
1214                                         c = (geteuid() == 0 ? '#' : '$');
1215                                         break;
1216 #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1217                                 case 'w':
1218                                         /* /home/user[/something] -> ~[/something] */
1219                                         pbuf = cwd_buf;
1220                                         l = strlen(home_pwd_buf);
1221                                         if (l != 0
1222                                          && strncmp(home_pwd_buf, cwd_buf, l) == 0
1223                                          && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1224                                          && strlen(cwd_buf + l) < PATH_MAX
1225                                         ) {
1226                                                 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
1227                                         }
1228                                         break;
1229 #endif
1230                                 case 'W':
1231                                         pbuf = cwd_buf;
1232                                         cp = strrchr(pbuf, '/');
1233                                         if (cp != NULL && cp != pbuf)
1234                                                 pbuf += (cp-pbuf) + 1;
1235                                         break;
1236                                 case '!':
1237                                         pbuf = free_me = xasprintf("%d", num_ok_lines);
1238                                         break;
1239                                 case 'e': case 'E':     /* \e \E = \033 */
1240                                         c = '\033';
1241                                         break;
1242                                 case 'x': case 'X': {
1243                                         char buf2[4];
1244                                         for (l = 0; l < 3;) {
1245                                                 unsigned h;
1246                                                 buf2[l++] = *prmt_ptr;
1247                                                 buf2[l] = '\0';
1248                                                 h = strtoul(buf2, &pbuf, 16);
1249                                                 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
1250                                                         buf2[--l] = '\0';
1251                                                         break;
1252                                                 }
1253                                                 prmt_ptr++;
1254                                         }
1255                                         c = (char)strtoul(buf2, NULL, 16);
1256                                         if (c == 0)
1257                                                 c = '?';
1258                                         pbuf = cbuf;
1259                                         break;
1260                                 }
1261                                 case '[': case ']':
1262                                         if (c == flg_not_length) {
1263                                                 flg_not_length = (flg_not_length == '[' ? ']' : '[');
1264                                                 continue;
1265                                         }
1266                                         break;
1267                                 } /* switch */
1268                         } /* if */
1269                 } /* if */
1270                 cbuf[0] = c;
1271                 cur_prmt_len = strlen(pbuf);
1272                 prmt_len += cur_prmt_len;
1273                 if (flg_not_length != ']')
1274                         cmdedit_prmt_len += cur_prmt_len;
1275                 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
1276                 free(free_me);
1277         } /* while */
1278
1279         if (cwd_buf != (char *)bb_msg_unknown)
1280                 free(cwd_buf);
1281         cmdedit_prompt = prmt_mem_ptr;
1282         put_prompt();
1283 }
1284 #endif
1285
1286 static void cmdedit_setwidth(unsigned w, int redraw_flg)
1287 {
1288         cmdedit_termw = w;
1289         if (redraw_flg) {
1290                 /* new y for current cursor */
1291                 int new_y = (cursor + cmdedit_prmt_len) / w;
1292                 /* redraw */
1293                 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
1294                 fflush(stdout);
1295         }
1296 }
1297
1298 static void win_changed(int nsig)
1299 {
1300         int width;
1301         get_terminal_width_height(0, &width, NULL);
1302         cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1303         if (nsig == SIGWINCH)
1304                 signal(SIGWINCH, win_changed); /* rearm ourself */
1305 }
1306
1307 /*
1308  * The emacs and vi modes share much of the code in the big
1309  * command loop.  Commands entered when in vi's command mode (aka
1310  * "escape mode") get an extra bit added to distinguish them --
1311  * this keeps them from being self-inserted.  This clutters the
1312  * big switch a bit, but keeps all the code in one place.
1313  */
1314
1315 #define vbit 0x100
1316
1317 /* leave out the "vi-mode"-only case labels if vi editing isn't
1318  * configured. */
1319 #define vi_case(caselabel) USE_FEATURE_EDITING(case caselabel)
1320
1321 /* convert uppercase ascii to equivalent control char, for readability */
1322 #undef CTRL
1323 #define CTRL(a) ((a) & ~0x40)
1324
1325 /* Returns:
1326  * -1 on read errors or EOF, or on bare Ctrl-D,
1327  * 0  on ctrl-C (the line entered is still returned in 'command'),
1328  * >0 length of input string, including terminating '\n'
1329  */
1330 int read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
1331 {
1332 #if ENABLE_FEATURE_TAB_COMPLETION
1333         smallint lastWasTab = FALSE;
1334 #endif
1335         unsigned int ic;
1336         unsigned char c;
1337         smallint break_out = 0;
1338 #if ENABLE_FEATURE_EDITING_VI
1339         smallint vi_cmdmode = 0;
1340         smalluint prevc;
1341 #endif
1342         struct termios initial_settings;
1343         struct termios new_settings;
1344
1345         INIT_S();
1346
1347         if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1348          || !(initial_settings.c_lflag & ECHO)
1349         ) {
1350                 /* Happens when e.g. stty -echo was run before */
1351                 int len;
1352                 parse_and_put_prompt(prompt);
1353                 fflush(stdout);
1354                 if (fgets(command, maxsize, stdin) == NULL)
1355                         len = -1; /* EOF or error */
1356                 else
1357                         len = strlen(command);
1358                 DEINIT_S();
1359                 return len;
1360         }
1361
1362 // FIXME: audit & improve this
1363         if (maxsize > MAX_LINELEN)
1364                 maxsize = MAX_LINELEN;
1365
1366         /* With null flags, no other fields are ever used */
1367         state = st ? st : (line_input_t*) &const_int_0;
1368 #if ENABLE_FEATURE_EDITING_SAVEHISTORY
1369         if ((state->flags & SAVE_HISTORY) && state->hist_file)
1370                 load_history(state->hist_file);
1371 #endif
1372
1373         /* prepare before init handlers */
1374         cmdedit_y = 0;  /* quasireal y, not true if line > xt*yt */
1375         command_len = 0;
1376         command_ps = command;
1377         command[0] = '\0';
1378
1379         new_settings = initial_settings;
1380         new_settings.c_lflag &= ~ICANON;        /* unbuffered input */
1381         /* Turn off echoing and CTRL-C, so we can trap it */
1382         new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
1383         /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
1384         new_settings.c_cc[VMIN] = 1;
1385         new_settings.c_cc[VTIME] = 0;
1386         /* Turn off CTRL-C, so we can trap it */
1387 #ifndef _POSIX_VDISABLE
1388 #define _POSIX_VDISABLE '\0'
1389 #endif
1390         new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
1391         tcsetattr(STDIN_FILENO, TCSANOW, &new_settings);
1392
1393         /* Now initialize things */
1394         previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1395         win_changed(0); /* do initial resizing */
1396 #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1397         {
1398                 struct passwd *entry;
1399
1400                 entry = getpwuid(geteuid());
1401                 if (entry) {
1402                         user_buf = xstrdup(entry->pw_name);
1403                         home_pwd_buf = xstrdup(entry->pw_dir);
1404                 }
1405         }
1406 #endif
1407         /* Print out the command prompt */
1408         parse_and_put_prompt(prompt);
1409
1410         while (1) {
1411                 fflush(NULL);
1412
1413                 if (nonblock_safe_read(STDIN_FILENO, &c, 1) < 1) {
1414                         /* if we can't read input then exit */
1415                         goto prepare_to_die;
1416                 }
1417
1418                 ic = c;
1419
1420 #if ENABLE_FEATURE_EDITING_VI
1421                 newdelflag = 1;
1422                 if (vi_cmdmode)
1423                         ic |= vbit;
1424 #endif
1425                 switch (ic) {
1426                 case '\n':
1427                 case '\r':
1428                 vi_case('\n'|vbit:)
1429                 vi_case('\r'|vbit:)
1430                         /* Enter */
1431                         goto_new_line();
1432                         break_out = 1;
1433                         break;
1434                 case CTRL('A'):
1435                 vi_case('0'|vbit:)
1436                         /* Control-a -- Beginning of line */
1437                         input_backward(cursor);
1438                         break;
1439                 case CTRL('B'):
1440                 vi_case('h'|vbit:)
1441                 vi_case('\b'|vbit:)
1442                 vi_case('\x7f'|vbit:) /* DEL */
1443                         /* Control-b -- Move back one character */
1444                         input_backward(1);
1445                         break;
1446                 case CTRL('C'):
1447                 vi_case(CTRL('C')|vbit:)
1448                         /* Control-c -- stop gathering input */
1449                         goto_new_line();
1450                         command_len = 0;
1451                         break_out = -1; /* "do not append '\n'" */
1452                         break;
1453                 case CTRL('D'):
1454                         /* Control-d -- Delete one character, or exit
1455                          * if the len=0 and no chars to delete */
1456                         if (command_len == 0) {
1457                                 errno = 0;
1458  prepare_to_die:
1459                                 /* to control stopped jobs */
1460                                 break_out = command_len = -1;
1461                                 break;
1462                         }
1463                         input_delete(0);
1464                         break;
1465
1466                 case CTRL('E'):
1467                 vi_case('$'|vbit:)
1468                         /* Control-e -- End of line */
1469                         input_end();
1470                         break;
1471                 case CTRL('F'):
1472                 vi_case('l'|vbit:)
1473                 vi_case(' '|vbit:)
1474                         /* Control-f -- Move forward one character */
1475                         input_forward();
1476                         break;
1477
1478                 case '\b':
1479                 case '\x7f': /* DEL */
1480                         /* Control-h and DEL */
1481                         input_backspace();
1482                         break;
1483
1484 #if ENABLE_FEATURE_TAB_COMPLETION
1485                 case '\t':
1486                         input_tab(&lastWasTab);
1487                         break;
1488 #endif
1489
1490                 case CTRL('K'):
1491                         /* Control-k -- clear to end of line */
1492                         command[cursor] = 0;
1493                         command_len = cursor;
1494                         printf("\033[J");
1495                         break;
1496                 case CTRL('L'):
1497                 vi_case(CTRL('L')|vbit:)
1498                         /* Control-l -- clear screen */
1499                         printf("\033[H");
1500                         redraw(0, command_len - cursor);
1501                         break;
1502
1503 #if MAX_HISTORY > 0
1504                 case CTRL('N'):
1505                 vi_case(CTRL('N')|vbit:)
1506                 vi_case('j'|vbit:)
1507                         /* Control-n -- Get next command in history */
1508                         if (get_next_history())
1509                                 goto rewrite_line;
1510                         break;
1511                 case CTRL('P'):
1512                 vi_case(CTRL('P')|vbit:)
1513                 vi_case('k'|vbit:)
1514                         /* Control-p -- Get previous command from history */
1515                         if ((state->flags & DO_HISTORY) && state->cur_history > 0) {
1516                                 get_previous_history();
1517                                 goto rewrite_line;
1518                         }
1519                         beep();
1520                         break;
1521 #endif
1522
1523                 case CTRL('U'):
1524                 vi_case(CTRL('U')|vbit:)
1525                         /* Control-U -- Clear line before cursor */
1526                         if (cursor) {
1527                                 strcpy(command, command + cursor);
1528                                 command_len -= cursor;
1529                                 redraw(cmdedit_y, command_len);
1530                         }
1531                         break;
1532                 case CTRL('W'):
1533                 vi_case(CTRL('W')|vbit:)
1534                         /* Control-W -- Remove the last word */
1535                         while (cursor > 0 && isspace(command[cursor-1]))
1536                                 input_backspace();
1537                         while (cursor > 0 && !isspace(command[cursor-1]))
1538                                 input_backspace();
1539                         break;
1540
1541 #if ENABLE_FEATURE_EDITING_VI
1542                 case 'i'|vbit:
1543                         vi_cmdmode = 0;
1544                         break;
1545                 case 'I'|vbit:
1546                         input_backward(cursor);
1547                         vi_cmdmode = 0;
1548                         break;
1549                 case 'a'|vbit:
1550                         input_forward();
1551                         vi_cmdmode = 0;
1552                         break;
1553                 case 'A'|vbit:
1554                         input_end();
1555                         vi_cmdmode = 0;
1556                         break;
1557                 case 'x'|vbit:
1558                         input_delete(1);
1559                         break;
1560                 case 'X'|vbit:
1561                         if (cursor > 0) {
1562                                 input_backward(1);
1563                                 input_delete(1);
1564                         }
1565                         break;
1566                 case 'W'|vbit:
1567                         vi_Word_motion(command, 1);
1568                         break;
1569                 case 'w'|vbit:
1570                         vi_word_motion(command, 1);
1571                         break;
1572                 case 'E'|vbit:
1573                         vi_End_motion(command);
1574                         break;
1575                 case 'e'|vbit:
1576                         vi_end_motion(command);
1577                         break;
1578                 case 'B'|vbit:
1579                         vi_Back_motion(command);
1580                         break;
1581                 case 'b'|vbit:
1582                         vi_back_motion(command);
1583                         break;
1584                 case 'C'|vbit:
1585                         vi_cmdmode = 0;
1586                         /* fall through */
1587                 case 'D'|vbit:
1588                         goto clear_to_eol;
1589
1590                 case 'c'|vbit:
1591                         vi_cmdmode = 0;
1592                         /* fall through */
1593                 case 'd'|vbit: {
1594                         int nc, sc;
1595                         sc = cursor;
1596                         prevc = ic;
1597                         if (safe_read(STDIN_FILENO, &c, 1) < 1)
1598                                 goto prepare_to_die;
1599                         if (c == (prevc & 0xff)) {
1600                                 /* "cc", "dd" */
1601                                 input_backward(cursor);
1602                                 goto clear_to_eol;
1603                                 break;
1604                         }
1605                         switch (c) {
1606                         case 'w':
1607                         case 'W':
1608                         case 'e':
1609                         case 'E':
1610                                 switch (c) {
1611                                 case 'w':   /* "dw", "cw" */
1612                                         vi_word_motion(command, vi_cmdmode);
1613                                         break;
1614                                 case 'W':   /* 'dW', 'cW' */
1615                                         vi_Word_motion(command, vi_cmdmode);
1616                                         break;
1617                                 case 'e':   /* 'de', 'ce' */
1618                                         vi_end_motion(command);
1619                                         input_forward();
1620                                         break;
1621                                 case 'E':   /* 'dE', 'cE' */
1622                                         vi_End_motion(command);
1623                                         input_forward();
1624                                         break;
1625                                 }
1626                                 nc = cursor;
1627                                 input_backward(cursor - sc);
1628                                 while (nc-- > cursor)
1629                                         input_delete(1);
1630                                 break;
1631                         case 'b':  /* "db", "cb" */
1632                         case 'B':  /* implemented as B */
1633                                 if (c == 'b')
1634                                         vi_back_motion(command);
1635                                 else
1636                                         vi_Back_motion(command);
1637                                 while (sc-- > cursor)
1638                                         input_delete(1);
1639                                 break;
1640                         case ' ':  /* "d ", "c " */
1641                                 input_delete(1);
1642                                 break;
1643                         case '$':  /* "d$", "c$" */
1644                         clear_to_eol:
1645                                 while (cursor < command_len)
1646                                         input_delete(1);
1647                                 break;
1648                         }
1649                         break;
1650                 }
1651                 case 'p'|vbit:
1652                         input_forward();
1653                         /* fallthrough */
1654                 case 'P'|vbit:
1655                         put();
1656                         break;
1657                 case 'r'|vbit:
1658                         if (safe_read(STDIN_FILENO, &c, 1) < 1)
1659                                 goto prepare_to_die;
1660                         if (c == 0)
1661                                 beep();
1662                         else {
1663                                 *(command + cursor) = c;
1664                                 bb_putchar(c);
1665                                 bb_putchar('\b');
1666                         }
1667                         break;
1668 #endif /* FEATURE_COMMAND_EDITING_VI */
1669
1670                 case '\x1b': /* ESC */
1671
1672 #if ENABLE_FEATURE_EDITING_VI
1673                         if (state->flags & VI_MODE) {
1674                                 /* ESC: insert mode --> command mode */
1675                                 vi_cmdmode = 1;
1676                                 input_backward(1);
1677                                 break;
1678                         }
1679 #endif
1680                         /* escape sequence follows */
1681                         if (safe_read(STDIN_FILENO, &c, 1) < 1)
1682                                 goto prepare_to_die;
1683                         /* different vt100 emulations */
1684                         if (c == '[' || c == 'O') {
1685                 vi_case('['|vbit:)
1686                 vi_case('O'|vbit:)
1687                                 if (safe_read(STDIN_FILENO, &c, 1) < 1)
1688                                         goto prepare_to_die;
1689                         }
1690                         if (c >= '1' && c <= '9') {
1691                                 unsigned char dummy;
1692
1693                                 if (safe_read(STDIN_FILENO, &dummy, 1) < 1)
1694                                         goto prepare_to_die;
1695                                 if (dummy != '~')
1696                                         c = '\0';
1697                         }
1698
1699                         switch (c) {
1700 #if ENABLE_FEATURE_TAB_COMPLETION
1701                         case '\t':                      /* Alt-Tab */
1702                                 input_tab(&lastWasTab);
1703                                 break;
1704 #endif
1705 #if MAX_HISTORY > 0
1706                         case 'A':
1707                                 /* Up Arrow -- Get previous command from history */
1708                                 if ((state->flags & DO_HISTORY) && state->cur_history > 0) {
1709                                         get_previous_history();
1710                                         goto rewrite_line;
1711                                 }
1712                                 beep();
1713                                 break;
1714                         case 'B':
1715                                 /* Down Arrow -- Get next command in history */
1716                                 if (!get_next_history())
1717                                         break;
1718  rewrite_line:
1719                                 /* Rewrite the line with the selected history item */
1720                                 /* change command */
1721                                 command_len = strlen(strcpy(command, state->history[state->cur_history]));
1722                                 /* redraw and go to eol (bol, in vi */
1723                                 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
1724                                 break;
1725 #endif
1726                         case 'C':
1727                                 /* Right Arrow -- Move forward one character */
1728                                 input_forward();
1729                                 break;
1730                         case 'D':
1731                                 /* Left Arrow -- Move back one character */
1732                                 input_backward(1);
1733                                 break;
1734                         case '3':
1735                                 /* Delete */
1736                                 input_delete(0);
1737                                 break;
1738                         case '1': // vt100? linux vt? or what?
1739                         case '7': // vt100? linux vt? or what?
1740                         case 'H': /* xterm's <Home> */
1741                                 input_backward(cursor);
1742                                 break;
1743                         case '4': // vt100? linux vt? or what?
1744                         case '8': // vt100? linux vt? or what?
1745                         case 'F': /* xterm's <End> */
1746                                 input_end();
1747                                 break;
1748                         default:
1749                                 c = '\0';
1750                                 beep();
1751                         }
1752                         break;
1753
1754                 default:        /* If it's regular input, do the normal thing */
1755
1756                         /* Control-V -- force insert of next char */
1757                         if (c == CTRL('V')) {
1758                                 if (safe_read(STDIN_FILENO, &c, 1) < 1)
1759                                         goto prepare_to_die;
1760                                 if (c == 0) {
1761                                         beep();
1762                                         break;
1763                                 }
1764                         }
1765
1766 #if ENABLE_FEATURE_EDITING_VI
1767                         if (vi_cmdmode)  /* Don't self-insert */
1768                                 break;
1769 #endif
1770                         if (command_len >= (maxsize - 2))        /* Need to leave space for enter */
1771                                 break;
1772
1773                         command_len++;
1774                         if (cursor == (command_len - 1)) {      /* Append if at the end of the line */
1775                                 command[cursor] = c;
1776                                 command[cursor+1] = '\0';
1777                                 cmdedit_set_out_char(' ');
1778                         } else {                        /* Insert otherwise */
1779                                 int sc = cursor;
1780
1781                                 memmove(command + sc + 1, command + sc, command_len - sc);
1782                                 command[sc] = c;
1783                                 sc++;
1784                                 /* rewrite from cursor */
1785                                 input_end();
1786                                 /* to prev x pos + 1 */
1787                                 input_backward(cursor - sc);
1788                         }
1789                         break;
1790                 }
1791                 if (break_out)                  /* Enter is the command terminator, no more input. */
1792                         break;
1793
1794 #if ENABLE_FEATURE_TAB_COMPLETION
1795                 if (c != '\t')
1796                         lastWasTab = FALSE;
1797 #endif
1798         }
1799
1800         if (command_len > 0)
1801                 remember_in_history(command);
1802
1803         if (break_out > 0) {
1804                 command[command_len++] = '\n';
1805                 command[command_len] = '\0';
1806         }
1807
1808 #if ENABLE_FEATURE_TAB_COMPLETION
1809         free_tab_completion_data();
1810 #endif
1811
1812         /* restore initial_settings */
1813         tcsetattr(STDIN_FILENO, TCSANOW, &initial_settings);
1814         /* restore SIGWINCH handler */
1815         signal(SIGWINCH, previous_SIGWINCH_handler);
1816         fflush(stdout);
1817
1818         DEINIT_S();
1819
1820         return command_len;
1821 }
1822
1823 line_input_t *new_line_input_t(int flags)
1824 {
1825         line_input_t *n = xzalloc(sizeof(*n));
1826         n->flags = flags;
1827         return n;
1828 }
1829
1830 #else
1831
1832 #undef read_line_input
1833 int read_line_input(const char* prompt, char* command, int maxsize)
1834 {
1835         fputs(prompt, stdout);
1836         fflush(stdout);
1837         fgets(command, maxsize, stdin);
1838         return strlen(command);
1839 }
1840
1841 #endif  /* FEATURE_COMMAND_EDITING */
1842
1843
1844 /*
1845  * Testing
1846  */
1847
1848 #ifdef TEST
1849
1850 #include <locale.h>
1851
1852 const char *applet_name = "debug stuff usage";
1853
1854 int main(int argc, char **argv)
1855 {
1856         char buff[MAX_LINELEN];
1857         char *prompt =
1858 #if ENABLE_FEATURE_EDITING_FANCY_PROMPT
1859                 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
1860                 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
1861                 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
1862 #else
1863                 "% ";
1864 #endif
1865
1866 #if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
1867         setlocale(LC_ALL, "");
1868 #endif
1869         while (1) {
1870                 int l;
1871                 l = read_line_input(prompt, buff);
1872                 if (l <= 0 || buff[l-1] != '\n')
1873                         break;
1874                 buff[l-1] = 0;
1875                 printf("*** read_line_input() returned line =%s=\n", buff);
1876         }
1877         printf("*** read_line_input() detect ^D\n");
1878         return 0;
1879 }
1880
1881 #endif  /* TEST */