blob: 35a8d5e273c1261270b3822f979f7f34076fc435 [file] [log] [blame]
Erik Andersenc7c634b2000-03-19 05:28:55 +00001/* vi: set sw=4 ts=4: */
Erik Andersen13456d12000-03-16 08:09:57 +00002/*
Eric Andersenaff114c2004-04-14 17:51:38 +00003 * Termios command line History and Editing.
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Eric Andersen81fe1232003-07-29 06:38:40 +00005 * Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license.
Eric Andersen7467c8d2001-07-12 20:26:32 +00006 * Written by: Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersen5f2c79d2001-02-16 18:36:04 +00007 *
8 * Used ideas:
9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995
Eric Andersen81fe1232003-07-29 06:38:40 +000012 * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000013 *
Erik Andersen13456d12000-03-16 08:09:57 +000014 * This code is 'as is' with no warranty.
Erik Andersen13456d12000-03-16 08:09:57 +000015 *
Erik Andersen13456d12000-03-16 08:09:57 +000016 *
17 */
18
19/*
20 Usage and Known bugs:
21 Terminal key codes are not extensive, and more will probably
22 need to be added. This version was created on Debian GNU/Linux 2.x.
23 Delete, Backspace, Home, End, and the arrow keys were tested
24 to work in an Xterm and console. Ctrl-A also works as Home.
Mark Whitley4e338752001-01-26 20:42:23 +000025 Ctrl-E also works as End.
Erik Andersen13456d12000-03-16 08:09:57 +000026
Eric Andersen5f2c79d2001-02-16 18:36:04 +000027 Small bugs (simple effect):
28 - not true viewing if terminal size (x*y symbols) less
29 size (prompt + editor`s line + 2 symbols)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000030 - not true viewing if length prompt less terminal width
Erik Andersen13456d12000-03-16 08:09:57 +000031 */
32
Mark Whitley4e338752001-01-26 20:42:23 +000033
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000034#include "busybox.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000035#include <stdio.h>
36#include <errno.h>
37#include <unistd.h>
38#include <stdlib.h>
39#include <string.h>
40#include <sys/ioctl.h>
41#include <ctype.h>
42#include <signal.h>
43#include <limits.h>
44
"Robert P. J. Day"4eddb422006-07-03 00:46:47 +000045#include "cmdedit.h"
Glenn L McGrath67285962004-01-14 09:34:51 +000046
Glenn L McGrath475820c2004-01-22 12:42:23 +000047
Eric Andersenbdfd0d72001-10-24 05:00:29 +000048#ifdef CONFIG_LOCALE_SUPPORT
Eric Andersene5dfced2001-04-09 22:48:12 +000049#define Isprint(c) isprint((c))
50#else
51#define Isprint(c) ( (c) >= ' ' && (c) != ((unsigned char)'\233') )
52#endif
53
Glenn L McGrath3b251852004-01-03 12:07:32 +000054#ifdef TEST
Eric Andersen5f2c79d2001-02-16 18:36:04 +000055
Eric Andersen27bb7902003-12-23 20:24:51 +000056/* pretect redefined for test */
57#undef CONFIG_FEATURE_COMMAND_EDITING
58#undef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
59#undef CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
60#undef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
61#undef CONFIG_FEATURE_CLEAN_UP
62
Eric Andersenbdfd0d72001-10-24 05:00:29 +000063#define CONFIG_FEATURE_COMMAND_EDITING
64#define CONFIG_FEATURE_COMMAND_TAB_COMPLETION
65#define CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
66#define CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
67#define CONFIG_FEATURE_CLEAN_UP
Eric Andersen5f2c79d2001-02-16 18:36:04 +000068
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +000069#endif /* TEST */
Eric Andersen5f2c79d2001-02-16 18:36:04 +000070
Eric Andersenbdfd0d72001-10-24 05:00:29 +000071#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5165fbe2001-02-20 06:42:29 +000072#include <dirent.h>
73#include <sys/stat.h>
74#endif
75
Eric Andersenbdfd0d72001-10-24 05:00:29 +000076#ifdef CONFIG_FEATURE_COMMAND_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000077
Eric Andersenbdfd0d72001-10-24 05:00:29 +000078#if defined(CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION) || defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
79#define CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +000080#endif
81
Eric Andersen5f2c79d2001-02-16 18:36:04 +000082/* Maximum length of the linked list for the command line history */
Robert Griebl350d26b2002-12-03 22:45:46 +000083#ifndef CONFIG_FEATURE_COMMAND_HISTORY
84#define MAX_HISTORY 15
85#else
86#define MAX_HISTORY CONFIG_FEATURE_COMMAND_HISTORY
87#endif
88
Glenn L McGrath062c74f2002-11-27 09:29:49 +000089#if MAX_HISTORY < 1
90#warning cmdedit: You set MAX_HISTORY < 1. The history algorithm switched off.
91#else
92static char *history[MAX_HISTORY+1]; /* history + current */
93/* saved history lines */
94static int n_history;
95/* current pointer to history line */
96static int cur_history;
97#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +000098
Glenn L McGrath78b0e372001-06-26 02:06:08 +000099#include <termios.h>
100#define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
101#define getTermSettings(fd,argp) tcgetattr(fd, argp);
Erik Andersen1d1d9502000-04-21 01:26:49 +0000102
103/* Current termio and the previous termio before starting sh */
Eric Andersen63a86222000-11-07 06:52:13 +0000104static struct termios initial_settings, new_settings;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000105
106
Mark Whitley4e338752001-01-26 20:42:23 +0000107static
Eric Andersenc470f442003-07-28 09:56:35 +0000108volatile int cmdedit_termw = 80; /* actual terminal width */
Mark Whitley4e338752001-01-26 20:42:23 +0000109static
Eric Andersenc470f442003-07-28 09:56:35 +0000110volatile int handlers_sets = 0; /* Set next bites: */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000111
Mark Whitley4e338752001-01-26 20:42:23 +0000112enum {
Eric Andersenc470f442003-07-28 09:56:35 +0000113 SET_ATEXIT = 1, /* when atexit() has been called
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000114 and get euid,uid,gid to fast compare */
Eric Andersen7467c8d2001-07-12 20:26:32 +0000115 SET_WCHG_HANDLERS = 2, /* winchg signal handler */
116 SET_RESET_TERM = 4, /* if the terminal needs to be reset upon exit */
Mark Whitley4e338752001-01-26 20:42:23 +0000117};
Erik Andersen13456d12000-03-16 08:09:57 +0000118
Mark Whitley4e338752001-01-26 20:42:23 +0000119
Eric Andersenc470f442003-07-28 09:56:35 +0000120static int cmdedit_x; /* real x terminal position */
121static int cmdedit_y; /* pseudoreal y terminal position */
122static int cmdedit_prmt_len; /* lenght prompt without colores string */
Eric Andersen86349772000-12-18 20:25:50 +0000123
Eric Andersenc470f442003-07-28 09:56:35 +0000124static int cursor; /* required global for signal handler */
125static int len; /* --- "" - - "" - -"- --""-- --""--- */
126static char *command_ps; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000127static
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000128#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000129 const
130#endif
Eric Andersenc470f442003-07-28 09:56:35 +0000131char *cmdedit_prompt; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000132
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000133#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000134static char *user_buf = "";
135static char *home_pwd_buf = "";
136static int my_euid;
137#endif
138
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000139#ifdef CONFIG_FEATURE_SH_FANCY_PROMPT
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000140static char *hostname_buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000141static int num_ok_lines = 1;
142#endif
143
144
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000145#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000146
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000147#ifndef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000148static int my_euid;
149#endif
150
151static int my_uid;
152static int my_gid;
153
Eric Andersenc470f442003-07-28 09:56:35 +0000154#endif /* CONFIG_FEATURE_COMMAND_TAB_COMPLETION */
155
Mark Whitley4e338752001-01-26 20:42:23 +0000156static void cmdedit_setwidth(int w, int redraw_flg);
Erik Andersen13456d12000-03-16 08:09:57 +0000157
Mark Whitley4e338752001-01-26 20:42:23 +0000158static void win_changed(int nsig)
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000159{
Eric Andersenc470f442003-07-28 09:56:35 +0000160 static sighandler_t previous_SIGWINCH_handler; /* for reset */
Erik Andersen61677fe2000-04-13 01:18:56 +0000161
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000162 /* emulate || signal call */
163 if (nsig == -SIGWINCH || nsig == SIGWINCH) {
Eric Andersen8efe9672003-09-15 08:33:45 +0000164 int width = 0;
165 get_terminal_width_height(0, &width, NULL);
166 cmdedit_setwidth(width, nsig == SIGWINCH);
Mark Whitley4e338752001-01-26 20:42:23 +0000167 }
Eric Andersen4bbdd782001-01-30 22:23:17 +0000168 /* Unix not all standart in recall signal */
Mark Whitley4e338752001-01-26 20:42:23 +0000169
Eric Andersenc470f442003-07-28 09:56:35 +0000170 if (nsig == -SIGWINCH) /* save previous handler */
Mark Whitley4e338752001-01-26 20:42:23 +0000171 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
Eric Andersenc470f442003-07-28 09:56:35 +0000172 else if (nsig == SIGWINCH) /* signaled called handler */
173 signal(SIGWINCH, win_changed); /* set for next call */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000174 else /* nsig == 0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000175 /* set previous handler */
Eric Andersenc470f442003-07-28 09:56:35 +0000176 signal(SIGWINCH, previous_SIGWINCH_handler); /* reset */
Mark Whitley4e338752001-01-26 20:42:23 +0000177}
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000178
179static void cmdedit_reset_term(void)
Erik Andersen13456d12000-03-16 08:09:57 +0000180{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000181 if ((handlers_sets & SET_RESET_TERM) != 0) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000182/* sparc and other have broken termios support: use old termio handling. */
Eric Andersen70060d22004-03-27 10:02:48 +0000183 setTermSettings(STDIN_FILENO, (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +0000184 handlers_sets &= ~SET_RESET_TERM;
185 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000186 if ((handlers_sets & SET_WCHG_HANDLERS) != 0) {
Mark Whitley4e338752001-01-26 20:42:23 +0000187 /* reset SIGWINCH handler to previous (default) */
188 win_changed(0);
189 handlers_sets &= ~SET_WCHG_HANDLERS;
190 }
191 fflush(stdout);
Erik Andersen13456d12000-03-16 08:09:57 +0000192}
193
Mark Whitley4e338752001-01-26 20:42:23 +0000194
Mark Whitley4e338752001-01-26 20:42:23 +0000195/* special for recount position for scroll and remove terminal margin effect */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000196static void cmdedit_set_out_char(int next_char)
197{
198
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000199 int c = (int)((unsigned char) command_ps[cursor]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000200
201 if (c == 0)
Eric Andersenc470f442003-07-28 09:56:35 +0000202 c = ' '; /* destroy end char? */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000203#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenc470f442003-07-28 09:56:35 +0000204 if (!Isprint(c)) { /* Inverse put non-printable characters */
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000205 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000206 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000207 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000208 c += '@';
209 if (c == 127)
210 c = '?';
211 printf("\033[7m%c\033[0m", c);
212 } else
213#endif
Rob Landleyd921b2e2006-08-03 15:41:12 +0000214 if (initial_settings.c_lflag & ECHO) putchar(c);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000215 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000216 /* terminal is scrolled down */
217 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000218 cmdedit_x = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000219
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000220 if (!next_char)
Mark Whitley4e338752001-01-26 20:42:23 +0000221 next_char = ' ';
222 /* destroy "(auto)margin" */
223 putchar(next_char);
224 putchar('\b');
225 }
226 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000227}
228
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000229/* Move to end line. Bonus: rewrite line from cursor */
230static void input_end(void)
231{
232 while (cursor < len)
233 cmdedit_set_out_char(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000234}
235
236/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000237static void goto_new_line(void)
238{
Mark Whitley4e338752001-01-26 20:42:23 +0000239 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000240 if (cmdedit_x)
241 putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000242}
243
244
Rob Landley88621d72006-08-29 19:41:06 +0000245static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000246{
Robert Grieblb2301592002-07-30 23:13:51 +0000247 if ( s )
248 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000249}
Eric Andersen81fe1232003-07-29 06:38:40 +0000250
Rob Landley88621d72006-08-29 19:41:06 +0000251static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000252{
253 putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000254}
255
Eric Andersenaff114c2004-04-14 17:51:38 +0000256/* Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000257/* special for slow terminal */
258static void input_backward(int num)
259{
260 if (num > cursor)
261 num = cursor;
Eric Andersenc470f442003-07-28 09:56:35 +0000262 cursor -= num; /* new cursor (in command, not terminal) */
Erik Andersen13456d12000-03-16 08:09:57 +0000263
Eric Andersenc470f442003-07-28 09:56:35 +0000264 if (cmdedit_x >= num) { /* no to up line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000265 cmdedit_x -= num;
266 if (num < 4)
267 while (num-- > 0)
268 putchar('\b');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000269 else
270 printf("\033[%dD", num);
271 } else {
272 int count_y;
273
274 if (cmdedit_x) {
Eric Andersenc470f442003-07-28 09:56:35 +0000275 putchar('\r'); /* back to first terminal pos. */
276 num -= cmdedit_x; /* set previous backward */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000277 }
278 count_y = 1 + num / cmdedit_termw;
279 printf("\033[%dA", count_y);
280 cmdedit_y -= count_y;
281 /* require forward after uping */
282 cmdedit_x = cmdedit_termw * count_y - num;
Eric Andersenc470f442003-07-28 09:56:35 +0000283 printf("\033[%dC", cmdedit_x); /* set term cursor */
Erik Andersen13456d12000-03-16 08:09:57 +0000284 }
Erik Andersen13456d12000-03-16 08:09:57 +0000285}
286
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000287static void put_prompt(void)
288{
289 out1str(cmdedit_prompt);
Eric Andersenc470f442003-07-28 09:56:35 +0000290 cmdedit_x = cmdedit_prmt_len; /* count real x terminal position */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000291 cursor = 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000292 cmdedit_y = 0; /* new quasireal y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000293}
294
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000295#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000296static void parse_prompt(const char *prmt_ptr)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000297{
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000298 cmdedit_prompt = prmt_ptr;
299 cmdedit_prmt_len = strlen(prmt_ptr);
300 put_prompt();
301}
302#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000303static void parse_prompt(const char *prmt_ptr)
304{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000305 int prmt_len = 0;
"Vladimir N. Oleynik"f0874802005-09-05 15:46:26 +0000306 size_t cur_prmt_len = 0;
Eric Andersene5dfced2001-04-09 22:48:12 +0000307 char flg_not_length = '[';
Rob Landley081e3842006-08-03 20:07:35 +0000308 char *prmt_mem_ptr = xzalloc(1);
Eric Andersene5dfced2001-04-09 22:48:12 +0000309 char *pwd_buf = xgetcwd(0);
310 char buf2[PATH_MAX + 1];
311 char buf[2];
312 char c;
313 char *pbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000314
Eric Andersen5f265b72001-05-11 16:58:46 +0000315 if (!pwd_buf) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000316 pwd_buf=(char *)bb_msg_unknown;
Eric Andersen5f265b72001-05-11 16:58:46 +0000317 }
318
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000319 while (*prmt_ptr) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000320 pbuf = buf;
321 pbuf[1] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000322 c = *prmt_ptr++;
323 if (c == '\\') {
Eric Andersene5dfced2001-04-09 22:48:12 +0000324 const char *cp = prmt_ptr;
325 int l;
Eric Andersenc470f442003-07-28 09:56:35 +0000326
Manuel Novoa III cad53642003-03-19 09:13:01 +0000327 c = bb_process_escape_sequence(&prmt_ptr);
Eric Andersene5dfced2001-04-09 22:48:12 +0000328 if(prmt_ptr==cp) {
329 if (*cp == 0)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000330 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000331 c = *prmt_ptr++;
332 switch (c) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000333#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersene5dfced2001-04-09 22:48:12 +0000334 case 'u':
335 pbuf = user_buf;
336 break;
Eric Andersenc470f442003-07-28 09:56:35 +0000337#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000338 case 'h':
339 pbuf = hostname_buf;
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000340 if (pbuf == 0) {
Rob Landley081e3842006-08-03 20:07:35 +0000341 pbuf = xzalloc(256);
Eric Andersene5dfced2001-04-09 22:48:12 +0000342 if (gethostname(pbuf, 255) < 0) {
343 strcpy(pbuf, "?");
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000344 } else {
Eric Andersene5dfced2001-04-09 22:48:12 +0000345 char *s = strchr(pbuf, '.');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000346
347 if (s)
348 *s = 0;
349 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000350 hostname_buf = pbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000351 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000352 break;
353 case '$':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000354 c = my_euid == 0 ? '#' : '$';
355 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000356#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersene5dfced2001-04-09 22:48:12 +0000357 case 'w':
358 pbuf = pwd_buf;
359 l = strlen(home_pwd_buf);
360 if (home_pwd_buf[0] != 0 &&
361 strncmp(home_pwd_buf, pbuf, l) == 0 &&
362 (pbuf[l]=='/' || pbuf[l]=='\0') &&
363 strlen(pwd_buf+l)<PATH_MAX) {
364 pbuf = buf2;
365 *pbuf = '~';
366 strcpy(pbuf+1, pwd_buf+l);
Denis Vlasenko92758142006-10-03 19:56:34 +0000367 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000368 break;
Eric Andersenc470f442003-07-28 09:56:35 +0000369#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000370 case 'W':
371 pbuf = pwd_buf;
372 cp = strrchr(pbuf,'/');
373 if ( (cp != NULL) && (cp != pbuf) )
374 pbuf += (cp-pbuf)+1;
375 break;
376 case '!':
377 snprintf(pbuf = buf2, sizeof(buf2), "%d", num_ok_lines);
378 break;
379 case 'e': case 'E': /* \e \E = \033 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000380 c = '\033';
381 break;
Eric Andersenc470f442003-07-28 09:56:35 +0000382 case 'x': case 'X':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000383 for (l = 0; l < 3;) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000384 int h;
385 buf2[l++] = *prmt_ptr;
386 buf2[l] = 0;
387 h = strtol(buf2, &pbuf, 16);
388 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000389 l--;
390 break;
391 }
392 prmt_ptr++;
393 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000394 buf2[l] = 0;
395 c = (char)strtol(buf2, 0, 16);
396 if(c==0)
397 c = '?';
398 pbuf = buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000399 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000400 case '[': case ']':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000401 if (c == flg_not_length) {
402 flg_not_length = flg_not_length == '[' ? ']' : '[';
403 continue;
404 }
405 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000406 }
Eric Andersenc470f442003-07-28 09:56:35 +0000407 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000408 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000409 if(pbuf == buf)
410 *pbuf = c;
"Vladimir N. Oleynik"f0874802005-09-05 15:46:26 +0000411 cur_prmt_len = strlen(pbuf);
412 prmt_len += cur_prmt_len;
413 if (flg_not_length != ']')
414 cmdedit_prmt_len += cur_prmt_len;
Eric Andersene5dfced2001-04-09 22:48:12 +0000415 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000416 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000417 if(pwd_buf!=(char *)bb_msg_unknown)
Eric Andersen8f697842001-07-02 15:36:57 +0000418 free(pwd_buf);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000419 cmdedit_prompt = prmt_mem_ptr;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000420 put_prompt();
421}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000422#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000423
424
Eric Andersenaff114c2004-04-14 17:51:38 +0000425/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000426static void redraw(int y, int back_cursor)
427{
Eric Andersenc470f442003-07-28 09:56:35 +0000428 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000429 printf("\033[%dA", y);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000430 putchar('\r');
431 put_prompt();
Eric Andersenc470f442003-07-28 09:56:35 +0000432 input_end(); /* rewrite */
433 printf("\033[J"); /* destroy tail after cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000434 input_backward(back_cursor);
435}
436
Paul Fox3f11b1b2005-08-04 19:04:46 +0000437#ifdef CONFIG_FEATURE_COMMAND_EDITING_VI
Paul Fox0f2dd9f2006-03-07 20:26:11 +0000438#define DELBUFSIZ 128
439static char *delbuf; /* a (malloced) place to store deleted characters */
440static char *delp;
441static char newdelflag; /* whether delbuf should be reused yet */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000442#endif
443
444/* Delete the char in front of the cursor, optionally saving it
445 * for later putback */
446static void input_delete(int save)
Erik Andersenf0657d32000-04-12 17:49:52 +0000447{
Mark Whitley4e338752001-01-26 20:42:23 +0000448 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000449
Mark Whitley4e338752001-01-26 20:42:23 +0000450 if (j == len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000451 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000452
Paul Fox3f11b1b2005-08-04 19:04:46 +0000453#ifdef CONFIG_FEATURE_COMMAND_EDITING_VI
454 if (save) {
455 if (newdelflag) {
Paul Fox0f2dd9f2006-03-07 20:26:11 +0000456 if (!delbuf)
457 delbuf = malloc(DELBUFSIZ);
458 /* safe if malloc fails */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000459 delp = delbuf;
460 newdelflag = 0;
461 }
Paul Fox0f2dd9f2006-03-07 20:26:11 +0000462 if (delbuf && (delp - delbuf < DELBUFSIZ))
Paul Fox3f11b1b2005-08-04 19:04:46 +0000463 *delp++ = command_ps[j];
464 }
465#endif
466
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000467 strcpy(command_ps + j, command_ps + j + 1);
Mark Whitley4e338752001-01-26 20:42:23 +0000468 len--;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000469 input_end(); /* rewrite new line */
Eric Andersenc470f442003-07-28 09:56:35 +0000470 cmdedit_set_out_char(0); /* destroy end char */
471 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000472}
473
Paul Fox3f11b1b2005-08-04 19:04:46 +0000474#ifdef CONFIG_FEATURE_COMMAND_EDITING_VI
475static void put(void)
476{
477 int ocursor, j = delp - delbuf;
478 if (j == 0)
479 return;
480 ocursor = cursor;
481 /* open hole and then fill it */
482 memmove(command_ps + cursor + j, command_ps + cursor, len - cursor + 1);
483 strncpy(command_ps + cursor, delbuf, j);
484 len += j;
485 input_end(); /* rewrite new line */
486 input_backward(cursor-ocursor-j+1); /* at end of new text */
487}
488#endif
489
Mark Whitley4e338752001-01-26 20:42:23 +0000490/* Delete the char in back of the cursor */
491static void input_backspace(void)
492{
493 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000494 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000495 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000496 }
497}
498
499
Eric Andersenaff114c2004-04-14 17:51:38 +0000500/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000501static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000502{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000503 if (cursor < len)
504 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000505}
506
Mark Whitley4e338752001-01-26 20:42:23 +0000507static void cmdedit_setwidth(int w, int redraw_flg)
508{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000509 cmdedit_termw = cmdedit_prmt_len + 2;
Eric Andersen6faae7d2001-02-16 20:09:17 +0000510 if (w <= cmdedit_termw) {
511 cmdedit_termw = cmdedit_termw % w;
512 }
Mark Whitley4e338752001-01-26 20:42:23 +0000513 if (w > cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000514 cmdedit_termw = w;
515
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000516 if (redraw_flg) {
517 /* new y for current cursor */
518 int new_y = (cursor + cmdedit_prmt_len) / w;
Mark Whitley4e338752001-01-26 20:42:23 +0000519
520 /* redraw */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000521 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), len - cursor);
522 fflush(stdout);
Mark Whitley4e338752001-01-26 20:42:23 +0000523 }
Eric Andersenc470f442003-07-28 09:56:35 +0000524 }
Mark Whitley4e338752001-01-26 20:42:23 +0000525}
526
Eric Andersen7467c8d2001-07-12 20:26:32 +0000527static void cmdedit_init(void)
Mark Whitley4e338752001-01-26 20:42:23 +0000528{
Eric Andersen61173a52001-03-19 17:48:55 +0000529 cmdedit_prmt_len = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000530 if ((handlers_sets & SET_WCHG_HANDLERS) == 0) {
531 /* emulate usage handler to set handler and call yours work */
Mark Whitley4e338752001-01-26 20:42:23 +0000532 win_changed(-SIGWINCH);
533 handlers_sets |= SET_WCHG_HANDLERS;
534 }
535
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000536 if ((handlers_sets & SET_ATEXIT) == 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000537#ifdef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000538 struct passwd *entry;
539
540 my_euid = geteuid();
541 entry = getpwuid(my_euid);
542 if (entry) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000543 user_buf = xstrdup(entry->pw_name);
544 home_pwd_buf = xstrdup(entry->pw_dir);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000545 }
546#endif
547
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000548#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000549
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000550#ifndef CONFIG_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000551 my_euid = geteuid();
552#endif
553 my_uid = getuid();
554 my_gid = getgid();
Eric Andersenc470f442003-07-28 09:56:35 +0000555#endif /* CONFIG_FEATURE_COMMAND_TAB_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000556 handlers_sets |= SET_ATEXIT;
Eric Andersenc470f442003-07-28 09:56:35 +0000557 atexit(cmdedit_reset_term); /* be sure to do this only once */
Mark Whitley4e338752001-01-26 20:42:23 +0000558 }
Mark Whitley4e338752001-01-26 20:42:23 +0000559}
Erik Andersenf0657d32000-04-12 17:49:52 +0000560
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000561#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000562
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000563static char **matches;
564static int num_matches;
565static char *add_char_to_match;
566
567static void add_match(char *matched, int add_char)
568{
569 int nm = num_matches;
570 int nm1 = nm + 1;
571
572 matches = xrealloc(matches, nm1 * sizeof(char *));
573 add_char_to_match = xrealloc(add_char_to_match, nm1);
574 matches[nm] = matched;
575 add_char_to_match[nm] = (char)add_char;
576 num_matches++;
577}
578
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000579static int is_execute(const struct stat *st)
Erik Andersen6273f652000-03-17 01:12:41 +0000580{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000581 if ((!my_euid && (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) ||
582 (my_uid == st->st_uid && (st->st_mode & S_IXUSR)) ||
583 (my_gid == st->st_gid && (st->st_mode & S_IXGRP)) ||
584 (st->st_mode & S_IXOTH)) return TRUE;
585 return FALSE;
Erik Andersen6273f652000-03-17 01:12:41 +0000586}
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000587
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000588#ifdef CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000589
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000590static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000591{
592 struct passwd *entry;
593 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000594
Eric Andersenc470f442003-07-28 09:56:35 +0000595 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000596 userlen = strlen(ud);
597
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000598 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000599 char *sav_ud = ud - 1;
600 char *home = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000601 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000602
Eric Andersenc470f442003-07-28 09:56:35 +0000603 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000604 home = home_pwd_buf;
605 } else {
606 /* "~user/..." */
607 temp = strchr(ud, '/');
Eric Andersenc470f442003-07-28 09:56:35 +0000608 *temp = 0; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000609 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000610 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000611 ud = temp;
612 if (entry)
613 home = entry->pw_dir;
614 }
615 if (home) {
616 if ((userlen + strlen(home) + 1) < BUFSIZ) {
Eric Andersenc470f442003-07-28 09:56:35 +0000617 char temp2[BUFSIZ]; /* argument size */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000618
619 /* /home/user/... */
620 sprintf(temp2, "%s%s", home, ud);
621 strcpy(sav_ud, temp2);
622 }
623 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000624 } else {
625 /* "~[^/]*" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000626 setpwent();
627
628 while ((entry = getpwent()) != NULL) {
629 /* Null usernames should result in all users as possible completions. */
630 if ( /*!userlen || */ !strncmp(ud, entry->pw_name, userlen)) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000631 add_match(xasprintf("~%s", entry->pw_name), '/');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000632 }
633 }
634
635 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000636 }
637}
Eric Andersenc470f442003-07-28 09:56:35 +0000638#endif /* CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000639
640enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000641 FIND_EXE_ONLY = 0,
642 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000643 FIND_FILE_ONLY = 2,
644};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000645
Glenn L McGrath67285962004-01-14 09:34:51 +0000646#ifdef CONFIG_ASH
647const char *cmdedit_path_lookup;
648#else
649#define cmdedit_path_lookup getenv("PATH")
650#endif
651
Mark Whitley4e338752001-01-26 20:42:23 +0000652static int path_parse(char ***p, int flags)
653{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000654 int npth;
Glenn L McGrath67285962004-01-14 09:34:51 +0000655 const char *tmp;
656 const char *pth;
Mark Whitley4e338752001-01-26 20:42:23 +0000657
Mark Whitley4e338752001-01-26 20:42:23 +0000658 /* if not setenv PATH variable, to search cur dir "." */
Glenn L McGrath67285962004-01-14 09:34:51 +0000659 if (flags != FIND_EXE_ONLY || (pth = cmdedit_path_lookup) == 0 ||
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000660 /* PATH=<empty> or PATH=:<empty> */
661 *pth == 0 || (*pth == ':' && *(pth + 1) == 0)) {
Mark Whitley4e338752001-01-26 20:42:23 +0000662 return 1;
663 }
664
665 tmp = pth;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000666 npth = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000667
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000668 for (;;) {
Eric Andersenc470f442003-07-28 09:56:35 +0000669 npth++; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000670 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000671 if (tmp) {
672 if (*++tmp == 0)
Eric Andersenc470f442003-07-28 09:56:35 +0000673 break; /* :<empty> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000674 } else
Mark Whitley4e338752001-01-26 20:42:23 +0000675 break;
676 }
677
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000678 *p = xmalloc(npth * sizeof(char *));
Mark Whitley4e338752001-01-26 20:42:23 +0000679
680 tmp = pth;
Rob Landleyd921b2e2006-08-03 15:41:12 +0000681 (*p)[0] = xstrdup(tmp);
Eric Andersenc470f442003-07-28 09:56:35 +0000682 npth = 1; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000683
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000684 for (;;) {
Mark Whitley4e338752001-01-26 20:42:23 +0000685 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000686 if (tmp) {
Eric Andersenc470f442003-07-28 09:56:35 +0000687 (*p)[0][(tmp - pth)] = 0; /* ':' -> '\0' */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000688 if (*++tmp == 0)
Eric Andersenc470f442003-07-28 09:56:35 +0000689 break; /* :<empty> */
Mark Whitley4e338752001-01-26 20:42:23 +0000690 } else
691 break;
Eric Andersenc470f442003-07-28 09:56:35 +0000692 (*p)[npth++] = &(*p)[0][(tmp - pth)]; /* p[next]=p[0][&'\0'+1] */
Mark Whitley4e338752001-01-26 20:42:23 +0000693 }
694
695 return npth;
696}
697
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000698static char *add_quote_for_spec_chars(char *found, int add)
Erik Andersen6273f652000-03-17 01:12:41 +0000699{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000700 int l = 0;
701 char *s = xmalloc((strlen(found) + 1) * 2);
702
703 while (*found) {
704 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
705 s[l++] = '\\';
706 s[l++] = *found++;
707 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000708 if(add)
Denis Vlasenko92758142006-10-03 19:56:34 +0000709 s[l++] = (char)add;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000710 s[l] = 0;
711 return s;
712}
713
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000714static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000715{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000716 DIR *dir;
717 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000718 char dirbuf[BUFSIZ];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000719 struct stat st;
720 char *path1[1];
721 char **paths = path1;
722 int npaths;
723 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000724 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000725 char *pfind = strrchr(command, '/');
Mark Whitley4e338752001-01-26 20:42:23 +0000726
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000727 path1[0] = ".";
Mark Whitley4e338752001-01-26 20:42:23 +0000728
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000729 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000730 /* no dir, if flags==EXE_ONLY - get paths, else "." */
731 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000732 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000733 } else {
734 /* with dir */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000735 /* save for change */
736 strcpy(dirbuf, command);
737 /* set dir only */
738 dirbuf[(pfind - command) + 1] = 0;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000739#ifdef CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000740 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000741 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000742#endif
743 /* "strip" dirname in command */
744 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000745
Mark Whitley4e338752001-01-26 20:42:23 +0000746 paths[0] = dirbuf;
Eric Andersenc470f442003-07-28 09:56:35 +0000747 npaths = 1; /* only 1 dir */
Mark Whitley4e338752001-01-26 20:42:23 +0000748 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000749
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000750 for (i = 0; i < npaths; i++) {
Erik Andersenc7c634b2000-03-19 05:28:55 +0000751
Mark Whitley4e338752001-01-26 20:42:23 +0000752 dir = opendir(paths[i]);
Eric Andersenc470f442003-07-28 09:56:35 +0000753 if (!dir) /* Don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000754 continue;
755
756 while ((next = readdir(dir)) != NULL) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000757 char *str_found = next->d_name;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000758 int add_chr = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000759
Mark Whitley4e338752001-01-26 20:42:23 +0000760 /* matched ? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000761 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000762 continue;
763 /* not see .name without .match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000764 if (*str_found == '.' && *pfind == 0) {
765 if (*paths[i] == '/' && paths[i][1] == 0
Eric Andersenc470f442003-07-28 09:56:35 +0000766 && str_found[1] == 0) str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000767 else
Mark Whitley4e338752001-01-26 20:42:23 +0000768 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000769 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000770 found = concat_path_file(paths[i], str_found);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000771 /* hmm, remover in progress? */
Eric Andersenc470f442003-07-28 09:56:35 +0000772 if (stat(found, &st) < 0)
Eric Andersene5dfced2001-04-09 22:48:12 +0000773 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000774 /* find with dirs ? */
775 if (paths[i] != dirbuf)
Eric Andersenc470f442003-07-28 09:56:35 +0000776 strcpy(found, next->d_name); /* only name */
Mark Whitley4e338752001-01-26 20:42:23 +0000777 if (S_ISDIR(st.st_mode)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000778 /* name is directory */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000779 char *e = found + strlen(found) - 1;
780
781 add_chr = '/';
782 if(*e == '/')
783 *e = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +0000784 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000785 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000786 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000787 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000788 if (type == FIND_FILE_ONLY ||
Matt Kraai1f0c4362001-12-20 23:13:26 +0000789 (type == FIND_EXE_ONLY && is_execute(&st)))
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000790 add_chr = ' ';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000791 }
Mark Whitley4e338752001-01-26 20:42:23 +0000792 /* Add it to the list */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000793 add_match(found, add_chr);
794 continue;
Eric Andersene5dfced2001-04-09 22:48:12 +0000795cont:
796 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000797 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000798 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000799 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000800 if (paths != path1) {
Eric Andersenc470f442003-07-28 09:56:35 +0000801 free(paths[0]); /* allocated memory only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000802 free(paths);
803 }
Erik Andersen6273f652000-03-17 01:12:41 +0000804}
Erik Andersenf0657d32000-04-12 17:49:52 +0000805
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000806
807#define QUOT (UCHAR_MAX+1)
808
809#define collapse_pos(is, in) { \
Paul Fox574fee42005-07-19 20:41:06 +0000810 memmove(int_buf+(is), int_buf+(in), (BUFSIZ+1-(is)-(in))*sizeof(int)); \
811 memmove(pos_buf+(is), pos_buf+(in), (BUFSIZ+1-(is)-(in))*sizeof(int)); }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000812
813static int find_match(char *matchBuf, int *len_with_quotes)
814{
815 int i, j;
816 int command_mode;
817 int c, c2;
818 int int_buf[BUFSIZ + 1];
819 int pos_buf[BUFSIZ + 1];
820
821 /* set to integer dimension characters and own positions */
822 for (i = 0;; i++) {
823 int_buf[i] = (int) ((unsigned char) matchBuf[i]);
824 if (int_buf[i] == 0) {
Eric Andersenc470f442003-07-28 09:56:35 +0000825 pos_buf[i] = -1; /* indicator end line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000826 break;
827 } else
828 pos_buf[i] = i;
829 }
830
831 /* mask \+symbol and convert '\t' to ' ' */
832 for (i = j = 0; matchBuf[i]; i++, j++)
833 if (matchBuf[i] == '\\') {
834 collapse_pos(j, j + 1);
835 int_buf[j] |= QUOT;
836 i++;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000837#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenc470f442003-07-28 09:56:35 +0000838 if (matchBuf[i] == '\t') /* algorithm equivalent */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000839 int_buf[j] = ' ' | QUOT;
840#endif
841 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000842#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000843 else if (matchBuf[i] == '\t')
844 int_buf[j] = ' ';
845#endif
846
847 /* mask "symbols" or 'symbols' */
848 c2 = 0;
849 for (i = 0; int_buf[i]; i++) {
850 c = int_buf[i];
851 if (c == '\'' || c == '"') {
852 if (c2 == 0)
853 c2 = c;
854 else {
855 if (c == c2)
856 c2 = 0;
857 else
858 int_buf[i] |= QUOT;
859 }
860 } else if (c2 != 0 && c != '$')
861 int_buf[i] |= QUOT;
862 }
863
864 /* skip commands with arguments if line have commands delimiters */
865 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
866 for (i = 0; int_buf[i]; i++) {
867 c = int_buf[i];
868 c2 = int_buf[i + 1];
869 j = i ? int_buf[i - 1] : -1;
870 command_mode = 0;
871 if (c == ';' || c == '&' || c == '|') {
872 command_mode = 1 + (c == c2);
873 if (c == '&') {
874 if (j == '>' || j == '<')
875 command_mode = 0;
876 } else if (c == '|' && j == '>')
877 command_mode = 0;
878 }
879 if (command_mode) {
880 collapse_pos(0, i + command_mode);
Eric Andersenc470f442003-07-28 09:56:35 +0000881 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000882 }
883 }
884 /* collapse `command...` */
885 for (i = 0; int_buf[i]; i++)
886 if (int_buf[i] == '`') {
887 for (j = i + 1; int_buf[j]; j++)
888 if (int_buf[j] == '`') {
889 collapse_pos(i, j + 1);
890 j = 0;
891 break;
892 }
893 if (j) {
894 /* not found close ` - command mode, collapse all previous */
895 collapse_pos(0, i + 1);
896 break;
897 } else
Eric Andersenc470f442003-07-28 09:56:35 +0000898 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000899 }
900
901 /* collapse (command...(command...)...) or {command...{command...}...} */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000902 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000903 c2 = 0;
904 for (i = 0; int_buf[i]; i++)
905 if (int_buf[i] == '(' || int_buf[i] == '{') {
906 if (int_buf[i] == '(')
907 c++;
908 else
909 c2++;
910 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000911 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000912 }
913 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
914 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
915 if (int_buf[i] == ')')
916 c--;
917 else
918 c2--;
919 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000920 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000921 }
922
923 /* skip first not quote space */
924 for (i = 0; int_buf[i]; i++)
925 if (int_buf[i] != ' ')
926 break;
927 if (i)
928 collapse_pos(0, i);
929
930 /* set find mode for completion */
931 command_mode = FIND_EXE_ONLY;
932 for (i = 0; int_buf[i]; i++)
933 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
934 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000935 && matchBuf[pos_buf[0]]=='c'
936 && matchBuf[pos_buf[1]]=='d' )
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000937 command_mode = FIND_DIR_ONLY;
938 else {
939 command_mode = FIND_FILE_ONLY;
940 break;
941 }
942 }
943 /* "strlen" */
944 for (i = 0; int_buf[i]; i++);
945 /* find last word */
946 for (--i; i >= 0; i--) {
947 c = int_buf[i];
948 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
949 collapse_pos(0, i + 1);
950 break;
951 }
952 }
953 /* skip first not quoted '\'' or '"' */
954 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++);
955 /* collapse quote or unquote // or /~ */
Eric Andersenc470f442003-07-28 09:56:35 +0000956 while ((int_buf[i] & ~QUOT) == '/' &&
Mark Whitley7e5291f2001-03-08 19:31:12 +0000957 ((int_buf[i + 1] & ~QUOT) == '/'
958 || (int_buf[i + 1] & ~QUOT) == '~')) {
959 i++;
960 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000961
962 /* set only match and destroy quotes */
963 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000964 for (c = 0; pos_buf[i] >= 0; i++) {
965 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000966 j = pos_buf[i] + 1;
967 }
Eric Andersen4f990532001-05-31 17:15:57 +0000968 matchBuf[c] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000969 /* old lenght matchBuf with quotes symbols */
970 *len_with_quotes = j ? j - pos_buf[0] : 0;
971
972 return command_mode;
973}
974
Glenn L McGrath4d001292003-01-06 01:11:50 +0000975/*
976 display by column original ideas from ls applet,
977 very optimize by my :)
978*/
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000979static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000980{
981 int ncols, row;
982 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000983 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000984 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000985 char str_add_chr[2];
986 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000987
988 /* find the longest file name- use that as the column width */
989 for (row = 0; row < nrows; row++) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000990 l = strlen(matches[row]);
991 if(add_char_to_match[row])
Denis Vlasenko92758142006-10-03 19:56:34 +0000992 l++;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000993 if (column_width < l)
994 column_width = l;
995 }
996 column_width += 2; /* min space for columns */
997 ncols = cmdedit_termw / column_width;
998
999 if (ncols > 1) {
1000 nrows /= ncols;
1001 if(nfiles % ncols)
1002 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001003 } else {
1004 ncols = 1;
1005 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001006 str_add_chr[1] = 0;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001007 for (row = 0; row < nrows; row++) {
1008 int n = row;
1009 int nc;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001010 int acol;
Glenn L McGrath4d001292003-01-06 01:11:50 +00001011
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001012 for(nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
1013 str_add_chr[0] = add_char_to_match[n];
1014 acol = str_add_chr[0] ? column_width - 1 : column_width;
1015 printf("%s%s", matches[n], str_add_chr);
1016 l = strlen(matches[n]);
1017 while(l < acol) {
Denis Vlasenko92758142006-10-03 19:56:34 +00001018 putchar(' ');
1019 l++;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001020 }
1021 }
1022 str_add_chr[0] = add_char_to_match[n];
1023 printf("%s%s\n", matches[n], str_add_chr);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001024 }
1025}
1026
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001027
1028static void input_tab(int *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001029{
1030 /* Do TAB completion */
Eric Andersenc470f442003-07-28 09:56:35 +00001031 if (lastWasTab == 0) { /* free all memory */
Erik Andersenf0657d32000-04-12 17:49:52 +00001032 if (matches) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001033 while (num_matches > 0)
Mark Whitley4e338752001-01-26 20:42:23 +00001034 free(matches[--num_matches]);
Erik Andersenf0657d32000-04-12 17:49:52 +00001035 free(matches);
1036 matches = (char **) NULL;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001037 free(add_char_to_match);
1038 add_char_to_match = NULL;
Erik Andersenf0657d32000-04-12 17:49:52 +00001039 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001040 return;
1041 }
Matt Kraai1f0c4362001-12-20 23:13:26 +00001042 if (! *lastWasTab) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001043
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001044 char *tmp, *tmp1;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001045 int len_found;
1046 char matchBuf[BUFSIZ];
1047 int find_type;
1048 int recalc_pos;
1049
Eric Andersenc470f442003-07-28 09:56:35 +00001050 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001051
1052 /* Make a local copy of the string -- up
1053 * to the position of the cursor */
1054 tmp = strncpy(matchBuf, command_ps, cursor);
1055 tmp[cursor] = 0;
1056
1057 find_type = find_match(matchBuf, &recalc_pos);
1058
1059 /* Free up any memory already allocated */
1060 input_tab(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001061
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001062#ifdef CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001063 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001064 * then try completing this word as a username. */
1065
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001066 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001067 username_tab_completion(matchBuf, NULL);
1068 if (!matches)
Mark Whitley4e338752001-01-26 20:42:23 +00001069#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001070 /* Try to match any executable in our path and everything
Erik Andersenf0657d32000-04-12 17:49:52 +00001071 * in the current working directory that matches. */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001072 exe_n_cwd_tab_completion(matchBuf, find_type);
1073 /* Remove duplicate found and sort */
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001074 if(matches) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001075 int i, j, n, srt;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001076 /* bubble */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001077 n = num_matches;
Denis Vlasenko92758142006-10-03 19:56:34 +00001078 for(i=0; i<(n-1); i++) {
1079 for(j=i+1; j<n; j++) {
1080 if(matches[i]!=NULL && matches[j]!=NULL) {
1081 srt = strcmp(matches[i], matches[j]);
1082 if(srt == 0) {
1083 free(matches[j]);
1084 matches[j]=0;
1085 } else if(srt > 0) {
1086 tmp1 = matches[i];
1087 matches[i] = matches[j];
1088 matches[j] = tmp1;
1089 srt = add_char_to_match[i];
1090 add_char_to_match[i] = add_char_to_match[j];
1091 add_char_to_match[j] = srt;
1092 }
1093 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001094 }
Denis Vlasenko92758142006-10-03 19:56:34 +00001095 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001096 j = n;
1097 n = 0;
1098 for(i=0; i<j; i++)
Denis Vlasenko92758142006-10-03 19:56:34 +00001099 if(matches[i]) {
1100 matches[n]=matches[i];
1101 add_char_to_match[n]=add_char_to_match[i];
1102 n++;
1103 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001104 num_matches = n;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001105 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001106 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001107 if (!matches || num_matches > 1) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001108
Mark Whitley4e338752001-01-26 20:42:23 +00001109 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001110 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +00001111 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001112 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001113 tmp1 = xstrdup(matches[0]);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001114 for (tmp = tmp1; *tmp; tmp++)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001115 for (len_found = 1; len_found < num_matches; len_found++)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001116 if (matches[len_found][(tmp - tmp1)] != *tmp) {
1117 *tmp = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001118 break;
1119 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001120 if (*tmp1 == 0) { /* have unique */
1121 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001122 return;
1123 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001124 tmp = add_quote_for_spec_chars(tmp1, 0);
1125 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +00001126 } else { /* one match */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001127 tmp = add_quote_for_spec_chars(matches[0], add_char_to_match[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001128 /* for next completion current found */
1129 *lastWasTab = FALSE;
Mark Whitley4e338752001-01-26 20:42:23 +00001130 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001131 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +00001132 /* have space to placed match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001133 if ((len_found - strlen(matchBuf) + len) < BUFSIZ) {
Mark Whitley4e338752001-01-26 20:42:23 +00001134
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001135 /* before word for match */
1136 command_ps[cursor - recalc_pos] = 0;
1137 /* save tail line */
1138 strcpy(matchBuf, command_ps + cursor);
1139 /* add match */
1140 strcat(command_ps, tmp);
1141 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +00001142 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001143 /* back to begin word for match */
1144 input_backward(recalc_pos);
1145 /* new pos */
1146 recalc_pos = cursor + len_found;
1147 /* new len */
1148 len = strlen(command_ps);
1149 /* write out the matched command */
Eric Andersen4f990532001-05-31 17:15:57 +00001150 redraw(cmdedit_y, len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001151 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001152 free(tmp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001153 } else {
1154 /* Ok -- the last char was a TAB. Since they
1155 * just hit TAB again, print a list of all the
1156 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001157 if (matches && num_matches > 0) {
Eric Andersenc470f442003-07-28 09:56:35 +00001158 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +00001159
1160 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001161 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001162 showfiles();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001163 redraw(0, len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001164 }
1165 }
1166}
Eric Andersenc470f442003-07-28 09:56:35 +00001167#endif /* CONFIG_FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001168
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001169#if MAX_HISTORY >= 1
1170static void get_previous_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001171{
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001172 if(command_ps[0] != 0 || history[cur_history] == 0) {
1173 free(history[cur_history]);
Rob Landleyd921b2e2006-08-03 15:41:12 +00001174 history[cur_history] = xstrdup(command_ps);
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001175 }
1176 cur_history--;
Erik Andersenf0657d32000-04-12 17:49:52 +00001177}
1178
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001179static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001180{
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001181 int ch = cur_history;
1182
1183 if (ch < n_history) {
1184 get_previous_history(); /* save the current history line */
1185 return (cur_history = ch+1);
1186 } else {
1187 beep();
1188 return 0;
1189 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001190}
Robert Griebl350d26b2002-12-03 22:45:46 +00001191
Robert Griebl350d26b2002-12-03 22:45:46 +00001192#ifdef CONFIG_FEATURE_COMMAND_SAVEHISTORY
Rob Landleydfba7412006-03-06 20:47:33 +00001193void load_history ( const char *fromfile )
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001194{
Robert Griebl350d26b2002-12-03 22:45:46 +00001195 FILE *fp;
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001196 int hi;
Robert Griebl350d26b2002-12-03 22:45:46 +00001197
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001198 /* cleanup old */
1199
1200 for(hi = n_history; hi > 0; ) {
1201 hi--;
1202 free ( history [hi] );
Robert Griebl350d26b2002-12-03 22:45:46 +00001203 }
1204
1205 if (( fp = fopen ( fromfile, "r" ))) {
Eric Andersenc470f442003-07-28 09:56:35 +00001206
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001207 for ( hi = 0; hi < MAX_HISTORY; ) {
Denis Vlasenko2d5ca602006-10-12 22:43:20 +00001208 char * hl = xmalloc_getline(fp);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001209 int l;
1210
1211 if(!hl)
Robert Griebl350d26b2002-12-03 22:45:46 +00001212 break;
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001213 l = strlen(hl);
1214 if(l >= BUFSIZ)
1215 hl[BUFSIZ-1] = 0;
1216 if(l == 0 || hl[0] == ' ') {
1217 free(hl);
1218 continue;
1219 }
1220 history [hi++] = hl;
Robert Griebl350d26b2002-12-03 22:45:46 +00001221 }
1222 fclose ( fp );
1223 }
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001224 cur_history = n_history = hi;
Robert Griebl350d26b2002-12-03 22:45:46 +00001225}
1226
Rob Landleydfba7412006-03-06 20:47:33 +00001227void save_history ( const char *tofile )
Robert Griebl350d26b2002-12-03 22:45:46 +00001228{
Robert Griebl350d26b2002-12-03 22:45:46 +00001229 FILE *fp = fopen ( tofile, "w" );
Eric Andersenc470f442003-07-28 09:56:35 +00001230
Robert Griebl350d26b2002-12-03 22:45:46 +00001231 if ( fp ) {
1232 int i;
Eric Andersenc470f442003-07-28 09:56:35 +00001233
Robert Griebl350d26b2002-12-03 22:45:46 +00001234 for ( i = 0; i < n_history; i++ ) {
Eric Andersen27bb7902003-12-23 20:24:51 +00001235 fprintf(fp, "%s\n", history [i]);
Robert Griebl350d26b2002-12-03 22:45:46 +00001236 }
1237 fclose ( fp );
1238 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001239}
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001240#endif
Robert Griebl350d26b2002-12-03 22:45:46 +00001241
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001242#endif
Erik Andersenf0657d32000-04-12 17:49:52 +00001243
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001244enum {
1245 ESC = 27,
1246 DEL = 127,
1247};
1248
1249
Erik Andersen6273f652000-03-17 01:12:41 +00001250/*
1251 * This function is used to grab a character buffer
1252 * from the input file descriptor and allows you to
Eric Andersen9b3ce772004-04-12 15:03:51 +00001253 * a string with full command editing (sort of like
Erik Andersen6273f652000-03-17 01:12:41 +00001254 * a mini readline).
1255 *
1256 * The following standard commands are not implemented:
1257 * ESC-b -- Move back one word
1258 * ESC-f -- Move forward one word
1259 * ESC-d -- Delete back one word
1260 * ESC-h -- Delete forward one word
1261 * CTL-t -- Transpose two characters
1262 *
Paul Fox3f11b1b2005-08-04 19:04:46 +00001263 * Minimalist vi-style command line editing available if configured.
1264 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001265 *
Erik Andersen6273f652000-03-17 01:12:41 +00001266 */
Eric Andersenc470f442003-07-28 09:56:35 +00001267
Paul Fox3f11b1b2005-08-04 19:04:46 +00001268#ifdef CONFIG_FEATURE_COMMAND_EDITING_VI
1269static int vi_mode;
1270
1271void setvimode ( int viflag )
1272{
1273 vi_mode = viflag;
1274}
1275
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001276static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001277vi_Word_motion(char *command, int eat)
1278{
1279 while (cursor < len && !isspace(command[cursor]))
1280 input_forward();
1281 if (eat) while (cursor < len && isspace(command[cursor]))
1282 input_forward();
1283}
1284
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001285static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001286vi_word_motion(char *command, int eat)
1287{
1288 if (isalnum(command[cursor]) || command[cursor] == '_') {
1289 while (cursor < len &&
1290 (isalnum(command[cursor+1]) ||
1291 command[cursor+1] == '_'))
1292 input_forward();
1293 } else if (ispunct(command[cursor])) {
1294 while (cursor < len &&
1295 (ispunct(command[cursor+1])))
1296 input_forward();
1297 }
1298
1299 if (cursor < len)
1300 input_forward();
1301
1302 if (eat && cursor < len && isspace(command[cursor]))
1303 while (cursor < len && isspace(command[cursor]))
1304 input_forward();
1305}
1306
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001307static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001308vi_End_motion(char *command)
1309{
1310 input_forward();
1311 while (cursor < len && isspace(command[cursor]))
1312 input_forward();
1313 while (cursor < len-1 && !isspace(command[cursor+1]))
1314 input_forward();
1315}
1316
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001317static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001318vi_end_motion(char *command)
1319{
1320 if (cursor >= len-1)
1321 return;
1322 input_forward();
1323 while (cursor < len-1 && isspace(command[cursor]))
1324 input_forward();
1325 if (cursor >= len-1)
1326 return;
1327 if (isalnum(command[cursor]) || command[cursor] == '_') {
1328 while (cursor < len-1 &&
1329 (isalnum(command[cursor+1]) ||
1330 command[cursor+1] == '_'))
1331 input_forward();
1332 } else if (ispunct(command[cursor])) {
1333 while (cursor < len-1 &&
1334 (ispunct(command[cursor+1])))
1335 input_forward();
1336 }
1337}
1338
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001339static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001340vi_Back_motion(char *command)
1341{
1342 while (cursor > 0 && isspace(command[cursor-1]))
1343 input_backward(1);
1344 while (cursor > 0 && !isspace(command[cursor-1]))
1345 input_backward(1);
1346}
1347
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001348static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001349vi_back_motion(char *command)
1350{
1351 if (cursor <= 0)
1352 return;
1353 input_backward(1);
1354 while (cursor > 0 && isspace(command[cursor]))
1355 input_backward(1);
1356 if (cursor <= 0)
1357 return;
1358 if (isalnum(command[cursor]) || command[cursor] == '_') {
1359 while (cursor > 0 &&
1360 (isalnum(command[cursor-1]) ||
1361 command[cursor-1] == '_'))
1362 input_backward(1);
1363 } else if (ispunct(command[cursor])) {
1364 while (cursor > 0 &&
1365 (ispunct(command[cursor-1])))
1366 input_backward(1);
1367 }
1368}
1369#endif
1370
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001371/*
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001372 * the emacs and vi modes share much of the code in the big
1373 * command loop. commands entered when in vi's command mode (aka
1374 * "escape mode") get an extra bit added to distinguish them --
1375 * this keeps them from being self-inserted. this clutters the
1376 * big switch a bit, but keeps all the code in one place.
Paul Fox3f11b1b2005-08-04 19:04:46 +00001377 */
1378
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001379#define vbit 0x100
1380
1381/* leave out the "vi-mode"-only case labels if vi editing isn't
1382 * configured. */
1383#define vi_case(caselabel) USE_FEATURE_COMMAND_EDITING(caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001384
1385/* convert uppercase ascii to equivalent control char, for readability */
1386#define CNTRL(uc_char) ((uc_char) - 0x40)
1387
Eric Andersen044228d2001-07-17 01:12:36 +00001388
1389int cmdedit_read_input(char *prompt, char command[BUFSIZ])
Erik Andersen13456d12000-03-16 08:09:57 +00001390{
1391
Erik Andersenc7c634b2000-03-19 05:28:55 +00001392 int break_out = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001393 int lastWasTab = FALSE;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001394 unsigned char c;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001395 unsigned int ic;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001396#ifdef CONFIG_FEATURE_COMMAND_EDITING_VI
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001397 unsigned int prevc;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001398 int vi_cmdmode = 0;
1399#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001400 /* prepare before init handlers */
Eric Andersenc470f442003-07-28 09:56:35 +00001401 cmdedit_y = 0; /* quasireal y, not true work if line > xt*yt */
Mark Whitley4e338752001-01-26 20:42:23 +00001402 len = 0;
Mark Whitley4e338752001-01-26 20:42:23 +00001403 command_ps = command;
1404
Eric Andersen34506362001-08-02 05:02:46 +00001405 getTermSettings(0, (void *) &initial_settings);
1406 memcpy(&new_settings, &initial_settings, sizeof(struct termios));
1407 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1408 /* Turn off echoing and CTRL-C, so we can trap it */
1409 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Eric Andersen34506362001-08-02 05:02:46 +00001410 /* Hmm, in linux c_cc[] not parsed if set ~ICANON */
1411 new_settings.c_cc[VMIN] = 1;
1412 new_settings.c_cc[VTIME] = 0;
1413 /* Turn off CTRL-C, so we can trap it */
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001414# ifndef _POSIX_VDISABLE
1415# define _POSIX_VDISABLE '\0'
1416# endif
Eric Andersenc470f442003-07-28 09:56:35 +00001417 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001418 command[0] = 0;
1419
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001420 setTermSettings(0, (void *) &new_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001421 handlers_sets |= SET_RESET_TERM;
Erik Andersen13456d12000-03-16 08:09:57 +00001422
Eric Andersen6faae7d2001-02-16 20:09:17 +00001423 /* Now initialize things */
1424 cmdedit_init();
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001425 /* Print out the command prompt */
1426 parse_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001427
Erik Andersenc7c634b2000-03-19 05:28:55 +00001428 while (1) {
Erik Andersen6273f652000-03-17 01:12:41 +00001429
Eric Andersenc470f442003-07-28 09:56:35 +00001430 fflush(stdout); /* buffered out to fast */
Mark Whitley4e338752001-01-26 20:42:23 +00001431
Eric Andersen7467c8d2001-07-12 20:26:32 +00001432 if (safe_read(0, &c, 1) < 1)
Eric Andersened424db2001-04-23 15:28:28 +00001433 /* if we can't read input then exit */
1434 goto prepare_to_die;
Erik Andersenf3b3d172000-04-09 18:24:05 +00001435
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001436 ic = c;
1437
Paul Fox3f11b1b2005-08-04 19:04:46 +00001438#ifdef CONFIG_FEATURE_COMMAND_EDITING_VI
1439 newdelflag = 1;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001440 if (vi_cmdmode)
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001441 ic |= vbit;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001442#endif
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001443 switch (ic)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001444 {
Erik Andersenf0657d32000-04-12 17:49:52 +00001445 case '\n':
1446 case '\r':
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001447 vi_case( case '\n'|vbit: )
1448 vi_case( case '\r'|vbit: )
Erik Andersenf0657d32000-04-12 17:49:52 +00001449 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001450 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001451 break_out = 1;
1452 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001453 case CNTRL('A'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001454 vi_case( case '0'|vbit: )
Erik Andersenc7c634b2000-03-19 05:28:55 +00001455 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001456 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001457 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001458 case CNTRL('B'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001459 vi_case( case 'h'|vbit: )
1460 vi_case( case '\b'|vbit: )
1461 vi_case( case DEL|vbit: )
Erik Andersenf0657d32000-04-12 17:49:52 +00001462 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001463 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001464 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001465 case CNTRL('C'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001466 vi_case( case CNTRL('C')|vbit: )
Eric Andersen86349772000-12-18 20:25:50 +00001467 /* Control-c -- stop gathering input */
Mark Whitley4e338752001-01-26 20:42:23 +00001468 goto_new_line();
Glenn L McGrath16e45d72004-02-04 08:24:39 +00001469#ifndef CONFIG_ASH
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001470 command[0] = 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +00001471 len = 0;
1472 lastWasTab = FALSE;
1473 put_prompt();
Glenn L McGrath16e45d72004-02-04 08:24:39 +00001474#else
1475 len = 0;
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001476 break_out = -1; /* to control traps */
Glenn L McGrath16e45d72004-02-04 08:24:39 +00001477#endif
Eric Andersen7467c8d2001-07-12 20:26:32 +00001478 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001479 case CNTRL('D'):
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001480 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001481 * if the len=0 and no chars to delete */
1482 if (len == 0) {
Eric Andersencb01bb12004-08-19 18:22:13 +00001483 errno = 0;
Eric Andersened424db2001-04-23 15:28:28 +00001484prepare_to_die:
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001485#if !defined(CONFIG_ASH)
Mark Whitley4e338752001-01-26 20:42:23 +00001486 printf("exit");
Eric Andersen7467c8d2001-07-12 20:26:32 +00001487 goto_new_line();
1488 /* cmdedit_reset_term() called in atexit */
1489 exit(EXIT_SUCCESS);
Eric Andersen044228d2001-07-17 01:12:36 +00001490#else
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001491 /* to control stopped jobs */
1492 len = break_out = -1;
Eric Andersen044228d2001-07-17 01:12:36 +00001493 break;
1494#endif
Erik Andersenf0657d32000-04-12 17:49:52 +00001495 } else {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001496 input_delete(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001497 }
1498 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001499 case CNTRL('E'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001500 vi_case( case '$'|vbit: )
Erik Andersenc7c634b2000-03-19 05:28:55 +00001501 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001502 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001503 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001504 case CNTRL('F'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001505 vi_case( case 'l'|vbit: )
1506 vi_case( case ' '|vbit: )
Erik Andersenc7c634b2000-03-19 05:28:55 +00001507 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001508 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001509 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001510 case '\b':
1511 case DEL:
Erik Andersen1d1d9502000-04-21 01:26:49 +00001512 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001513 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001514 break;
1515 case '\t':
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001516#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001517 input_tab(&lastWasTab);
Erik Andersena2685732000-04-09 18:27:46 +00001518#endif
Erik Andersenc7c634b2000-03-19 05:28:55 +00001519 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001520 case CNTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00001521 /* Control-k -- clear to end of line */
Eric Andersen65a07302002-04-13 13:26:49 +00001522 *(command + cursor) = 0;
1523 len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001524 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001525 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001526 case CNTRL('L'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001527 vi_case( case CNTRL('L')|vbit: )
Eric Andersen27bb7902003-12-23 20:24:51 +00001528 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001529 printf("\033[H");
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001530 redraw(0, len-cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001531 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001532#if MAX_HISTORY >= 1
Paul Fox3f11b1b2005-08-04 19:04:46 +00001533 case CNTRL('N'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001534 vi_case( case CNTRL('N')|vbit: )
1535 vi_case( case 'j'|vbit: )
Erik Andersenf0657d32000-04-12 17:49:52 +00001536 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001537 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001538 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001539 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001540 case CNTRL('P'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001541 vi_case( case CNTRL('P')|vbit: )
1542 vi_case( case 'k'|vbit: )
Erik Andersenf0657d32000-04-12 17:49:52 +00001543 /* Control-p -- Get previous command from history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001544 if (cur_history > 0) {
1545 get_previous_history();
Erik Andersenf0657d32000-04-12 17:49:52 +00001546 goto rewrite_line;
1547 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001548 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001549 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001550 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001551#endif
Paul Fox3f11b1b2005-08-04 19:04:46 +00001552 case CNTRL('U'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001553 vi_case( case CNTRL('U')|vbit: )
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001554 /* Control-U -- Clear line before cursor */
1555 if (cursor) {
1556 strcpy(command, command + cursor);
1557 redraw(cmdedit_y, len -= cursor);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001558 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001559 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001560 case CNTRL('W'):
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001561 vi_case( case CNTRL('W')|vbit: )
Eric Andersen27bb7902003-12-23 20:24:51 +00001562 /* Control-W -- Remove the last word */
1563 while (cursor > 0 && isspace(command[cursor-1]))
1564 input_backspace();
1565 while (cursor > 0 &&!isspace(command[cursor-1]))
1566 input_backspace();
1567 break;
Denis Vlasenko966ec7c2006-11-01 09:13:26 +00001568#if ENABLE_FEATURE_COMMAND_EDITING_VI
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001569 case 'i'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001570 vi_cmdmode = 0;
1571 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001572 case 'I'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001573 input_backward(cursor);
1574 vi_cmdmode = 0;
1575 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001576 case 'a'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001577 input_forward();
1578 vi_cmdmode = 0;
1579 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001580 case 'A'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001581 input_end();
1582 vi_cmdmode = 0;
1583 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001584 case 'x'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001585 input_delete(1);
1586 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001587 case 'X'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001588 if (cursor > 0) {
1589 input_backward(1);
1590 input_delete(1);
1591 }
1592 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001593 case 'W'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001594 vi_Word_motion(command, 1);
1595 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001596 case 'w'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001597 vi_word_motion(command, 1);
1598 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001599 case 'E'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001600 vi_End_motion(command);
1601 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001602 case 'e'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001603 vi_end_motion(command);
1604 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001605 case 'B'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001606 vi_Back_motion(command);
1607 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001608 case 'b'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001609 vi_back_motion(command);
1610 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001611 case 'C'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001612 vi_cmdmode = 0;
1613 /* fall through */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001614 case 'D'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001615 goto clear_to_eol;
1616
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001617 case 'c'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001618 vi_cmdmode = 0;
1619 /* fall through */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001620 case 'd'|vbit:
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001621 {
Denis Vlasenko92758142006-10-03 19:56:34 +00001622 int nc, sc;
1623 sc = cursor;
1624 prevc = ic;
1625 if (safe_read(0, &c, 1) < 1)
1626 goto prepare_to_die;
1627 if (c == (prevc & 0xff)) {
1628 /* "cc", "dd" */
1629 input_backward(cursor);
1630 goto clear_to_eol;
1631 break;
1632 }
1633 switch(c) {
1634 case 'w':
1635 case 'W':
1636 case 'e':
1637 case 'E':
1638 switch (c) {
1639 case 'w': /* "dw", "cw" */
1640 vi_word_motion(command, vi_cmdmode);
1641 break;
1642 case 'W': /* 'dW', 'cW' */
1643 vi_Word_motion(command, vi_cmdmode);
1644 break;
1645 case 'e': /* 'de', 'ce' */
1646 vi_end_motion(command);
1647 input_forward();
1648 break;
1649 case 'E': /* 'dE', 'cE' */
1650 vi_End_motion(command);
1651 input_forward();
1652 break;
1653 }
1654 nc = cursor;
1655 input_backward(cursor - sc);
1656 while (nc-- > cursor)
1657 input_delete(1);
1658 break;
1659 case 'b': /* "db", "cb" */
1660 case 'B': /* implemented as B */
1661 if (c == 'b')
1662 vi_back_motion(command);
1663 else
1664 vi_Back_motion(command);
1665 while (sc-- > cursor)
1666 input_delete(1);
1667 break;
1668 case ' ': /* "d ", "c " */
1669 input_delete(1);
1670 break;
1671 case '$': /* "d$", "c$" */
1672 clear_to_eol:
1673 while (cursor < len)
1674 input_delete(1);
1675 break;
1676 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001677 }
1678 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001679 case 'p'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001680 input_forward();
1681 /* fallthrough */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001682 case 'P'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001683 put();
1684 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001685 case 'r'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001686 if (safe_read(0, &c, 1) < 1)
1687 goto prepare_to_die;
1688 if (c == 0)
1689 beep();
1690 else {
1691 *(command + cursor) = c;
1692 putchar(c);
1693 putchar('\b');
1694 }
1695 break;
1696#endif /* CONFIG_FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001697
1698 case ESC:
1699
Denis Vlasenko966ec7c2006-11-01 09:13:26 +00001700#if ENABLE_FEATURE_COMMAND_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001701 if (vi_mode) {
1702 /* ESC: insert mode --> command mode */
1703 vi_cmdmode = 1;
1704 input_backward(1);
1705 break;
1706 }
1707#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001708 /* escape sequence follows */
Eric Andersen7467c8d2001-07-12 20:26:32 +00001709 if (safe_read(0, &c, 1) < 1)
1710 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001711 /* different vt100 emulations */
1712 if (c == '[' || c == 'O') {
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001713 vi_case( case '['|vbit: )
1714 vi_case( case 'O'|vbit: )
Eric Andersen7467c8d2001-07-12 20:26:32 +00001715 if (safe_read(0, &c, 1) < 1)
1716 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001717 }
Glenn L McGrath475820c2004-01-22 12:42:23 +00001718 if (c >= '1' && c <= '9') {
1719 unsigned char dummy;
1720
1721 if (safe_read(0, &dummy, 1) < 1)
1722 goto prepare_to_die;
1723 if(dummy != '~')
1724 c = 0;
1725 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001726 switch (c) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001727#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +00001728 case '\t': /* Alt-Tab */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001729
1730 input_tab(&lastWasTab);
1731 break;
1732#endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001733#if MAX_HISTORY >= 1
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001734 case 'A':
1735 /* Up Arrow -- Get previous command from history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001736 if (cur_history > 0) {
1737 get_previous_history();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001738 goto rewrite_line;
1739 } else {
1740 beep();
1741 }
1742 break;
1743 case 'B':
1744 /* Down Arrow -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001745 if (!get_next_history())
Paul Fox3f11b1b2005-08-04 19:04:46 +00001746 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001747 /* Rewrite the line with the selected history item */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001748rewrite_line:
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001749 /* change command */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001750 len = strlen(strcpy(command, history[cur_history]));
Paul Fox3f11b1b2005-08-04 19:04:46 +00001751 /* redraw and go to eol (bol, in vi */
Denis Vlasenko966ec7c2006-11-01 09:13:26 +00001752#if ENABLE_FEATURE_COMMAND_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001753 redraw(cmdedit_y, vi_mode ? 9999:0);
1754#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001755 redraw(cmdedit_y, 0);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001756#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001757 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001758#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001759 case 'C':
1760 /* Right Arrow -- Move forward one character */
1761 input_forward();
1762 break;
1763 case 'D':
1764 /* Left Arrow -- Move back one character */
1765 input_backward(1);
1766 break;
1767 case '3':
1768 /* Delete */
Paul Fox3f11b1b2005-08-04 19:04:46 +00001769 input_delete(0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001770 break;
1771 case '1':
1772 case 'H':
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001773 /* <Home> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001774 input_backward(cursor);
1775 break;
1776 case '4':
1777 case 'F':
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001778 /* <End> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001779 input_end();
1780 break;
1781 default:
Glenn L McGrath475820c2004-01-22 12:42:23 +00001782 c = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001783 beep();
1784 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001785 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001786
Eric Andersenc470f442003-07-28 09:56:35 +00001787 default: /* If it's regular input, do the normal thing */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001788#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001789 /* Control-V -- Add non-printable symbol */
Paul Fox3f11b1b2005-08-04 19:04:46 +00001790 if (c == CNTRL('V')) {
Eric Andersen7467c8d2001-07-12 20:26:32 +00001791 if (safe_read(0, &c, 1) < 1)
1792 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001793 if (c == 0) {
1794 beep();
1795 break;
1796 }
1797 } else
1798#endif
Paul Fox3f11b1b2005-08-04 19:04:46 +00001799 {
Denis Vlasenko966ec7c2006-11-01 09:13:26 +00001800#if ENABLE_FEATURE_COMMAND_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001801 if (vi_cmdmode) /* don't self-insert */
1802 break;
1803#endif
1804 if (!Isprint(c)) /* Skip non-printable characters */
1805 break;
1806 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001807
Eric Andersenc470f442003-07-28 09:56:35 +00001808 if (len >= (BUFSIZ - 2)) /* Need to leave space for enter */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001809 break;
1810
1811 len++;
1812
Eric Andersenc470f442003-07-28 09:56:35 +00001813 if (cursor == (len - 1)) { /* Append if at the end of the line */
Erik Andersenf0657d32000-04-12 17:49:52 +00001814 *(command + cursor) = c;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001815 *(command + cursor + 1) = 0;
1816 cmdedit_set_out_char(0);
Eric Andersenc470f442003-07-28 09:56:35 +00001817 } else { /* Insert otherwise */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001818 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001819
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001820 memmove(command + sc + 1, command + sc, len - sc);
1821 *(command + sc) = c;
1822 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00001823 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001824 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00001825 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001826 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001827 }
1828
Erik Andersenc7c634b2000-03-19 05:28:55 +00001829 break;
Erik Andersen13456d12000-03-16 08:09:57 +00001830 }
Eric Andersenc470f442003-07-28 09:56:35 +00001831 if (break_out) /* Enter is the command terminator, no more input. */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001832 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001833
1834 if (c != '\t')
1835 lastWasTab = FALSE;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001836 }
1837
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001838 setTermSettings(0, (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001839 handlers_sets &= ~SET_RESET_TERM;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001840
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001841#if MAX_HISTORY >= 1
Erik Andersenc7c634b2000-03-19 05:28:55 +00001842 /* Handle command history log */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001843 /* cleanup may be saved current command line */
Glenn L McGrath16e45d72004-02-04 08:24:39 +00001844 if (len> 0) { /* no put empty line */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001845 int i = n_history;
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001846
1847 free(history[MAX_HISTORY]);
1848 history[MAX_HISTORY] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001849 /* After max history, remove the oldest command */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001850 if (i >= MAX_HISTORY) {
1851 free(history[0]);
1852 for(i = 0; i < (MAX_HISTORY-1); i++)
1853 history[i] = history[i+1];
Erik Andersen13456d12000-03-16 08:09:57 +00001854 }
Rob Landleyd921b2e2006-08-03 15:41:12 +00001855 history[i++] = xstrdup(command);
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001856 cur_history = i;
1857 n_history = i;
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001858#if defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001859 num_ok_lines++;
1860#endif
Erik Andersen6273f652000-03-17 01:12:41 +00001861 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001862#else /* MAX_HISTORY < 1 */
1863#if defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
Glenn L McGrath16e45d72004-02-04 08:24:39 +00001864 if (len > 0) { /* no put empty line */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001865 num_ok_lines++;
1866 }
1867#endif
1868#endif /* MAX_HISTORY >= 1 */
Eric Andersen27bb7902003-12-23 20:24:51 +00001869 if (break_out > 0) {
Eric Andersenc470f442003-07-28 09:56:35 +00001870 command[len++] = '\n'; /* set '\n' */
1871 command[len] = 0;
Eric Andersen044228d2001-07-17 01:12:36 +00001872 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001873#if defined(CONFIG_FEATURE_CLEAN_UP) && defined(CONFIG_FEATURE_COMMAND_TAB_COMPLETION)
Eric Andersenc470f442003-07-28 09:56:35 +00001874 input_tab(0); /* strong free */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001875#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001876#if defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001877 free(cmdedit_prompt);
1878#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001879 cmdedit_reset_term();
Eric Andersen044228d2001-07-17 01:12:36 +00001880 return len;
Eric Andersen501c88b2000-07-28 15:14:45 +00001881}
1882
Eric Andersen7467c8d2001-07-12 20:26:32 +00001883
1884
Eric Andersenc470f442003-07-28 09:56:35 +00001885#endif /* CONFIG_FEATURE_COMMAND_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00001886
1887
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001888#ifdef TEST
1889
Denis Vlasenko8f8f2682006-10-03 21:00:43 +00001890const char *applet_name = "debug stuff usage";
Eric Andersene5dfced2001-04-09 22:48:12 +00001891
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001892#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001893#include <locale.h>
1894#endif
1895
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001896int main(int argc, char **argv)
1897{
1898 char buff[BUFSIZ];
1899 char *prompt =
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001900#if defined(CONFIG_FEATURE_SH_FANCY_PROMPT)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001901 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:\
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001902\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] \
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001903\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001904#else
1905 "% ";
1906#endif
1907
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001908#ifdef CONFIG_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001909 setlocale(LC_ALL, "");
1910#endif
Eric Andersen7467c8d2001-07-12 20:26:32 +00001911 while(1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001912 int l;
Eric Andersen27bb7902003-12-23 20:24:51 +00001913 l = cmdedit_read_input(prompt, buff);
1914 if(l > 0 && buff[l-1] == '\n') {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001915 buff[l-1] = 0;
Eric Andersen27bb7902003-12-23 20:24:51 +00001916 printf("*** cmdedit_read_input() returned line =%s=\n", buff);
1917 } else {
1918 break;
1919 }
Eric Andersen7467c8d2001-07-12 20:26:32 +00001920 }
Eric Andersen27bb7902003-12-23 20:24:51 +00001921 printf("*** cmdedit_read_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001922 return 0;
1923}
1924
Eric Andersenc470f442003-07-28 09:56:35 +00001925#endif /* TEST */