lineedit: create history files with mode 0600
[oweals/busybox.git] / libbb / lineedit.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Command line 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, more needs to be added.
20  * 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  * The following readline-like commands are not implemented:
26  * ESC-b -- Move back one word
27  * ESC-f -- Move forward one word
28  * ESC-d -- Delete forward one word
29  * CTL-t -- Transpose two characters
30  *
31  * lineedit does not know that the terminal escape sequences do not
32  * take up space on the screen. The redisplay code assumes, unless
33  * told otherwise, that each character in the prompt is a printable
34  * character that takes up one character position on the screen.
35  * You need to tell lineedit that some sequences of characters
36  * in the prompt take up no screen space. Compatibly with readline,
37  * use the \[ escape to begin a sequence of non-printing characters,
38  * and the \] escape to signal the end of such a sequence. Example:
39  *
40  * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
41  */
42 #include "libbb.h"
43 #include "unicode.h"
44
45 #ifdef TEST
46 # define ENABLE_FEATURE_EDITING 0
47 # define ENABLE_FEATURE_TAB_COMPLETION 0
48 # define ENABLE_FEATURE_USERNAME_COMPLETION 0
49 #endif
50
51
52 /* Entire file (except TESTing part) sits inside this #if */
53 #if ENABLE_FEATURE_EDITING
54
55
56 #define ENABLE_USERNAME_OR_HOMEDIR \
57         (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
58 #define IF_USERNAME_OR_HOMEDIR(...)
59 #if ENABLE_USERNAME_OR_HOMEDIR
60 # undef IF_USERNAME_OR_HOMEDIR
61 # define IF_USERNAME_OR_HOMEDIR(...) __VA_ARGS__
62 #endif
63
64
65 #undef CHAR_T
66 #if ENABLE_UNICODE_SUPPORT
67 # define BB_NUL ((wchar_t)0)
68 # define CHAR_T wchar_t
69 static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
70 # if ENABLE_FEATURE_EDITING_VI
71 static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
72 # endif
73 static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
74 # undef isspace
75 # undef isalnum
76 # undef ispunct
77 # undef isprint
78 # define isspace isspace_must_not_be_used
79 # define isalnum isalnum_must_not_be_used
80 # define ispunct ispunct_must_not_be_used
81 # define isprint isprint_must_not_be_used
82 #else
83 # define BB_NUL '\0'
84 # define CHAR_T char
85 # define BB_isspace(c) isspace(c)
86 # define BB_isalnum(c) isalnum(c)
87 # define BB_ispunct(c) ispunct(c)
88 #endif
89 #if ENABLE_UNICODE_PRESERVE_BROKEN
90 # define unicode_mark_raw_byte(wc)   ((wc) | 0x20000000)
91 # define unicode_is_raw_byte(wc)     ((wc) & 0x20000000)
92 #else
93 # define unicode_is_raw_byte(wc)     0
94 #endif
95
96
97 #define ESC "\033"
98
99 #define SEQ_CLEAR_TILL_END_OF_SCREEN  ESC"[J"
100 //#define SEQ_CLEAR_TILL_END_OF_LINE  ESC"[K"
101
102
103 enum {
104         MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
105                       ? CONFIG_FEATURE_EDITING_MAX_LEN
106                       : 0x7ff0
107 };
108
109 #if ENABLE_USERNAME_OR_HOMEDIR
110 static const char null_str[] ALIGN1 = "";
111 #endif
112
113 /* We try to minimize both static and stack usage. */
114 struct lineedit_statics {
115         line_input_t *state;
116
117         volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
118         sighandler_t previous_SIGWINCH_handler;
119
120         unsigned cmdedit_x;        /* real x (col) terminal position */
121         unsigned cmdedit_y;        /* pseudoreal y (row) terminal position */
122         unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
123
124         unsigned cursor;
125         int command_len; /* must be signed */
126         /* signed maxsize: we want x in "if (x > S.maxsize)"
127          * to _not_ be promoted to unsigned */
128         int maxsize;
129         CHAR_T *command_ps;
130
131         const char *cmdedit_prompt;
132 #if ENABLE_FEATURE_EDITING_FANCY_PROMPT
133         int num_ok_lines; /* = 1; */
134 #endif
135
136 #if ENABLE_USERNAME_OR_HOMEDIR
137         char *user_buf;
138         char *home_pwd_buf; /* = (char*)null_str; */
139 #endif
140
141 #if ENABLE_FEATURE_TAB_COMPLETION
142         char **matches;
143         unsigned num_matches;
144 #endif
145
146 #if ENABLE_FEATURE_EDITING_VI
147 # define DELBUFSIZ 128
148         CHAR_T *delptr;
149         smallint newdelflag;     /* whether delbuf should be reused yet */
150         CHAR_T delbuf[DELBUFSIZ];  /* a place to store deleted characters */
151 #endif
152 #if ENABLE_FEATURE_EDITING_ASK_TERMINAL
153         smallint sent_ESC_br6n;
154 #endif
155 };
156
157 /* See lineedit_ptr_hack.c */
158 extern struct lineedit_statics *const lineedit_ptr_to_statics;
159
160 #define S (*lineedit_ptr_to_statics)
161 #define state            (S.state           )
162 #define cmdedit_termw    (S.cmdedit_termw   )
163 #define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
164 #define cmdedit_x        (S.cmdedit_x       )
165 #define cmdedit_y        (S.cmdedit_y       )
166 #define cmdedit_prmt_len (S.cmdedit_prmt_len)
167 #define cursor           (S.cursor          )
168 #define command_len      (S.command_len     )
169 #define command_ps       (S.command_ps      )
170 #define cmdedit_prompt   (S.cmdedit_prompt  )
171 #define num_ok_lines     (S.num_ok_lines    )
172 #define user_buf         (S.user_buf        )
173 #define home_pwd_buf     (S.home_pwd_buf    )
174 #define matches          (S.matches         )
175 #define num_matches      (S.num_matches     )
176 #define delptr           (S.delptr          )
177 #define newdelflag       (S.newdelflag      )
178 #define delbuf           (S.delbuf          )
179
180 #define INIT_S() do { \
181         (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
182         barrier(); \
183         cmdedit_termw = 80; \
184         IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
185         IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
186 } while (0)
187 static void deinit_S(void)
188 {
189 #if ENABLE_FEATURE_EDITING_FANCY_PROMPT
190         /* This one is allocated only if FANCY_PROMPT is on
191          * (otherwise it points to verbatim prompt (NOT malloced)) */
192         free((char*)cmdedit_prompt);
193 #endif
194 #if ENABLE_USERNAME_OR_HOMEDIR
195         free(user_buf);
196         if (home_pwd_buf != null_str)
197                 free(home_pwd_buf);
198 #endif
199         free(lineedit_ptr_to_statics);
200 }
201 #define DEINIT_S() deinit_S()
202
203
204 #if ENABLE_UNICODE_SUPPORT
205 static size_t load_string(const char *src, int maxsize)
206 {
207         ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
208         if (len < 0)
209                 len = 0;
210         command_ps[len] = BB_NUL;
211         return len;
212 }
213 static unsigned save_string(char *dst, unsigned maxsize)
214 {
215 # if !ENABLE_UNICODE_PRESERVE_BROKEN
216         ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
217         if (len < 0)
218                 len = 0;
219         dst[len] = '\0';
220         return len;
221 # else
222         unsigned dstpos = 0;
223         unsigned srcpos = 0;
224
225         maxsize--;
226         while (dstpos < maxsize) {
227                 wchar_t wc;
228                 int n = srcpos;
229
230                 /* Convert up to 1st invalid byte (or up to end) */
231                 while ((wc = command_ps[srcpos]) != BB_NUL
232                     && !unicode_is_raw_byte(wc)
233                 ) {
234                         srcpos++;
235                 }
236                 command_ps[srcpos] = BB_NUL;
237                 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
238                 if (n < 0) /* should not happen */
239                         break;
240                 dstpos += n;
241                 if (wc == BB_NUL) /* usually is */
242                         break;
243
244                 /* We do have invalid byte here! */
245                 command_ps[srcpos] = wc; /* restore it */
246                 srcpos++;
247                 if (dstpos == maxsize)
248                         break;
249                 dst[dstpos++] = (char) wc;
250         }
251         dst[dstpos] = '\0';
252         return dstpos;
253 # endif
254 }
255 /* I thought just fputwc(c, stdout) would work. But no... */
256 static void BB_PUTCHAR(wchar_t c)
257 {
258         char buf[MB_CUR_MAX + 1];
259         mbstate_t mbst = { 0 };
260         ssize_t len;
261
262         len = wcrtomb(buf, c, &mbst);
263         if (len > 0) {
264                 buf[len] = '\0';
265                 fputs(buf, stdout);
266         }
267 }
268 # if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
269 static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
270 # else
271 static wchar_t adjust_width_and_validate_wc(wchar_t wc)
272 #  define adjust_width_and_validate_wc(width_adj, wc) \
273         ((*(width_adj))++, adjust_width_and_validate_wc(wc))
274 # endif
275 {
276         int w = 1;
277
278         if (unicode_status == UNICODE_ON) {
279                 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
280                         /* note: also true for unicode_is_raw_byte(wc) */
281                         goto subst;
282                 }
283                 w = wcwidth(wc);
284                 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
285                  || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
286                  || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
287                 ) {
288  subst:
289                         w = 1;
290                         wc = CONFIG_SUBST_WCHAR;
291                 }
292         }
293
294 # if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
295         *width_adj += w;
296 #endif
297         return wc;
298 }
299 #else /* !UNICODE */
300 static size_t load_string(const char *src, int maxsize)
301 {
302         safe_strncpy(command_ps, src, maxsize);
303         return strlen(command_ps);
304 }
305 # if ENABLE_FEATURE_TAB_COMPLETION
306 static void save_string(char *dst, unsigned maxsize)
307 {
308         safe_strncpy(dst, command_ps, maxsize);
309 }
310 # endif
311 # define BB_PUTCHAR(c) bb_putchar(c)
312 /* Should never be called: */
313 int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
314 #endif
315
316
317 /* Put 'command_ps[cursor]', cursor++.
318  * Advance cursor on screen. If we reached right margin, scroll text up
319  * and remove terminal margin effect by printing 'next_char' */
320 #define HACK_FOR_WRONG_WIDTH 1
321 static void put_cur_glyph_and_inc_cursor(void)
322 {
323         CHAR_T c = command_ps[cursor];
324         unsigned width = 0;
325         int ofs_to_right;
326
327         if (c == BB_NUL) {
328                 /* erase character after end of input string */
329                 c = ' ';
330         } else {
331                 /* advance cursor only if we aren't at the end yet */
332                 cursor++;
333                 if (unicode_status == UNICODE_ON) {
334                         IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
335                         c = adjust_width_and_validate_wc(&cmdedit_x, c);
336                         IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
337                 } else {
338                         cmdedit_x++;
339                 }
340         }
341
342         ofs_to_right = cmdedit_x - cmdedit_termw;
343         if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
344                 /* c fits on this line */
345                 BB_PUTCHAR(c);
346         }
347
348         if (ofs_to_right >= 0) {
349                 /* we go to the next line */
350 #if HACK_FOR_WRONG_WIDTH
351                 /* This works better if our idea of term width is wrong
352                  * and it is actually wider (often happens on serial lines).
353                  * Printing CR,LF *forces* cursor to next line.
354                  * OTOH if terminal width is correct AND terminal does NOT
355                  * have automargin (IOW: it is moving cursor to next line
356                  * by itself (which is wrong for VT-10x terminals)),
357                  * this will break things: there will be one extra empty line */
358                 puts("\r"); /* + implicit '\n' */
359 #else
360                 /* VT-10x terminals don't wrap cursor to next line when last char
361                  * on the line is printed - cursor stays "over" this char.
362                  * Need to print _next_ char too (first one to appear on next line)
363                  * to make cursor move down to next line.
364                  */
365                 /* Works ok only if cmdedit_termw is correct. */
366                 c = command_ps[cursor];
367                 if (c == BB_NUL)
368                         c = ' ';
369                 BB_PUTCHAR(c);
370                 bb_putchar('\b');
371 #endif
372                 cmdedit_y++;
373                 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
374                         width = 0;
375                 } else { /* ofs_to_right > 0 */
376                         /* wide char c didn't fit on prev line */
377                         BB_PUTCHAR(c);
378                 }
379                 cmdedit_x = width;
380         }
381 }
382
383 /* Move to end of line (by printing all chars till the end) */
384 static void put_till_end_and_adv_cursor(void)
385 {
386         while (cursor < command_len)
387                 put_cur_glyph_and_inc_cursor();
388 }
389
390 /* Go to the next line */
391 static void goto_new_line(void)
392 {
393         put_till_end_and_adv_cursor();
394         if (cmdedit_x != 0)
395                 bb_putchar('\n');
396 }
397
398 static void beep(void)
399 {
400         bb_putchar('\007');
401 }
402
403 static void put_prompt(void)
404 {
405         unsigned w;
406
407         fputs(cmdedit_prompt, stdout);
408         fflush_all();
409         cursor = 0;
410         w = cmdedit_termw; /* read volatile var once */
411         cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
412         cmdedit_x = cmdedit_prmt_len % w;
413 }
414
415 /* Move back one character */
416 /* (optimized for slow terminals) */
417 static void input_backward(unsigned num)
418 {
419         if (num > cursor)
420                 num = cursor;
421         if (num == 0)
422                 return;
423         cursor -= num;
424
425         if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
426          && unicode_status == UNICODE_ON
427         ) {
428                 /* correct NUM to be equal to _screen_ width */
429                 int n = num;
430                 num = 0;
431                 while (--n >= 0)
432                         adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
433                 if (num == 0)
434                         return;
435         }
436
437         if (cmdedit_x >= num) {
438                 cmdedit_x -= num;
439                 if (num <= 4) {
440                         /* This is longer by 5 bytes on x86.
441                          * Also gets miscompiled for ARM users
442                          * (busybox.net/bugs/view.php?id=2274).
443                          * printf(("\b\b\b\b" + 4) - num);
444                          * return;
445                          */
446                         do {
447                                 bb_putchar('\b');
448                         } while (--num);
449                         return;
450                 }
451                 printf(ESC"[%uD", num);
452                 return;
453         }
454
455         /* Need to go one or more lines up */
456         if (ENABLE_UNICODE_WIDE_WCHARS) {
457                 /* With wide chars, it is hard to "backtrack"
458                  * and reliably figure out where to put cursor.
459                  * Example (<> is a wide char; # is an ordinary char, _ cursor):
460                  * |prompt: <><> |
461                  * |<><><><><><> |
462                  * |_            |
463                  * and user presses left arrow. num = 1, cmdedit_x = 0,
464                  * We need to go up one line, and then - how do we know that
465                  * we need to go *10* positions to the right? Because
466                  * |prompt: <>#<>|
467                  * |<><><>#<><><>|
468                  * |_            |
469                  * in this situation we need to go *11* positions to the right.
470                  *
471                  * A simpler thing to do is to redraw everything from the start
472                  * up to new cursor position (which is already known):
473                  */
474                 unsigned sv_cursor;
475                 /* go to 1st column; go up to first line */
476                 printf("\r" ESC"[%uA", cmdedit_y);
477                 cmdedit_y = 0;
478                 sv_cursor = cursor;
479                 put_prompt(); /* sets cursor to 0 */
480                 while (cursor < sv_cursor)
481                         put_cur_glyph_and_inc_cursor();
482         } else {
483                 int lines_up;
484                 unsigned width;
485                 /* num = chars to go back from the beginning of current line: */
486                 num -= cmdedit_x;
487                 width = cmdedit_termw; /* read volatile var once */
488                 /* num=1...w: one line up, w+1...2w: two, etc: */
489                 lines_up = 1 + (num - 1) / width;
490                 cmdedit_x = (width * cmdedit_y - num) % width;
491                 cmdedit_y -= lines_up;
492                 /* go to 1st column; go up */
493                 printf("\r" ESC"[%uA", lines_up);
494                 /* go to correct column.
495                  * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
496                  * need to *make sure* we skip it if cmdedit_x == 0 */
497                 if (cmdedit_x)
498                         printf(ESC"[%uC", cmdedit_x);
499         }
500 }
501
502 /* draw prompt, editor line, and clear tail */
503 static void redraw(int y, int back_cursor)
504 {
505         if (y > 0) /* up y lines */
506                 printf(ESC"[%uA", y);
507         bb_putchar('\r');
508         put_prompt();
509         put_till_end_and_adv_cursor();
510         printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
511         input_backward(back_cursor);
512 }
513
514 /* Delete the char in front of the cursor, optionally saving it
515  * for later putback */
516 #if !ENABLE_FEATURE_EDITING_VI
517 static void input_delete(void)
518 #define input_delete(save) input_delete()
519 #else
520 static void input_delete(int save)
521 #endif
522 {
523         int j = cursor;
524
525         if (j == (int)command_len)
526                 return;
527
528 #if ENABLE_FEATURE_EDITING_VI
529         if (save) {
530                 if (newdelflag) {
531                         delptr = delbuf;
532                         newdelflag = 0;
533                 }
534                 if ((delptr - delbuf) < DELBUFSIZ)
535                         *delptr++ = command_ps[j];
536         }
537 #endif
538
539         memmove(command_ps + j, command_ps + j + 1,
540                         /* (command_len + 1 [because of NUL]) - (j + 1)
541                          * simplified into (command_len - j) */
542                         (command_len - j) * sizeof(command_ps[0]));
543         command_len--;
544         put_till_end_and_adv_cursor();
545         /* Last char is still visible, erase it (and more) */
546         printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
547         input_backward(cursor - j);     /* back to old pos cursor */
548 }
549
550 #if ENABLE_FEATURE_EDITING_VI
551 static void put(void)
552 {
553         int ocursor;
554         int j = delptr - delbuf;
555
556         if (j == 0)
557                 return;
558         ocursor = cursor;
559         /* open hole and then fill it */
560         memmove(command_ps + cursor + j, command_ps + cursor,
561                         (command_len - cursor + 1) * sizeof(command_ps[0]));
562         memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
563         command_len += j;
564         put_till_end_and_adv_cursor();
565         input_backward(cursor - ocursor - j + 1); /* at end of new text */
566 }
567 #endif
568
569 /* Delete the char in back of the cursor */
570 static void input_backspace(void)
571 {
572         if (cursor > 0) {
573                 input_backward(1);
574                 input_delete(0);
575         }
576 }
577
578 /* Move forward one character */
579 static void input_forward(void)
580 {
581         if (cursor < command_len)
582                 put_cur_glyph_and_inc_cursor();
583 }
584
585 #if ENABLE_FEATURE_TAB_COMPLETION
586
587 static void free_tab_completion_data(void)
588 {
589         if (matches) {
590                 while (num_matches)
591                         free(matches[--num_matches]);
592                 free(matches);
593                 matches = NULL;
594         }
595 }
596
597 static void add_match(char *matched)
598 {
599         matches = xrealloc_vector(matches, 4, num_matches);
600         matches[num_matches] = matched;
601         num_matches++;
602 }
603
604 #if ENABLE_FEATURE_USERNAME_COMPLETION
605 /* Replace "~user/..." with "/homedir/...".
606  * The parameter is malloced, free it or return it
607  * unchanged if no user is matched.
608  */
609 static char *username_path_completion(char *ud)
610 {
611         struct passwd *entry;
612         char *tilde_name = ud;
613         char *home = NULL;
614
615         ud++; /* skip ~ */
616         if (*ud == '/') {       /* "~/..." */
617                 home = home_pwd_buf;
618         } else {
619                 /* "~user/..." */
620                 ud = strchr(ud, '/');
621                 *ud = '\0';           /* "~user" */
622                 entry = getpwnam(tilde_name + 1);
623                 *ud = '/';            /* restore "~user/..." */
624                 if (entry)
625                         home = entry->pw_dir;
626         }
627         if (home) {
628                 ud = concat_path_file(home, ud);
629                 free(tilde_name);
630                 tilde_name = ud;
631         }
632         return tilde_name;
633 }
634
635 /* ~use<tab> - find all users with this prefix.
636  * Return the length of the prefix used for matching.
637  */
638 static NOINLINE unsigned complete_username(const char *ud)
639 {
640         /* Using _r function to avoid pulling in static buffers */
641         char line_buff[256];
642         struct passwd pwd;
643         struct passwd *result;
644         unsigned userlen;
645
646         ud++; /* skip ~ */
647         userlen = strlen(ud);
648
649         setpwent();
650         while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
651                 /* Null usernames should result in all users as possible completions. */
652                 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
653                         add_match(xasprintf("~%s/", pwd.pw_name));
654                 }
655         }
656         endpwent();
657
658         return 1 + userlen;
659 }
660 #endif  /* FEATURE_USERNAME_COMPLETION */
661
662 enum {
663         FIND_EXE_ONLY = 0,
664         FIND_DIR_ONLY = 1,
665         FIND_FILE_ONLY = 2,
666 };
667
668 static int path_parse(char ***p)
669 {
670         int npth;
671         const char *pth;
672         char *tmp;
673         char **res;
674
675         if (state->flags & WITH_PATH_LOOKUP)
676                 pth = state->path_lookup;
677         else
678                 pth = getenv("PATH");
679
680         /* PATH="" or PATH=":"? */
681         if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
682                 return 1;
683
684         tmp = (char*)pth;
685         npth = 1; /* path component count */
686         while (1) {
687                 tmp = strchr(tmp, ':');
688                 if (!tmp)
689                         break;
690                 tmp++;
691                 if (*tmp == '\0')
692                         break;  /* :<empty> */
693                 npth++;
694         }
695
696         *p = res = xmalloc(npth * sizeof(res[0]));
697         res[0] = tmp = xstrdup(pth);
698         npth = 1;
699         while (1) {
700                 tmp = strchr(tmp, ':');
701                 if (!tmp)
702                         break;
703                 *tmp++ = '\0'; /* ':' -> '\0' */
704                 if (*tmp == '\0')
705                         break; /* :<empty> */
706                 res[npth++] = tmp;
707         }
708         return npth;
709 }
710
711 /* Complete command, directory or file name.
712  * Return the length of the prefix used for matching.
713  */
714 static NOINLINE unsigned complete_cmd_dir_file(const char *command, int type)
715 {
716         char *path1[1];
717         char **paths = path1;
718         int npaths;
719         int i;
720         unsigned pf_len;
721         const char *pfind;
722         char *dirbuf = NULL;
723
724         npaths = 1;
725         path1[0] = (char*)".";
726
727         pfind = strrchr(command, '/');
728         if (!pfind) {
729                 if (type == FIND_EXE_ONLY)
730                         npaths = path_parse(&paths);
731                 pfind = command;
732         } else {
733                 /* point to 'l' in "..../last_component" */
734                 pfind++;
735                 /* dirbuf = ".../.../.../" */
736                 dirbuf = xstrndup(command, pfind - command);
737 #if ENABLE_FEATURE_USERNAME_COMPLETION
738                 if (dirbuf[0] == '~')   /* ~/... or ~user/... */
739                         dirbuf = username_path_completion(dirbuf);
740 #endif
741                 path1[0] = dirbuf;
742         }
743         pf_len = strlen(pfind);
744
745         for (i = 0; i < npaths; i++) {
746                 DIR *dir;
747                 struct dirent *next;
748                 struct stat st;
749                 char *found;
750
751                 dir = opendir(paths[i]);
752                 if (!dir)
753                         continue; /* don't print an error */
754
755                 while ((next = readdir(dir)) != NULL) {
756                         unsigned len;
757                         const char *name_found = next->d_name;
758
759                         /* .../<tab>: bash 3.2.0 shows dotfiles, but not . and .. */
760                         if (!pfind[0] && DOT_OR_DOTDOT(name_found))
761                                 continue;
762                         /* match? */
763                         if (strncmp(name_found, pfind, pf_len) != 0)
764                                 continue; /* no */
765
766                         found = concat_path_file(paths[i], name_found);
767                         /* NB: stat() first so that we see is it a directory;
768                          * but if that fails, use lstat() so that
769                          * we still match dangling links */
770                         if (stat(found, &st) && lstat(found, &st))
771                                 goto cont; /* hmm, remove in progress? */
772
773                         /* Save only name */
774                         len = strlen(name_found);
775                         found = xrealloc(found, len + 2); /* +2: for slash and NUL */
776                         strcpy(found, name_found);
777
778                         if (S_ISDIR(st.st_mode)) {
779                                 /* name is a directory, add slash */
780                                 found[len] = '/';
781                                 found[len + 1] = '\0';
782                         } else {
783                                 /* skip files if looking for dirs only (example: cd) */
784                                 if (type == FIND_DIR_ONLY)
785                                         goto cont;
786                         }
787                         /* add it to the list */
788                         add_match(found);
789                         continue;
790  cont:
791                         free(found);
792                 }
793                 closedir(dir);
794         } /* for every path */
795
796         if (paths != path1) {
797                 free(paths[0]); /* allocated memory is only in first member */
798                 free(paths);
799         }
800         free(dirbuf);
801
802         return pf_len;
803 }
804
805 /* build_match_prefix:
806  * On entry, match_buf contains everything up to cursor at the moment <tab>
807  * was pressed. This function looks at it, figures out what part of it
808  * constitutes the command/file/directory prefix to use for completion,
809  * and rewrites match_buf to contain only that part.
810  */
811 #define dbg_bmp 0
812 /* Helpers: */
813 /* QUOT is used on elements of int_buf[], which are bytes,
814  * not Unicode chars. Therefore it works correctly even in Unicode mode.
815  */
816 #define QUOT (UCHAR_MAX+1)
817 static void remove_chunk(int16_t *int_buf, int beg, int end)
818 {
819         /* beg must be <= end */
820         if (beg == end)
821                 return;
822
823         while ((int_buf[beg] = int_buf[end]) != 0)
824                 beg++, end++;
825
826         if (dbg_bmp) {
827                 int i;
828                 for (i = 0; int_buf[i]; i++)
829                         bb_putchar((unsigned char)int_buf[i]);
830                 bb_putchar('\n');
831         }
832 }
833 /* Caller ensures that match_buf points to a malloced buffer
834  * big enough to hold strlen(match_buf)*2 + 2
835  */
836 static NOINLINE int build_match_prefix(char *match_buf)
837 {
838         int i, j;
839         int command_mode;
840         int16_t *int_buf = (int16_t*)match_buf;
841
842         if (dbg_bmp) printf("\n%s\n", match_buf);
843
844         /* Copy in reverse order, since they overlap */
845         i = strlen(match_buf);
846         do {
847                 int_buf[i] = (unsigned char)match_buf[i];
848                 i--;
849         } while (i >= 0);
850
851         /* Mark every \c as "quoted c" */
852         for (i = 0; int_buf[i]; i++) {
853                 if (int_buf[i] == '\\') {
854                         remove_chunk(int_buf, i, i + 1);
855                         int_buf[i] |= QUOT;
856                 }
857         }
858         /* Quote-mark "chars" and 'chars', drop delimiters */
859         {
860                 int in_quote = 0;
861                 i = 0;
862                 while (int_buf[i]) {
863                         int cur = int_buf[i];
864                         if (!cur)
865                                 break;
866                         if (cur == '\'' || cur == '"') {
867                                 if (!in_quote || (cur == in_quote)) {
868                                         in_quote ^= cur;
869                                         remove_chunk(int_buf, i, i + 1);
870                                         continue;
871                                 }
872                         }
873                         if (in_quote)
874                                 int_buf[i] = cur | QUOT;
875                         i++;
876                 }
877         }
878
879         /* Remove everything up to command delimiters:
880          * ';' ';;' '&' '|' '&&' '||',
881          * but careful with '>&' '<&' '>|'
882          */
883         for (i = 0; int_buf[i]; i++) {
884                 int cur = int_buf[i];
885                 if (cur == ';' || cur == '&' || cur == '|') {
886                         int prev = i ? int_buf[i - 1] : 0;
887                         if (cur == '&' && (prev == '>' || prev == '<')) {
888                                 continue;
889                         } else if (cur == '|' && prev == '>') {
890                                 continue;
891                         }
892                         remove_chunk(int_buf, 0, i + 1 + (cur == int_buf[i + 1]));
893                         i = -1;  /* back to square 1 */
894                 }
895         }
896         /* Remove all `cmd` */
897         for (i = 0; int_buf[i]; i++) {
898                 if (int_buf[i] == '`') {
899                         for (j = i + 1; int_buf[j]; j++) {
900                                 if (int_buf[j] == '`') {
901                                         /* `cmd` should count as a word:
902                                          * `cmd` c<tab> should search for files c*,
903                                          * not commands c*. Therefore we don't drop
904                                          * `cmd` entirely, we replace it with single `.
905                                          */
906                                         remove_chunk(int_buf, i, j);
907                                         goto next;
908                                 }
909                         }
910                         /* No closing ` - command mode, remove all up to ` */
911                         remove_chunk(int_buf, 0, i + 1);
912                         break;
913  next: ;
914                 }
915         }
916
917         /* Remove "cmd (" and "cmd {"
918          * Example: "if { c<tab>"
919          * In this example, c should be matched as command pfx.
920          */
921         for (i = 0; int_buf[i]; i++) {
922                 if (int_buf[i] == '(' || int_buf[i] == '{') {
923                         remove_chunk(int_buf, 0, i + 1);
924                         i = -1;  /* back to square 1 */
925                 }
926         }
927
928         /* Remove leading unquoted spaces */
929         for (i = 0; int_buf[i]; i++)
930                 if (int_buf[i] != ' ')
931                         break;
932         remove_chunk(int_buf, 0, i);
933
934         /* Determine completion mode */
935         command_mode = FIND_EXE_ONLY;
936         for (i = 0; int_buf[i]; i++) {
937                 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
938                         if (int_buf[i] == ' '
939                          && command_mode == FIND_EXE_ONLY
940                          && (char)int_buf[0] == 'c'
941                          && (char)int_buf[1] == 'd'
942                          && i == 2 /* -> int_buf[2] == ' ' */
943                         ) {
944                                 command_mode = FIND_DIR_ONLY;
945                         } else {
946                                 command_mode = FIND_FILE_ONLY;
947                                 break;
948                         }
949                 }
950         }
951         if (dbg_bmp) printf("command_mode(0:exe/1:dir/2:file):%d\n", command_mode);
952
953         /* Remove everything except last word */
954         for (i = 0; int_buf[i]; i++) /* quasi-strlen(int_buf) */
955                 continue;
956         for (--i; i >= 0; i--) {
957                 int cur = int_buf[i];
958                 if (cur == ' ' || cur == '<' || cur == '>' || cur == '|' || cur == '&') {
959                         remove_chunk(int_buf, 0, i + 1);
960                         break;
961                 }
962         }
963
964         /* Convert back to string of _chars_ */
965         i = 0;
966         while ((match_buf[i] = int_buf[i]) != '\0')
967                 i++;
968
969         if (dbg_bmp) printf("final match_buf:'%s'\n", match_buf);
970
971         return command_mode;
972 }
973
974 /*
975  * Display by column (original idea from ls applet,
976  * very optimized by me [Vladimir] :)
977  */
978 static void showfiles(void)
979 {
980         int ncols, row;
981         int column_width = 0;
982         int nfiles = num_matches;
983         int nrows = nfiles;
984         int l;
985
986         /* find the longest file name - use that as the column width */
987         for (row = 0; row < nrows; row++) {
988                 l = unicode_strwidth(matches[row]);
989                 if (column_width < l)
990                         column_width = l;
991         }
992         column_width += 2;              /* min space for columns */
993         ncols = cmdedit_termw / column_width;
994
995         if (ncols > 1) {
996                 nrows /= ncols;
997                 if (nfiles % ncols)
998                         nrows++;        /* round up fractionals */
999         } else {
1000                 ncols = 1;
1001         }
1002         for (row = 0; row < nrows; row++) {
1003                 int n = row;
1004                 int nc;
1005
1006                 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
1007                         printf("%s%-*s", matches[n],
1008                                 (int)(column_width - unicode_strwidth(matches[n])), ""
1009                         );
1010                 }
1011                 if (ENABLE_UNICODE_SUPPORT)
1012                         puts(printable_string(NULL, matches[n]));
1013                 else
1014                         puts(matches[n]);
1015         }
1016 }
1017
1018 static char *add_quote_for_spec_chars(char *found)
1019 {
1020         int l = 0;
1021         char *s = xzalloc((strlen(found) + 1) * 2);
1022
1023         while (*found) {
1024                 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
1025                         s[l++] = '\\';
1026                 s[l++] = *found++;
1027         }
1028         /* s[l] = '\0'; - already is */
1029         return s;
1030 }
1031
1032 /* Do TAB completion */
1033 static NOINLINE void input_tab(smallint *lastWasTab)
1034 {
1035         char *chosen_match;
1036         char *match_buf;
1037         size_t len_found;
1038         /* Length of string used for matching */
1039         unsigned match_pfx_len = match_pfx_len;
1040         int find_type;
1041 #if ENABLE_UNICODE_SUPPORT
1042         /* cursor pos in command converted to multibyte form */
1043         int cursor_mb;
1044 #endif
1045         if (!(state->flags & TAB_COMPLETION))
1046                 return;
1047
1048         if (*lastWasTab) {
1049                 /* The last char was a TAB too.
1050                  * Print a list of all the available choices.
1051                  */
1052                 if (num_matches > 0) {
1053                         /* cursor will be changed by goto_new_line() */
1054                         int sav_cursor = cursor;
1055                         goto_new_line();
1056                         showfiles();
1057                         redraw(0, command_len - sav_cursor);
1058                 }
1059                 return;
1060         }
1061
1062         *lastWasTab = 1;
1063         chosen_match = NULL;
1064
1065         /* Make a local copy of the string up to the position of the cursor.
1066          * build_match_prefix will expand it into int16_t's, need to allocate
1067          * twice as much as the string_len+1.
1068          * (we then also (ab)use this extra space later - see (**))
1069          */
1070         match_buf = xmalloc(MAX_LINELEN * sizeof(int16_t));
1071 #if !ENABLE_UNICODE_SUPPORT
1072         save_string(match_buf, cursor + 1); /* +1 for NUL */
1073 #else
1074         {
1075                 CHAR_T wc = command_ps[cursor];
1076                 command_ps[cursor] = BB_NUL;
1077                 save_string(match_buf, MAX_LINELEN);
1078                 command_ps[cursor] = wc;
1079                 cursor_mb = strlen(match_buf);
1080         }
1081 #endif
1082         find_type = build_match_prefix(match_buf);
1083
1084         /* Free up any memory already allocated */
1085         free_tab_completion_data();
1086
1087 #if ENABLE_FEATURE_USERNAME_COMPLETION
1088         /* If the word starts with `~' and there is no slash in the word,
1089          * then try completing this word as a username. */
1090         if (state->flags & USERNAME_COMPLETION)
1091                 if (match_buf[0] == '~' && strchr(match_buf, '/') == NULL)
1092                         match_pfx_len = complete_username(match_buf);
1093 #endif
1094         /* Try to match a command in $PATH, or a directory, or a file */
1095         if (!matches)
1096                 match_pfx_len = complete_cmd_dir_file(match_buf, find_type);
1097         /* Remove duplicates */
1098         if (matches) {
1099                 unsigned i;
1100                 unsigned n = 0;
1101                 qsort_string_vector(matches, num_matches);
1102                 for (i = 0; i < num_matches - 1; ++i) {
1103                         //if (matches[i] && matches[i+1]) { /* paranoia */
1104                                 if (strcmp(matches[i], matches[i+1]) == 0) {
1105                                         free(matches[i]);
1106                                         //matches[i] = NULL; /* paranoia */
1107                                 } else {
1108                                         matches[n++] = matches[i];
1109                                 }
1110                         //}
1111                 }
1112                 matches[n++] = matches[i];
1113                 num_matches = n;
1114         }
1115         /* Did we find exactly one match? */
1116         if (num_matches != 1) { /* no */
1117                 char *cp;
1118                 beep();
1119                 if (!matches)
1120                         goto ret; /* no matches at all */
1121                 /* Find common prefix */
1122                 chosen_match = xstrdup(matches[0]);
1123                 for (cp = chosen_match; *cp; cp++) {
1124                         unsigned n;
1125                         for (n = 1; n < num_matches; n++) {
1126                                 if (matches[n][cp - chosen_match] != *cp) {
1127                                         goto stop;
1128                                 }
1129                         }
1130                 }
1131  stop:
1132                 if (cp == chosen_match) { /* have unique prefix? */
1133                         goto ret; /* no */
1134                 }
1135                 *cp = '\0';
1136                 cp = add_quote_for_spec_chars(chosen_match);
1137                 free(chosen_match);
1138                 chosen_match = cp;
1139                 len_found = strlen(chosen_match);
1140         } else {                        /* exactly one match */
1141                 /* Next <tab> is not a double-tab */
1142                 *lastWasTab = 0;
1143
1144                 chosen_match = add_quote_for_spec_chars(matches[0]);
1145                 len_found = strlen(chosen_match);
1146                 if (chosen_match[len_found-1] != '/') {
1147                         chosen_match[len_found] = ' ';
1148                         chosen_match[++len_found] = '\0';
1149                 }
1150         }
1151
1152 #if !ENABLE_UNICODE_SUPPORT
1153         /* Have space to place the match? */
1154         /* The result consists of three parts with these lengths: */
1155         /* cursor + (len_found - match_pfx_len) + (command_len - cursor) */
1156         /* it simplifies into: */
1157         if ((int)(len_found - match_pfx_len + command_len) < S.maxsize) {
1158                 int pos;
1159                 /* save tail */
1160                 strcpy(match_buf, &command_ps[cursor]);
1161                 /* add match and tail */
1162                 sprintf(&command_ps[cursor], "%s%s", chosen_match + match_pfx_len, match_buf);
1163                 command_len = strlen(command_ps);
1164                 /* new pos */
1165                 pos = cursor + len_found - match_pfx_len;
1166                 /* write out the matched command */
1167                 redraw(cmdedit_y, command_len - pos);
1168         }
1169 #else
1170         {
1171                 /* Use 2nd half of match_buf as scratch space - see (**) */
1172                 char *command = match_buf + MAX_LINELEN;
1173                 int len = save_string(command, MAX_LINELEN);
1174                 /* Have space to place the match? */
1175                 /* cursor_mb + (len_found - match_pfx_len) + (len - cursor_mb) */
1176                 if ((int)(len_found - match_pfx_len + len) < MAX_LINELEN) {
1177                         int pos;
1178                         /* save tail */
1179                         strcpy(match_buf, &command[cursor_mb]);
1180                         /* where do we want to have cursor after all? */
1181                         strcpy(&command[cursor_mb], chosen_match + match_pfx_len);
1182                         len = load_string(command, S.maxsize);
1183                         /* add match and tail */
1184                         sprintf(&command[cursor_mb], "%s%s", chosen_match + match_pfx_len, match_buf);
1185                         command_len = load_string(command, S.maxsize);
1186                         /* write out the matched command */
1187                         /* paranoia: load_string can return 0 on conv error,
1188                          * prevent passing pos = (0 - 12) to redraw */
1189                         pos = command_len - len;
1190                         redraw(cmdedit_y, pos >= 0 ? pos : 0);
1191                 }
1192         }
1193 #endif
1194  ret:
1195         free(chosen_match);
1196         free(match_buf);
1197 }
1198
1199 #endif  /* FEATURE_TAB_COMPLETION */
1200
1201
1202 line_input_t* FAST_FUNC new_line_input_t(int flags)
1203 {
1204         line_input_t *n = xzalloc(sizeof(*n));
1205         n->flags = flags;
1206         return n;
1207 }
1208
1209
1210 #if MAX_HISTORY > 0
1211
1212 static void save_command_ps_at_cur_history(void)
1213 {
1214         if (command_ps[0] != BB_NUL) {
1215                 int cur = state->cur_history;
1216                 free(state->history[cur]);
1217
1218 # if ENABLE_UNICODE_SUPPORT
1219                 {
1220                         char tbuf[MAX_LINELEN];
1221                         save_string(tbuf, sizeof(tbuf));
1222                         state->history[cur] = xstrdup(tbuf);
1223                 }
1224 # else
1225                 state->history[cur] = xstrdup(command_ps);
1226 # endif
1227         }
1228 }
1229
1230 /* state->flags is already checked to be nonzero */
1231 static int get_previous_history(void)
1232 {
1233         if ((state->flags & DO_HISTORY) && state->cur_history) {
1234                 save_command_ps_at_cur_history();
1235                 state->cur_history--;
1236                 return 1;
1237         }
1238         beep();
1239         return 0;
1240 }
1241
1242 static int get_next_history(void)
1243 {
1244         if (state->flags & DO_HISTORY) {
1245                 if (state->cur_history < state->cnt_history) {
1246                         save_command_ps_at_cur_history(); /* save the current history line */
1247                         return ++state->cur_history;
1248                 }
1249         }
1250         beep();
1251         return 0;
1252 }
1253
1254 # if ENABLE_FEATURE_EDITING_SAVEHISTORY
1255 /* We try to ensure that concurrent additions to the history
1256  * do not overwrite each other.
1257  * Otherwise shell users get unhappy.
1258  *
1259  * History file is trimmed lazily, when it grows several times longer
1260  * than configured MAX_HISTORY lines.
1261  */
1262
1263 static void free_line_input_t(line_input_t *n)
1264 {
1265         int i = n->cnt_history;
1266         while (i > 0)
1267                 free(n->history[--i]);
1268         free(n);
1269 }
1270
1271 /* state->flags is already checked to be nonzero */
1272 static void load_history(line_input_t *st_parm)
1273 {
1274         char *temp_h[MAX_HISTORY];
1275         char *line;
1276         FILE *fp;
1277         unsigned idx, i, line_len;
1278
1279         /* NB: do not trash old history if file can't be opened */
1280
1281         fp = fopen_for_read(st_parm->hist_file);
1282         if (fp) {
1283                 /* clean up old history */
1284                 for (idx = st_parm->cnt_history; idx > 0;) {
1285                         idx--;
1286                         free(st_parm->history[idx]);
1287                         st_parm->history[idx] = NULL;
1288                 }
1289
1290                 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1291                 memset(temp_h, 0, sizeof(temp_h));
1292                 st_parm->cnt_history_in_file = idx = 0;
1293                 while ((line = xmalloc_fgetline(fp)) != NULL) {
1294                         if (line[0] == '\0') {
1295                                 free(line);
1296                                 continue;
1297                         }
1298                         free(temp_h[idx]);
1299                         temp_h[idx] = line;
1300                         st_parm->cnt_history_in_file++;
1301                         idx++;
1302                         if (idx == MAX_HISTORY)
1303                                 idx = 0;
1304                 }
1305                 fclose(fp);
1306
1307                 /* find first non-NULL temp_h[], if any */
1308                 if (st_parm->cnt_history_in_file) {
1309                         while (temp_h[idx] == NULL) {
1310                                 idx++;
1311                                 if (idx == MAX_HISTORY)
1312                                         idx = 0;
1313                         }
1314                 }
1315
1316                 /* copy temp_h[] to st_parm->history[] */
1317                 for (i = 0; i < MAX_HISTORY;) {
1318                         line = temp_h[idx];
1319                         if (!line)
1320                                 break;
1321                         idx++;
1322                         if (idx == MAX_HISTORY)
1323                                 idx = 0;
1324                         line_len = strlen(line);
1325                         if (line_len >= MAX_LINELEN)
1326                                 line[MAX_LINELEN-1] = '\0';
1327                         st_parm->history[i++] = line;
1328                 }
1329                 st_parm->cnt_history = i;
1330         }
1331 }
1332
1333 /* state->flags is already checked to be nonzero */
1334 static void save_history(char *str)
1335 {
1336         int fd;
1337         int len, len2;
1338
1339         fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0600);
1340         if (fd < 0)
1341                 return;
1342         xlseek(fd, 0, SEEK_END); /* paranoia */
1343         len = strlen(str);
1344         str[len] = '\n'; /* we (try to) do atomic write */
1345         len2 = full_write(fd, str, len + 1);
1346         str[len] = '\0';
1347         close(fd);
1348         if (len2 != len + 1)
1349                 return; /* "wtf?" */
1350
1351         /* did we write so much that history file needs trimming? */
1352         state->cnt_history_in_file++;
1353         if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1354                 char *new_name;
1355                 line_input_t *st_temp;
1356
1357                 /* we may have concurrently written entries from others.
1358                  * load them */
1359                 st_temp = new_line_input_t(state->flags);
1360                 st_temp->hist_file = state->hist_file;
1361                 load_history(st_temp);
1362
1363                 /* write out temp file and replace hist_file atomically */
1364                 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
1365                 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1366                 if (fd >= 0) {
1367                         FILE *fp;
1368                         int i;
1369
1370                         fp = xfdopen_for_write(fd);
1371                         for (i = 0; i < st_temp->cnt_history; i++)
1372                                 fprintf(fp, "%s\n", st_temp->history[i]);
1373                         fclose(fp);
1374                         if (rename(new_name, state->hist_file) == 0)
1375                                 state->cnt_history_in_file = st_temp->cnt_history;
1376                 }
1377                 free(new_name);
1378                 free_line_input_t(st_temp);
1379         }
1380 }
1381 # else
1382 #  define load_history(a) ((void)0)
1383 #  define save_history(a) ((void)0)
1384 # endif /* FEATURE_COMMAND_SAVEHISTORY */
1385
1386 static void remember_in_history(char *str)
1387 {
1388         int i;
1389
1390         if (!(state->flags & DO_HISTORY))
1391                 return;
1392         if (str[0] == '\0')
1393                 return;
1394         i = state->cnt_history;
1395         /* Don't save dupes */
1396         if (i && strcmp(state->history[i-1], str) == 0)
1397                 return;
1398
1399         free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1400         state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1401
1402         /* If history[] is full, remove the oldest command */
1403         /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
1404         if (i >= MAX_HISTORY) {
1405                 free(state->history[0]);
1406                 for (i = 0; i < MAX_HISTORY-1; i++)
1407                         state->history[i] = state->history[i+1];
1408                 /* i == MAX_HISTORY-1 */
1409         }
1410         /* i <= MAX_HISTORY-1 */
1411         state->history[i++] = xstrdup(str);
1412         /* i <= MAX_HISTORY */
1413         state->cur_history = i;
1414         state->cnt_history = i;
1415 # if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
1416         if ((state->flags & SAVE_HISTORY) && state->hist_file)
1417                 save_history(str);
1418 # endif
1419         IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
1420 }
1421
1422 #else /* MAX_HISTORY == 0 */
1423 # define remember_in_history(a) ((void)0)
1424 #endif /* MAX_HISTORY */
1425
1426
1427 #if ENABLE_FEATURE_EDITING_VI
1428 /*
1429  * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
1430  */
1431 static void
1432 vi_Word_motion(int eat)
1433 {
1434         CHAR_T *command = command_ps;
1435
1436         while (cursor < command_len && !BB_isspace(command[cursor]))
1437                 input_forward();
1438         if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
1439                 input_forward();
1440 }
1441
1442 static void
1443 vi_word_motion(int eat)
1444 {
1445         CHAR_T *command = command_ps;
1446
1447         if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
1448                 while (cursor < command_len
1449                  && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1450                 ) {
1451                         input_forward();
1452                 }
1453         } else if (BB_ispunct(command[cursor])) {
1454                 while (cursor < command_len && BB_ispunct(command[cursor+1]))
1455                         input_forward();
1456         }
1457
1458         if (cursor < command_len)
1459                 input_forward();
1460
1461         if (eat) {
1462                 while (cursor < command_len && BB_isspace(command[cursor]))
1463                         input_forward();
1464         }
1465 }
1466
1467 static void
1468 vi_End_motion(void)
1469 {
1470         CHAR_T *command = command_ps;
1471
1472         input_forward();
1473         while (cursor < command_len && BB_isspace(command[cursor]))
1474                 input_forward();
1475         while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
1476                 input_forward();
1477 }
1478
1479 static void
1480 vi_end_motion(void)
1481 {
1482         CHAR_T *command = command_ps;
1483
1484         if (cursor >= command_len-1)
1485                 return;
1486         input_forward();
1487         while (cursor < command_len-1 && BB_isspace(command[cursor]))
1488                 input_forward();
1489         if (cursor >= command_len-1)
1490                 return;
1491         if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
1492                 while (cursor < command_len-1
1493                  && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1494                 ) {
1495                         input_forward();
1496                 }
1497         } else if (BB_ispunct(command[cursor])) {
1498                 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
1499                         input_forward();
1500         }
1501 }
1502
1503 static void
1504 vi_Back_motion(void)
1505 {
1506         CHAR_T *command = command_ps;
1507
1508         while (cursor > 0 && BB_isspace(command[cursor-1]))
1509                 input_backward(1);
1510         while (cursor > 0 && !BB_isspace(command[cursor-1]))
1511                 input_backward(1);
1512 }
1513
1514 static void
1515 vi_back_motion(void)
1516 {
1517         CHAR_T *command = command_ps;
1518
1519         if (cursor <= 0)
1520                 return;
1521         input_backward(1);
1522         while (cursor > 0 && BB_isspace(command[cursor]))
1523                 input_backward(1);
1524         if (cursor <= 0)
1525                 return;
1526         if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
1527                 while (cursor > 0
1528                  && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
1529                 ) {
1530                         input_backward(1);
1531                 }
1532         } else if (BB_ispunct(command[cursor])) {
1533                 while (cursor > 0 && BB_ispunct(command[cursor-1]))
1534                         input_backward(1);
1535         }
1536 }
1537 #endif
1538
1539 /* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1540 static void ctrl_left(void)
1541 {
1542         CHAR_T *command = command_ps;
1543
1544         while (1) {
1545                 CHAR_T c;
1546
1547                 input_backward(1);
1548                 if (cursor == 0)
1549                         break;
1550                 c = command[cursor];
1551                 if (c != ' ' && !BB_ispunct(c)) {
1552                         /* we reached a "word" delimited by spaces/punct.
1553                          * go to its beginning */
1554                         while (1) {
1555                                 c = command[cursor - 1];
1556                                 if (c == ' ' || BB_ispunct(c))
1557                                         break;
1558                                 input_backward(1);
1559                                 if (cursor == 0)
1560                                         break;
1561                         }
1562                         break;
1563                 }
1564         }
1565 }
1566 static void ctrl_right(void)
1567 {
1568         CHAR_T *command = command_ps;
1569
1570         while (1) {
1571                 CHAR_T c;
1572
1573                 c = command[cursor];
1574                 if (c == BB_NUL)
1575                         break;
1576                 if (c != ' ' && !BB_ispunct(c)) {
1577                         /* we reached a "word" delimited by spaces/punct.
1578                          * go to its end + 1 */
1579                         while (1) {
1580                                 input_forward();
1581                                 c = command[cursor];
1582                                 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1583                                         break;
1584                         }
1585                         break;
1586                 }
1587                 input_forward();
1588         }
1589 }
1590
1591
1592 /*
1593  * read_line_input and its helpers
1594  */
1595
1596 #if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1597 static void ask_terminal(void)
1598 {
1599         /* Ask terminal where is the cursor now.
1600          * lineedit_read_key handles response and corrects
1601          * our idea of current cursor position.
1602          * Testcase: run "echo -n long_line_long_line_long_line",
1603          * then type in a long, wrapping command and try to
1604          * delete it using backspace key.
1605          * Note: we print it _after_ prompt, because
1606          * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1607          */
1608         /* Problem: if there is buffered input on stdin,
1609          * the response will be delivered later,
1610          * possibly to an unsuspecting application.
1611          * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1612          * Result:
1613          * ~/srcdevel/bbox/fix/busybox.t4 #
1614          * ~/srcdevel/bbox/fix/busybox.t4 #
1615          * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 #  <-- garbage
1616          * ~/srcdevel/bbox/fix/busybox.t4 #
1617          *
1618          * Checking for input with poll only makes the race narrower,
1619          * I still can trigger it. Strace:
1620          *
1621          * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1622          * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout)  <-- no input exists
1623          * write(1, "\33[6n", 4) = 4  <-- send the ESC sequence, quick!
1624          * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1625          * read(0, "\n", 1)      = 1  <-- oh crap, user's input got in first
1626          */
1627         struct pollfd pfd;
1628
1629         pfd.fd = STDIN_FILENO;
1630         pfd.events = POLLIN;
1631         if (safe_poll(&pfd, 1, 0) == 0) {
1632                 S.sent_ESC_br6n = 1;
1633                 fputs(ESC"[6n", stdout);
1634                 fflush_all(); /* make terminal see it ASAP! */
1635         }
1636 }
1637 #else
1638 #define ask_terminal() ((void)0)
1639 #endif
1640
1641 #if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
1642 static void parse_and_put_prompt(const char *prmt_ptr)
1643 {
1644         cmdedit_prompt = prmt_ptr;
1645         cmdedit_prmt_len = strlen(prmt_ptr);
1646         put_prompt();
1647 }
1648 #else
1649 static void parse_and_put_prompt(const char *prmt_ptr)
1650 {
1651         int prmt_len = 0;
1652         size_t cur_prmt_len = 0;
1653         char flg_not_length = '[';
1654         char *prmt_mem_ptr = xzalloc(1);
1655         char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1656         char cbuf[2];
1657         char c;
1658         char *pbuf;
1659
1660         cmdedit_prmt_len = 0;
1661
1662         if (!cwd_buf) {
1663                 cwd_buf = (char *)bb_msg_unknown;
1664         }
1665
1666         cbuf[1] = '\0'; /* never changes */
1667
1668         while (*prmt_ptr) {
1669                 char *free_me = NULL;
1670
1671                 pbuf = cbuf;
1672                 c = *prmt_ptr++;
1673                 if (c == '\\') {
1674                         const char *cp = prmt_ptr;
1675                         int l;
1676
1677                         c = bb_process_escape_sequence(&prmt_ptr);
1678                         if (prmt_ptr == cp) {
1679                                 if (*cp == '\0')
1680                                         break;
1681                                 c = *prmt_ptr++;
1682
1683                                 switch (c) {
1684 # if ENABLE_USERNAME_OR_HOMEDIR
1685                                 case 'u':
1686                                         pbuf = user_buf ? user_buf : (char*)"";
1687                                         break;
1688 # endif
1689                                 case 'h':
1690                                         pbuf = free_me = safe_gethostname();
1691                                         *strchrnul(pbuf, '.') = '\0';
1692                                         break;
1693                                 case '$':
1694                                         c = (geteuid() == 0 ? '#' : '$');
1695                                         break;
1696 # if ENABLE_USERNAME_OR_HOMEDIR
1697                                 case 'w':
1698                                         /* /home/user[/something] -> ~[/something] */
1699                                         pbuf = cwd_buf;
1700                                         l = strlen(home_pwd_buf);
1701                                         if (l != 0
1702                                          && strncmp(home_pwd_buf, cwd_buf, l) == 0
1703                                          && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1704                                          && strlen(cwd_buf + l) < PATH_MAX
1705                                         ) {
1706                                                 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
1707                                         }
1708                                         break;
1709 # endif
1710                                 case 'W':
1711                                         pbuf = cwd_buf;
1712                                         cp = strrchr(pbuf, '/');
1713                                         if (cp != NULL && cp != pbuf)
1714                                                 pbuf += (cp-pbuf) + 1;
1715                                         break;
1716                                 case '!':
1717                                         pbuf = free_me = xasprintf("%d", num_ok_lines);
1718                                         break;
1719                                 case 'e': case 'E':     /* \e \E = \033 */
1720                                         c = '\033';
1721                                         break;
1722                                 case 'x': case 'X': {
1723                                         char buf2[4];
1724                                         for (l = 0; l < 3;) {
1725                                                 unsigned h;
1726                                                 buf2[l++] = *prmt_ptr;
1727                                                 buf2[l] = '\0';
1728                                                 h = strtoul(buf2, &pbuf, 16);
1729                                                 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
1730                                                         buf2[--l] = '\0';
1731                                                         break;
1732                                                 }
1733                                                 prmt_ptr++;
1734                                         }
1735                                         c = (char)strtoul(buf2, NULL, 16);
1736                                         if (c == 0)
1737                                                 c = '?';
1738                                         pbuf = cbuf;
1739                                         break;
1740                                 }
1741                                 case '[': case ']':
1742                                         if (c == flg_not_length) {
1743                                                 flg_not_length = (flg_not_length == '[' ? ']' : '[');
1744                                                 continue;
1745                                         }
1746                                         break;
1747                                 } /* switch */
1748                         } /* if */
1749                 } /* if */
1750                 cbuf[0] = c;
1751                 cur_prmt_len = strlen(pbuf);
1752                 prmt_len += cur_prmt_len;
1753                 if (flg_not_length != ']')
1754                         cmdedit_prmt_len += cur_prmt_len;
1755                 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
1756                 free(free_me);
1757         } /* while */
1758
1759         if (cwd_buf != (char *)bb_msg_unknown)
1760                 free(cwd_buf);
1761         cmdedit_prompt = prmt_mem_ptr;
1762         put_prompt();
1763 }
1764 #endif
1765
1766 static void cmdedit_setwidth(unsigned w, int redraw_flg)
1767 {
1768         cmdedit_termw = w;
1769         if (redraw_flg) {
1770                 /* new y for current cursor */
1771                 int new_y = (cursor + cmdedit_prmt_len) / w;
1772                 /* redraw */
1773                 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
1774                 fflush_all();
1775         }
1776 }
1777
1778 static void win_changed(int nsig)
1779 {
1780         int sv_errno = errno;
1781         unsigned width;
1782         get_terminal_width_height(0, &width, NULL);
1783         cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1784         if (nsig == SIGWINCH)
1785                 signal(SIGWINCH, win_changed); /* rearm ourself */
1786         errno = sv_errno;
1787 }
1788
1789 static int lineedit_read_key(char *read_key_buffer)
1790 {
1791         int64_t ic;
1792         int timeout = -1;
1793 #if ENABLE_UNICODE_SUPPORT
1794         char unicode_buf[MB_CUR_MAX + 1];
1795         int unicode_idx = 0;
1796 #endif
1797
1798         while (1) {
1799                 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1800                  * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1801                  * insist on full MB_CUR_MAX buffer to declare input like
1802                  * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1803                  *
1804                  * Note: read_key sets errno to 0 on success.
1805                  */
1806                 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1807                 if (errno) {
1808 #if ENABLE_UNICODE_SUPPORT
1809                         if (errno == EAGAIN && unicode_idx != 0)
1810                                 goto pushback;
1811 #endif
1812                         break;
1813                 }
1814
1815 #if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1816                 if ((int32_t)ic == KEYCODE_CURSOR_POS
1817                  && S.sent_ESC_br6n
1818                 ) {
1819                         S.sent_ESC_br6n = 0;
1820                         if (cursor == 0) { /* otherwise it may be bogus */
1821                                 int col = ((ic >> 32) & 0x7fff) - 1;
1822                                 if (col > cmdedit_prmt_len) {
1823                                         cmdedit_x += (col - cmdedit_prmt_len);
1824                                         while (cmdedit_x >= cmdedit_termw) {
1825                                                 cmdedit_x -= cmdedit_termw;
1826                                                 cmdedit_y++;
1827                                         }
1828                                 }
1829                         }
1830                         continue;
1831                 }
1832 #endif
1833
1834 #if ENABLE_UNICODE_SUPPORT
1835                 if (unicode_status == UNICODE_ON) {
1836                         wchar_t wc;
1837
1838                         if ((int32_t)ic < 0) /* KEYCODE_xxx */
1839                                 break;
1840                         // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
1841
1842                         unicode_buf[unicode_idx++] = ic;
1843                         unicode_buf[unicode_idx] = '\0';
1844                         if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1845                                 /* Not (yet?) a valid unicode char */
1846                                 if (unicode_idx < MB_CUR_MAX) {
1847                                         timeout = 50;
1848                                         continue;
1849                                 }
1850  pushback:
1851                                 /* Invalid sequence. Save all "bad bytes" except first */
1852                                 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
1853 # if !ENABLE_UNICODE_PRESERVE_BROKEN
1854                                 ic = CONFIG_SUBST_WCHAR;
1855 # else
1856                                 ic = unicode_mark_raw_byte(unicode_buf[0]);
1857 # endif
1858                         } else {
1859                                 /* Valid unicode char, return its code */
1860                                 ic = wc;
1861                         }
1862                 }
1863 #endif
1864                 break;
1865         }
1866
1867         return ic;
1868 }
1869
1870 #if ENABLE_UNICODE_BIDI_SUPPORT
1871 static int isrtl_str(void)
1872 {
1873         int idx = cursor;
1874
1875         while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
1876                 idx++;
1877         return unicode_bidi_isrtl(command_ps[idx]);
1878 }
1879 #else
1880 # define isrtl_str() 0
1881 #endif
1882
1883 /* leave out the "vi-mode"-only case labels if vi editing isn't
1884  * configured. */
1885 #define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
1886
1887 /* convert uppercase ascii to equivalent control char, for readability */
1888 #undef CTRL
1889 #define CTRL(a) ((a) & ~0x40)
1890
1891 /* maxsize must be >= 2.
1892  * Returns:
1893  * -1 on read errors or EOF, or on bare Ctrl-D,
1894  * 0  on ctrl-C (the line entered is still returned in 'command'),
1895  * >0 length of input string, including terminating '\n'
1896  */
1897 int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
1898 {
1899         int len;
1900 #if ENABLE_FEATURE_TAB_COMPLETION
1901         smallint lastWasTab = 0;
1902 #endif
1903         smallint break_out = 0;
1904 #if ENABLE_FEATURE_EDITING_VI
1905         smallint vi_cmdmode = 0;
1906 #endif
1907         struct termios initial_settings;
1908         struct termios new_settings;
1909         char read_key_buffer[KEYCODE_BUFFER_SIZE];
1910
1911         INIT_S();
1912
1913         if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1914          || !(initial_settings.c_lflag & ECHO)
1915         ) {
1916                 /* Happens when e.g. stty -echo was run before */
1917                 parse_and_put_prompt(prompt);
1918                 /* fflush_all(); - done by parse_and_put_prompt */
1919                 if (fgets(command, maxsize, stdin) == NULL)
1920                         len = -1; /* EOF or error */
1921                 else
1922                         len = strlen(command);
1923                 DEINIT_S();
1924                 return len;
1925         }
1926
1927         init_unicode();
1928
1929 // FIXME: audit & improve this
1930         if (maxsize > MAX_LINELEN)
1931                 maxsize = MAX_LINELEN;
1932         S.maxsize = maxsize;
1933
1934         /* With null flags, no other fields are ever used */
1935         state = st ? st : (line_input_t*) &const_int_0;
1936 #if MAX_HISTORY > 0
1937 # if ENABLE_FEATURE_EDITING_SAVEHISTORY
1938         if ((state->flags & SAVE_HISTORY) && state->hist_file)
1939                 if (state->cnt_history == 0)
1940                         load_history(state);
1941 # endif
1942         if (state->flags & DO_HISTORY)
1943                 state->cur_history = state->cnt_history;
1944 #endif
1945
1946         /* prepare before init handlers */
1947         cmdedit_y = 0;  /* quasireal y, not true if line > xt*yt */
1948         command_len = 0;
1949 #if ENABLE_UNICODE_SUPPORT
1950         command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1951 #else
1952         command_ps = command;
1953         command[0] = '\0';
1954 #endif
1955 #define command command_must_not_be_used
1956
1957         new_settings = initial_settings;
1958         new_settings.c_lflag &= ~ICANON;        /* unbuffered input */
1959         /* Turn off echoing and CTRL-C, so we can trap it */
1960         new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
1961         /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
1962         new_settings.c_cc[VMIN] = 1;
1963         new_settings.c_cc[VTIME] = 0;
1964         /* Turn off CTRL-C, so we can trap it */
1965 #ifndef _POSIX_VDISABLE
1966 # define _POSIX_VDISABLE '\0'
1967 #endif
1968         new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
1969         tcsetattr_stdin_TCSANOW(&new_settings);
1970
1971         /* Now initialize things */
1972         previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1973         win_changed(0); /* do initial resizing */
1974 #if ENABLE_USERNAME_OR_HOMEDIR
1975         {
1976                 struct passwd *entry;
1977
1978                 entry = getpwuid(geteuid());
1979                 if (entry) {
1980                         user_buf = xstrdup(entry->pw_name);
1981                         home_pwd_buf = xstrdup(entry->pw_dir);
1982                 }
1983         }
1984 #endif
1985
1986 #if 0
1987         for (i = 0; i <= MAX_HISTORY; i++)
1988                 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
1989         bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1990 #endif
1991
1992         /* Print out the command prompt, optionally ask where cursor is */
1993         parse_and_put_prompt(prompt);
1994         ask_terminal();
1995
1996         read_key_buffer[0] = 0;
1997         while (1) {
1998                 /*
1999                  * The emacs and vi modes share much of the code in the big
2000                  * command loop.  Commands entered when in vi's command mode
2001                  * (aka "escape mode") get an extra bit added to distinguish
2002                  * them - this keeps them from being self-inserted. This
2003                  * clutters the big switch a bit, but keeps all the code
2004                  * in one place.
2005                  */
2006                 enum {
2007                         VI_CMDMODE_BIT = 0x40000000,
2008                         /* 0x80000000 bit flags KEYCODE_xxx */
2009                 };
2010                 int32_t ic, ic_raw;
2011
2012                 fflush_all();
2013                 ic = ic_raw = lineedit_read_key(read_key_buffer);
2014
2015 #if ENABLE_FEATURE_EDITING_VI
2016                 newdelflag = 1;
2017                 if (vi_cmdmode) {
2018                         /* btw, since KEYCODE_xxx are all < 0, this doesn't
2019                          * change ic if it contains one of them: */
2020                         ic |= VI_CMDMODE_BIT;
2021                 }
2022 #endif
2023
2024                 switch (ic) {
2025                 case '\n':
2026                 case '\r':
2027                 vi_case('\n'|VI_CMDMODE_BIT:)
2028                 vi_case('\r'|VI_CMDMODE_BIT:)
2029                         /* Enter */
2030                         goto_new_line();
2031                         break_out = 1;
2032                         break;
2033                 case CTRL('A'):
2034                 vi_case('0'|VI_CMDMODE_BIT:)
2035                         /* Control-a -- Beginning of line */
2036                         input_backward(cursor);
2037                         break;
2038                 case CTRL('B'):
2039                 vi_case('h'|VI_CMDMODE_BIT:)
2040                 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
2041                 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
2042                         input_backward(1); /* Move back one character */
2043                         break;
2044                 case CTRL('E'):
2045                 vi_case('$'|VI_CMDMODE_BIT:)
2046                         /* Control-e -- End of line */
2047                         put_till_end_and_adv_cursor();
2048                         break;
2049                 case CTRL('F'):
2050                 vi_case('l'|VI_CMDMODE_BIT:)
2051                 vi_case(' '|VI_CMDMODE_BIT:)
2052                         input_forward(); /* Move forward one character */
2053                         break;
2054                 case '\b':   /* ^H */
2055                 case '\x7f': /* DEL */
2056                         if (!isrtl_str())
2057                                 input_backspace();
2058                         else
2059                                 input_delete(0);
2060                         break;
2061                 case KEYCODE_DELETE:
2062                         if (!isrtl_str())
2063                                 input_delete(0);
2064                         else
2065                                 input_backspace();
2066                         break;
2067 #if ENABLE_FEATURE_TAB_COMPLETION
2068                 case '\t':
2069                         input_tab(&lastWasTab);
2070                         break;
2071 #endif
2072                 case CTRL('K'):
2073                         /* Control-k -- clear to end of line */
2074                         command_ps[cursor] = BB_NUL;
2075                         command_len = cursor;
2076                         printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
2077                         break;
2078                 case CTRL('L'):
2079                 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
2080                         /* Control-l -- clear screen */
2081                         printf(ESC"[H"); /* cursor to top,left */
2082                         redraw(0, command_len - cursor);
2083                         break;
2084 #if MAX_HISTORY > 0
2085                 case CTRL('N'):
2086                 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2087                 vi_case('j'|VI_CMDMODE_BIT:)
2088                         /* Control-n -- Get next command in history */
2089                         if (get_next_history())
2090                                 goto rewrite_line;
2091                         break;
2092                 case CTRL('P'):
2093                 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2094                 vi_case('k'|VI_CMDMODE_BIT:)
2095                         /* Control-p -- Get previous command from history */
2096                         if (get_previous_history())
2097                                 goto rewrite_line;
2098                         break;
2099 #endif
2100                 case CTRL('U'):
2101                 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
2102                         /* Control-U -- Clear line before cursor */
2103                         if (cursor) {
2104                                 command_len -= cursor;
2105                                 memmove(command_ps, command_ps + cursor,
2106                                         (command_len + 1) * sizeof(command_ps[0]));
2107                                 redraw(cmdedit_y, command_len);
2108                         }
2109                         break;
2110                 case CTRL('W'):
2111                 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
2112                         /* Control-W -- Remove the last word */
2113                         while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
2114                                 input_backspace();
2115                         while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
2116                                 input_backspace();
2117                         break;
2118
2119 #if ENABLE_FEATURE_EDITING_VI
2120                 case 'i'|VI_CMDMODE_BIT:
2121                         vi_cmdmode = 0;
2122                         break;
2123                 case 'I'|VI_CMDMODE_BIT:
2124                         input_backward(cursor);
2125                         vi_cmdmode = 0;
2126                         break;
2127                 case 'a'|VI_CMDMODE_BIT:
2128                         input_forward();
2129                         vi_cmdmode = 0;
2130                         break;
2131                 case 'A'|VI_CMDMODE_BIT:
2132                         put_till_end_and_adv_cursor();
2133                         vi_cmdmode = 0;
2134                         break;
2135                 case 'x'|VI_CMDMODE_BIT:
2136                         input_delete(1);
2137                         break;
2138                 case 'X'|VI_CMDMODE_BIT:
2139                         if (cursor > 0) {
2140                                 input_backward(1);
2141                                 input_delete(1);
2142                         }
2143                         break;
2144                 case 'W'|VI_CMDMODE_BIT:
2145                         vi_Word_motion(1);
2146                         break;
2147                 case 'w'|VI_CMDMODE_BIT:
2148                         vi_word_motion(1);
2149                         break;
2150                 case 'E'|VI_CMDMODE_BIT:
2151                         vi_End_motion();
2152                         break;
2153                 case 'e'|VI_CMDMODE_BIT:
2154                         vi_end_motion();
2155                         break;
2156                 case 'B'|VI_CMDMODE_BIT:
2157                         vi_Back_motion();
2158                         break;
2159                 case 'b'|VI_CMDMODE_BIT:
2160                         vi_back_motion();
2161                         break;
2162                 case 'C'|VI_CMDMODE_BIT:
2163                         vi_cmdmode = 0;
2164                         /* fall through */
2165                 case 'D'|VI_CMDMODE_BIT:
2166                         goto clear_to_eol;
2167
2168                 case 'c'|VI_CMDMODE_BIT:
2169                         vi_cmdmode = 0;
2170                         /* fall through */
2171                 case 'd'|VI_CMDMODE_BIT: {
2172                         int nc, sc;
2173
2174                         ic = lineedit_read_key(read_key_buffer);
2175                         if (errno) /* error */
2176                                 goto return_error_indicator;
2177                         if (ic == ic_raw) { /* "cc", "dd" */
2178                                 input_backward(cursor);
2179                                 goto clear_to_eol;
2180                                 break;
2181                         }
2182
2183                         sc = cursor;
2184                         switch (ic) {
2185                         case 'w':
2186                         case 'W':
2187                         case 'e':
2188                         case 'E':
2189                                 switch (ic) {
2190                                 case 'w':   /* "dw", "cw" */
2191                                         vi_word_motion(vi_cmdmode);
2192                                         break;
2193                                 case 'W':   /* 'dW', 'cW' */
2194                                         vi_Word_motion(vi_cmdmode);
2195                                         break;
2196                                 case 'e':   /* 'de', 'ce' */
2197                                         vi_end_motion();
2198                                         input_forward();
2199                                         break;
2200                                 case 'E':   /* 'dE', 'cE' */
2201                                         vi_End_motion();
2202                                         input_forward();
2203                                         break;
2204                                 }
2205                                 nc = cursor;
2206                                 input_backward(cursor - sc);
2207                                 while (nc-- > cursor)
2208                                         input_delete(1);
2209                                 break;
2210                         case 'b':  /* "db", "cb" */
2211                         case 'B':  /* implemented as B */
2212                                 if (ic == 'b')
2213                                         vi_back_motion();
2214                                 else
2215                                         vi_Back_motion();
2216                                 while (sc-- > cursor)
2217                                         input_delete(1);
2218                                 break;
2219                         case ' ':  /* "d ", "c " */
2220                                 input_delete(1);
2221                                 break;
2222                         case '$':  /* "d$", "c$" */
2223  clear_to_eol:
2224                                 while (cursor < command_len)
2225                                         input_delete(1);
2226                                 break;
2227                         }
2228                         break;
2229                 }
2230                 case 'p'|VI_CMDMODE_BIT:
2231                         input_forward();
2232                         /* fallthrough */
2233                 case 'P'|VI_CMDMODE_BIT:
2234                         put();
2235                         break;
2236                 case 'r'|VI_CMDMODE_BIT:
2237 //FIXME: unicode case?
2238                         ic = lineedit_read_key(read_key_buffer);
2239                         if (errno) /* error */
2240                                 goto return_error_indicator;
2241                         if (ic < ' ' || ic > 255) {
2242                                 beep();
2243                         } else {
2244                                 command_ps[cursor] = ic;
2245                                 bb_putchar(ic);
2246                                 bb_putchar('\b');
2247                         }
2248                         break;
2249                 case '\x1b': /* ESC */
2250                         if (state->flags & VI_MODE) {
2251                                 /* insert mode --> command mode */
2252                                 vi_cmdmode = 1;
2253                                 input_backward(1);
2254                         }
2255                         break;
2256 #endif /* FEATURE_COMMAND_EDITING_VI */
2257
2258 #if MAX_HISTORY > 0
2259                 case KEYCODE_UP:
2260                         if (get_previous_history())
2261                                 goto rewrite_line;
2262                         beep();
2263                         break;
2264                 case KEYCODE_DOWN:
2265                         if (!get_next_history())
2266                                 break;
2267  rewrite_line:
2268                         /* Rewrite the line with the selected history item */
2269                         /* change command */
2270                         command_len = load_string(state->history[state->cur_history] ?
2271                                         state->history[state->cur_history] : "", maxsize);
2272                         /* redraw and go to eol (bol, in vi) */
2273                         redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2274                         break;
2275 #endif
2276                 case KEYCODE_RIGHT:
2277                         input_forward();
2278                         break;
2279                 case KEYCODE_LEFT:
2280                         input_backward(1);
2281                         break;
2282                 case KEYCODE_CTRL_LEFT:
2283                         ctrl_left();
2284                         break;
2285                 case KEYCODE_CTRL_RIGHT:
2286                         ctrl_right();
2287                         break;
2288                 case KEYCODE_HOME:
2289                         input_backward(cursor);
2290                         break;
2291                 case KEYCODE_END:
2292                         put_till_end_and_adv_cursor();
2293                         break;
2294
2295                 default:
2296                         if (initial_settings.c_cc[VINTR] != 0
2297                          && ic_raw == initial_settings.c_cc[VINTR]
2298                         ) {
2299                                 /* Ctrl-C (usually) - stop gathering input */
2300                                 goto_new_line();
2301                                 command_len = 0;
2302                                 break_out = -1; /* "do not append '\n'" */
2303                                 break;
2304                         }
2305                         if (initial_settings.c_cc[VEOF] != 0
2306                          && ic_raw == initial_settings.c_cc[VEOF]
2307                         ) {
2308                                 /* Ctrl-D (usually) - delete one character,
2309                                  * or exit if len=0 and no chars to delete */
2310                                 if (command_len == 0) {
2311                                         errno = 0;
2312
2313                 case -1: /* error (e.g. EIO when tty is destroyed) */
2314  IF_FEATURE_EDITING_VI(return_error_indicator:)
2315                                         break_out = command_len = -1;
2316                                         break;
2317                                 }
2318                                 input_delete(0);
2319                                 break;
2320                         }
2321 //                      /* Control-V -- force insert of next char */
2322 //                      if (c == CTRL('V')) {
2323 //                              if (safe_read(STDIN_FILENO, &c, 1) < 1)
2324 //                                      goto return_error_indicator;
2325 //                              if (c == 0) {
2326 //                                      beep();
2327 //                                      break;
2328 //                              }
2329 //                      }
2330                         if (ic < ' '
2331                          || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2332                          || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
2333                         ) {
2334                                 /* If VI_CMDMODE_BIT is set, ic is >= 256
2335                                  * and vi mode ignores unexpected chars.
2336                                  * Otherwise, we are here if ic is a
2337                                  * control char or an unhandled ESC sequence,
2338                                  * which is also ignored.
2339                                  */
2340                                 break;
2341                         }
2342                         if ((int)command_len >= (maxsize - 2)) {
2343                                 /* Not enough space for the char and EOL */
2344                                 break;
2345                         }
2346
2347                         command_len++;
2348                         if (cursor == (command_len - 1)) {
2349                                 /* We are at the end, append */
2350                                 command_ps[cursor] = ic;
2351                                 command_ps[cursor + 1] = BB_NUL;
2352                                 put_cur_glyph_and_inc_cursor();
2353                                 if (unicode_bidi_isrtl(ic))
2354                                         input_backward(1);
2355                         } else {
2356                                 /* In the middle, insert */
2357                                 int sc = cursor;
2358
2359                                 memmove(command_ps + sc + 1, command_ps + sc,
2360                                         (command_len - sc) * sizeof(command_ps[0]));
2361                                 command_ps[sc] = ic;
2362                                 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2363                                 if (!isrtl_str())
2364                                         sc++; /* no */
2365                                 put_till_end_and_adv_cursor();
2366                                 /* to prev x pos + 1 */
2367                                 input_backward(cursor - sc);
2368                         }
2369                         break;
2370                 } /* switch (ic) */
2371
2372                 if (break_out)
2373                         break;
2374
2375 #if ENABLE_FEATURE_TAB_COMPLETION
2376                 if (ic_raw != '\t')
2377                         lastWasTab = 0;
2378 #endif
2379         } /* while (1) */
2380
2381 #if ENABLE_FEATURE_EDITING_ASK_TERMINAL
2382         if (S.sent_ESC_br6n) {
2383                 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2384                  * We sent "ESC [ 6 n", but got '\n' first, and
2385                  * KEYCODE_CURSOR_POS response is now buffered from terminal.
2386                  * It's bad already and not much can be done with it
2387                  * (it _will_ be visible for the next process to read stdin),
2388                  * but without this delay it even shows up on the screen
2389                  * as garbage because we restore echo settings with tcsetattr
2390                  * before it comes in. UGLY!
2391                  */
2392                 usleep(20*1000);
2393         }
2394 #endif
2395
2396 /* End of bug-catching "command_must_not_be_used" trick */
2397 #undef command
2398
2399 #if ENABLE_UNICODE_SUPPORT
2400         command[0] = '\0';
2401         if (command_len > 0)
2402                 command_len = save_string(command, maxsize - 1);
2403         free(command_ps);
2404 #endif
2405
2406         if (command_len > 0)
2407                 remember_in_history(command);
2408
2409         if (break_out > 0) {
2410                 command[command_len++] = '\n';
2411                 command[command_len] = '\0';
2412         }
2413
2414 #if ENABLE_FEATURE_TAB_COMPLETION
2415         free_tab_completion_data();
2416 #endif
2417
2418         /* restore initial_settings */
2419         tcsetattr_stdin_TCSANOW(&initial_settings);
2420         /* restore SIGWINCH handler */
2421         signal(SIGWINCH, previous_SIGWINCH_handler);
2422         fflush_all();
2423
2424         len = command_len;
2425         DEINIT_S();
2426
2427         return len; /* can't return command_len, DEINIT_S() destroys it */
2428 }
2429
2430 #else  /* !FEATURE_EDITING */
2431
2432 #undef read_line_input
2433 int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
2434 {
2435         fputs(prompt, stdout);
2436         fflush_all();
2437         fgets(command, maxsize, stdin);
2438         return strlen(command);
2439 }
2440
2441 #endif  /* !FEATURE_EDITING */
2442
2443
2444 /*
2445  * Testing
2446  */
2447
2448 #ifdef TEST
2449
2450 #include <locale.h>
2451
2452 const char *applet_name = "debug stuff usage";
2453
2454 int main(int argc, char **argv)
2455 {
2456         char buff[MAX_LINELEN];
2457         char *prompt =
2458 #if ENABLE_FEATURE_EDITING_FANCY_PROMPT
2459                 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2460                 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2461                 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
2462 #else
2463                 "% ";
2464 #endif
2465
2466         while (1) {
2467                 int l;
2468                 l = read_line_input(prompt, buff);
2469                 if (l <= 0 || buff[l-1] != '\n')
2470                         break;
2471                 buff[l-1] = '\0';
2472                 printf("*** read_line_input() returned line =%s=\n", buff);
2473         }
2474         printf("*** read_line_input() detect ^D\n");
2475         return 0;
2476 }
2477
2478 #endif  /* TEST */