2 * Copyright (c) 2009, 2010 Nicira Networks.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
28 #include "command-line.h"
32 #include "dynamic-string.h"
36 #include "ovsdb-data.h"
37 #include "ovsdb-error.h"
40 #include "stream-ssl.h"
46 #define THIS_MODULE VLM_ovsdb_client
48 /* --format: Output formatting. */
50 FMT_TABLE, /* Textual table. */
51 FMT_HTML, /* HTML table. */
52 FMT_CSV /* Comma-separated lines. */
55 /* --no-headings: Whether table output should include headings. */
56 static int output_headings = true;
58 /* --pretty: Flags to pass to json_to_string(). */
59 static int json_flags = JSSF_SORT;
61 /* --data: Format of data in output tables. */
63 DF_STRING, /* String format. */
67 static const struct command all_commands[];
69 static void usage(void) NO_RETURN;
70 static void parse_options(int argc, char *argv[]);
73 main(int argc, char *argv[])
75 proctitle_init(argc, argv);
76 set_program_name(argv[0]);
79 parse_options(argc, argv);
80 signal(SIGPIPE, SIG_IGN);
81 run_command(argc - optind, argv + optind, all_commands);
86 parse_options(int argc, char *argv[])
89 OPT_BOOTSTRAP_CA_CERT = UCHAR_MAX + 1
91 static struct option long_options[] = {
92 {"format", required_argument, 0, 'f'},
93 {"data", required_argument, 0, 'd'},
94 {"no-headings", no_argument, &output_headings, 0},
95 {"pretty", no_argument, &json_flags, JSSF_PRETTY | JSSF_SORT},
96 {"verbose", optional_argument, 0, 'v'},
97 {"help", no_argument, 0, 'h'},
98 {"version", no_argument, 0, 'V'},
101 {"bootstrap-ca-cert", required_argument, 0, OPT_BOOTSTRAP_CA_CERT},
102 STREAM_SSL_LONG_OPTIONS
106 char *short_options = long_options_to_short_options(long_options);
111 c = getopt_long(argc, argv, short_options, long_options, NULL);
118 if (!strcmp(optarg, "table")) {
119 output_format = FMT_TABLE;
120 } else if (!strcmp(optarg, "html")) {
121 output_format = FMT_HTML;
122 } else if (!strcmp(optarg, "csv")) {
123 output_format = FMT_CSV;
125 ovs_fatal(0, "unknown output format \"%s\"", optarg);
130 if (!strcmp(optarg, "string")) {
131 data_format = DF_STRING;
132 } else if (!strcmp(optarg, "json")) {
133 data_format = DF_JSON;
135 ovs_fatal(0, "unknown data format \"%s\"", optarg);
143 OVS_PRINT_VERSION(0, 0);
147 vlog_set_verbosity(optarg);
150 DAEMON_OPTION_HANDLERS
153 STREAM_SSL_OPTION_HANDLERS
155 case OPT_BOOTSTRAP_CA_CERT:
156 stream_ssl_set_ca_cert_file(optarg, true);
164 /* getopt_long() already set the value for us. */
177 printf("%s: Open vSwitch database JSON-RPC client\n"
178 "usage: %s [OPTIONS] COMMAND [ARG...]\n"
179 "\nValid commands are:\n"
180 "\n list-dbs SERVER\n"
181 " list databases available on SERVER\n"
182 "\n get-schema SERVER DATABASE\n"
183 " retrieve schema for DATABASE from SERVER\n"
184 "\n list-tables SERVER DATABASE\n"
185 " list tables for DATABASE on SERVER\n"
186 "\n list-columns SERVER DATABASE [TABLE]\n"
187 " list columns in TABLE (or all tables) in DATABASE on SERVER\n"
188 "\n transact SERVER TRANSACTION\n"
189 " run TRANSACTION (a JSON array of operations) on SERVER\n"
190 " and print the results as JSON on stdout\n"
191 "\n monitor SERVER DATABASE TABLE [COLUMN,...] [SELECT,...]\n"
192 " monitor contents of (COLUMNs in) TABLE in DATABASE on SERVER\n"
193 " Valid SELECTs are: initial, insert, delete, modify\n"
194 "\n dump SERVER DATABASE\n"
195 " dump contents of DATABASE on SERVER to stdout\n",
196 program_name, program_name);
197 stream_usage("SERVER", true, true, true);
198 printf("\nOutput formatting options:\n"
199 " -f, --format=FORMAT set output formatting to FORMAT\n"
200 " (\"table\", \"html\", or \"csv\"\n"
201 " --no-headings omit table heading row\n"
202 " --pretty pretty-print JSON in output");
205 printf("\nOther options:\n"
206 " -h, --help display this help message\n"
207 " -V, --version display version information\n");
212 parse_json(const char *s)
214 struct json *json = json_from_string(s);
215 if (json->type == JSON_STRING) {
216 ovs_fatal(0, "\"%s\": %s", s, json->u.string);
221 static struct jsonrpc *
222 open_jsonrpc(const char *server)
224 struct stream *stream;
227 error = stream_open_block(server, &stream);
228 if (error == EAFNOSUPPORT) {
229 struct pstream *pstream;
231 error = pstream_open(server, &pstream);
233 ovs_fatal(error, "failed to connect or listen to \"%s\"", server);
236 VLOG_INFO("%s: waiting for connection...", server);
237 error = pstream_accept_block(pstream, &stream);
239 ovs_fatal(error, "failed to accept connection on \"%s\"", server);
242 pstream_close(pstream);
244 ovs_fatal(error, "failed to connect to \"%s\"", server);
247 return jsonrpc_open(stream);
251 print_json(struct json *json)
253 char *string = json_to_string(json, json_flags);
254 fputs(string, stdout);
259 print_and_free_json(struct json *json)
266 check_ovsdb_error(struct ovsdb_error *error)
269 ovs_fatal(0, "%s", ovsdb_error_to_string(error));
273 static struct ovsdb_schema *
274 fetch_schema_from_rpc(struct jsonrpc *rpc, const char *database)
276 struct jsonrpc_msg *request, *reply;
277 struct ovsdb_schema *schema;
280 request = jsonrpc_create_request("get_schema",
282 json_string_create(database)),
284 error = jsonrpc_transact_block(rpc, request, &reply);
286 ovs_fatal(error, "transaction failed");
288 check_ovsdb_error(ovsdb_schema_from_json(reply->result, &schema));
289 jsonrpc_msg_destroy(reply);
294 static struct ovsdb_schema *
295 fetch_schema(const char *server, const char *database)
297 struct ovsdb_schema *schema;
300 rpc = open_jsonrpc(server);
301 schema = fetch_schema_from_rpc(rpc, database);
314 struct column *columns;
315 size_t n_columns, allocated_columns;
316 size_t n_rows, allocated_rows;
317 size_t current_column;
322 table_init(struct table *table)
324 memset(table, 0, sizeof *table);
328 table_destroy(struct table *table)
332 for (i = 0; i < table->n_columns; i++) {
333 free(table->columns[i].heading);
335 free(table->columns);
337 for (i = 0; i < table->n_columns * table->n_rows; i++) {
338 free(table->cells[i]);
342 free(table->caption);
346 table_set_caption(struct table *table, char *caption)
348 free(table->caption);
349 table->caption = caption;
353 table_add_column(struct table *table, const char *heading, ...)
357 table_add_column(struct table *table, const char *heading, ...)
359 struct column *column;
362 assert(!table->n_rows);
363 if (table->n_columns >= table->allocated_columns) {
364 table->columns = x2nrealloc(table->columns, &table->allocated_columns,
365 sizeof *table->columns);
367 column = &table->columns[table->n_columns++];
369 va_start(args, heading);
370 column->heading = xvasprintf(heading, args);
371 column->width = strlen(column->heading);
376 table_cell__(const struct table *table, size_t row, size_t column)
378 return &table->cells[column + row * table->n_columns];
382 table_add_row(struct table *table)
386 if (table->n_rows >= table->allocated_rows) {
387 table->cells = x2nrealloc(table->cells, &table->allocated_rows,
388 table->n_columns * sizeof *table->cells);
392 table->current_column = 0;
393 for (x = 0; x < table->n_columns; x++) {
394 *table_cell__(table, y, x) = NULL;
399 table_add_cell_nocopy(struct table *table, char *s)
404 assert(table->n_rows > 0);
405 assert(table->current_column < table->n_columns);
407 x = table->current_column++;
408 y = table->n_rows - 1;
409 *table_cell__(table, y, x) = s;
412 if (length > table->columns[x].width) {
413 table->columns[x].width = length;
418 table_add_cell(struct table *table, const char *format, ...)
422 va_start(args, format);
423 table_add_cell_nocopy(table, xvasprintf(format, args));
428 table_print_table_line__(struct ds *line)
435 table_print_table__(const struct table *table)
438 struct ds line = DS_EMPTY_INITIALIZER;
445 if (output_headings) {
446 for (x = 0; x < table->n_columns; x++) {
447 const struct column *column = &table->columns[x];
449 ds_put_char(&line, ' ');
451 ds_put_format(&line, "%-*s", column->width, column->heading);
453 table_print_table_line__(&line);
455 for (x = 0; x < table->n_columns; x++) {
456 const struct column *column = &table->columns[x];
460 ds_put_char(&line, ' ');
462 for (i = 0; i < column->width; i++) {
463 ds_put_char(&line, '-');
466 table_print_table_line__(&line);
469 for (y = 0; y < table->n_rows; y++) {
470 for (x = 0; x < table->n_columns; x++) {
471 const char *cell = *table_cell__(table, y, x);
473 ds_put_char(&line, ' ');
475 ds_put_format(&line, "%-*s", table->columns[x].width, cell);
477 table_print_table_line__(&line);
484 table_escape_html_text__(const char *s, size_t n)
488 for (i = 0; i < n; i++) {
493 fputs("&", stdout);
496 fputs("<", stdout);
499 fputs(">", stdout);
502 fputs(""", stdout);
512 table_print_html_cell__(const char *element, const char *content)
516 printf(" <%s>", element);
517 for (p = content; *p; ) {
520 if (uuid_from_string_prefix(&uuid, p)) {
521 printf("<a href=\"#%.*s\">%.*s</a>", UUID_LEN, p, 8, p);
524 table_escape_html_text__(p, 1);
528 printf("</%s>\n", element);
532 table_print_html__(const struct table *table)
536 fputs("<table border=1>\n", stdout);
538 if (table->caption) {
539 table_print_html_cell__("caption", table->caption);
542 if (output_headings) {
543 fputs(" <tr>\n", stdout);
544 for (x = 0; x < table->n_columns; x++) {
545 const struct column *column = &table->columns[x];
546 table_print_html_cell__("th", column->heading);
548 fputs(" </tr>\n", stdout);
551 for (y = 0; y < table->n_rows; y++) {
552 fputs(" <tr>\n", stdout);
553 for (x = 0; x < table->n_columns; x++) {
554 const char *content = *table_cell__(table, y, x);
556 if (!strcmp(table->columns[x].heading, "_uuid")) {
557 fputs(" <td><a name=\"", stdout);
558 table_escape_html_text__(content, strlen(content));
559 fputs("\">", stdout);
560 table_escape_html_text__(content, 8);
561 fputs("</a></td>\n", stdout);
563 table_print_html_cell__("td", content);
566 fputs(" </tr>\n", stdout);
569 fputs("</table>\n", stdout);
573 table_print_csv_cell__(const char *content)
577 if (!strpbrk(content, "\n\",")) {
578 fputs(content, stdout);
581 for (p = content; *p != '\0'; p++) {
584 fputs("\"\"", stdout);
596 table_print_csv__(const struct table *table)
605 if (table->caption) {
606 puts(table->caption);
609 if (output_headings) {
610 for (x = 0; x < table->n_columns; x++) {
611 const struct column *column = &table->columns[x];
615 table_print_csv_cell__(column->heading);
620 for (y = 0; y < table->n_rows; y++) {
621 for (x = 0; x < table->n_columns; x++) {
625 table_print_csv_cell__(*table_cell__(table, y, x));
632 table_print(const struct table *table)
634 switch (output_format) {
636 table_print_table__(table);
640 table_print_html__(table);
644 table_print_csv__(table);
650 do_list_dbs(int argc OVS_UNUSED, char *argv[])
652 struct jsonrpc_msg *request, *reply;
657 rpc = open_jsonrpc(argv[1]);
658 request = jsonrpc_create_request("list_dbs", json_array_create_empty(),
660 error = jsonrpc_transact_block(rpc, request, &reply);
662 ovs_fatal(error, "transaction failed");
665 if (reply->result->type != JSON_ARRAY) {
666 ovs_fatal(0, "list_dbs response is not array");
669 for (i = 0; i < reply->result->u.array.n; i++) {
670 const struct json *name = reply->result->u.array.elems[i];
672 if (name->type != JSON_STRING) {
673 ovs_fatal(0, "list_dbs response %zu is not string", i);
675 puts(name->u.string);
677 jsonrpc_msg_destroy(reply);
681 do_get_schema(int argc OVS_UNUSED, char *argv[])
683 struct ovsdb_schema *schema = fetch_schema(argv[1], argv[2]);
684 print_and_free_json(ovsdb_schema_to_json(schema));
685 ovsdb_schema_destroy(schema);
689 do_list_tables(int argc OVS_UNUSED, char *argv[])
691 struct ovsdb_schema *schema;
692 struct shash_node *node;
695 schema = fetch_schema(argv[1], argv[2]);
697 table_add_column(&t, "Table");
698 SHASH_FOR_EACH (node, &schema->tables) {
699 struct ovsdb_table_schema *ts = node->data;
702 table_add_cell(&t, ts->name);
704 ovsdb_schema_destroy(schema);
709 do_list_columns(int argc OVS_UNUSED, char *argv[])
711 const char *table_name = argv[3];
712 struct ovsdb_schema *schema;
713 struct shash_node *table_node;
716 schema = fetch_schema(argv[1], argv[2]);
719 table_add_column(&t, "Table");
721 table_add_column(&t, "Column");
722 table_add_column(&t, "Type");
723 SHASH_FOR_EACH (table_node, &schema->tables) {
724 struct ovsdb_table_schema *ts = table_node->data;
726 if (!table_name || !strcmp(table_name, ts->name)) {
727 struct shash_node *column_node;
729 SHASH_FOR_EACH (column_node, &ts->columns) {
730 const struct ovsdb_column *column = column_node->data;
731 struct json *type = ovsdb_type_to_json(&column->type);
735 table_add_cell(&t, ts->name);
737 table_add_cell(&t, column->name);
738 table_add_cell_nocopy(&t, json_to_string(type, JSSF_SORT));
744 ovsdb_schema_destroy(schema);
749 do_transact(int argc OVS_UNUSED, char *argv[])
751 struct jsonrpc_msg *request, *reply;
752 struct json *transaction;
756 transaction = parse_json(argv[2]);
758 rpc = open_jsonrpc(argv[1]);
759 request = jsonrpc_create_request("transact", transaction, NULL);
760 error = jsonrpc_transact_block(rpc, request, &reply);
762 ovs_fatal(error, "transaction failed");
765 ovs_fatal(error, "transaction returned error: %s",
766 json_to_string(reply->error, json_flags));
768 print_json(reply->result);
770 jsonrpc_msg_destroy(reply);
775 format_json(const struct json *json, const struct ovsdb_type *type)
777 if (data_format == DF_JSON) {
778 return json_to_string(json, JSSF_SORT);
779 } else if (data_format == DF_STRING) {
780 struct ovsdb_datum datum;
781 struct ovsdb_error *error;
784 error = ovsdb_datum_from_json(&datum, type, json, NULL);
786 return json_to_string(json, JSSF_SORT);
790 ovsdb_datum_to_string(&datum, type, &s);
791 ovsdb_datum_destroy(&datum, type);
792 return ds_steal_cstr(&s);
799 monitor_print_row(struct json *row, const char *type, const char *uuid,
800 const struct ovsdb_column_set *columns, struct table *t)
805 ovs_error(0, "missing %s row", type);
807 } else if (row->type != JSON_OBJECT) {
808 ovs_error(0, "<row> is not object");
813 table_add_cell(t, uuid);
814 table_add_cell(t, type);
815 for (i = 0; i < columns->n_columns; i++) {
816 const struct ovsdb_column *column = columns->columns[i];
817 struct json *value = shash_find_data(json_object(row), column->name);
819 table_add_cell_nocopy(t, format_json(value, &column->type));
821 table_add_cell(t, "");
827 monitor_print(struct json *table_updates,
828 const struct ovsdb_table_schema *table,
829 const struct ovsdb_column_set *columns, bool initial)
831 struct json *table_update;
832 struct shash_node *node;
838 if (table_updates->type != JSON_OBJECT) {
839 ovs_error(0, "<table-updates> is not object");
842 table_update = shash_find_data(json_object(table_updates), table->name);
846 if (table_update->type != JSON_OBJECT) {
847 ovs_error(0, "<table-update> is not object");
851 table_add_column(&t, "row");
852 table_add_column(&t, "action");
853 for (i = 0; i < columns->n_columns; i++) {
854 table_add_column(&t, "%s", columns->columns[i]->name);
856 SHASH_FOR_EACH (node, json_object(table_update)) {
857 struct json *row_update = node->data;
858 struct json *old, *new;
860 if (row_update->type != JSON_OBJECT) {
861 ovs_error(0, "<row-update> is not object");
864 old = shash_find_data(json_object(row_update), "old");
865 new = shash_find_data(json_object(row_update), "new");
867 monitor_print_row(new, "initial", node->name, columns, &t);
869 monitor_print_row(new, "insert", node->name, columns, &t);
871 monitor_print_row(old, "delete", node->name, columns, &t);
873 monitor_print_row(old, "old", node->name, columns, &t);
874 monitor_print_row(new, "new", "", columns, &t);
882 do_monitor(int argc, char *argv[])
884 const char *server = argv[1];
885 const char *database = argv[2];
886 const char *table_name = argv[3];
887 struct ovsdb_column_set columns = OVSDB_COLUMN_SET_INITIALIZER;
888 struct ovsdb_table_schema *table;
889 struct ovsdb_schema *schema;
890 struct jsonrpc_msg *request;
892 struct json *select, *monitor, *monitor_request, *monitor_requests,
895 rpc = open_jsonrpc(server);
897 schema = fetch_schema_from_rpc(rpc, database);
898 table = shash_find_data(&schema->tables, table_name);
900 ovs_fatal(0, "%s: %s does not have a table named \"%s\"",
901 server, database, table_name);
904 if (argc >= 5 && *argv[4] != '\0') {
905 char *save_ptr = NULL;
908 for (token = strtok_r(argv[4], ",", &save_ptr); token != NULL;
909 token = strtok_r(NULL, ",", &save_ptr)) {
910 const struct ovsdb_column *column;
911 column = ovsdb_table_schema_get_column(table, token);
913 ovs_fatal(0, "%s: table \"%s\" in %s does not have a "
914 "column named \"%s\"",
915 server, table_name, database, token);
917 ovsdb_column_set_add(&columns, column);
920 struct shash_node *node;
922 SHASH_FOR_EACH (node, &table->columns) {
923 const struct ovsdb_column *column = node->data;
924 if (column->index != OVSDB_COL_UUID) {
925 ovsdb_column_set_add(&columns, column);
930 if (argc >= 6 && *argv[5] != '\0') {
931 char *save_ptr = NULL;
934 select = json_object_create();
935 for (token = strtok_r(argv[5], ",", &save_ptr); token != NULL;
936 token = strtok_r(NULL, ",", &save_ptr)) {
937 json_object_put(select, token, json_boolean_create(true));
943 monitor_request = json_object_create();
944 json_object_put(monitor_request,
945 "columns", ovsdb_column_set_to_json(&columns));
947 json_object_put(monitor_request, "select", select);
950 monitor_requests = json_object_create();
951 json_object_put(monitor_requests, table_name, monitor_request);
953 monitor = json_array_create_3(json_string_create(database),
954 json_null_create(), monitor_requests);
955 request = jsonrpc_create_request("monitor", monitor, NULL);
956 request_id = json_clone(request->id);
957 jsonrpc_send(rpc, request);
959 struct jsonrpc_msg *msg;
962 error = jsonrpc_recv_block(rpc, &msg);
964 ovsdb_schema_destroy(schema);
965 ovs_fatal(error, "%s: receive failed", server);
968 if (msg->type == JSONRPC_REQUEST && !strcmp(msg->method, "echo")) {
969 jsonrpc_send(rpc, jsonrpc_create_reply(json_clone(msg->params),
971 } else if (msg->type == JSONRPC_REPLY
972 && json_equal(msg->id, request_id)) {
973 monitor_print(msg->result, table, &columns, true);
976 /* daemonize() closes the standard file descriptors. We output
977 * to stdout, so we need to save and restore STDOUT_FILENO. */
978 int fd = dup(STDOUT_FILENO);
980 dup2(fd, STDOUT_FILENO);
983 } else if (msg->type == JSONRPC_NOTIFY
984 && !strcmp(msg->method, "update")) {
985 struct json *params = msg->params;
986 if (params->type == JSON_ARRAY
987 && params->u.array.n == 2
988 && params->u.array.elems[0]->type == JSON_NULL) {
989 monitor_print(params->u.array.elems[1],
990 table, &columns, false);
994 jsonrpc_msg_destroy(msg);
998 struct dump_table_aux {
999 struct ovsdb_datum **data;
1000 const struct ovsdb_column **columns;
1005 compare_data(size_t a_y, size_t b_y, size_t x,
1006 const struct dump_table_aux *aux)
1008 return ovsdb_datum_compare_3way(&aux->data[a_y][x],
1010 &aux->columns[x]->type);
1014 compare_rows(size_t a_y, size_t b_y, void *aux_)
1016 struct dump_table_aux *aux = aux_;
1019 /* Skip UUID columns on the first pass, since their values tend to be
1020 * random and make our results less reproducible. */
1021 for (x = 0; x < aux->n_columns; x++) {
1022 if (aux->columns[x]->type.key.type != OVSDB_TYPE_UUID) {
1023 int cmp = compare_data(a_y, b_y, x, aux);
1030 /* Use UUID columns as tie-breakers. */
1031 for (x = 0; x < aux->n_columns; x++) {
1032 if (aux->columns[x]->type.key.type == OVSDB_TYPE_UUID) {
1033 int cmp = compare_data(a_y, b_y, x, aux);
1044 swap_rows(size_t a_y, size_t b_y, void *aux_)
1046 struct dump_table_aux *aux = aux_;
1047 struct ovsdb_datum *tmp = aux->data[a_y];
1048 aux->data[a_y] = aux->data[b_y];
1049 aux->data[b_y] = tmp;
1053 format_data(const struct ovsdb_datum *datum, const struct ovsdb_type *type)
1055 if (data_format == DF_JSON) {
1056 struct json *json = ovsdb_datum_to_json(datum, type);
1057 char *s = json_to_string(json, JSSF_SORT);
1060 } else if (data_format == DF_STRING) {
1064 ovsdb_datum_to_string(datum, type, &s);
1065 return ds_steal_cstr(&s);
1072 compare_columns(const void *a_, const void *b_)
1074 const struct ovsdb_column *const *ap = a_;
1075 const struct ovsdb_column *const *bp = b_;
1076 const struct ovsdb_column *a = *ap;
1077 const struct ovsdb_column *b = *bp;
1079 return strcmp(a->name, b->name);
1083 dump_table(const struct ovsdb_table_schema *ts, struct json_array *rows)
1085 const struct ovsdb_column **columns;
1088 struct ovsdb_datum **data;
1090 struct dump_table_aux aux;
1091 struct shash_node *node;
1095 /* Sort columns by name, for reproducibility. */
1096 columns = xmalloc(shash_count(&ts->columns) * sizeof *columns);
1098 SHASH_FOR_EACH (node, &ts->columns) {
1099 struct ovsdb_column *column = node->data;
1100 if (strcmp(column->name, "_version")) {
1101 columns[n_columns++] = column;
1104 qsort(columns, n_columns, sizeof *columns, compare_columns);
1106 /* Extract data from table. */
1107 data = xmalloc(rows->n * sizeof *data);
1108 for (y = 0; y < rows->n; y++) {
1111 if (rows->elems[y]->type != JSON_OBJECT) {
1112 ovs_fatal(0, "row %zu in table %s response is not a JSON object: "
1113 "%s", y, ts->name, json_to_string(rows->elems[y], 0));
1115 row = json_object(rows->elems[y]);
1117 data[y] = xmalloc(n_columns * sizeof **data);
1118 for (x = 0; x < n_columns; x++) {
1119 const struct json *json = shash_find_data(row, columns[x]->name);
1121 ovs_fatal(0, "row %zu in table %s response lacks %s column",
1122 y, ts->name, columns[x]->name);
1125 check_ovsdb_error(ovsdb_datum_from_json(&data[y][x],
1131 /* Sort rows by column values, for reproducibility. */
1133 aux.columns = columns;
1134 aux.n_columns = n_columns;
1135 sort(rows->n, compare_rows, swap_rows, &aux);
1137 /* Add column headings. */
1139 table_set_caption(&t, xasprintf("%s table", ts->name));
1140 for (x = 0; x < n_columns; x++) {
1141 table_add_column(&t, "%s", columns[x]->name);
1145 for (y = 0; y < rows->n; y++) {
1147 for (x = 0; x < n_columns; x++) {
1148 table_add_cell_nocopy(&t, format_data(&data[y][x],
1149 &columns[x]->type));
1157 do_dump(int argc OVS_UNUSED, char *argv[])
1159 const char *server = argv[1];
1160 const char *database = argv[2];
1162 struct jsonrpc_msg *request, *reply;
1163 struct ovsdb_schema *schema;
1164 struct json *transaction;
1165 struct jsonrpc *rpc;
1168 const struct shash_node **tables;
1173 rpc = open_jsonrpc(server);
1175 schema = fetch_schema_from_rpc(rpc, database);
1176 tables = shash_sort(&schema->tables);
1177 n_tables = shash_count(&schema->tables);
1179 /* Construct transaction to retrieve entire database. */
1180 transaction = json_array_create_1(json_string_create(database));
1181 for (i = 0; i < n_tables; i++) {
1182 const struct ovsdb_table_schema *ts = tables[i]->data;
1183 struct json *op, *columns;
1184 struct shash_node *node;
1186 columns = json_array_create_empty();
1187 SHASH_FOR_EACH (node, &ts->columns) {
1188 const struct ovsdb_column *column = node->data;
1190 if (strcmp(column->name, "_version")) {
1191 json_array_add(columns, json_string_create(column->name));
1195 op = json_object_create();
1196 json_object_put_string(op, "op", "select");
1197 json_object_put_string(op, "table", tables[i]->name);
1198 json_object_put(op, "where", json_array_create_empty());
1199 json_object_put(op, "columns", columns);
1200 json_array_add(transaction, op);
1203 /* Send request, get reply. */
1204 request = jsonrpc_create_request("transact", transaction, NULL);
1205 error = jsonrpc_transact_block(rpc, request, &reply);
1207 ovs_fatal(error, "transaction failed");
1210 /* Print database contents. */
1211 if (reply->result->type != JSON_ARRAY
1212 || reply->result->u.array.n != n_tables) {
1213 ovs_fatal(0, "reply is not array of %zu elements: %s",
1214 n_tables, json_to_string(reply->result, 0));
1216 for (i = 0; i < n_tables; i++) {
1217 const struct ovsdb_table_schema *ts = tables[i]->data;
1218 const struct json *op_result = reply->result->u.array.elems[i];
1221 if (op_result->type != JSON_OBJECT
1222 || !(rows = shash_find_data(json_object(op_result), "rows"))
1223 || rows->type != JSON_ARRAY) {
1224 ovs_fatal(0, "%s table reply is not an object with a \"rows\" "
1226 ts->name, json_to_string(op_result, 0));
1229 dump_table(ts, &rows->u.array);
1234 do_help(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
1239 static const struct command all_commands[] = {
1240 { "list-dbs", 1, 1, do_list_dbs },
1241 { "get-schema", 2, 2, do_get_schema },
1242 { "list-tables", 2, 2, do_list_tables },
1243 { "list-columns", 2, 3, do_list_columns },
1244 { "transact", 2, 2, do_transact },
1245 { "monitor", 3, 5, do_monitor },
1246 { "dump", 2, 2, do_dump },
1247 { "help", 0, INT_MAX, do_help },
1248 { NULL, 0, 0, NULL },