xref: /dragonfly/contrib/libedit/src/readline.c (revision 89a89091)
1 /*	$NetBSD: readline.c,v 1.100 2011/11/18 20:38:42 christos Exp $	*/
2 
3 /*-
4  * Copyright (c) 1997 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Jaromir Dolecek.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #include "config.h"
33 #if !defined(lint) && !defined(SCCSID)
34 __RCSID("$NetBSD: readline.c,v 1.100 2011/11/18 20:38:42 christos Exp $");
35 #endif /* not lint && not SCCSID */
36 
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <stdio.h>
40 #include <dirent.h>
41 #include <string.h>
42 #include <pwd.h>
43 #include <ctype.h>
44 #include <stdlib.h>
45 #include <unistd.h>
46 #include <limits.h>
47 #include <errno.h>
48 #include <fcntl.h>
49 #include <setjmp.h>
50 #include <vis.h>
51 
52 #include "editline/readline.h"
53 #include "el.h"
54 #include "fcns.h"		/* for EL_NUM_FCNS */
55 #include "histedit.h"
56 #include "filecomplete.h"
57 
58 #if !defined(SIZE_T_MAX)
59 # define SIZE_T_MAX (size_t)(-1)
60 #endif
61 
62 void rl_prep_terminal(int);
63 void rl_deprep_terminal(void);
64 
65 /* for rl_complete() */
66 #define TAB		'\r'
67 
68 /* see comment at the #ifdef for sense of this */
69 /* #define GDB_411_HACK */
70 
71 /* readline compatibility stuff - look at readline sources/documentation */
72 /* to see what these variables mean */
73 const char *rl_library_version = "EditLine wrapper";
74 int rl_readline_version = RL_READLINE_VERSION;
75 static char empty[] = { '\0' };
76 static char expand_chars[] = { ' ', '\t', '\n', '=', '(', '\0' };
77 static char break_chars[] = { ' ', '\t', '\n', '"', '\\', '\'', '`', '@', '$',
78     '>', '<', '=', ';', '|', '&', '{', '(', '\0' };
79 char *rl_readline_name = empty;
80 FILE *rl_instream = NULL;
81 FILE *rl_outstream = NULL;
82 int rl_point = 0;
83 int rl_end = 0;
84 char *rl_line_buffer = NULL;
85 VCPFunction *rl_linefunc = NULL;
86 int rl_done = 0;
87 VFunction *rl_event_hook = NULL;
88 KEYMAP_ENTRY_ARRAY emacs_standard_keymap,
89     emacs_meta_keymap,
90     emacs_ctlx_keymap;
91 
92 int history_base = 1;		/* probably never subject to change */
93 int history_length = 0;
94 int max_input_history = 0;
95 char history_expansion_char = '!';
96 char history_subst_char = '^';
97 char *history_no_expand_chars = expand_chars;
98 Function *history_inhibit_expansion_function = NULL;
99 char *history_arg_extract(int start, int end, const char *str);
100 
101 int rl_inhibit_completion = 0;
102 int rl_attempted_completion_over = 0;
103 char *rl_basic_word_break_characters = break_chars;
104 char *rl_completer_word_break_characters = NULL;
105 char *rl_completer_quote_characters = NULL;
106 char *(* rl_completion_word_break_hook)(void) = NULL;
107 Function *rl_completion_entry_function = NULL;
108 CPPFunction *rl_attempted_completion_function = NULL;
109 Function *rl_pre_input_hook = NULL;
110 Function *rl_startup1_hook = NULL;
111 int (*rl_getc_function)(FILE *) = NULL;
112 char *rl_terminal_name = NULL;
113 int rl_already_prompted = 0;
114 int rl_filename_completion_desired = 0;
115 int rl_ignore_completion_duplicates = 0;
116 int rl_catch_signals = 1;
117 int readline_echoing_p = 1;
118 int _rl_print_completions_horizontally = 0;
119 VFunction *rl_redisplay_function = NULL;
120 Function *rl_startup_hook = NULL;
121 VFunction *rl_completion_display_matches_hook = NULL;
122 VFunction *rl_prep_term_function = (VFunction *)rl_prep_terminal;
123 VFunction *rl_deprep_term_function = (VFunction *)rl_deprep_terminal;
124 KEYMAP_ENTRY_ARRAY emacs_meta_keymap;
125 
126 /*
127  * The current prompt string.
128  */
129 char *rl_prompt = NULL;
130 /*
131  * This is set to character indicating type of completion being done by
132  * rl_complete_internal(); this is available for application completion
133  * functions.
134  */
135 int rl_completion_type = 0;
136 
137 /*
138  * If more than this number of items results from query for possible
139  * completions, we ask user if they are sure to really display the list.
140  */
141 int rl_completion_query_items = 100;
142 
143 /*
144  * List of characters which are word break characters, but should be left
145  * in the parsed text when it is passed to the completion function.
146  * Shell uses this to help determine what kind of completing to do.
147  */
148 char *rl_special_prefixes = NULL;
149 
150 /*
151  * This is the character appended to the completed words if at the end of
152  * the line. Default is ' ' (a space).
153  */
154 int rl_completion_append_character = ' ';
155 
156 /* stuff below is used internally by libedit for readline emulation */
157 
158 static History *h = NULL;
159 static EditLine *e = NULL;
160 static Function *map[256];
161 static jmp_buf topbuf;
162 
163 /* internal functions */
164 static unsigned char	 _el_rl_complete(EditLine *, int);
165 static unsigned char	 _el_rl_tstp(EditLine *, int);
166 static char		*_get_prompt(EditLine *);
167 static int		 _getc_function(EditLine *, char *);
168 static HIST_ENTRY	*_move_history(int);
169 static int		 _history_expand_command(const char *, size_t, size_t,
170     char **);
171 static char		*_rl_compat_sub(const char *, const char *,
172     const char *, int);
173 static int		 _rl_event_read_char(EditLine *, char *);
174 static void		 _rl_update_pos(void);
175 
176 
177 /* ARGSUSED */
178 static char *
179 _get_prompt(EditLine *el __attribute__((__unused__)))
180 {
181 	rl_already_prompted = 1;
182 	return rl_prompt;
183 }
184 
185 
186 /*
187  * generic function for moving around history
188  */
189 static HIST_ENTRY *
190 _move_history(int op)
191 {
192 	HistEvent ev;
193 	static HIST_ENTRY rl_he;
194 
195 	if (history(h, &ev, op) != 0)
196 		return NULL;
197 
198 	rl_he.line = ev.str;
199 	rl_he.data = NULL;
200 
201 	return &rl_he;
202 }
203 
204 
205 /*
206  * read one key from user defined input function
207  */
208 static int
209 /*ARGSUSED*/
210 _getc_function(EditLine *el __attribute__((__unused__)), char *c)
211 {
212 	int i;
213 
214 	i = (*rl_getc_function)(NULL);
215 	if (i == -1)
216 		return 0;
217 	*c = (char)i;
218 	return 1;
219 }
220 
221 static void
222 _resize_fun(EditLine *el, void *a)
223 {
224 	const LineInfo *li;
225 	char **ap = a;
226 
227 	li = el_line(el);
228 	/* a cheesy way to get rid of const cast. */
229 	*ap = memchr(li->buffer, *li->buffer, (size_t)1);
230 }
231 
232 static const char *
233 _default_history_file(void)
234 {
235 	struct passwd *p;
236 	static char path[PATH_MAX];
237 
238 	if (*path)
239 		return path;
240 	if ((p = getpwuid(getuid())) == NULL)
241 		return NULL;
242 	(void)snprintf(path, sizeof(path), "%s/.history", p->pw_dir);
243 	return path;
244 }
245 
246 /*
247  * READLINE compatibility stuff
248  */
249 
250 /*
251  * Set the prompt
252  */
253 int
254 rl_set_prompt(const char *prompt)
255 {
256 	char *p;
257 
258 	if (!prompt)
259 		prompt = "";
260 	if (rl_prompt != NULL && strcmp(rl_prompt, prompt) == 0)
261 		return 0;
262 	if (rl_prompt)
263 		el_free(rl_prompt);
264 	rl_prompt = strdup(prompt);
265 	if (rl_prompt == NULL)
266 		return -1;
267 
268 	while ((p = strchr(rl_prompt, RL_PROMPT_END_IGNORE)) != NULL)
269 		*p = RL_PROMPT_START_IGNORE;
270 
271 	return 0;
272 }
273 
274 /*
275  * initialize rl compat stuff
276  */
277 int
278 rl_initialize(void)
279 {
280 	HistEvent ev;
281 	int editmode = 1;
282 	struct termios t;
283 
284 	if (e != NULL)
285 		el_end(e);
286 	if (h != NULL)
287 		history_end(h);
288 
289 	if (!rl_instream)
290 		rl_instream = stdin;
291 	if (!rl_outstream)
292 		rl_outstream = stdout;
293 
294 	/*
295 	 * See if we don't really want to run the editor
296 	 */
297 	if (tcgetattr(fileno(rl_instream), &t) != -1 && (t.c_lflag & ECHO) == 0)
298 		editmode = 0;
299 
300 	e = el_init(rl_readline_name, rl_instream, rl_outstream, stderr);
301 
302 	if (!editmode)
303 		el_set(e, EL_EDITMODE, 0);
304 
305 	h = history_init();
306 	if (!e || !h)
307 		return -1;
308 
309 	history(h, &ev, H_SETSIZE, INT_MAX);	/* unlimited */
310 	history_length = 0;
311 	max_input_history = INT_MAX;
312 	el_set(e, EL_HIST, history, h);
313 
314 	/* Setup resize function */
315 	el_set(e, EL_RESIZE, _resize_fun, &rl_line_buffer);
316 
317 	/* setup getc function if valid */
318 	if (rl_getc_function)
319 		el_set(e, EL_GETCFN, _getc_function);
320 
321 	/* for proper prompt printing in readline() */
322 	if (rl_set_prompt("") == -1) {
323 		history_end(h);
324 		el_end(e);
325 		return -1;
326 	}
327 	el_set(e, EL_PROMPT, _get_prompt, RL_PROMPT_START_IGNORE);
328 	el_set(e, EL_SIGNAL, rl_catch_signals);
329 
330 	/* set default mode to "emacs"-style and read setting afterwards */
331 	/* so this can be overriden */
332 	el_set(e, EL_EDITOR, "emacs");
333 	if (rl_terminal_name != NULL)
334 		el_set(e, EL_TERMINAL, rl_terminal_name);
335 	else
336 		el_get(e, EL_TERMINAL, &rl_terminal_name);
337 
338 	/*
339 	 * Word completion - this has to go AFTER rebinding keys
340 	 * to emacs-style.
341 	 */
342 	el_set(e, EL_ADDFN, "rl_complete",
343 	    "ReadLine compatible completion function",
344 	    _el_rl_complete);
345 	el_set(e, EL_BIND, "^I", "rl_complete", NULL);
346 
347 	/*
348 	 * Send TSTP when ^Z is pressed.
349 	 */
350 	el_set(e, EL_ADDFN, "rl_tstp",
351 	    "ReadLine compatible suspend function",
352 	    _el_rl_tstp);
353 	el_set(e, EL_BIND, "^Z", "rl_tstp", NULL);
354 
355 	/* read settings from configuration file */
356 	el_source(e, NULL);
357 
358 	/*
359 	 * Unfortunately, some applications really do use rl_point
360 	 * and rl_line_buffer directly.
361 	 */
362 	_resize_fun(e, &rl_line_buffer);
363 	_rl_update_pos();
364 
365 	if (rl_startup_hook)
366 		(*rl_startup_hook)(NULL, 0);
367 
368 	return 0;
369 }
370 
371 
372 /*
373  * read one line from input stream and return it, chomping
374  * trailing newline (if there is any)
375  */
376 char *
377 readline(const char *p)
378 {
379 	HistEvent ev;
380 	const char * volatile prompt = p;
381 	int count;
382 	const char *ret;
383 	char *buf;
384 	static int used_event_hook;
385 
386 	if (e == NULL || h == NULL)
387 		rl_initialize();
388 
389 	rl_done = 0;
390 
391 	(void)setjmp(topbuf);
392 
393 	/* update prompt accordingly to what has been passed */
394 	if (rl_set_prompt(prompt) == -1)
395 		return NULL;
396 
397 	if (rl_pre_input_hook)
398 		(*rl_pre_input_hook)(NULL, 0);
399 
400 	if (rl_event_hook && !(e->el_flags&NO_TTY)) {
401 		el_set(e, EL_GETCFN, _rl_event_read_char);
402 		used_event_hook = 1;
403 	}
404 
405 	if (!rl_event_hook && used_event_hook) {
406 		el_set(e, EL_GETCFN, EL_BUILTIN_GETCFN);
407 		used_event_hook = 0;
408 	}
409 
410 	rl_already_prompted = 0;
411 
412 	/* get one line from input stream */
413 	ret = el_gets(e, &count);
414 
415 	if (ret && count > 0) {
416 		int lastidx;
417 
418 		buf = strdup(ret);
419 		if (buf == NULL)
420 			return NULL;
421 		lastidx = count - 1;
422 		if (buf[lastidx] == '\n')
423 			buf[lastidx] = '\0';
424 	} else
425 		buf = NULL;
426 
427 	history(h, &ev, H_GETSIZE);
428 	history_length = ev.num;
429 
430 	return buf;
431 }
432 
433 /*
434  * history functions
435  */
436 
437 /*
438  * is normally called before application starts to use
439  * history expansion functions
440  */
441 void
442 using_history(void)
443 {
444 	if (h == NULL || e == NULL)
445 		rl_initialize();
446 }
447 
448 
449 /*
450  * substitute ``what'' with ``with'', returning resulting string; if
451  * globally == 1, substitutes all occurrences of what, otherwise only the
452  * first one
453  */
454 static char *
455 _rl_compat_sub(const char *str, const char *what, const char *with,
456     int globally)
457 {
458 	const	char	*s;
459 	char	*r, *result;
460 	size_t	len, with_len, what_len;
461 
462 	len = strlen(str);
463 	with_len = strlen(with);
464 	what_len = strlen(what);
465 
466 	/* calculate length we need for result */
467 	s = str;
468 	while (*s) {
469 		if (*s == *what && !strncmp(s, what, what_len)) {
470 			len += with_len - what_len;
471 			if (!globally)
472 				break;
473 			s += what_len;
474 		} else
475 			s++;
476 	}
477 	r = result = el_malloc((len + 1) * sizeof(*r));
478 	if (result == NULL)
479 		return NULL;
480 	s = str;
481 	while (*s) {
482 		if (*s == *what && !strncmp(s, what, what_len)) {
483 			(void)strncpy(r, with, with_len);
484 			r += with_len;
485 			s += what_len;
486 			if (!globally) {
487 				(void)strcpy(r, s);
488 				return result;
489 			}
490 		} else
491 			*r++ = *s++;
492 	}
493 	*r = '\0';
494 	return result;
495 }
496 
497 static	char	*last_search_pat;	/* last !?pat[?] search pattern */
498 static	char	*last_search_match;	/* last !?pat[?] that matched */
499 
500 const char *
501 get_history_event(const char *cmd, int *cindex, int qchar)
502 {
503 	int idx, sign, sub, num, begin, ret;
504 	size_t len;
505 	char	*pat;
506 	const char *rptr;
507 	HistEvent ev;
508 
509 	idx = *cindex;
510 	if (cmd[idx++] != history_expansion_char)
511 		return NULL;
512 
513 	/* find out which event to take */
514 	if (cmd[idx] == history_expansion_char || cmd[idx] == '\0') {
515 		if (history(h, &ev, H_FIRST) != 0)
516 			return NULL;
517 		*cindex = cmd[idx]? (idx + 1):idx;
518 		return ev.str;
519 	}
520 	sign = 0;
521 	if (cmd[idx] == '-') {
522 		sign = 1;
523 		idx++;
524 	}
525 
526 	if ('0' <= cmd[idx] && cmd[idx] <= '9') {
527 		HIST_ENTRY *rl_he;
528 
529 		num = 0;
530 		while (cmd[idx] && '0' <= cmd[idx] && cmd[idx] <= '9') {
531 			num = num * 10 + cmd[idx] - '0';
532 			idx++;
533 		}
534 		if (sign)
535 			num = history_length - num + 1;
536 
537 		if (!(rl_he = history_get(num)))
538 			return NULL;
539 
540 		*cindex = idx;
541 		return rl_he->line;
542 	}
543 	sub = 0;
544 	if (cmd[idx] == '?') {
545 		sub = 1;
546 		idx++;
547 	}
548 	begin = idx;
549 	while (cmd[idx]) {
550 		if (cmd[idx] == '\n')
551 			break;
552 		if (sub && cmd[idx] == '?')
553 			break;
554 		if (!sub && (cmd[idx] == ':' || cmd[idx] == ' '
555 				    || cmd[idx] == '\t' || cmd[idx] == qchar))
556 			break;
557 		idx++;
558 	}
559 	len = (size_t)idx - (size_t)begin;
560 	if (sub && cmd[idx] == '?')
561 		idx++;
562 	if (sub && len == 0 && last_search_pat && *last_search_pat)
563 		pat = last_search_pat;
564 	else if (len == 0)
565 		return NULL;
566 	else {
567 		if ((pat = el_malloc((len + 1) * sizeof(*pat))) == NULL)
568 			return NULL;
569 		(void)strncpy(pat, cmd + begin, len);
570 		pat[len] = '\0';
571 	}
572 
573 	if (history(h, &ev, H_CURR) != 0) {
574 		if (pat != last_search_pat)
575 			el_free(pat);
576 		return NULL;
577 	}
578 	num = ev.num;
579 
580 	if (sub) {
581 		if (pat != last_search_pat) {
582 			if (last_search_pat)
583 				el_free(last_search_pat);
584 			last_search_pat = pat;
585 		}
586 		ret = history_search(pat, -1);
587 	} else
588 		ret = history_search_prefix(pat, -1);
589 
590 	if (ret == -1) {
591 		/* restore to end of list on failed search */
592 		history(h, &ev, H_FIRST);
593 		(void)fprintf(rl_outstream, "%s: Event not found\n", pat);
594 		if (pat != last_search_pat)
595 			el_free(pat);
596 		return NULL;
597 	}
598 
599 	if (sub && len) {
600 		if (last_search_match && last_search_match != pat)
601 			el_free(last_search_match);
602 		last_search_match = pat;
603 	}
604 
605 	if (pat != last_search_pat)
606 		el_free(pat);
607 
608 	if (history(h, &ev, H_CURR) != 0)
609 		return NULL;
610 	*cindex = idx;
611 	rptr = ev.str;
612 
613 	/* roll back to original position */
614 	(void)history(h, &ev, H_SET, num);
615 
616 	return rptr;
617 }
618 
619 /*
620  * the real function doing history expansion - takes as argument command
621  * to do and data upon which the command should be executed
622  * does expansion the way I've understood readline documentation
623  *
624  * returns 0 if data was not modified, 1 if it was and 2 if the string
625  * should be only printed and not executed; in case of error,
626  * returns -1 and *result points to NULL
627  * it's callers responsibility to free() string returned in *result
628  */
629 static int
630 _history_expand_command(const char *command, size_t offs, size_t cmdlen,
631     char **result)
632 {
633 	char *tmp, *search = NULL, *aptr;
634 	const char *ptr, *cmd;
635 	static char *from = NULL, *to = NULL;
636 	int start, end, idx, has_mods = 0;
637 	int p_on = 0, g_on = 0;
638 
639 	*result = NULL;
640 	aptr = NULL;
641 	ptr = NULL;
642 
643 	/* First get event specifier */
644 	idx = 0;
645 
646 	if (strchr(":^*$", command[offs + 1])) {
647 		char str[4];
648 		/*
649 		* "!:" is shorthand for "!!:".
650 		* "!^", "!*" and "!$" are shorthand for
651 		* "!!:^", "!!:*" and "!!:$" respectively.
652 		*/
653 		str[0] = str[1] = '!';
654 		str[2] = '0';
655 		ptr = get_history_event(str, &idx, 0);
656 		idx = (command[offs + 1] == ':')? 1:0;
657 		has_mods = 1;
658 	} else {
659 		if (command[offs + 1] == '#') {
660 			/* use command so far */
661 			if ((aptr = el_malloc((offs + 1) * sizeof(*aptr)))
662 			    == NULL)
663 				return -1;
664 			(void)strncpy(aptr, command, offs);
665 			aptr[offs] = '\0';
666 			idx = 1;
667 		} else {
668 			int	qchar;
669 
670 			qchar = (offs > 0 && command[offs - 1] == '"')? '"':0;
671 			ptr = get_history_event(command + offs, &idx, qchar);
672 		}
673 		has_mods = command[offs + (size_t)idx] == ':';
674 	}
675 
676 	if (ptr == NULL && aptr == NULL)
677 		return -1;
678 
679 	if (!has_mods) {
680 		*result = strdup(aptr ? aptr : ptr);
681 		if (aptr)
682 			el_free(aptr);
683 		if (*result == NULL)
684 			return -1;
685 		return 1;
686 	}
687 
688 	cmd = command + offs + idx + 1;
689 
690 	/* Now parse any word designators */
691 
692 	if (*cmd == '%')	/* last word matched by ?pat? */
693 		tmp = strdup(last_search_match? last_search_match:"");
694 	else if (strchr("^*$-0123456789", *cmd)) {
695 		start = end = -1;
696 		if (*cmd == '^')
697 			start = end = 1, cmd++;
698 		else if (*cmd == '$')
699 			start = -1, cmd++;
700 		else if (*cmd == '*')
701 			start = 1, cmd++;
702 	       else if (*cmd == '-' || isdigit((unsigned char) *cmd)) {
703 			start = 0;
704 			while (*cmd && '0' <= *cmd && *cmd <= '9')
705 				start = start * 10 + *cmd++ - '0';
706 
707 			if (*cmd == '-') {
708 				if (isdigit((unsigned char) cmd[1])) {
709 					cmd++;
710 					end = 0;
711 					while (*cmd && '0' <= *cmd && *cmd <= '9')
712 						end = end * 10 + *cmd++ - '0';
713 				} else if (cmd[1] == '$') {
714 					cmd += 2;
715 					end = -1;
716 				} else {
717 					cmd++;
718 					end = -2;
719 				}
720 			} else if (*cmd == '*')
721 				end = -1, cmd++;
722 			else
723 				end = start;
724 		}
725 		tmp = history_arg_extract(start, end, aptr? aptr:ptr);
726 		if (tmp == NULL) {
727 			(void)fprintf(rl_outstream, "%s: Bad word specifier",
728 			    command + offs + idx);
729 			if (aptr)
730 				el_free(aptr);
731 			return -1;
732 		}
733 	} else
734 		tmp = strdup(aptr? aptr:ptr);
735 
736 	if (aptr)
737 		el_free(aptr);
738 
739 	if (*cmd == '\0' || ((size_t)(cmd - (command + offs)) >= cmdlen)) {
740 		*result = tmp;
741 		return 1;
742 	}
743 
744 	for (; *cmd; cmd++) {
745 		if (*cmd == ':')
746 			continue;
747 		else if (*cmd == 'h') {		/* remove trailing path */
748 			if ((aptr = strrchr(tmp, '/')) != NULL)
749 				*aptr = '\0';
750 		} else if (*cmd == 't') {	/* remove leading path */
751 			if ((aptr = strrchr(tmp, '/')) != NULL) {
752 				aptr = strdup(aptr + 1);
753 				el_free(tmp);
754 				tmp = aptr;
755 			}
756 		} else if (*cmd == 'r') {	/* remove trailing suffix */
757 			if ((aptr = strrchr(tmp, '.')) != NULL)
758 				*aptr = '\0';
759 		} else if (*cmd == 'e') {	/* remove all but suffix */
760 			if ((aptr = strrchr(tmp, '.')) != NULL) {
761 				aptr = strdup(aptr);
762 				el_free(tmp);
763 				tmp = aptr;
764 			}
765 		} else if (*cmd == 'p')		/* print only */
766 			p_on = 1;
767 		else if (*cmd == 'g')
768 			g_on = 2;
769 		else if (*cmd == 's' || *cmd == '&') {
770 			char *what, *with, delim;
771 			size_t len, from_len;
772 			size_t size;
773 
774 			if (*cmd == '&' && (from == NULL || to == NULL))
775 				continue;
776 			else if (*cmd == 's') {
777 				delim = *(++cmd), cmd++;
778 				size = 16;
779 				what = el_realloc(from, size * sizeof(*what));
780 				if (what == NULL) {
781 					el_free(from);
782 					el_free(tmp);
783 					return 0;
784 				}
785 				len = 0;
786 				for (; *cmd && *cmd != delim; cmd++) {
787 					if (*cmd == '\\' && cmd[1] == delim)
788 						cmd++;
789 					if (len >= size) {
790 						char *nwhat;
791 						nwhat = el_realloc(what,
792 						    (size <<= 1) *
793 						    sizeof(*nwhat));
794 						if (nwhat == NULL) {
795 							el_free(what);
796 							el_free(tmp);
797 							return 0;
798 						}
799 						what = nwhat;
800 					}
801 					what[len++] = *cmd;
802 				}
803 				what[len] = '\0';
804 				from = what;
805 				if (*what == '\0') {
806 					el_free(what);
807 					if (search) {
808 						from = strdup(search);
809 						if (from == NULL) {
810 							el_free(tmp);
811 							return 0;
812 						}
813 					} else {
814 						from = NULL;
815 						el_free(tmp);
816 						return -1;
817 					}
818 				}
819 				cmd++;	/* shift after delim */
820 				if (!*cmd)
821 					continue;
822 
823 				size = 16;
824 				with = el_realloc(to, size * sizeof(*with));
825 				if (with == NULL) {
826 					el_free(to);
827 					el_free(tmp);
828 					return -1;
829 				}
830 				len = 0;
831 				from_len = strlen(from);
832 				for (; *cmd && *cmd != delim; cmd++) {
833 					if (len + from_len + 1 >= size) {
834 						char *nwith;
835 						size += from_len + 1;
836 						nwith = el_realloc(with,
837 						    size * sizeof(*nwith));
838 						if (nwith == NULL) {
839 							el_free(with);
840 							el_free(tmp);
841 							return -1;
842 						}
843 						with = nwith;
844 					}
845 					if (*cmd == '&') {
846 						/* safe */
847 						(void)strcpy(&with[len], from);
848 						len += from_len;
849 						continue;
850 					}
851 					if (*cmd == '\\'
852 					    && (*(cmd + 1) == delim
853 						|| *(cmd + 1) == '&'))
854 						cmd++;
855 					with[len++] = *cmd;
856 				}
857 				with[len] = '\0';
858 				to = with;
859 			}
860 
861 			aptr = _rl_compat_sub(tmp, from, to, g_on);
862 			if (aptr) {
863 				el_free(tmp);
864 				tmp = aptr;
865 			}
866 			g_on = 0;
867 		}
868 	}
869 	*result = tmp;
870 	return p_on? 2:1;
871 }
872 
873 
874 /*
875  * csh-style history expansion
876  */
877 int
878 history_expand(char *str, char **output)
879 {
880 	int ret = 0;
881 	size_t idx, i, size;
882 	char *tmp, *result;
883 
884 	if (h == NULL || e == NULL)
885 		rl_initialize();
886 
887 	if (history_expansion_char == 0) {
888 		*output = strdup(str);
889 		return 0;
890 	}
891 
892 	*output = NULL;
893 	if (str[0] == history_subst_char) {
894 		/* ^foo^foo2^ is equivalent to !!:s^foo^foo2^ */
895 		*output = el_malloc((strlen(str) + 4 + 1) * sizeof(**output));
896 		if (*output == NULL)
897 			return 0;
898 		(*output)[0] = (*output)[1] = history_expansion_char;
899 		(*output)[2] = ':';
900 		(*output)[3] = 's';
901 		(void)strcpy((*output) + 4, str);
902 		str = *output;
903 	} else {
904 		*output = strdup(str);
905 		if (*output == NULL)
906 			return 0;
907 	}
908 
909 #define ADD_STRING(what, len, fr)					\
910 	{								\
911 		if (idx + len + 1 > size) {				\
912 			char *nresult = el_realloc(result,		\
913 			    (size += len + 1) * sizeof(*nresult));	\
914 			if (nresult == NULL) {				\
915 				el_free(*output);			\
916 				if (/*CONSTCOND*/fr)			\
917 					el_free(tmp);			\
918 				return 0;				\
919 			}						\
920 			result = nresult;				\
921 		}							\
922 		(void)strncpy(&result[idx], what, len);			\
923 		idx += len;						\
924 		result[idx] = '\0';					\
925 	}
926 
927 	result = NULL;
928 	size = idx = 0;
929 	tmp = NULL;
930 	for (i = 0; str[i];) {
931 		int qchar, loop_again;
932 		size_t len, start, j;
933 
934 		qchar = 0;
935 		loop_again = 1;
936 		start = j = i;
937 loop:
938 		for (; str[j]; j++) {
939 			if (str[j] == '\\' &&
940 			    str[j + 1] == history_expansion_char) {
941 				(void)strcpy(&str[j], &str[j + 1]);
942 				continue;
943 			}
944 			if (!loop_again) {
945 				if (isspace((unsigned char) str[j])
946 				    || str[j] == qchar)
947 					break;
948 			}
949 			if (str[j] == history_expansion_char
950 			    && !strchr(history_no_expand_chars, str[j + 1])
951 			    && (!history_inhibit_expansion_function ||
952 			    (*history_inhibit_expansion_function)(str,
953 			    (int)j) == 0))
954 				break;
955 		}
956 
957 		if (str[j] && loop_again) {
958 			i = j;
959 			qchar = (j > 0 && str[j - 1] == '"' )? '"':0;
960 			j++;
961 			if (str[j] == history_expansion_char)
962 				j++;
963 			loop_again = 0;
964 			goto loop;
965 		}
966 		len = i - start;
967 		ADD_STRING(&str[start], len, 0);
968 
969 		if (str[i] == '\0' || str[i] != history_expansion_char) {
970 			len = j - i;
971 			ADD_STRING(&str[i], len, 0);
972 			if (start == 0)
973 				ret = 0;
974 			else
975 				ret = 1;
976 			break;
977 		}
978 		ret = _history_expand_command (str, i, (j - i), &tmp);
979 		if (ret > 0 && tmp) {
980 			len = strlen(tmp);
981 			ADD_STRING(tmp, len, 1);
982 		}
983 		if (tmp) {
984 			el_free(tmp);
985 			tmp = NULL;
986 		}
987 		i = j;
988 	}
989 
990 	/* ret is 2 for "print only" option */
991 	if (ret == 2) {
992 		add_history(result);
993 #ifdef GDB_411_HACK
994 		/* gdb 4.11 has been shipped with readline, where */
995 		/* history_expand() returned -1 when the line	  */
996 		/* should not be executed; in readline 2.1+	  */
997 		/* it should return 2 in such a case		  */
998 		ret = -1;
999 #endif
1000 	}
1001 	el_free(*output);
1002 	*output = result;
1003 
1004 	return ret;
1005 }
1006 
1007 /*
1008 * Return a string consisting of arguments of "str" from "start" to "end".
1009 */
1010 char *
1011 history_arg_extract(int start, int end, const char *str)
1012 {
1013 	size_t  i, len, max;
1014 	char	**arr, *result = NULL;
1015 
1016 	arr = history_tokenize(str);
1017 	if (!arr)
1018 		return NULL;
1019 	if (arr && *arr == NULL)
1020 		goto out;
1021 
1022 	for (max = 0; arr[max]; max++)
1023 		continue;
1024 	max--;
1025 
1026 	if (start == '$')
1027 		start = (int)max;
1028 	if (end == '$')
1029 		end = (int)max;
1030 	if (end < 0)
1031 		end = (int)max + end + 1;
1032 	if (start < 0)
1033 		start = end;
1034 
1035 	if (start < 0 || end < 0 || (size_t)start > max ||
1036 	    (size_t)end > max || start > end)
1037 		goto out;
1038 
1039 	for (i = (size_t)start, len = 0; i <= (size_t)end; i++)
1040 		len += strlen(arr[i]) + 1;
1041 	len++;
1042 	result = el_malloc(len * sizeof(*result));
1043 	if (result == NULL)
1044 		goto out;
1045 
1046 	for (i = (size_t)start, len = 0; i <= (size_t)end; i++) {
1047 		(void)strcpy(result + len, arr[i]);
1048 		len += strlen(arr[i]);
1049 		if (i < (size_t)end)
1050 			result[len++] = ' ';
1051 	}
1052 	result[len] = '\0';
1053 
1054 out:
1055 	for (i = 0; arr[i]; i++)
1056 		el_free(arr[i]);
1057 	el_free(arr);
1058 
1059 	return result;
1060 }
1061 
1062 /*
1063  * Parse the string into individual tokens,
1064  * similar to how shell would do it.
1065  */
1066 char **
1067 history_tokenize(const char *str)
1068 {
1069 	int size = 1, idx = 0, i, start;
1070 	size_t len;
1071 	char **result = NULL, *temp, delim = '\0';
1072 
1073 	for (i = 0; str[i];) {
1074 		while (isspace((unsigned char) str[i]))
1075 			i++;
1076 		start = i;
1077 		for (; str[i];) {
1078 			if (str[i] == '\\') {
1079 				if (str[i+1] != '\0')
1080 					i++;
1081 			} else if (str[i] == delim)
1082 				delim = '\0';
1083 			else if (!delim &&
1084 				    (isspace((unsigned char) str[i]) ||
1085 				strchr("()<>;&|$", str[i])))
1086 				break;
1087 			else if (!delim && strchr("'`\"", str[i]))
1088 				delim = str[i];
1089 			if (str[i])
1090 				i++;
1091 		}
1092 
1093 		if (idx + 2 >= size) {
1094 			char **nresult;
1095 			size <<= 1;
1096 			nresult = el_realloc(result, (size_t)size * sizeof(*nresult));
1097 			if (nresult == NULL) {
1098 				el_free(result);
1099 				return NULL;
1100 			}
1101 			result = nresult;
1102 		}
1103 		len = (size_t)i - (size_t)start;
1104 		temp = el_malloc((size_t)(len + 1) * sizeof(*temp));
1105 		if (temp == NULL) {
1106 			for (i = 0; i < idx; i++)
1107 				el_free(result[i]);
1108 			el_free(result);
1109 			return NULL;
1110 		}
1111 		(void)strncpy(temp, &str[start], len);
1112 		temp[len] = '\0';
1113 		result[idx++] = temp;
1114 		result[idx] = NULL;
1115 		if (str[i])
1116 			i++;
1117 	}
1118 	return result;
1119 }
1120 
1121 
1122 /*
1123  * limit size of history record to ``max'' events
1124  */
1125 void
1126 stifle_history(int max)
1127 {
1128 	HistEvent ev;
1129 
1130 	if (h == NULL || e == NULL)
1131 		rl_initialize();
1132 
1133 	if (history(h, &ev, H_SETSIZE, max) == 0)
1134 		max_input_history = max;
1135 }
1136 
1137 
1138 /*
1139  * "unlimit" size of history - set the limit to maximum allowed int value
1140  */
1141 int
1142 unstifle_history(void)
1143 {
1144 	HistEvent ev;
1145 	int omax;
1146 
1147 	history(h, &ev, H_SETSIZE, INT_MAX);
1148 	omax = max_input_history;
1149 	max_input_history = INT_MAX;
1150 	return omax;		/* some value _must_ be returned */
1151 }
1152 
1153 
1154 int
1155 history_is_stifled(void)
1156 {
1157 
1158 	/* cannot return true answer */
1159 	return max_input_history != INT_MAX;
1160 }
1161 
1162 static const char _history_tmp_template[] = "/tmp/.historyXXXXXX";
1163 
1164 int
1165 history_truncate_file (const char *filename, int nlines)
1166 {
1167 	int ret = 0;
1168 	FILE *fp, *tp;
1169 	char template[sizeof(_history_tmp_template)];
1170 	char buf[4096];
1171 	int fd;
1172 	char *cp;
1173 	off_t off;
1174 	int count = 0;
1175 	ssize_t left = 0;
1176 
1177 	if (filename == NULL && (filename = _default_history_file()) == NULL)
1178 		return errno;
1179 	if ((fp = fopen(filename, "r+")) == NULL)
1180 		return errno;
1181 	strcpy(template, _history_tmp_template);
1182 	if ((fd = mkstemp(template)) == -1) {
1183 		ret = errno;
1184 		goto out1;
1185 	}
1186 
1187 	if ((tp = fdopen(fd, "r+")) == NULL) {
1188 		close(fd);
1189 		ret = errno;
1190 		goto out2;
1191 	}
1192 
1193 	for(;;) {
1194 		if (fread(buf, sizeof(buf), (size_t)1, fp) != 1) {
1195 			if (ferror(fp)) {
1196 				ret = errno;
1197 				break;
1198 			}
1199 			if (fseeko(fp, (off_t)sizeof(buf) * count, SEEK_SET) ==
1200 			    (off_t)-1) {
1201 				ret = errno;
1202 				break;
1203 			}
1204 			left = (ssize_t)fread(buf, (size_t)1, sizeof(buf), fp);
1205 			if (ferror(fp)) {
1206 				ret = errno;
1207 				break;
1208 			}
1209 			if (left == 0) {
1210 				count--;
1211 				left = sizeof(buf);
1212 			} else if (fwrite(buf, (size_t)left, (size_t)1, tp)
1213 			    != 1) {
1214 				ret = errno;
1215 				break;
1216 			}
1217 			fflush(tp);
1218 			break;
1219 		}
1220 		if (fwrite(buf, sizeof(buf), (size_t)1, tp) != 1) {
1221 			ret = errno;
1222 			break;
1223 		}
1224 		count++;
1225 	}
1226 	if (ret)
1227 		goto out3;
1228 	cp = buf + left - 1;
1229 	if(*cp != '\n')
1230 		cp++;
1231 	for(;;) {
1232 		while (--cp >= buf) {
1233 			if (*cp == '\n') {
1234 				if (--nlines == 0) {
1235 					if (++cp >= buf + sizeof(buf)) {
1236 						count++;
1237 						cp = buf;
1238 					}
1239 					break;
1240 				}
1241 			}
1242 		}
1243 		if (nlines <= 0 || count == 0)
1244 			break;
1245 		count--;
1246 		if (fseeko(tp, (off_t)sizeof(buf) * count, SEEK_SET) < 0) {
1247 			ret = errno;
1248 			break;
1249 		}
1250 		if (fread(buf, sizeof(buf), (size_t)1, tp) != 1) {
1251 			if (ferror(tp)) {
1252 				ret = errno;
1253 				break;
1254 			}
1255 			ret = EAGAIN;
1256 			break;
1257 		}
1258 		cp = buf + sizeof(buf);
1259 	}
1260 
1261 	if (ret || nlines > 0)
1262 		goto out3;
1263 
1264 	if (fseeko(fp, (off_t)0, SEEK_SET) == (off_t)-1) {
1265 		ret = errno;
1266 		goto out3;
1267 	}
1268 
1269 	if (fseeko(tp, (off_t)sizeof(buf) * count + (cp - buf), SEEK_SET) ==
1270 	    (off_t)-1) {
1271 		ret = errno;
1272 		goto out3;
1273 	}
1274 
1275 	for(;;) {
1276 		if ((left = (ssize_t)fread(buf, (size_t)1, sizeof(buf), tp)) == 0) {
1277 			if (ferror(fp))
1278 				ret = errno;
1279 			break;
1280 		}
1281 		if (fwrite(buf, (size_t)left, (size_t)1, fp) != 1) {
1282 			ret = errno;
1283 			break;
1284 		}
1285 	}
1286 	fflush(fp);
1287 	if((off = ftello(fp)) > 0)
1288 		(void)ftruncate(fileno(fp), off);
1289 out3:
1290 	fclose(tp);
1291 out2:
1292 	unlink(template);
1293 out1:
1294 	fclose(fp);
1295 
1296 	return ret;
1297 }
1298 
1299 
1300 /*
1301  * read history from a file given
1302  */
1303 int
1304 read_history(const char *filename)
1305 {
1306 	HistEvent ev;
1307 
1308 	if (h == NULL || e == NULL)
1309 		rl_initialize();
1310 	if (filename == NULL && (filename = _default_history_file()) == NULL)
1311 		return errno;
1312 	return history(h, &ev, H_LOAD, filename) == -1 ?
1313 	    (errno ? errno : EINVAL) : 0;
1314 }
1315 
1316 
1317 /*
1318  * write history to a file given
1319  */
1320 int
1321 write_history(const char *filename)
1322 {
1323 	HistEvent ev;
1324 
1325 	if (h == NULL || e == NULL)
1326 		rl_initialize();
1327 	if (filename == NULL && (filename = _default_history_file()) == NULL)
1328 		return errno;
1329 	return history(h, &ev, H_SAVE, filename) == -1 ?
1330 	    (errno ? errno : EINVAL) : 0;
1331 }
1332 
1333 
1334 /*
1335  * returns history ``num''th event
1336  *
1337  * returned pointer points to static variable
1338  */
1339 HIST_ENTRY *
1340 history_get(int num)
1341 {
1342 	static HIST_ENTRY she;
1343 	HistEvent ev;
1344 	int curr_num;
1345 
1346 	if (h == NULL || e == NULL)
1347 		rl_initialize();
1348 
1349 	/* save current position */
1350 	if (history(h, &ev, H_CURR) != 0)
1351 		return NULL;
1352 	curr_num = ev.num;
1353 
1354 	/* start from the oldest */
1355 	if (history(h, &ev, H_LAST) != 0)
1356 		return NULL;	/* error */
1357 
1358 	/* look forwards for event matching specified offset */
1359 	if (history(h, &ev, H_NEXT_EVDATA, num, &she.data))
1360 		return NULL;
1361 
1362 	she.line = ev.str;
1363 
1364 	/* restore pointer to where it was */
1365 	(void)history(h, &ev, H_SET, curr_num);
1366 
1367 	return &she;
1368 }
1369 
1370 
1371 /*
1372  * add the line to history table
1373  */
1374 int
1375 add_history(const char *line)
1376 {
1377 	HistEvent ev;
1378 
1379 	if (h == NULL || e == NULL)
1380 		rl_initialize();
1381 
1382 	(void)history(h, &ev, H_ENTER, line);
1383 	if (history(h, &ev, H_GETSIZE) == 0)
1384 		history_length = ev.num;
1385 
1386 	return !(history_length > 0); /* return 0 if all is okay */
1387 }
1388 
1389 
1390 /*
1391  * remove the specified entry from the history list and return it.
1392  */
1393 HIST_ENTRY *
1394 remove_history(int num)
1395 {
1396 	HIST_ENTRY *he;
1397 	HistEvent ev;
1398 
1399 	if (h == NULL || e == NULL)
1400 		rl_initialize();
1401 
1402 	if ((he = el_malloc(sizeof(*he))) == NULL)
1403 		return NULL;
1404 
1405 	if (history(h, &ev, H_DELDATA, num, &he->data) != 0) {
1406 		el_free(he);
1407 		return NULL;
1408 	}
1409 
1410 	he->line = ev.str;
1411 	if (history(h, &ev, H_GETSIZE) == 0)
1412 		history_length = ev.num;
1413 
1414 	return he;
1415 }
1416 
1417 
1418 /*
1419  * replace the line and data of the num-th entry
1420  */
1421 HIST_ENTRY *
1422 replace_history_entry(int num, const char *line, histdata_t data)
1423 {
1424 	HIST_ENTRY *he;
1425 	HistEvent ev;
1426 	int curr_num;
1427 
1428 	if (h == NULL || e == NULL)
1429 		rl_initialize();
1430 
1431 	/* save current position */
1432 	if (history(h, &ev, H_CURR) != 0)
1433 		return NULL;
1434 	curr_num = ev.num;
1435 
1436 	/* start from the oldest */
1437 	if (history(h, &ev, H_LAST) != 0)
1438 		return NULL;	/* error */
1439 
1440 	if ((he = el_malloc(sizeof(*he))) == NULL)
1441 		return NULL;
1442 
1443 	/* look forwards for event matching specified offset */
1444 	if (history(h, &ev, H_NEXT_EVDATA, num, &he->data))
1445 		goto out;
1446 
1447 	he->line = strdup(ev.str);
1448 	if (he->line == NULL)
1449 		goto out;
1450 
1451 	if (history(h, &ev, H_REPLACE, line, data))
1452 		goto out;
1453 
1454 	/* restore pointer to where it was */
1455 	if (history(h, &ev, H_SET, curr_num))
1456 		goto out;
1457 
1458 	return he;
1459 out:
1460 	el_free(he);
1461 	return NULL;
1462 }
1463 
1464 /*
1465  * clear the history list - delete all entries
1466  */
1467 void
1468 clear_history(void)
1469 {
1470 	HistEvent ev;
1471 
1472 	(void)history(h, &ev, H_CLEAR);
1473 	history_length = 0;
1474 }
1475 
1476 
1477 /*
1478  * returns offset of the current history event
1479  */
1480 int
1481 where_history(void)
1482 {
1483 	HistEvent ev;
1484 	int curr_num, off;
1485 
1486 	if (history(h, &ev, H_CURR) != 0)
1487 		return 0;
1488 	curr_num = ev.num;
1489 
1490 	(void)history(h, &ev, H_FIRST);
1491 	off = 1;
1492 	while (ev.num != curr_num && history(h, &ev, H_NEXT) == 0)
1493 		off++;
1494 
1495 	return off;
1496 }
1497 
1498 
1499 /*
1500  * returns current history event or NULL if there is no such event
1501  */
1502 HIST_ENTRY *
1503 current_history(void)
1504 {
1505 
1506 	return _move_history(H_CURR);
1507 }
1508 
1509 
1510 /*
1511  * returns total number of bytes history events' data are using
1512  */
1513 int
1514 history_total_bytes(void)
1515 {
1516 	HistEvent ev;
1517 	int curr_num;
1518 	size_t size;
1519 
1520 	if (history(h, &ev, H_CURR) != 0)
1521 		return -1;
1522 	curr_num = ev.num;
1523 
1524 	(void)history(h, &ev, H_FIRST);
1525 	size = 0;
1526 	do
1527 		size += strlen(ev.str) * sizeof(*ev.str);
1528 	while (history(h, &ev, H_NEXT) == 0);
1529 
1530 	/* get to the same position as before */
1531 	history(h, &ev, H_PREV_EVENT, curr_num);
1532 
1533 	return (int)size;
1534 }
1535 
1536 
1537 /*
1538  * sets the position in the history list to ``pos''
1539  */
1540 int
1541 history_set_pos(int pos)
1542 {
1543 	HistEvent ev;
1544 	int curr_num;
1545 
1546 	if (pos >= history_length || pos < 0)
1547 		return -1;
1548 
1549 	(void)history(h, &ev, H_CURR);
1550 	curr_num = ev.num;
1551 
1552 	/*
1553 	 * use H_DELDATA to set to nth history (without delete) by passing
1554 	 * (void **)-1
1555 	 */
1556 	if (history(h, &ev, H_DELDATA, pos, (void **)-1)) {
1557 		(void)history(h, &ev, H_SET, curr_num);
1558 		return -1;
1559 	}
1560 	return 0;
1561 }
1562 
1563 
1564 /*
1565  * returns previous event in history and shifts pointer accordingly
1566  */
1567 HIST_ENTRY *
1568 previous_history(void)
1569 {
1570 
1571 	return _move_history(H_PREV);
1572 }
1573 
1574 
1575 /*
1576  * returns next event in history and shifts pointer accordingly
1577  */
1578 HIST_ENTRY *
1579 next_history(void)
1580 {
1581 
1582 	return _move_history(H_NEXT);
1583 }
1584 
1585 
1586 /*
1587  * searches for first history event containing the str
1588  */
1589 int
1590 history_search(const char *str, int direction)
1591 {
1592 	HistEvent ev;
1593 	const char *strp;
1594 	int curr_num;
1595 
1596 	if (history(h, &ev, H_CURR) != 0)
1597 		return -1;
1598 	curr_num = ev.num;
1599 
1600 	for (;;) {
1601 		if ((strp = strstr(ev.str, str)) != NULL)
1602 			return (int)(strp - ev.str);
1603 		if (history(h, &ev, direction < 0 ? H_NEXT:H_PREV) != 0)
1604 			break;
1605 	}
1606 	(void)history(h, &ev, H_SET, curr_num);
1607 	return -1;
1608 }
1609 
1610 
1611 /*
1612  * searches for first history event beginning with str
1613  */
1614 int
1615 history_search_prefix(const char *str, int direction)
1616 {
1617 	HistEvent ev;
1618 
1619 	return (history(h, &ev, direction < 0 ?
1620 	    H_PREV_STR : H_NEXT_STR, str));
1621 }
1622 
1623 
1624 /*
1625  * search for event in history containing str, starting at offset
1626  * abs(pos); continue backward, if pos<0, forward otherwise
1627  */
1628 /* ARGSUSED */
1629 int
1630 history_search_pos(const char *str,
1631 		   int direction __attribute__((__unused__)), int pos)
1632 {
1633 	HistEvent ev;
1634 	int curr_num, off;
1635 
1636 	off = (pos > 0) ? pos : -pos;
1637 	pos = (pos > 0) ? 1 : -1;
1638 
1639 	if (history(h, &ev, H_CURR) != 0)
1640 		return -1;
1641 	curr_num = ev.num;
1642 
1643 	if (history_set_pos(off) != 0 || history(h, &ev, H_CURR) != 0)
1644 		return -1;
1645 
1646 	for (;;) {
1647 		if (strstr(ev.str, str))
1648 			return off;
1649 		if (history(h, &ev, (pos < 0) ? H_PREV : H_NEXT) != 0)
1650 			break;
1651 	}
1652 
1653 	/* set "current" pointer back to previous state */
1654 	(void)history(h, &ev,
1655 	    pos < 0 ? H_NEXT_EVENT : H_PREV_EVENT, curr_num);
1656 
1657 	return -1;
1658 }
1659 
1660 
1661 /********************************/
1662 /* completion functions */
1663 
1664 char *
1665 tilde_expand(char *name)
1666 {
1667 	return fn_tilde_expand(name);
1668 }
1669 
1670 char *
1671 filename_completion_function(const char *name, int state)
1672 {
1673 	return fn_filename_completion_function(name, state);
1674 }
1675 
1676 /*
1677  * a completion generator for usernames; returns _first_ username
1678  * which starts with supplied text
1679  * text contains a partial username preceded by random character
1680  * (usually '~'); state resets search from start (??? should we do that anyway)
1681  * it's callers responsibility to free returned value
1682  */
1683 char *
1684 username_completion_function(const char *text, int state)
1685 {
1686 	struct passwd *pass = NULL;
1687 
1688 	if (text[0] == '\0')
1689 		return NULL;
1690 
1691 	if (*text == '~')
1692 		text++;
1693 
1694 	if (state == 0)
1695 		setpwent();
1696 
1697 	while (
1698 	    (pass = getpwent()) != NULL
1699 	    && text[0] == pass->pw_name[0]
1700 	    && strcmp(text, pass->pw_name) == 0)
1701 		continue;
1702 
1703 	if (pass == NULL) {
1704 		endpwent();
1705 		return NULL;
1706 	}
1707 	return strdup(pass->pw_name);
1708 }
1709 
1710 
1711 /*
1712  * el-compatible wrapper to send TSTP on ^Z
1713  */
1714 /* ARGSUSED */
1715 static unsigned char
1716 _el_rl_tstp(EditLine *el __attribute__((__unused__)), int ch __attribute__((__unused__)))
1717 {
1718 	(void)kill(0, SIGTSTP);
1719 	return CC_NORM;
1720 }
1721 
1722 /*
1723  * Display list of strings in columnar format on readline's output stream.
1724  * 'matches' is list of strings, 'len' is number of strings in 'matches',
1725  * 'max' is maximum length of string in 'matches'.
1726  */
1727 void
1728 rl_display_match_list(char **matches, int len, int max)
1729 {
1730 
1731 	fn_display_match_list(e, matches, (size_t)len, (size_t)max);
1732 }
1733 
1734 static const char *
1735 /*ARGSUSED*/
1736 _rl_completion_append_character_function(const char *dummy
1737     __attribute__((__unused__)))
1738 {
1739 	static char buf[2];
1740 	buf[0] = (char)rl_completion_append_character;
1741 	buf[1] = '\0';
1742 	return buf;
1743 }
1744 
1745 
1746 /*
1747  * complete word at current point
1748  */
1749 /* ARGSUSED */
1750 int
1751 rl_complete(int ignore __attribute__((__unused__)), int invoking_key)
1752 {
1753 #ifdef WIDECHAR
1754 	static ct_buffer_t wbreak_conv, sprefix_conv;
1755 #endif
1756 	char *breakchars = NULL;
1757 
1758 	if (h == NULL || e == NULL)
1759 		rl_initialize();
1760 
1761 	if (rl_inhibit_completion) {
1762 		char arr[2];
1763 		arr[0] = (char)invoking_key;
1764 		arr[1] = '\0';
1765 		el_insertstr(e, arr);
1766 		return CC_REFRESH;
1767 	}
1768 
1769 	if (rl_completion_word_break_hook != NULL)
1770 		breakchars = rl_completion_word_break_hook();
1771 	if (breakchars == NULL)
1772 		breakchars = rl_basic_word_break_characters;
1773 
1774 	/* Just look at how many global variables modify this operation! */
1775 	return fn_complete(e,
1776 	    (CPFunction *)rl_completion_entry_function,
1777 	    rl_attempted_completion_function,
1778 	    ct_decode_string(breakchars, &wbreak_conv),
1779 	    ct_decode_string(rl_special_prefixes, &sprefix_conv),
1780 	    _rl_completion_append_character_function,
1781 	    (size_t)rl_completion_query_items,
1782 	    &rl_completion_type, &rl_attempted_completion_over,
1783 	    &rl_point, &rl_end);
1784 
1785 
1786 }
1787 
1788 
1789 /* ARGSUSED */
1790 static unsigned char
1791 _el_rl_complete(EditLine *el __attribute__((__unused__)), int ch)
1792 {
1793 	return (unsigned char)rl_complete(0, ch);
1794 }
1795 
1796 /*
1797  * misc other functions
1798  */
1799 
1800 /*
1801  * bind key c to readline-type function func
1802  */
1803 int
1804 rl_bind_key(int c, rl_command_func_t *func)
1805 {
1806 	int retval = -1;
1807 
1808 	if (h == NULL || e == NULL)
1809 		rl_initialize();
1810 
1811 	if (func == rl_insert) {
1812 		/* XXX notice there is no range checking of ``c'' */
1813 		e->el_map.key[c] = ED_INSERT;
1814 		retval = 0;
1815 	}
1816 	return retval;
1817 }
1818 
1819 
1820 /*
1821  * read one key from input - handles chars pushed back
1822  * to input stream also
1823  */
1824 int
1825 rl_read_key(void)
1826 {
1827 	char fooarr[2 * sizeof(int)];
1828 
1829 	if (e == NULL || h == NULL)
1830 		rl_initialize();
1831 
1832 	return el_getc(e, fooarr);
1833 }
1834 
1835 
1836 /*
1837  * reset the terminal
1838  */
1839 /* ARGSUSED */
1840 void
1841 rl_reset_terminal(const char *p __attribute__((__unused__)))
1842 {
1843 
1844 	if (h == NULL || e == NULL)
1845 		rl_initialize();
1846 	el_reset(e);
1847 }
1848 
1849 
1850 /*
1851  * insert character ``c'' back into input stream, ``count'' times
1852  */
1853 int
1854 rl_insert(int count, int c)
1855 {
1856 	char arr[2];
1857 
1858 	if (h == NULL || e == NULL)
1859 		rl_initialize();
1860 
1861 	/* XXX - int -> char conversion can lose on multichars */
1862 	arr[0] = (char)c;
1863 	arr[1] = '\0';
1864 
1865 	for (; count > 0; count--)
1866 		el_push(e, arr);
1867 
1868 	return 0;
1869 }
1870 
1871 int
1872 rl_insert_text(const char *text)
1873 {
1874 	if (!text || *text == 0)
1875 		return 0;
1876 
1877 	if (h == NULL || e == NULL)
1878 		rl_initialize();
1879 
1880 	if (el_insertstr(e, text) < 0)
1881 		return 0;
1882 	return (int)strlen(text);
1883 }
1884 
1885 /*ARGSUSED*/
1886 int
1887 rl_newline(int count __attribute__((__unused__)),
1888     int c __attribute__((__unused__)))
1889 {
1890 	/*
1891 	 * Readline-4.0 appears to ignore the args.
1892 	 */
1893 	return rl_insert(1, '\n');
1894 }
1895 
1896 /*ARGSUSED*/
1897 static unsigned char
1898 rl_bind_wrapper(EditLine *el __attribute__((__unused__)), unsigned char c)
1899 {
1900 	if (map[c] == NULL)
1901 	    return CC_ERROR;
1902 
1903 	_rl_update_pos();
1904 
1905 	(*map[c])(NULL, c);
1906 
1907 	/* If rl_done was set by the above call, deal with it here */
1908 	if (rl_done)
1909 		return CC_EOF;
1910 
1911 	return CC_NORM;
1912 }
1913 
1914 int
1915 rl_add_defun(const char *name, Function *fun, int c)
1916 {
1917 	char dest[8];
1918 	if ((size_t)c >= sizeof(map) / sizeof(map[0]) || c < 0)
1919 		return -1;
1920 	map[(unsigned char)c] = fun;
1921 	el_set(e, EL_ADDFN, name, name, rl_bind_wrapper);
1922 	vis(dest, c, VIS_WHITE|VIS_NOSLASH, 0);
1923 	el_set(e, EL_BIND, dest, name);
1924 	return 0;
1925 }
1926 
1927 void
1928 rl_callback_read_char()
1929 {
1930 	int count = 0, done = 0;
1931 	const char *buf = el_gets(e, &count);
1932 	char *wbuf;
1933 
1934 	if (buf == NULL || count-- <= 0)
1935 		return;
1936 	if (count == 0 && buf[0] == e->el_tty.t_c[TS_IO][C_EOF])
1937 		done = 1;
1938 	if (buf[count] == '\n' || buf[count] == '\r')
1939 		done = 2;
1940 
1941 	if (done && rl_linefunc != NULL) {
1942 		el_set(e, EL_UNBUFFERED, 0);
1943 		if (done == 2) {
1944 		    if ((wbuf = strdup(buf)) != NULL)
1945 			wbuf[count] = '\0';
1946 		} else
1947 			wbuf = NULL;
1948 		(*(void (*)(const char *))rl_linefunc)(wbuf);
1949 		//el_set(e, EL_UNBUFFERED, 1);
1950 	}
1951 }
1952 
1953 void
1954 rl_callback_handler_install(const char *prompt, VCPFunction *linefunc)
1955 {
1956 	if (e == NULL) {
1957 		rl_initialize();
1958 	}
1959 	(void)rl_set_prompt(prompt);
1960 	rl_linefunc = linefunc;
1961 	el_set(e, EL_UNBUFFERED, 1);
1962 }
1963 
1964 void
1965 rl_callback_handler_remove(void)
1966 {
1967 	el_set(e, EL_UNBUFFERED, 0);
1968 	rl_linefunc = NULL;
1969 }
1970 
1971 void
1972 rl_redisplay(void)
1973 {
1974 	char a[2];
1975 	a[0] = (char)e->el_tty.t_c[TS_IO][C_REPRINT];
1976 	a[1] = '\0';
1977 	el_push(e, a);
1978 }
1979 
1980 int
1981 rl_get_previous_history(int count, int key)
1982 {
1983 	char a[2];
1984 	a[0] = (char)key;
1985 	a[1] = '\0';
1986 	while (count--)
1987 		el_push(e, a);
1988 	return 0;
1989 }
1990 
1991 void
1992 /*ARGSUSED*/
1993 rl_prep_terminal(int meta_flag __attribute__((__unused__)))
1994 {
1995 	el_set(e, EL_PREP_TERM, 1);
1996 }
1997 
1998 void
1999 rl_deprep_terminal(void)
2000 {
2001 	el_set(e, EL_PREP_TERM, 0);
2002 }
2003 
2004 int
2005 rl_read_init_file(const char *s)
2006 {
2007 	return el_source(e, s);
2008 }
2009 
2010 int
2011 rl_parse_and_bind(const char *line)
2012 {
2013 	const char **argv;
2014 	int argc;
2015 	Tokenizer *tok;
2016 
2017 	tok = tok_init(NULL);
2018 	tok_str(tok, line, &argc, &argv);
2019 	argc = el_parse(e, argc, argv);
2020 	tok_end(tok);
2021 	return argc ? 1 : 0;
2022 }
2023 
2024 int
2025 rl_variable_bind(const char *var, const char *value)
2026 {
2027 	/*
2028 	 * The proper return value is undocument, but this is what the
2029 	 * readline source seems to do.
2030 	 */
2031 	return el_set(e, EL_BIND, "", var, value) == -1 ? 1 : 0;
2032 }
2033 
2034 void
2035 rl_stuff_char(int c)
2036 {
2037 	char buf[2];
2038 
2039 	buf[0] = (char)c;
2040 	buf[1] = '\0';
2041 	el_insertstr(e, buf);
2042 }
2043 
2044 static int
2045 _rl_event_read_char(EditLine *el, char *cp)
2046 {
2047 	int	n;
2048 	ssize_t num_read = 0;
2049 
2050 	*cp = '\0';
2051 	while (rl_event_hook) {
2052 
2053 		(*rl_event_hook)();
2054 
2055 #if defined(FIONREAD)
2056 		if (ioctl(el->el_infd, FIONREAD, &n) < 0)
2057 			return -1;
2058 		if (n)
2059 			num_read = read(el->el_infd, cp, (size_t)1);
2060 		else
2061 			num_read = 0;
2062 #elif defined(F_SETFL) && defined(O_NDELAY)
2063 		if ((n = fcntl(el->el_infd, F_GETFL, 0)) < 0)
2064 			return -1;
2065 		if (fcntl(el->el_infd, F_SETFL, n|O_NDELAY) < 0)
2066 			return -1;
2067 		num_read = read(el->el_infd, cp, 1);
2068 		if (fcntl(el->el_infd, F_SETFL, n))
2069 			return -1;
2070 #else
2071 		/* not non-blocking, but what you gonna do? */
2072 		num_read = read(el->el_infd, cp, 1);
2073 		return -1;
2074 #endif
2075 
2076 		if (num_read < 0 && errno == EAGAIN)
2077 			continue;
2078 		if (num_read == 0)
2079 			continue;
2080 		break;
2081 	}
2082 	if (!rl_event_hook)
2083 		el_set(el, EL_GETCFN, EL_BUILTIN_GETCFN);
2084 	return (int)num_read;
2085 }
2086 
2087 static void
2088 _rl_update_pos(void)
2089 {
2090 	const LineInfo *li = el_line(e);
2091 
2092 	rl_point = (int)(li->cursor - li->buffer);
2093 	rl_end = (int)(li->lastchar - li->buffer);
2094 }
2095 
2096 void
2097 rl_get_screen_size(int *rows, int *cols)
2098 {
2099 	if (rows)
2100 		el_get(e, EL_GETTC, "li", rows);
2101 	if (cols)
2102 		el_get(e, EL_GETTC, "co", cols);
2103 }
2104 
2105 void
2106 rl_set_screen_size(int rows, int cols)
2107 {
2108 	char buf[64];
2109 	(void)snprintf(buf, sizeof(buf), "%d", rows);
2110 	el_set(e, EL_SETTC, "li", buf);
2111 	(void)snprintf(buf, sizeof(buf), "%d", cols);
2112 	el_set(e, EL_SETTC, "co", buf);
2113 }
2114 
2115 char **
2116 rl_completion_matches(const char *str, rl_compentry_func_t *fun)
2117 {
2118 	size_t len, max, i, j, min;
2119 	char **list, *match, *a, *b;
2120 
2121 	len = 1;
2122 	max = 10;
2123 	if ((list = el_malloc(max * sizeof(*list))) == NULL)
2124 		return NULL;
2125 
2126 	while ((match = (*fun)(str, (int)(len - 1))) != NULL) {
2127 		list[len++] = match;
2128 		if (len == max) {
2129 			char **nl;
2130 			max += 10;
2131 			if ((nl = el_realloc(list, max * sizeof(*nl))) == NULL)
2132 				goto out;
2133 			list = nl;
2134 		}
2135 	}
2136 	if (len == 1)
2137 		goto out;
2138 	list[len] = NULL;
2139 	if (len == 2) {
2140 		if ((list[0] = strdup(list[1])) == NULL)
2141 			goto out;
2142 		return list;
2143 	}
2144 	qsort(&list[1], len - 1, sizeof(*list),
2145 	    (int (*)(const void *, const void *)) strcmp);
2146 	min = SIZE_T_MAX;
2147 	for (i = 1, a = list[i]; i < len - 1; i++, a = b) {
2148 		b = list[i + 1];
2149 		for (j = 0; a[j] && a[j] == b[j]; j++)
2150 			continue;
2151 		if (min > j)
2152 			min = j;
2153 	}
2154 	if (min == 0 && *str) {
2155 		if ((list[0] = strdup(str)) == NULL)
2156 			goto out;
2157 	} else {
2158 		if ((list[0] = el_malloc((min + 1) * sizeof(*list[0]))) == NULL)
2159 			goto out;
2160 		(void)memcpy(list[0], list[1], min);
2161 		list[0][min] = '\0';
2162 	}
2163 	return list;
2164 
2165 out:
2166 	el_free(list);
2167 	return NULL;
2168 }
2169 
2170 char *
2171 rl_filename_completion_function (const char *text, int state)
2172 {
2173 	return fn_filename_completion_function(text, state);
2174 }
2175 
2176 void
2177 rl_forced_update_display(void)
2178 {
2179 	el_set(e, EL_REFRESH);
2180 }
2181 
2182 int
2183 _rl_abort_internal(void)
2184 {
2185 	el_beep(e);
2186 	longjmp(topbuf, 1);
2187 	/*NOTREACHED*/
2188 }
2189 
2190 int
2191 _rl_qsort_string_compare(char **s1, char **s2)
2192 {
2193 	return strcoll(*s1, *s2);
2194 }
2195 
2196 HISTORY_STATE *
2197 history_get_history_state(void)
2198 {
2199 	HISTORY_STATE *hs;
2200 
2201 	if ((hs = el_malloc(sizeof(*hs))) == NULL)
2202 		return NULL;
2203 	hs->length = history_length;
2204 	return hs;
2205 }
2206 
2207 int
2208 /*ARGSUSED*/
2209 rl_kill_text(int from __attribute__((__unused__)),
2210     int to __attribute__((__unused__)))
2211 {
2212 	return 0;
2213 }
2214 
2215 Keymap
2216 rl_make_bare_keymap(void)
2217 {
2218 	return NULL;
2219 }
2220 
2221 Keymap
2222 rl_get_keymap(void)
2223 {
2224 	return NULL;
2225 }
2226 
2227 void
2228 /*ARGSUSED*/
2229 rl_set_keymap(Keymap k __attribute__((__unused__)))
2230 {
2231 }
2232 
2233 int
2234 /*ARGSUSED*/
2235 rl_generic_bind(int type __attribute__((__unused__)),
2236     const char * keyseq __attribute__((__unused__)),
2237     const char * data __attribute__((__unused__)),
2238     Keymap k __attribute__((__unused__)))
2239 {
2240 	return 0;
2241 }
2242 
2243 int
2244 /*ARGSUSED*/
2245 rl_bind_key_in_map(int key __attribute__((__unused__)),
2246     rl_command_func_t *fun __attribute__((__unused__)),
2247     Keymap k __attribute__((__unused__)))
2248 {
2249 	return 0;
2250 }
2251 
2252 /* unsupported, but needed by python */
2253 void
2254 rl_cleanup_after_signal(void)
2255 {
2256 }
2257 
2258 int
2259 rl_on_new_line(void)
2260 {
2261 	return 0;
2262 }
2263