]> git.proxmox.com Git - mirror_ovs.git/blame - ovsdb/execution.c
sparse: Include stddef.h to ensure NULL is defined.
[mirror_ovs.git] / ovsdb / execution.c
CommitLineData
341c4e59 1/* Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc.
f85f8ebb
BP
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <config.h>
17
f85f8ebb
BP
18#include <limits.h>
19
20#include "column.h"
21#include "condition.h"
bd06962a 22#include "file.h"
f85f8ebb 23#include "json.h"
e9f8f936 24#include "mutation.h"
f85f8ebb
BP
25#include "ovsdb-data.h"
26#include "ovsdb-error.h"
27#include "ovsdb-parser.h"
28#include "ovsdb.h"
29#include "query.h"
30#include "row.h"
da897f41 31#include "server.h"
f85f8ebb
BP
32#include "table.h"
33#include "timeval.h"
34#include "transaction.h"
35
36struct ovsdb_execution {
37 struct ovsdb *db;
da897f41 38 const struct ovsdb_session *session;
f85f8ebb
BP
39 struct ovsdb_txn *txn;
40 struct ovsdb_symbol_table *symtab;
41 bool durable;
42
43 /* Triggers. */
44 long long int elapsed_msec;
45 long long int timeout_msec;
46};
47
48typedef struct ovsdb_error *ovsdb_operation_executor(struct ovsdb_execution *,
49 struct ovsdb_parser *,
50 struct json *result);
51
f85f8ebb
BP
52static ovsdb_operation_executor ovsdb_execute_insert;
53static ovsdb_operation_executor ovsdb_execute_select;
54static ovsdb_operation_executor ovsdb_execute_update;
e9f8f936 55static ovsdb_operation_executor ovsdb_execute_mutate;
f85f8ebb
BP
56static ovsdb_operation_executor ovsdb_execute_delete;
57static ovsdb_operation_executor ovsdb_execute_wait;
58static ovsdb_operation_executor ovsdb_execute_commit;
59static ovsdb_operation_executor ovsdb_execute_abort;
d171b584 60static ovsdb_operation_executor ovsdb_execute_comment;
da897f41 61static ovsdb_operation_executor ovsdb_execute_assert;
f85f8ebb
BP
62
63static ovsdb_operation_executor *
64lookup_executor(const char *name)
65{
66 struct ovsdb_operation {
67 const char *name;
68 ovsdb_operation_executor *executor;
69 };
70
71 static const struct ovsdb_operation operations[] = {
72 { "insert", ovsdb_execute_insert },
73 { "select", ovsdb_execute_select },
74 { "update", ovsdb_execute_update },
e9f8f936 75 { "mutate", ovsdb_execute_mutate },
f85f8ebb
BP
76 { "delete", ovsdb_execute_delete },
77 { "wait", ovsdb_execute_wait },
78 { "commit", ovsdb_execute_commit },
79 { "abort", ovsdb_execute_abort },
d171b584 80 { "comment", ovsdb_execute_comment },
da897f41 81 { "assert", ovsdb_execute_assert },
f85f8ebb
BP
82 };
83
84 size_t i;
85
86 for (i = 0; i < ARRAY_SIZE(operations); i++) {
87 const struct ovsdb_operation *c = &operations[i];
88 if (!strcmp(c->name, name)) {
89 return c->executor;
90 }
91 }
92 return NULL;
93}
94
95struct json *
da897f41
BP
96ovsdb_execute(struct ovsdb *db, const struct ovsdb_session *session,
97 const struct json *params,
f85f8ebb
BP
98 long long int elapsed_msec, long long int *timeout_msec)
99{
100 struct ovsdb_execution x;
101 struct ovsdb_error *error;
102 struct json *results;
103 size_t n_operations;
104 size_t i;
105
9cb53f26
BP
106 if (params->type != JSON_ARRAY
107 || !params->u.array.n
108 || params->u.array.elems[0]->type != JSON_STRING
109 || strcmp(params->u.array.elems[0]->u.string, db->schema->name)) {
9cb53f26
BP
110 if (params->type != JSON_ARRAY) {
111 error = ovsdb_syntax_error(params, NULL, "array expected");
112 } else {
113 error = ovsdb_syntax_error(params, NULL, "database name expected "
114 "as first parameter");
115 }
116
f85f8ebb
BP
117 results = ovsdb_error_to_json(error);
118 ovsdb_error_destroy(error);
119 return results;
120 }
121
122 x.db = db;
da897f41 123 x.session = session;
f85f8ebb
BP
124 x.txn = ovsdb_txn_create(db);
125 x.symtab = ovsdb_symbol_table_create();
126 x.durable = false;
127 x.elapsed_msec = elapsed_msec;
128 x.timeout_msec = LLONG_MAX;
129 results = NULL;
130
131 results = json_array_create_empty();
9cb53f26 132 n_operations = params->u.array.n - 1;
f85f8ebb 133 error = NULL;
9cb53f26 134 for (i = 1; i <= n_operations; i++) {
f85f8ebb
BP
135 struct json *operation = params->u.array.elems[i];
136 struct ovsdb_error *parse_error;
137 struct ovsdb_parser parser;
138 struct json *result;
139 const struct json *op;
140
141 /* Parse and execute operation. */
142 ovsdb_parser_init(&parser, operation,
0cd85e1b 143 "ovsdb operation %zu of %zu", i, n_operations);
f85f8ebb
BP
144 op = ovsdb_parser_member(&parser, "op", OP_ID);
145 result = json_object_create();
146 if (op) {
147 const char *op_name = json_string(op);
148 ovsdb_operation_executor *executor = lookup_executor(op_name);
149 if (executor) {
150 error = executor(&x, &parser, result);
151 } else {
5764c0ed
BP
152 ovsdb_parser_raise_error(&parser, "No operation \"%s\"",
153 op_name);
f85f8ebb
BP
154 }
155 } else {
cb22974d 156 ovs_assert(ovsdb_parser_has_error(&parser));
f85f8ebb
BP
157 }
158
159 /* A parse error overrides any other error.
160 * An error overrides any other result. */
161 parse_error = ovsdb_parser_finish(&parser);
162 if (parse_error) {
163 ovsdb_error_destroy(error);
164 error = parse_error;
165 }
166 if (error) {
167 json_destroy(result);
168 result = ovsdb_error_to_json(error);
169 }
170 if (error && !strcmp(ovsdb_error_get_tag(error), "not supported")
171 && timeout_msec) {
172 ovsdb_txn_abort(x.txn);
173 *timeout_msec = x.timeout_msec;
e084f690
BP
174
175 json_destroy(result);
f85f8ebb 176 json_destroy(results);
e084f690
BP
177 results = NULL;
178 goto exit;
f85f8ebb
BP
179 }
180
181 /* Add result to array. */
182 json_array_add(results, result);
183 if (error) {
184 break;
185 }
186 }
187
188 if (!error) {
bd06962a 189 error = ovsdb_txn_commit(x.txn, x.durable);
f85f8ebb
BP
190 if (error) {
191 json_array_add(results, ovsdb_error_to_json(error));
192 }
193 } else {
194 ovsdb_txn_abort(x.txn);
195 }
196
197 while (json_array(results)->n < n_operations) {
198 json_array_add(results, json_null_create());
199 }
200
e084f690 201exit:
f85f8ebb
BP
202 ovsdb_error_destroy(error);
203 ovsdb_symbol_table_destroy(x.symtab);
204
205 return results;
206}
207
d3d8f1f7 208static struct ovsdb_error *
f85f8ebb 209ovsdb_execute_commit(struct ovsdb_execution *x, struct ovsdb_parser *parser,
c69ee87c 210 struct json *result OVS_UNUSED)
f85f8ebb
BP
211{
212 const struct json *durable;
213
214 durable = ovsdb_parser_member(parser, "durable", OP_BOOLEAN);
215 if (durable && json_boolean(durable)) {
216 x->durable = true;
217 }
218 return NULL;
219}
220
221static struct ovsdb_error *
c69ee87c
BP
222ovsdb_execute_abort(struct ovsdb_execution *x OVS_UNUSED,
223 struct ovsdb_parser *parser OVS_UNUSED,
224 struct json *result OVS_UNUSED)
f85f8ebb
BP
225{
226 return ovsdb_error("aborted", "aborted by request");
227}
228
f85f8ebb
BP
229static struct ovsdb_table *
230parse_table(struct ovsdb_execution *x,
231 struct ovsdb_parser *parser, const char *member)
232{
233 struct ovsdb_table *table;
234 const char *table_name;
235 const struct json *json;
236
237 json = ovsdb_parser_member(parser, member, OP_ID);
238 if (!json) {
239 return NULL;
240 }
241 table_name = json_string(json);
242
243 table = shash_find_data(&x->db->tables, table_name);
244 if (!table) {
245 ovsdb_parser_raise_error(parser, "No table named %s.", table_name);
246 }
247 return table;
248}
249
250static WARN_UNUSED_RESULT struct ovsdb_error *
19b48a81 251parse_row(const struct json *json, const struct ovsdb_table *table,
fbf925e4 252 struct ovsdb_symbol_table *symtab,
f85f8ebb
BP
253 struct ovsdb_row **rowp, struct ovsdb_column_set *columns)
254{
255 struct ovsdb_error *error;
f85f8ebb
BP
256 struct ovsdb_row *row;
257
258 *rowp = NULL;
259
260 if (!table) {
261 return OVSDB_BUG("null table");
262 }
f85f8ebb 263 if (!json) {
19b48a81 264 return OVSDB_BUG("null row");
f85f8ebb
BP
265 }
266
267 row = ovsdb_row_create(table);
268 error = ovsdb_row_from_json(row, json, symtab, columns);
269 if (error) {
270 ovsdb_row_destroy(row);
271 return error;
272 } else {
273 *rowp = row;
274 return NULL;
275 }
276}
277
d3d8f1f7 278static struct ovsdb_error *
f85f8ebb
BP
279ovsdb_execute_insert(struct ovsdb_execution *x, struct ovsdb_parser *parser,
280 struct json *result)
281{
282 struct ovsdb_table *table;
283 struct ovsdb_row *row = NULL;
19b48a81 284 const struct json *uuid_name, *row_json;
f85f8ebb 285 struct ovsdb_error *error;
6e30ca63 286 struct uuid row_uuid;
f85f8ebb
BP
287
288 table = parse_table(x, parser, "table");
289 uuid_name = ovsdb_parser_member(parser, "uuid-name", OP_ID | OP_OPTIONAL);
19b48a81 290 row_json = ovsdb_parser_member(parser, "row", OP_OBJECT);
f85f8ebb 291 error = ovsdb_parser_get_error(parser);
19b48a81
BP
292 if (error) {
293 return error;
294 }
6e30ca63 295
6e30ca63 296 if (uuid_name) {
2d2d6d4a
BP
297 struct ovsdb_symbol *symbol;
298
fbf925e4 299 symbol = ovsdb_symbol_table_insert(x->symtab, json_string(uuid_name));
e9387de4 300 if (symbol->created) {
fbf925e4
BP
301 return ovsdb_syntax_error(uuid_name, "duplicate uuid-name",
302 "This \"uuid-name\" appeared on an "
303 "earlier \"insert\" operation.");
2d2d6d4a 304 }
fbf925e4 305 row_uuid = symbol->uuid;
e9387de4 306 symbol->created = true;
2d2d6d4a
BP
307 } else {
308 uuid_generate(&row_uuid);
6e30ca63
BP
309 }
310
f85f8ebb 311 if (!error) {
19b48a81 312 error = parse_row(row_json, table, x->symtab, &row, NULL);
f85f8ebb 313 }
bd76d25d
BP
314 if (!error) {
315 /* Check constraints for columns not included in "row", in case the
316 * default values do not satisfy the constraints. We could check only
317 * the columns that have their default values by supplying an
318 * ovsdb_column_set to parse_row() above, but I suspect that this is
319 * cheaper. */
320 const struct shash_node *node;
321
322 SHASH_FOR_EACH (node, &table->schema->columns) {
323 const struct ovsdb_column *column = node->data;
324 const struct ovsdb_datum *datum = &row->fields[column->index];
325
326 /* If there are 0 keys or pairs, there's nothing to check.
327 * If there is 1, it might be a default value.
328 * If there are more, it can't be a default value, so the value has
329 * already been checked. */
330 if (datum->n == 1) {
331 error = ovsdb_datum_check_constraints(datum, &column->type);
332 if (error) {
333 ovsdb_row_destroy(row);
334 break;
335 }
336 }
337 }
338 }
f85f8ebb 339 if (!error) {
6e30ca63 340 *ovsdb_row_get_uuid_rw(row) = row_uuid;
f85f8ebb
BP
341 ovsdb_txn_row_insert(x->txn, row);
342 json_object_put(result, "uuid",
343 ovsdb_datum_to_json(&row->fields[OVSDB_COL_UUID],
344 &ovsdb_type_uuid));
f85f8ebb
BP
345 }
346 return error;
347}
348
d3d8f1f7 349static struct ovsdb_error *
f85f8ebb
BP
350ovsdb_execute_select(struct ovsdb_execution *x, struct ovsdb_parser *parser,
351 struct json *result)
352{
353 struct ovsdb_table *table;
354 const struct json *where, *columns_json, *sort_json;
355 struct ovsdb_condition condition = OVSDB_CONDITION_INITIALIZER;
356 struct ovsdb_column_set columns = OVSDB_COLUMN_SET_INITIALIZER;
357 struct ovsdb_column_set sort = OVSDB_COLUMN_SET_INITIALIZER;
358 struct ovsdb_error *error;
359
360 table = parse_table(x, parser, "table");
361 where = ovsdb_parser_member(parser, "where", OP_ARRAY);
362 columns_json = ovsdb_parser_member(parser, "columns",
363 OP_ARRAY | OP_OPTIONAL);
364 sort_json = ovsdb_parser_member(parser, "sort", OP_ARRAY | OP_OPTIONAL);
365
366 error = ovsdb_parser_get_error(parser);
367 if (!error) {
368 error = ovsdb_condition_from_json(table->schema, where, x->symtab,
369 &condition);
370 }
371 if (!error) {
1cb29ab0
BP
372 error = ovsdb_column_set_from_json(columns_json, table->schema,
373 &columns);
f85f8ebb
BP
374 }
375 if (!error) {
1cb29ab0 376 error = ovsdb_column_set_from_json(sort_json, table->schema, &sort);
f85f8ebb
BP
377 }
378 if (!error) {
379 struct ovsdb_row_set rows = OVSDB_ROW_SET_INITIALIZER;
380
381 ovsdb_query_distinct(table, &condition, &columns, &rows);
382 ovsdb_row_set_sort(&rows, &sort);
383 json_object_put(result, "rows",
384 ovsdb_row_set_to_json(&rows, &columns));
385
386 ovsdb_row_set_destroy(&rows);
387 }
388
389 ovsdb_column_set_destroy(&columns);
390 ovsdb_column_set_destroy(&sort);
391 ovsdb_condition_destroy(&condition);
392
393 return error;
394}
395
396struct update_row_cbdata {
397 size_t n_matches;
398 struct ovsdb_txn *txn;
399 const struct ovsdb_row *row;
400 const struct ovsdb_column_set *columns;
401};
402
403static bool
404update_row_cb(const struct ovsdb_row *row, void *ur_)
405{
406 struct update_row_cbdata *ur = ur_;
407
408 ur->n_matches++;
409 if (!ovsdb_row_equal_columns(row, ur->row, ur->columns)) {
410 ovsdb_row_update_columns(ovsdb_txn_row_modify(ur->txn, row),
411 ur->row, ur->columns);
412 }
413
414 return true;
415}
416
d3d8f1f7 417static struct ovsdb_error *
f85f8ebb
BP
418ovsdb_execute_update(struct ovsdb_execution *x, struct ovsdb_parser *parser,
419 struct json *result)
420{
421 struct ovsdb_table *table;
19b48a81 422 const struct json *where, *row_json;
f85f8ebb
BP
423 struct ovsdb_condition condition = OVSDB_CONDITION_INITIALIZER;
424 struct ovsdb_column_set columns = OVSDB_COLUMN_SET_INITIALIZER;
425 struct ovsdb_row *row = NULL;
426 struct update_row_cbdata ur;
427 struct ovsdb_error *error;
428
429 table = parse_table(x, parser, "table");
430 where = ovsdb_parser_member(parser, "where", OP_ARRAY);
19b48a81 431 row_json = ovsdb_parser_member(parser, "row", OP_OBJECT);
f85f8ebb
BP
432 error = ovsdb_parser_get_error(parser);
433 if (!error) {
19b48a81 434 error = parse_row(row_json, table, x->symtab, &row, &columns);
f85f8ebb 435 }
341c4e59
BP
436 if (!error) {
437 size_t i;
438
439 for (i = 0; i < columns.n_columns; i++) {
440 const struct ovsdb_column *column = columns.columns[i];
441
442 if (!column->mutable) {
443 error = ovsdb_syntax_error(parser->json,
444 "constraint violation",
445 "Cannot update immutable column %s "
446 "in table %s.",
447 column->name, table->schema->name);
448 break;
449 }
450 }
451 }
f85f8ebb
BP
452 if (!error) {
453 error = ovsdb_condition_from_json(table->schema, where, x->symtab,
454 &condition);
455 }
456 if (!error) {
457 ur.n_matches = 0;
458 ur.txn = x->txn;
459 ur.row = row;
460 ur.columns = &columns;
461 ovsdb_query(table, &condition, update_row_cb, &ur);
462 json_object_put(result, "count", json_integer_create(ur.n_matches));
463 }
464
465 ovsdb_row_destroy(row);
466 ovsdb_column_set_destroy(&columns);
467 ovsdb_condition_destroy(&condition);
468
469 return error;
470}
471
e9f8f936
BP
472struct mutate_row_cbdata {
473 size_t n_matches;
474 struct ovsdb_txn *txn;
475 const struct ovsdb_mutation_set *mutations;
b7585d1d 476 struct ovsdb_error **error;
e9f8f936
BP
477};
478
479static bool
480mutate_row_cb(const struct ovsdb_row *row, void *mr_)
481{
482 struct mutate_row_cbdata *mr = mr_;
483
484 mr->n_matches++;
b7585d1d
BP
485 *mr->error = ovsdb_mutation_set_execute(ovsdb_txn_row_modify(mr->txn, row),
486 mr->mutations);
487 return *mr->error == NULL;
e9f8f936
BP
488}
489
d3d8f1f7 490static struct ovsdb_error *
e9f8f936
BP
491ovsdb_execute_mutate(struct ovsdb_execution *x, struct ovsdb_parser *parser,
492 struct json *result)
493{
494 struct ovsdb_table *table;
495 const struct json *where;
496 const struct json *mutations_json;
497 struct ovsdb_condition condition = OVSDB_CONDITION_INITIALIZER;
498 struct ovsdb_mutation_set mutations = OVSDB_MUTATION_SET_INITIALIZER;
499 struct ovsdb_row *row = NULL;
500 struct mutate_row_cbdata mr;
501 struct ovsdb_error *error;
502
503 table = parse_table(x, parser, "table");
504 where = ovsdb_parser_member(parser, "where", OP_ARRAY);
505 mutations_json = ovsdb_parser_member(parser, "mutations", OP_ARRAY);
506 error = ovsdb_parser_get_error(parser);
507 if (!error) {
508 error = ovsdb_mutation_set_from_json(table->schema, mutations_json,
509 x->symtab, &mutations);
510 }
511 if (!error) {
512 error = ovsdb_condition_from_json(table->schema, where, x->symtab,
513 &condition);
514 }
515 if (!error) {
516 mr.n_matches = 0;
517 mr.txn = x->txn;
518 mr.mutations = &mutations;
b7585d1d 519 mr.error = &error;
e9f8f936
BP
520 ovsdb_query(table, &condition, mutate_row_cb, &mr);
521 json_object_put(result, "count", json_integer_create(mr.n_matches));
522 }
523
524 ovsdb_row_destroy(row);
525 ovsdb_mutation_set_destroy(&mutations);
526 ovsdb_condition_destroy(&condition);
527
528 return error;
529}
530
f85f8ebb
BP
531struct delete_row_cbdata {
532 size_t n_matches;
533 const struct ovsdb_table *table;
534 struct ovsdb_txn *txn;
535};
536
537static bool
538delete_row_cb(const struct ovsdb_row *row, void *dr_)
539{
540 struct delete_row_cbdata *dr = dr_;
541
542 dr->n_matches++;
543 ovsdb_txn_row_delete(dr->txn, row);
544
545 return true;
546}
547
d3d8f1f7 548static struct ovsdb_error *
f85f8ebb
BP
549ovsdb_execute_delete(struct ovsdb_execution *x, struct ovsdb_parser *parser,
550 struct json *result)
551{
552 struct ovsdb_table *table;
553 const struct json *where;
554 struct ovsdb_condition condition = OVSDB_CONDITION_INITIALIZER;
555 struct ovsdb_error *error;
556
557 where = ovsdb_parser_member(parser, "where", OP_ARRAY);
558 table = parse_table(x, parser, "table");
559 error = ovsdb_parser_get_error(parser);
560 if (!error) {
561 error = ovsdb_condition_from_json(table->schema, where, x->symtab,
562 &condition);
563 }
564 if (!error) {
565 struct delete_row_cbdata dr;
566
567 dr.n_matches = 0;
568 dr.table = table;
569 dr.txn = x->txn;
570 ovsdb_query(table, &condition, delete_row_cb, &dr);
571
572 json_object_put(result, "count", json_integer_create(dr.n_matches));
573 }
574
575 ovsdb_condition_destroy(&condition);
576
577 return error;
578}
579
580struct wait_auxdata {
581 struct ovsdb_row_hash *actual;
582 struct ovsdb_row_hash *expected;
583 bool *equal;
584};
585
586static bool
587ovsdb_execute_wait_query_cb(const struct ovsdb_row *row, void *aux_)
588{
589 struct wait_auxdata *aux = aux_;
590
591 if (ovsdb_row_hash_contains(aux->expected, row)) {
592 ovsdb_row_hash_insert(aux->actual, row);
593 return true;
594 } else {
595 /* The query row isn't in the expected result set, so the actual and
596 * expected results sets definitely differ and we can short-circuit the
597 * rest of the query. */
598 *aux->equal = false;
599 return false;
600 }
601}
602
603static struct ovsdb_error *
604ovsdb_execute_wait(struct ovsdb_execution *x, struct ovsdb_parser *parser,
c69ee87c 605 struct json *result OVS_UNUSED)
f85f8ebb
BP
606{
607 struct ovsdb_table *table;
608 const struct json *timeout, *where, *columns_json, *until, *rows;
609 struct ovsdb_condition condition = OVSDB_CONDITION_INITIALIZER;
610 struct ovsdb_column_set columns = OVSDB_COLUMN_SET_INITIALIZER;
611 struct ovsdb_row_hash expected = OVSDB_ROW_HASH_INITIALIZER(expected);
612 struct ovsdb_row_hash actual = OVSDB_ROW_HASH_INITIALIZER(actual);
613 struct ovsdb_error *error;
614 struct wait_auxdata aux;
615 long long int timeout_msec = 0;
616 size_t i;
617
618 timeout = ovsdb_parser_member(parser, "timeout", OP_NUMBER | OP_OPTIONAL);
619 where = ovsdb_parser_member(parser, "where", OP_ARRAY);
620 columns_json = ovsdb_parser_member(parser, "columns",
621 OP_ARRAY | OP_OPTIONAL);
622 until = ovsdb_parser_member(parser, "until", OP_STRING);
623 rows = ovsdb_parser_member(parser, "rows", OP_ARRAY);
624 table = parse_table(x, parser, "table");
625 error = ovsdb_parser_get_error(parser);
626 if (!error) {
627 error = ovsdb_condition_from_json(table->schema, where, x->symtab,
628 &condition);
629 }
630 if (!error) {
1cb29ab0
BP
631 error = ovsdb_column_set_from_json(columns_json, table->schema,
632 &columns);
f85f8ebb
BP
633 }
634 if (!error) {
635 if (timeout) {
636 timeout_msec = MIN(LLONG_MAX, json_real(timeout));
637 if (timeout_msec < 0) {
638 error = ovsdb_syntax_error(timeout, NULL,
639 "timeout must be nonnegative");
640 } else if (timeout_msec < x->timeout_msec) {
641 x->timeout_msec = timeout_msec;
642 }
643 } else {
644 timeout_msec = LLONG_MAX;
645 }
646 if (strcmp(json_string(until), "==")
647 && strcmp(json_string(until), "!=")) {
648 error = ovsdb_syntax_error(until, NULL,
649 "\"until\" must be \"==\" or \"!=\"");
650 }
651 }
652 if (!error) {
653 /* Parse "rows" into 'expected'. */
654 ovsdb_row_hash_init(&expected, &columns);
655 for (i = 0; i < rows->u.array.n; i++) {
f85f8ebb
BP
656 struct ovsdb_row *row;
657
658 row = ovsdb_row_create(table);
659 error = ovsdb_row_from_json(row, rows->u.array.elems[i], x->symtab,
660 NULL);
661 if (error) {
662 break;
663 }
664
665 if (!ovsdb_row_hash_insert(&expected, row)) {
666 /* XXX Perhaps we should abort with an error or log a
667 * warning. */
668 ovsdb_row_destroy(row);
669 }
670 }
671 }
672 if (!error) {
673 /* Execute query. */
674 bool equal = true;
675 ovsdb_row_hash_init(&actual, &columns);
676 aux.actual = &actual;
677 aux.expected = &expected;
678 aux.equal = &equal;
679 ovsdb_query(table, &condition, ovsdb_execute_wait_query_cb, &aux);
680 if (equal) {
681 /* We know that every row in 'actual' is also in 'expected'. We
682 * also know that all of the rows in 'actual' are distinct and that
683 * all of the rows in 'expected' are distinct. Therefore, if
684 * 'actual' and 'expected' have the same number of rows, then they
685 * have the same content. */
686 size_t n_actual = ovsdb_row_hash_count(&actual);
687 size_t n_expected = ovsdb_row_hash_count(&expected);
688 equal = n_actual == n_expected;
689 }
690 if (!strcmp(json_string(until), "==") != equal) {
691 if (timeout && x->elapsed_msec >= timeout_msec) {
692 if (x->elapsed_msec) {
693 error = ovsdb_error("timed out",
694 "\"wait\" timed out after %lld ms",
695 x->elapsed_msec);
696 } else {
697 error = ovsdb_error("timed out", "\"wait\" timed out");
698 }
699 } else {
700 /* ovsdb_execute() will change this, if triggers really are
701 * supported. */
702 error = ovsdb_error("not supported", "triggers not supported");
703 }
704 }
705 }
706
707
708 ovsdb_row_hash_destroy(&expected, true);
709 ovsdb_row_hash_destroy(&actual, false);
710 ovsdb_column_set_destroy(&columns);
711 ovsdb_condition_destroy(&condition);
712
713 return error;
714}
2d2d6d4a 715
d171b584
BP
716static struct ovsdb_error *
717ovsdb_execute_comment(struct ovsdb_execution *x, struct ovsdb_parser *parser,
c69ee87c 718 struct json *result OVS_UNUSED)
d171b584
BP
719{
720 const struct json *comment;
721
722 comment = ovsdb_parser_member(parser, "comment", OP_STRING);
723 if (!comment) {
724 return NULL;
725 }
726 ovsdb_txn_add_comment(x->txn, json_string(comment));
727
728 return NULL;
729}
da897f41
BP
730
731static struct ovsdb_error *
732ovsdb_execute_assert(struct ovsdb_execution *x, struct ovsdb_parser *parser,
733 struct json *result OVS_UNUSED)
734{
735 const struct json *lock_name;
736
454ec971 737 lock_name = ovsdb_parser_member(parser, "lock", OP_ID);
da897f41
BP
738 if (!lock_name) {
739 return NULL;
740 }
741
742 if (x->session) {
743 const struct ovsdb_lock_waiter *waiter;
744
745 waiter = ovsdb_session_get_lock_waiter(x->session,
746 json_string(lock_name));
747 if (waiter && ovsdb_lock_waiter_is_owner(waiter)) {
748 return NULL;
749 }
750 }
751
752 return ovsdb_error("not owner", "Asserted lock %s not held.",
753 json_string(lock_name));
754}