X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=blobdiff_plain;f=src%2Ftools%2Fsysdb%2Fcommand.c;h=5888963ecf8ace7b7ee703d05a332a38bc0be353;hp=4de2b44e4fc79245027a22c5c2932bd82b46f742;hb=5cc17919bcf0cc5474811e376bdba8989f0b54d3;hpb=233d70fd5ffdc770e639da722a8070cb73ec4fc6 diff --git a/src/tools/sysdb/command.c b/src/tools/sysdb/command.c index 4de2b44..5888963 100644 --- a/src/tools/sysdb/command.c +++ b/src/tools/sysdb/command.c @@ -40,15 +40,84 @@ #include "utils/proto.h" #include "utils/strbuf.h" +#include +#include + #include #include #include +#include +#include #include #include +#include + +static pid_t +exec_pager(int in) +{ + pid_t pid; + long fd; + + sigset_t sigs; + + pid = fork(); + if (pid) /* parent or error */ + return pid; + + sigemptyset(&sigs); + sigprocmask(SIG_SETMASK, &sigs, NULL); + + for (fd = 3; fd <= sysconf(_SC_OPEN_MAX); fd++) + if (fd != in) + close((int)fd); + + if (dup2(in, STDIN_FILENO) >= 0) { + /* TODO: make configurable */ + char *argv[] = { "less", "-FRX" }; + + close(in); + in = STDIN_FILENO; + + if (execvp(argv[0], argv)) { + char cmdbuf[1024], errbuf[1024]; + sdb_data_format(&(sdb_data_t){ + SDB_TYPE_STRING | SDB_TYPE_ARRAY, + { .array = { SDB_STATIC_ARRAY_LEN(argv), argv } }, + }, cmdbuf, sizeof(cmdbuf), SDB_UNQUOTED); + sdb_log(SDB_LOG_WARNING, "Failed to execute pager %s: %s", + cmdbuf, sdb_strerror(errno, errbuf, sizeof(errbuf))); + } + } + + /* else: something failed, simply print all input */ + while (42) { + char buf[1024 + 1]; + ssize_t n; + + n = read(in, buf, sizeof(buf) - 1); + if (!n) /* EOF */ + break; + + if (n > 0) { + buf[n] = '\0'; + printf("%s", buf); + continue; + } + + if ((errno == EAGAIN) || (errno == EWOULDBLOCK) + || (errno == EINTR)) + continue; + + sdb_log(SDB_LOG_ERR, "Failed to read query result: %s", + sdb_strerror(errno, buf, sizeof(buf))); + exit(1); + } + exit(0); +} /* exec_pager */ static void -ok_printer(sdb_strbuf_t *buf) +ok_printer(sdb_input_t __attribute__((unused)) *input, sdb_strbuf_t *buf) { const char *msg = sdb_strbuf_string(buf); if (msg && *msg) @@ -58,7 +127,7 @@ ok_printer(sdb_strbuf_t *buf) } /* ok_printer */ static void -log_printer(sdb_strbuf_t *buf) +log_printer(sdb_input_t __attribute__((unused)) *input, sdb_strbuf_t *buf) { uint32_t prio = 0; @@ -73,9 +142,14 @@ log_printer(sdb_strbuf_t *buf) } /* log_printer */ static void -data_printer(sdb_strbuf_t *buf) +data_printer(sdb_input_t *input, sdb_strbuf_t *buf) { size_t len = sdb_strbuf_len(buf); + uint32_t type = 0; + + int pipefd[2] = { -1, -1 }; + FILE *out = stdout; + pid_t pager = -1; if ((! len) || (len == sizeof(uint32_t))) { /* empty command or empty reply */ @@ -87,17 +161,40 @@ data_printer(sdb_strbuf_t *buf) return; } - /* At the moment, we don't care about the result type. We simply print the - * result without further parsing it. */ + if (input->interactive) { + if (pipe(pipefd)) { + char errbuf[2014]; + sdb_log(SDB_LOG_WARNING, "Failed to open pipe: %s", + sdb_strerror(errno, errbuf, sizeof(errbuf))); + } + else { + out = fdopen(pipefd[1], "w"); + pager = exec_pager(pipefd[0]); + if (pager < 0) { + out = stdout; + close(pipefd[0]); + close(pipefd[1]); + } + else + close(pipefd[0]); + } + } + + sdb_proto_unmarshal_int32(SDB_STRBUF_STR(buf), &type); sdb_strbuf_skip(buf, 0, sizeof(uint32_t)); - if (sdb_json_print(buf)) + if (sdb_json_print(out, input, (int)type, buf)) sdb_log(SDB_LOG_ERR, "Failed to print result"); - printf("\n"); + fprintf(out, "\n"); + + if (out != stdout) + fclose(out); /* will close pipefd[1] */ + if (pager > 0) + waitpid(pager, NULL, 0); } /* data_printer */ static struct { int status; - void (*printer)(sdb_strbuf_t *); + void (*printer)(sdb_input_t *, sdb_strbuf_t *); } response_printers[] = { { SDB_CONNECTION_OK, ok_printer }, { SDB_CONNECTION_LOG, log_printer }, @@ -118,7 +215,7 @@ clear_query(sdb_input_t *input) */ int -sdb_command_print_reply(sdb_client_t *client) +sdb_command_print_reply(sdb_input_t *input) { sdb_strbuf_t *recv_buf; const char *result; @@ -131,10 +228,10 @@ sdb_command_print_reply(sdb_client_t *client) if (! recv_buf) return -1; - if (sdb_client_recv(client, &rcode, recv_buf) < 0) + if (sdb_client_recv(input->client, &rcode, recv_buf) < 0) rcode = UINT32_MAX; - if (sdb_client_eof(client)) { + if (sdb_client_eof(input->client)) { sdb_strbuf_destroy(recv_buf); return -1; } @@ -144,7 +241,7 @@ sdb_command_print_reply(sdb_client_t *client) for (i = 0; i < SDB_STATIC_ARRAY_LEN(response_printers); ++i) { if (status == response_printers[i].status) { - response_printers[i].printer(recv_buf); + response_printers[i].printer(input, recv_buf); sdb_strbuf_destroy(recv_buf); return status; } @@ -203,7 +300,7 @@ sdb_command_exec(sdb_input_t *input) /* The server may send back log messages but will eventually reply to the * query, which is either DATA or ERROR. */ while (42) { - int status = sdb_command_print_reply(input->client); + int status = sdb_command_print_reply(input); if (status < 0) { sdb_log(SDB_LOG_ERR, "Failed to read reply from server"); break;