]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
cli: use plain readline() interface with libedit
authorPablo Neira Ayuso <pablo@netfilter.org>
Wed, 6 Jan 2021 11:28:01 +0000 (12:28 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Wed, 6 Jan 2021 13:09:21 +0000 (14:09 +0100)
Instead of the alternate interface [1].

I spent a bit of time debugging an issue with libedit support
9420423900a2 ("cli: add libedit support") that broke tests/shell.

This is the reproducer:

 # nft -i << EOF
 list ruleset
 EOF

which makes rl_callback_read_char() loop forever on read() as shown by
strace. The rl_line_buffer variable does not accumulate the typed
characters as it should when redirecting the standard input for some
reason.

Given our interactive interface is fairly simple at this stage, switch
to use the readline() interface instead of rl_callback_read_char().

[1] https://docs.freebsd.org/info/readline/readline.info.Alternate_Interface.html

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/cli.c

index 45811595fc779fcb07ff4caf0838ec5714335f2c..4845e5cf1454a3bebd3e270cbf0190d15f7d3d97 100644 (file)
--- a/src/cli.c
+++ b/src/cli.c
@@ -154,6 +154,16 @@ static void cli_complete(char *line)
        free(line);
 }
 
+void cli_exit(void)
+{
+       rl_callback_handler_remove();
+       rl_deprep_terminal();
+       write_history(histfile);
+}
+#endif
+
+#if defined(HAVE_LIBREADLINE)
+
 static char **cli_completion(const char *text, int start, int end)
 {
        return NULL;
@@ -179,11 +189,32 @@ int cli_init(struct nft_ctx *nft)
        return 0;
 }
 
-void cli_exit(void)
+#elif defined(HAVE_LIBEDIT)
+
+int cli_init(struct nft_ctx *nft)
 {
-       rl_callback_handler_remove();
-       rl_deprep_terminal();
-       write_history(histfile);
+       char *line;
+
+       cli_nft = nft;
+       rl_readline_name = (char *)"nft";
+       rl_instream  = stdin;
+       rl_outstream = stdout;
+
+       init_histfile();
+
+       read_history(histfile);
+       history_set_pos(history_length);
+
+       rl_set_prompt(CMDLINE_PROMPT);
+       while ((line = readline(rl_prompt)) != NULL) {
+               line = cli_append_multiline(line);
+               if (!line)
+                       continue;
+
+               cli_complete(line);
+       }
+
+       return 0;
 }
 
 #else /* HAVE_LINENOISE */