]> git.proxmox.com Git - mirror_ovs.git/blame - lib/ovsdb-idl.c
ovsdb-idl: Improve comment.
[mirror_ovs.git] / lib / ovsdb-idl.c
CommitLineData
0f0b102d 1/* Copyright (c) 2009, 2010, 2011 Nicira Networks.
c3bb4bd7
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
18#include "ovsdb-idl.h"
19
20#include <assert.h>
475281c0 21#include <errno.h>
b54e22e9 22#include <inttypes.h>
c3bb4bd7
BP
23#include <limits.h>
24#include <stdlib.h>
25
475281c0 26#include "bitmap.h"
d171b584 27#include "dynamic-string.h"
b302749b 28#include "fatal-signal.h"
c3bb4bd7
BP
29#include "json.h"
30#include "jsonrpc.h"
31#include "ovsdb-data.h"
32#include "ovsdb-error.h"
33#include "ovsdb-idl-provider.h"
586bb84a 34#include "poll-loop.h"
c3bb4bd7
BP
35#include "shash.h"
36#include "util.h"
c3bb4bd7
BP
37#include "vlog.h"
38
d98e6007 39VLOG_DEFINE_THIS_MODULE(ovsdb_idl);
5136ce49 40
c3bb4bd7
BP
41/* An arc from one idl_row to another. When row A contains a UUID that
42 * references row B, this is represented by an arc from A (the source) to B
43 * (the destination).
44 *
45 * Arcs from a row to itself are omitted, that is, src and dst are always
46 * different.
47 *
48 * Arcs are never duplicated, that is, even if there are multiple references
49 * from A to B, there is only a single arc from A to B.
50 *
51 * Arcs are directed: an arc from A to B is the converse of an an arc from B to
52 * A. Both an arc and its converse may both be present, if each row refers
53 * to the other circularly.
54 *
55 * The source and destination row may be in the same table or in different
56 * tables.
57 */
58struct ovsdb_idl_arc {
59 struct list src_node; /* In src->src_arcs list. */
60 struct list dst_node; /* In dst->dst_arcs list. */
61 struct ovsdb_idl_row *src; /* Source row. */
62 struct ovsdb_idl_row *dst; /* Destination row. */
63};
64
65struct ovsdb_idl {
115f1e4d 66 const struct ovsdb_idl_class *class;
c3bb4bd7 67 struct jsonrpc_session *session;
115f1e4d 68 struct shash table_by_name;
ef73f86c 69 struct ovsdb_idl_table *tables; /* Contains "struct ovsdb_idl_table *"s.*/
c3bb4bd7
BP
70 struct json *monitor_request_id;
71 unsigned int last_monitor_request_seqno;
72 unsigned int change_seqno;
475281c0
BP
73
74 /* Transaction support. */
75 struct ovsdb_idl_txn *txn;
76 struct hmap outstanding_txns;
77};
78
79struct ovsdb_idl_txn {
80 struct hmap_node hmap_node;
81 struct json *request_id;
82 struct ovsdb_idl *idl;
83 struct hmap txn_rows;
84 enum ovsdb_idl_txn_status status;
91e310a5 85 char *error;
577aebdf 86 bool dry_run;
d171b584 87 struct ds comment;
b54e22e9
BP
88
89 /* Increments. */
90 char *inc_table;
91 char *inc_column;
92 struct json *inc_where;
93 unsigned int inc_index;
94 int64_t inc_new_value;
69490970
BP
95
96 /* Inserted rows. */
97 struct hmap inserted_rows;
98};
99
100struct ovsdb_idl_txn_insert {
101 struct hmap_node hmap_node; /* In struct ovsdb_idl_txn's inserted_rows. */
102 struct uuid dummy; /* Dummy UUID used locally. */
103 int op_index; /* Index into transaction's operation array. */
104 struct uuid real; /* Real UUID used by database server. */
c3bb4bd7
BP
105};
106
107static struct vlog_rate_limit syntax_rl = VLOG_RATE_LIMIT_INIT(1, 5);
108static struct vlog_rate_limit semantic_rl = VLOG_RATE_LIMIT_INIT(1, 5);
109
110static void ovsdb_idl_clear(struct ovsdb_idl *);
111static void ovsdb_idl_send_monitor_request(struct ovsdb_idl *);
112static void ovsdb_idl_parse_update(struct ovsdb_idl *, const struct json *);
113static struct ovsdb_error *ovsdb_idl_parse_update__(struct ovsdb_idl *,
114 const struct json *);
c547535a 115static bool ovsdb_idl_process_update(struct ovsdb_idl_table *,
c3bb4bd7
BP
116 const struct uuid *,
117 const struct json *old,
118 const struct json *new);
119static void ovsdb_idl_insert_row(struct ovsdb_idl_row *, const struct json *);
120static void ovsdb_idl_delete_row(struct ovsdb_idl_row *);
c547535a 121static bool ovsdb_idl_modify_row(struct ovsdb_idl_row *, const struct json *);
c3bb4bd7
BP
122
123static bool ovsdb_idl_row_is_orphan(const struct ovsdb_idl_row *);
475281c0
BP
124static struct ovsdb_idl_row *ovsdb_idl_row_create__(
125 const struct ovsdb_idl_table_class *);
c3bb4bd7
BP
126static struct ovsdb_idl_row *ovsdb_idl_row_create(struct ovsdb_idl_table *,
127 const struct uuid *);
128static void ovsdb_idl_row_destroy(struct ovsdb_idl_row *);
129
979821c0
BP
130static void ovsdb_idl_row_parse(struct ovsdb_idl_row *);
131static void ovsdb_idl_row_unparse(struct ovsdb_idl_row *);
475281c0
BP
132static void ovsdb_idl_row_clear_old(struct ovsdb_idl_row *);
133static void ovsdb_idl_row_clear_new(struct ovsdb_idl_row *);
134
135static void ovsdb_idl_txn_abort_all(struct ovsdb_idl *);
136static bool ovsdb_idl_txn_process_reply(struct ovsdb_idl *,
137 const struct jsonrpc_msg *msg);
c3bb4bd7 138
2ce42c88
BP
139/* Creates and returns a connection to database 'remote', which should be in a
140 * form acceptable to jsonrpc_session_open(). The connection will maintain an
141 * in-memory replica of the remote database whose schema is described by
142 * 'class'. (Ordinarily 'class' is compiled from an OVSDB schema automatically
ef73f86c
BP
143 * by ovsdb-idlc.)
144 *
145 * If 'monitor_everything_by_default' is true, then everything in the remote
146 * database will be replicated by default. ovsdb_idl_omit() and
147 * ovsdb_idl_omit_alert() may be used to selectively drop some columns from
148 * monitoring.
149 *
150 * If 'monitor_everything_by_default' is false, then no columns or tables will
151 * be replicated by default. ovsdb_idl_add_column() and ovsdb_idl_add_table()
152 * must be used to choose some columns or tables to replicate.
153 */
c3bb4bd7 154struct ovsdb_idl *
ef73f86c
BP
155ovsdb_idl_create(const char *remote, const struct ovsdb_idl_class *class,
156 bool monitor_everything_by_default)
c3bb4bd7
BP
157{
158 struct ovsdb_idl *idl;
ef73f86c 159 uint8_t default_mode;
c3bb4bd7
BP
160 size_t i;
161
ef73f86c
BP
162 default_mode = (monitor_everything_by_default
163 ? OVSDB_IDL_MONITOR | OVSDB_IDL_ALERT
164 : 0);
165
c3bb4bd7 166 idl = xzalloc(sizeof *idl);
115f1e4d 167 idl->class = class;
c3bb4bd7 168 idl->session = jsonrpc_session_open(remote);
115f1e4d
BP
169 shash_init(&idl->table_by_name);
170 idl->tables = xmalloc(class->n_tables * sizeof *idl->tables);
c3bb4bd7
BP
171 for (i = 0; i < class->n_tables; i++) {
172 const struct ovsdb_idl_table_class *tc = &class->tables[i];
115f1e4d 173 struct ovsdb_idl_table *table = &idl->tables[i];
c3bb4bd7
BP
174 size_t j;
175
efdd9088 176 shash_add_assert(&idl->table_by_name, tc->name, table);
c3bb4bd7 177 table->class = tc;
c547535a 178 table->modes = xmalloc(tc->n_columns);
ef73f86c
BP
179 memset(table->modes, default_mode, tc->n_columns);
180 table->need_table = false;
c3bb4bd7
BP
181 shash_init(&table->columns);
182 for (j = 0; j < tc->n_columns; j++) {
183 const struct ovsdb_idl_column *column = &tc->columns[j];
184
efdd9088 185 shash_add_assert(&table->columns, column->name, column);
c3bb4bd7
BP
186 }
187 hmap_init(&table->rows);
188 table->idl = idl;
189 }
190 idl->last_monitor_request_seqno = UINT_MAX;
475281c0 191 hmap_init(&idl->outstanding_txns);
c3bb4bd7
BP
192
193 return idl;
194}
195
2ce42c88 196/* Destroys 'idl' and all of the data structures that it manages. */
c3bb4bd7
BP
197void
198ovsdb_idl_destroy(struct ovsdb_idl *idl)
199{
200 if (idl) {
115f1e4d 201 size_t i;
c3bb4bd7 202
475281c0 203 assert(!idl->txn);
c3bb4bd7
BP
204 ovsdb_idl_clear(idl);
205 jsonrpc_session_close(idl->session);
206
115f1e4d
BP
207 for (i = 0; i < idl->class->n_tables; i++) {
208 struct ovsdb_idl_table *table = &idl->tables[i];
c3bb4bd7
BP
209 shash_destroy(&table->columns);
210 hmap_destroy(&table->rows);
c547535a 211 free(table->modes);
c3bb4bd7 212 }
115f1e4d
BP
213 shash_destroy(&idl->table_by_name);
214 free(idl->tables);
c3bb4bd7
BP
215 json_destroy(idl->monitor_request_id);
216 free(idl);
217 }
218}
219
220static void
221ovsdb_idl_clear(struct ovsdb_idl *idl)
222{
c3bb4bd7 223 bool changed = false;
115f1e4d 224 size_t i;
c3bb4bd7 225
115f1e4d
BP
226 for (i = 0; i < idl->class->n_tables; i++) {
227 struct ovsdb_idl_table *table = &idl->tables[i];
c3bb4bd7
BP
228 struct ovsdb_idl_row *row, *next_row;
229
230 if (hmap_is_empty(&table->rows)) {
231 continue;
232 }
233
234 changed = true;
4e8e4213 235 HMAP_FOR_EACH_SAFE (row, next_row, hmap_node, &table->rows) {
c3bb4bd7
BP
236 struct ovsdb_idl_arc *arc, *next_arc;
237
238 if (!ovsdb_idl_row_is_orphan(row)) {
979821c0 239 ovsdb_idl_row_unparse(row);
c3bb4bd7 240 }
4e8e4213 241 LIST_FOR_EACH_SAFE (arc, next_arc, src_node, &row->src_arcs) {
c3bb4bd7
BP
242 free(arc);
243 }
244 /* No need to do anything with dst_arcs: some node has those arcs
245 * as forward arcs and will destroy them itself. */
246
0196cc15 247 ovsdb_idl_row_destroy(row);
c3bb4bd7
BP
248 }
249 }
250
251 if (changed) {
252 idl->change_seqno++;
253 }
254}
255
2ce42c88
BP
256/* Processes a batch of messages from the database server on 'idl'. Returns
257 * true if the database as seen through 'idl' changed, false if it did not
258 * change. The initial fetch of the entire contents of the remote database is
259 * considered to be one kind of change.
260 *
261 * When this function returns false, the client may continue to use any data
262 * structures it obtained from 'idl' in the past. But when it returns true,
263 * the client must not access any of these data structures again, because they
264 * could have freed or reused for other purposes.
265 *
266 * This function can return occasional false positives, that is, report that
267 * the database changed even though it didn't. This happens if the connection
268 * to the database drops and reconnects, which causes the database contents to
269 * be reloaded even if they didn't change. (It could also happen if the
270 * database server sends out a "change" that reflects what we already thought
271 * was in the database, but the database server is not supposed to do that.)
272 *
273 * As an alternative to checking the return value, the client may check for
274 * changes in the value returned by ovsdb_idl_get_seqno().
275 */
4ea21243 276bool
c3bb4bd7
BP
277ovsdb_idl_run(struct ovsdb_idl *idl)
278{
4ea21243 279 unsigned int initial_change_seqno = idl->change_seqno;
c3bb4bd7
BP
280 int i;
281
8bc915de 282 assert(!idl->txn);
c3bb4bd7
BP
283 jsonrpc_session_run(idl->session);
284 for (i = 0; jsonrpc_session_is_connected(idl->session) && i < 50; i++) {
828cd4c7 285 struct jsonrpc_msg *msg;
c3bb4bd7
BP
286 unsigned int seqno;
287
288 seqno = jsonrpc_session_get_seqno(idl->session);
289 if (idl->last_monitor_request_seqno != seqno) {
290 idl->last_monitor_request_seqno = seqno;
475281c0 291 ovsdb_idl_txn_abort_all(idl);
c3bb4bd7
BP
292 ovsdb_idl_send_monitor_request(idl);
293 break;
294 }
295
296 msg = jsonrpc_session_recv(idl->session);
297 if (!msg) {
298 break;
299 }
300
4931f33a 301 if (msg->type == JSONRPC_NOTIFY
c3bb4bd7
BP
302 && !strcmp(msg->method, "update")
303 && msg->params->type == JSON_ARRAY
304 && msg->params->u.array.n == 2
305 && msg->params->u.array.elems[0]->type == JSON_NULL) {
306 ovsdb_idl_parse_update(idl, msg->params->u.array.elems[1]);
307 } else if (msg->type == JSONRPC_REPLY
308 && idl->monitor_request_id
309 && json_equal(idl->monitor_request_id, msg->id)) {
c547535a 310 idl->change_seqno++;
c3bb4bd7
BP
311 json_destroy(idl->monitor_request_id);
312 idl->monitor_request_id = NULL;
313 ovsdb_idl_clear(idl);
314 ovsdb_idl_parse_update(idl, msg->result);
0f0b102d 315 } else if (msg->type == JSONRPC_REPLY && msg->id->type == JSON_STRING
c3bb4bd7
BP
316 && !strcmp(msg->id->u.string, "echo")) {
317 /* It's a reply to our echo request. Ignore it. */
475281c0
BP
318 } else if ((msg->type == JSONRPC_ERROR
319 || msg->type == JSONRPC_REPLY)
320 && ovsdb_idl_txn_process_reply(idl, msg)) {
321 /* ovsdb_idl_txn_process_reply() did everything needful. */
c3bb4bd7 322 } else {
c5a80c70
BP
323 /* This can happen if ovsdb_idl_txn_destroy() is called to destroy
324 * a transaction before we receive the reply, so keep the log level
325 * low. */
326 VLOG_DBG("%s: received unexpected %s message",
327 jsonrpc_session_get_name(idl->session),
328 jsonrpc_msg_type_to_string(msg->type));
c3bb4bd7 329 }
c3bb4bd7
BP
330 jsonrpc_msg_destroy(msg);
331 }
4ea21243
BP
332
333 return initial_change_seqno != idl->change_seqno;
c3bb4bd7
BP
334}
335
2ce42c88
BP
336/* Arranges for poll_block() to wake up when ovsdb_idl_run() has something to
337 * do or when activity occurs on a transaction on 'idl'. */
c3bb4bd7
BP
338void
339ovsdb_idl_wait(struct ovsdb_idl *idl)
340{
341 jsonrpc_session_wait(idl->session);
342 jsonrpc_session_recv_wait(idl->session);
343}
344
2ce42c88
BP
345/* Returns a number that represents the state of 'idl'. When 'idl' is updated
346 * (by ovsdb_idl_run()), the return value changes. */
c3bb4bd7
BP
347unsigned int
348ovsdb_idl_get_seqno(const struct ovsdb_idl *idl)
349{
350 return idl->change_seqno;
351}
352
2ce42c88
BP
353/* Returns true if 'idl' successfully connected to the remote database and
354 * retrieved its contents (even if the connection subsequently dropped and is
355 * in the process of reconnecting). If so, then 'idl' contains an atomic
356 * snapshot of the database's contents (but it might be arbitrarily old if the
357 * connection dropped).
358 *
359 * Returns false if 'idl' has never connected or retrieved the database's
360 * contents. If so, 'idl' is empty. */
f3d64521
JP
361bool
362ovsdb_idl_has_ever_connected(const struct ovsdb_idl *idl)
363{
364 return ovsdb_idl_get_seqno(idl) != 0;
365}
366
2ce42c88
BP
367/* Forces 'idl' to drop its connection to the database and reconnect. In the
368 * meantime, the contents of 'idl' will not change. */
c3bb4bd7
BP
369void
370ovsdb_idl_force_reconnect(struct ovsdb_idl *idl)
371{
372 jsonrpc_session_force_reconnect(idl->session);
373}
ef73f86c
BP
374\f
375static unsigned char *
376ovsdb_idl_get_mode(struct ovsdb_idl *idl,
377 const struct ovsdb_idl_column *column)
c547535a
BP
378{
379 size_t i;
380
ef73f86c
BP
381 assert(!idl->change_seqno);
382
c547535a
BP
383 for (i = 0; i < idl->class->n_tables; i++) {
384 const struct ovsdb_idl_table *table = &idl->tables[i];
385 const struct ovsdb_idl_table_class *tc = table->class;
386
387 if (column >= tc->columns && column < &tc->columns[tc->n_columns]) {
ef73f86c 388 return &table->modes[column - tc->columns];
c547535a
BP
389 }
390 }
391
392 NOT_REACHED();
393}
394
ef73f86c
BP
395static void
396add_ref_table(struct ovsdb_idl *idl, const struct ovsdb_base_type *base)
397{
398 if (base->type == OVSDB_TYPE_UUID && base->u.uuid.refTableName) {
399 struct ovsdb_idl_table *table;
400
401 table = shash_find_data(&idl->table_by_name,
402 base->u.uuid.refTableName);
403 if (table) {
404 table->need_table = true;
405 } else {
406 VLOG_WARN("%s IDL class missing referenced table %s",
407 idl->class->database, base->u.uuid.refTableName);
408 }
409 }
410}
411
412/* Turns on OVSDB_IDL_MONITOR and OVSDB_IDL_ALERT for 'column' in 'idl'. Also
413 * ensures that any tables referenced by 'column' will be replicated, even if
414 * no columns in that table are selected for replication (see
415 * ovsdb_idl_add_table() for more information).
c547535a 416 *
ef73f86c
BP
417 * This function is only useful if 'monitor_everything_by_default' was false in
418 * the call to ovsdb_idl_create(). This function should be called between
419 * ovsdb_idl_create() and the first call to ovsdb_idl_run().
420 */
421void
422ovsdb_idl_add_column(struct ovsdb_idl *idl,
423 const struct ovsdb_idl_column *column)
424{
425 *ovsdb_idl_get_mode(idl, column) = OVSDB_IDL_MONITOR | OVSDB_IDL_ALERT;
426 add_ref_table(idl, &column->type.key);
427 add_ref_table(idl, &column->type.value);
428}
429
430/* Ensures that the table with class 'tc' will be replicated on 'idl' even if
431 * no columns are selected for replication. This can be useful because it
432 * allows 'idl' to keep track of what rows in the table actually exist, which
433 * in turn allows columns that reference the table to have accurate contents.
434 * (The IDL presents the database with references to rows that do not exist
435 * removed.)
c547535a 436 *
ef73f86c
BP
437 * This function is only useful if 'monitor_everything_by_default' was false in
438 * the call to ovsdb_idl_create(). This function should be called between
439 * ovsdb_idl_create() and the first call to ovsdb_idl_run().
440 */
441void
442ovsdb_idl_add_table(struct ovsdb_idl *idl,
443 const struct ovsdb_idl_table_class *tc)
444{
445 size_t i;
446
447 for (i = 0; i < idl->class->n_tables; i++) {
448 struct ovsdb_idl_table *table = &idl->tables[i];
449
450 if (table->class == tc) {
451 table->need_table = true;
452 return;
453 }
454 }
455
456 NOT_REACHED();
457}
458
459/* Turns off OVSDB_IDL_ALERT for 'column' in 'idl'.
c547535a 460 *
ef73f86c
BP
461 * This function should be called between ovsdb_idl_create() and the first call
462 * to ovsdb_idl_run().
463 */
c547535a 464void
ef73f86c
BP
465ovsdb_idl_omit_alert(struct ovsdb_idl *idl,
466 const struct ovsdb_idl_column *column)
c547535a 467{
ef73f86c 468 *ovsdb_idl_get_mode(idl, column) &= ~OVSDB_IDL_ALERT;
c547535a
BP
469}
470
ef73f86c
BP
471/* Sets the mode for 'column' in 'idl' to 0. See the big comment above
472 * OVSDB_IDL_MONITOR for details.
c547535a 473 *
ef73f86c
BP
474 * This function should be called between ovsdb_idl_create() and the first call
475 * to ovsdb_idl_run().
476 */
c547535a
BP
477void
478ovsdb_idl_omit(struct ovsdb_idl *idl, const struct ovsdb_idl_column *column)
479{
ef73f86c 480 *ovsdb_idl_get_mode(idl, column) = 0;
c547535a 481}
c3bb4bd7
BP
482\f
483static void
484ovsdb_idl_send_monitor_request(struct ovsdb_idl *idl)
485{
486 struct json *monitor_requests;
c3bb4bd7 487 struct jsonrpc_msg *msg;
115f1e4d 488 size_t i;
c3bb4bd7
BP
489
490 monitor_requests = json_object_create();
115f1e4d
BP
491 for (i = 0; i < idl->class->n_tables; i++) {
492 const struct ovsdb_idl_table *table = &idl->tables[i];
c3bb4bd7
BP
493 const struct ovsdb_idl_table_class *tc = table->class;
494 struct json *monitor_request, *columns;
2a022368 495 size_t j;
c3bb4bd7 496
ef73f86c 497 columns = table->need_table ? json_array_create_empty() : NULL;
2a022368
BP
498 for (j = 0; j < tc->n_columns; j++) {
499 const struct ovsdb_idl_column *column = &tc->columns[j];
ef73f86c
BP
500 if (table->modes[j] & OVSDB_IDL_MONITOR) {
501 if (!columns) {
502 columns = json_array_create_empty();
503 }
c547535a
BP
504 json_array_add(columns, json_string_create(column->name));
505 }
c3bb4bd7 506 }
ef73f86c
BP
507
508 if (columns) {
509 monitor_request = json_object_create();
510 json_object_put(monitor_request, "columns", columns);
511 json_object_put(monitor_requests, tc->name, monitor_request);
512 }
c3bb4bd7
BP
513 }
514
515 json_destroy(idl->monitor_request_id);
516 msg = jsonrpc_create_request(
9cb53f26
BP
517 "monitor",
518 json_array_create_3(json_string_create(idl->class->database),
519 json_null_create(), monitor_requests),
c3bb4bd7
BP
520 &idl->monitor_request_id);
521 jsonrpc_session_send(idl->session, msg);
522}
523
524static void
525ovsdb_idl_parse_update(struct ovsdb_idl *idl, const struct json *table_updates)
526{
c547535a 527 struct ovsdb_error *error = ovsdb_idl_parse_update__(idl, table_updates);
c3bb4bd7
BP
528 if (error) {
529 if (!VLOG_DROP_WARN(&syntax_rl)) {
530 char *s = ovsdb_error_to_string(error);
531 VLOG_WARN_RL(&syntax_rl, "%s", s);
532 free(s);
533 }
534 ovsdb_error_destroy(error);
535 }
536}
537
538static struct ovsdb_error *
539ovsdb_idl_parse_update__(struct ovsdb_idl *idl,
540 const struct json *table_updates)
541{
542 const struct shash_node *tables_node;
543
544 if (table_updates->type != JSON_OBJECT) {
545 return ovsdb_syntax_error(table_updates, NULL,
546 "<table-updates> is not an object");
547 }
548 SHASH_FOR_EACH (tables_node, json_object(table_updates)) {
549 const struct json *table_update = tables_node->data;
550 const struct shash_node *table_node;
551 struct ovsdb_idl_table *table;
552
115f1e4d 553 table = shash_find_data(&idl->table_by_name, tables_node->name);
c3bb4bd7
BP
554 if (!table) {
555 return ovsdb_syntax_error(
556 table_updates, NULL,
557 "<table-updates> includes unknown table \"%s\"",
558 tables_node->name);
559 }
560
561 if (table_update->type != JSON_OBJECT) {
562 return ovsdb_syntax_error(table_update, NULL,
563 "<table-update> for table \"%s\" is "
564 "not an object", table->class->name);
565 }
566 SHASH_FOR_EACH (table_node, json_object(table_update)) {
567 const struct json *row_update = table_node->data;
568 const struct json *old_json, *new_json;
569 struct uuid uuid;
570
571 if (!uuid_from_string(&uuid, table_node->name)) {
572 return ovsdb_syntax_error(table_update, NULL,
573 "<table-update> for table \"%s\" "
574 "contains bad UUID "
575 "\"%s\" as member name",
576 table->class->name,
577 table_node->name);
578 }
579 if (row_update->type != JSON_OBJECT) {
580 return ovsdb_syntax_error(row_update, NULL,
581 "<table-update> for table \"%s\" "
582 "contains <row-update> for %s that "
583 "is not an object",
584 table->class->name,
585 table_node->name);
586 }
587
588 old_json = shash_find_data(json_object(row_update), "old");
589 new_json = shash_find_data(json_object(row_update), "new");
590 if (old_json && old_json->type != JSON_OBJECT) {
591 return ovsdb_syntax_error(old_json, NULL,
592 "\"old\" <row> is not object");
593 } else if (new_json && new_json->type != JSON_OBJECT) {
594 return ovsdb_syntax_error(new_json, NULL,
595 "\"new\" <row> is not object");
596 } else if ((old_json != NULL) + (new_json != NULL)
597 != shash_count(json_object(row_update))) {
598 return ovsdb_syntax_error(row_update, NULL,
599 "<row-update> contains unexpected "
600 "member");
601 } else if (!old_json && !new_json) {
602 return ovsdb_syntax_error(row_update, NULL,
603 "<row-update> missing \"old\" "
604 "and \"new\" members");
605 }
606
c547535a
BP
607 if (ovsdb_idl_process_update(table, &uuid, old_json, new_json)) {
608 idl->change_seqno++;
609 }
c3bb4bd7
BP
610 }
611 }
612
613 return NULL;
614}
615
616static struct ovsdb_idl_row *
617ovsdb_idl_get_row(struct ovsdb_idl_table *table, const struct uuid *uuid)
618{
619 struct ovsdb_idl_row *row;
620
4e8e4213 621 HMAP_FOR_EACH_WITH_HASH (row, hmap_node, uuid_hash(uuid), &table->rows) {
c3bb4bd7
BP
622 if (uuid_equals(&row->uuid, uuid)) {
623 return row;
624 }
625 }
626 return NULL;
627}
628
c547535a
BP
629/* Returns true if a column with mode OVSDB_IDL_MODE_RW changed, false
630 * otherwise. */
631static bool
c3bb4bd7
BP
632ovsdb_idl_process_update(struct ovsdb_idl_table *table,
633 const struct uuid *uuid, const struct json *old,
634 const struct json *new)
635{
636 struct ovsdb_idl_row *row;
637
638 row = ovsdb_idl_get_row(table, uuid);
639 if (!new) {
640 /* Delete row. */
641 if (row && !ovsdb_idl_row_is_orphan(row)) {
642 /* XXX perhaps we should check the 'old' values? */
643 ovsdb_idl_delete_row(row);
644 } else {
645 VLOG_WARN_RL(&semantic_rl, "cannot delete missing row "UUID_FMT" "
646 "from table %s",
647 UUID_ARGS(uuid), table->class->name);
c547535a 648 return false;
c3bb4bd7
BP
649 }
650 } else if (!old) {
651 /* Insert row. */
652 if (!row) {
653 ovsdb_idl_insert_row(ovsdb_idl_row_create(table, uuid), new);
654 } else if (ovsdb_idl_row_is_orphan(row)) {
655 ovsdb_idl_insert_row(row, new);
656 } else {
657 VLOG_WARN_RL(&semantic_rl, "cannot add existing row "UUID_FMT" to "
658 "table %s", UUID_ARGS(uuid), table->class->name);
c547535a 659 return ovsdb_idl_modify_row(row, new);
c3bb4bd7
BP
660 }
661 } else {
662 /* Modify row. */
663 if (row) {
664 /* XXX perhaps we should check the 'old' values? */
665 if (!ovsdb_idl_row_is_orphan(row)) {
c547535a 666 return ovsdb_idl_modify_row(row, new);
c3bb4bd7
BP
667 } else {
668 VLOG_WARN_RL(&semantic_rl, "cannot modify missing but "
669 "referenced row "UUID_FMT" in table %s",
670 UUID_ARGS(uuid), table->class->name);
671 ovsdb_idl_insert_row(row, new);
672 }
673 } else {
674 VLOG_WARN_RL(&semantic_rl, "cannot modify missing row "UUID_FMT" "
675 "in table %s", UUID_ARGS(uuid), table->class->name);
676 ovsdb_idl_insert_row(ovsdb_idl_row_create(table, uuid), new);
677 }
678 }
c547535a
BP
679
680 return true;
c3bb4bd7
BP
681}
682
c547535a
BP
683/* Returns true if a column with mode OVSDB_IDL_MODE_RW changed, false
684 * otherwise. */
685static bool
c3bb4bd7
BP
686ovsdb_idl_row_update(struct ovsdb_idl_row *row, const struct json *row_json)
687{
688 struct ovsdb_idl_table *table = row->table;
689 struct shash_node *node;
c547535a 690 bool changed = false;
c3bb4bd7
BP
691
692 SHASH_FOR_EACH (node, json_object(row_json)) {
693 const char *column_name = node->name;
694 const struct ovsdb_idl_column *column;
695 struct ovsdb_datum datum;
696 struct ovsdb_error *error;
697
698 column = shash_find_data(&table->columns, column_name);
699 if (!column) {
700 VLOG_WARN_RL(&syntax_rl, "unknown column %s updating row "UUID_FMT,
701 column_name, UUID_ARGS(&row->uuid));
702 continue;
703 }
704
705 error = ovsdb_datum_from_json(&datum, &column->type, node->data, NULL);
706 if (!error) {
c547535a 707 unsigned int column_idx = column - table->class->columns;
e85bbd75
BP
708 struct ovsdb_datum *old = &row->old[column_idx];
709
710 if (!ovsdb_datum_equals(old, &datum, &column->type)) {
711 ovsdb_datum_swap(old, &datum);
ef73f86c 712 if (table->modes[column_idx] & OVSDB_IDL_ALERT) {
e85bbd75
BP
713 changed = true;
714 }
715 } else {
716 /* Didn't really change but the OVSDB monitor protocol always
717 * includes every value in a row. */
c547535a 718 }
e85bbd75
BP
719
720 ovsdb_datum_destroy(&datum, &column->type);
c3bb4bd7
BP
721 } else {
722 char *s = ovsdb_error_to_string(error);
723 VLOG_WARN_RL(&syntax_rl, "error parsing column %s in row "UUID_FMT
724 " in table %s: %s", column_name,
725 UUID_ARGS(&row->uuid), table->class->name, s);
726 free(s);
727 ovsdb_error_destroy(error);
728 }
729 }
c547535a 730 return changed;
c3bb4bd7
BP
731}
732
90887925
BP
733/* When a row A refers to row B through a column with a "refTable" constraint,
734 * but row B does not exist, row B is called an "orphan row". Orphan rows
735 * should not persist, because the database enforces referential integrity, but
736 * they can appear transiently as changes from the database are received (the
737 * database doesn't try to topologically sort them and circular references mean
738 * it isn't always possible anyhow).
739 *
740 * This function returns true if 'row' is an orphan row, otherwise false.
741 */
c3bb4bd7
BP
742static bool
743ovsdb_idl_row_is_orphan(const struct ovsdb_idl_row *row)
744{
90887925
BP
745 return !row->old && !row->new;
746}
747
f2ba3c0a
BP
748/* Returns true if 'row' is conceptually part of the database as modified by
749 * the current transaction (if any), false otherwise.
750 *
751 * This function will return true if 'row' is not an orphan (see the comment on
752 * ovsdb_idl_row_is_orphan()) and:
753 *
754 * - 'row' exists in the database and has not been deleted within the
755 * current transaction (if any).
756 *
757 * - 'row' was inserted within the current transaction and has not been
758 * deleted. (In the latter case you should not have passed 'row' in at
759 * all, because ovsdb_idl_txn_delete() freed it.)
760 *
761 * This function will return false if 'row' is an orphan or if 'row' was
762 * deleted within the current transaction.
763 */
764static bool
765ovsdb_idl_row_exists(const struct ovsdb_idl_row *row)
766{
767 return row->new != NULL;
c3bb4bd7
BP
768}
769
979821c0
BP
770static void
771ovsdb_idl_row_parse(struct ovsdb_idl_row *row)
772{
773 const struct ovsdb_idl_table_class *class = row->table->class;
774 size_t i;
775
776 for (i = 0; i < class->n_columns; i++) {
777 const struct ovsdb_idl_column *c = &class->columns[i];
778 (c->parse)(row, &row->old[i]);
779 }
780}
781
782static void
783ovsdb_idl_row_unparse(struct ovsdb_idl_row *row)
784{
785 const struct ovsdb_idl_table_class *class = row->table->class;
786 size_t i;
787
788 for (i = 0; i < class->n_columns; i++) {
789 const struct ovsdb_idl_column *c = &class->columns[i];
790 (c->unparse)(row);
791 }
792}
793
c3bb4bd7 794static void
475281c0 795ovsdb_idl_row_clear_old(struct ovsdb_idl_row *row)
c3bb4bd7 796{
475281c0 797 assert(row->old == row->new);
c3bb4bd7
BP
798 if (!ovsdb_idl_row_is_orphan(row)) {
799 const struct ovsdb_idl_table_class *class = row->table->class;
800 size_t i;
801
802 for (i = 0; i < class->n_columns; i++) {
475281c0
BP
803 ovsdb_datum_destroy(&row->old[i], &class->columns[i].type);
804 }
805 free(row->old);
806 row->old = row->new = NULL;
807 }
808}
809
810static void
811ovsdb_idl_row_clear_new(struct ovsdb_idl_row *row)
812{
813 if (row->old != row->new) {
814 if (row->new) {
815 const struct ovsdb_idl_table_class *class = row->table->class;
816 size_t i;
817
35c2ce98
JG
818 if (row->written) {
819 BITMAP_FOR_EACH_1 (i, class->n_columns, row->written) {
820 ovsdb_datum_destroy(&row->new[i], &class->columns[i].type);
821 }
475281c0
BP
822 }
823 free(row->new);
824 free(row->written);
825 row->written = NULL;
c3bb4bd7 826 }
475281c0 827 row->new = row->old;
c3bb4bd7
BP
828 }
829}
830
831static void
832ovsdb_idl_row_clear_arcs(struct ovsdb_idl_row *row, bool destroy_dsts)
833{
834 struct ovsdb_idl_arc *arc, *next;
835
836 /* Delete all forward arcs. If 'destroy_dsts', destroy any orphaned rows
837 * that this causes to be unreferenced. */
4e8e4213 838 LIST_FOR_EACH_SAFE (arc, next, src_node, &row->src_arcs) {
c3bb4bd7
BP
839 list_remove(&arc->dst_node);
840 if (destroy_dsts
841 && ovsdb_idl_row_is_orphan(arc->dst)
842 && list_is_empty(&arc->dst->dst_arcs)) {
843 ovsdb_idl_row_destroy(arc->dst);
844 }
845 free(arc);
846 }
847 list_init(&row->src_arcs);
848}
849
850/* Force nodes that reference 'row' to reparse. */
851static void
0196cc15 852ovsdb_idl_row_reparse_backrefs(struct ovsdb_idl_row *row)
c3bb4bd7
BP
853{
854 struct ovsdb_idl_arc *arc, *next;
855
856 /* This is trickier than it looks. ovsdb_idl_row_clear_arcs() will destroy
857 * 'arc', so we need to use the "safe" variant of list traversal. However,
979821c0
BP
858 * calling an ovsdb_idl_column's 'parse' function will add an arc
859 * equivalent to 'arc' to row->arcs. That could be a problem for
860 * traversal, but it adds it at the beginning of the list to prevent us
861 * from stumbling upon it again.
c3bb4bd7
BP
862 *
863 * (If duplicate arcs were possible then we would need to make sure that
864 * 'next' didn't also point into 'arc''s destination, but we forbid
865 * duplicate arcs.) */
4e8e4213 866 LIST_FOR_EACH_SAFE (arc, next, dst_node, &row->dst_arcs) {
c3bb4bd7
BP
867 struct ovsdb_idl_row *ref = arc->src;
868
979821c0 869 ovsdb_idl_row_unparse(ref);
0196cc15 870 ovsdb_idl_row_clear_arcs(ref, false);
979821c0 871 ovsdb_idl_row_parse(ref);
c3bb4bd7
BP
872 }
873}
874
475281c0
BP
875static struct ovsdb_idl_row *
876ovsdb_idl_row_create__(const struct ovsdb_idl_table_class *class)
877{
72c6edc5 878 struct ovsdb_idl_row *row = xzalloc(class->allocation_size);
475281c0
BP
879 list_init(&row->src_arcs);
880 list_init(&row->dst_arcs);
881 hmap_node_nullify(&row->txn_node);
882 return row;
883}
884
c3bb4bd7
BP
885static struct ovsdb_idl_row *
886ovsdb_idl_row_create(struct ovsdb_idl_table *table, const struct uuid *uuid)
887{
475281c0 888 struct ovsdb_idl_row *row = ovsdb_idl_row_create__(table->class);
c3bb4bd7
BP
889 hmap_insert(&table->rows, &row->hmap_node, uuid_hash(uuid));
890 row->uuid = *uuid;
c3bb4bd7 891 row->table = table;
c3bb4bd7
BP
892 return row;
893}
894
895static void
896ovsdb_idl_row_destroy(struct ovsdb_idl_row *row)
897{
898 if (row) {
475281c0 899 ovsdb_idl_row_clear_old(row);
c3bb4bd7
BP
900 hmap_remove(&row->table->rows, &row->hmap_node);
901 free(row);
902 }
903}
904
905static void
906ovsdb_idl_insert_row(struct ovsdb_idl_row *row, const struct json *row_json)
907{
908 const struct ovsdb_idl_table_class *class = row->table->class;
909 size_t i;
910
475281c0
BP
911 assert(!row->old && !row->new);
912 row->old = row->new = xmalloc(class->n_columns * sizeof *row->old);
c3bb4bd7 913 for (i = 0; i < class->n_columns; i++) {
475281c0 914 ovsdb_datum_init_default(&row->old[i], &class->columns[i].type);
c3bb4bd7
BP
915 }
916 ovsdb_idl_row_update(row, row_json);
979821c0 917 ovsdb_idl_row_parse(row);
c3bb4bd7 918
0196cc15 919 ovsdb_idl_row_reparse_backrefs(row);
c3bb4bd7
BP
920}
921
922static void
923ovsdb_idl_delete_row(struct ovsdb_idl_row *row)
924{
979821c0 925 ovsdb_idl_row_unparse(row);
c3bb4bd7 926 ovsdb_idl_row_clear_arcs(row, true);
475281c0 927 ovsdb_idl_row_clear_old(row);
c3bb4bd7
BP
928 if (list_is_empty(&row->dst_arcs)) {
929 ovsdb_idl_row_destroy(row);
930 } else {
0196cc15 931 ovsdb_idl_row_reparse_backrefs(row);
c3bb4bd7
BP
932 }
933}
934
c547535a
BP
935/* Returns true if a column with mode OVSDB_IDL_MODE_RW changed, false
936 * otherwise. */
937static bool
c3bb4bd7
BP
938ovsdb_idl_modify_row(struct ovsdb_idl_row *row, const struct json *row_json)
939{
c547535a
BP
940 bool changed;
941
979821c0 942 ovsdb_idl_row_unparse(row);
c3bb4bd7 943 ovsdb_idl_row_clear_arcs(row, true);
c547535a 944 changed = ovsdb_idl_row_update(row, row_json);
979821c0 945 ovsdb_idl_row_parse(row);
c547535a
BP
946
947 return changed;
c3bb4bd7
BP
948}
949
950static bool
951may_add_arc(const struct ovsdb_idl_row *src, const struct ovsdb_idl_row *dst)
952{
953 const struct ovsdb_idl_arc *arc;
954
955 /* No self-arcs. */
956 if (src == dst) {
957 return false;
958 }
959
960 /* No duplicate arcs.
961 *
962 * We only need to test whether the first arc in dst->dst_arcs originates
963 * at 'src', since we add all of the arcs from a given source in a clump
979821c0 964 * (in a single call to ovsdb_idl_row_parse()) and new arcs are always
c3bb4bd7
BP
965 * added at the front of the dst_arcs list. */
966 if (list_is_empty(&dst->dst_arcs)) {
967 return true;
968 }
969 arc = CONTAINER_OF(dst->dst_arcs.next, struct ovsdb_idl_arc, dst_node);
970 return arc->src != src;
971}
972
115f1e4d 973static struct ovsdb_idl_table *
475281c0
BP
974ovsdb_idl_table_from_class(const struct ovsdb_idl *idl,
975 const struct ovsdb_idl_table_class *table_class)
115f1e4d
BP
976{
977 return &idl->tables[table_class - idl->class->tables];
978}
979
c3bb4bd7
BP
980struct ovsdb_idl_row *
981ovsdb_idl_get_row_arc(struct ovsdb_idl_row *src,
982 struct ovsdb_idl_table_class *dst_table_class,
983 const struct uuid *dst_uuid)
984{
985 struct ovsdb_idl *idl = src->table->idl;
e9011ac8 986 struct ovsdb_idl_table *dst_table;
c3bb4bd7
BP
987 struct ovsdb_idl_arc *arc;
988 struct ovsdb_idl_row *dst;
989
475281c0 990 dst_table = ovsdb_idl_table_from_class(idl, dst_table_class);
e9011ac8 991 dst = ovsdb_idl_get_row(dst_table, dst_uuid);
979821c0
BP
992 if (idl->txn) {
993 /* We're being called from ovsdb_idl_txn_write(). We must not update
994 * any arcs, because the transaction will be backed out at commit or
995 * abort time and we don't want our graph screwed up.
996 *
997 * Just return the destination row, if there is one and it has not been
998 * deleted. */
999 if (dst && (hmap_node_is_null(&dst->txn_node) || dst->new)) {
1000 return dst;
1001 }
1002 return NULL;
1003 } else {
1004 /* We're being called from some other context. Update the graph. */
1005 if (!dst) {
1006 dst = ovsdb_idl_row_create(dst_table, dst_uuid);
1007 }
c3bb4bd7 1008
979821c0
BP
1009 /* Add a new arc, if it wouldn't be a self-arc or a duplicate arc. */
1010 if (may_add_arc(src, dst)) {
1011 /* The arc *must* be added at the front of the dst_arcs list. See
1012 * ovsdb_idl_row_reparse_backrefs() for details. */
1013 arc = xmalloc(sizeof *arc);
1014 list_push_front(&src->src_arcs, &arc->src_node);
1015 list_push_front(&dst->dst_arcs, &arc->dst_node);
1016 arc->src = src;
1017 arc->dst = dst;
1018 }
1019
1020 return !ovsdb_idl_row_is_orphan(dst) ? dst : NULL;
c3bb4bd7 1021 }
979821c0 1022}
c3bb4bd7 1023
979821c0
BP
1024const struct ovsdb_idl_row *
1025ovsdb_idl_get_row_for_uuid(const struct ovsdb_idl *idl,
1026 const struct ovsdb_idl_table_class *tc,
1027 const struct uuid *uuid)
1028{
1029 return ovsdb_idl_get_row(ovsdb_idl_table_from_class(idl, tc), uuid);
c3bb4bd7
BP
1030}
1031
1032static struct ovsdb_idl_row *
1033next_real_row(struct ovsdb_idl_table *table, struct hmap_node *node)
1034{
1035 for (; node; node = hmap_next(&table->rows, node)) {
1036 struct ovsdb_idl_row *row;
1037
1038 row = CONTAINER_OF(node, struct ovsdb_idl_row, hmap_node);
f2ba3c0a 1039 if (ovsdb_idl_row_exists(row)) {
c3bb4bd7
BP
1040 return row;
1041 }
1042 }
1043 return NULL;
1044}
1045
979821c0 1046const struct ovsdb_idl_row *
c3bb4bd7
BP
1047ovsdb_idl_first_row(const struct ovsdb_idl *idl,
1048 const struct ovsdb_idl_table_class *table_class)
1049{
475281c0
BP
1050 struct ovsdb_idl_table *table
1051 = ovsdb_idl_table_from_class(idl, table_class);
c3bb4bd7
BP
1052 return next_real_row(table, hmap_first(&table->rows));
1053}
1054
979821c0 1055const struct ovsdb_idl_row *
c3bb4bd7
BP
1056ovsdb_idl_next_row(const struct ovsdb_idl_row *row)
1057{
1058 struct ovsdb_idl_table *table = row->table;
1059
1060 return next_real_row(table, hmap_next(&table->rows, &row->hmap_node));
1061}
8c3c2f30
BP
1062
1063/* Reads and returns the value of 'column' within 'row'. If an ongoing
1064 * transaction has changed 'column''s value, the modified value is returned.
1065 *
1066 * The caller must not modify or free the returned value.
1067 *
1068 * Various kinds of changes can invalidate the returned value: writing to the
1069 * same 'column' in 'row' (e.g. with ovsdb_idl_txn_write()), deleting 'row'
1070 * (e.g. with ovsdb_idl_txn_delete()), or completing an ongoing transaction
1071 * (e.g. with ovsdb_idl_txn_commit() or ovsdb_idl_txn_abort()). If the
1072 * returned value is needed for a long time, it is best to make a copy of it
1073 * with ovsdb_datum_clone(). */
1074const struct ovsdb_datum *
1075ovsdb_idl_read(const struct ovsdb_idl_row *row,
1076 const struct ovsdb_idl_column *column)
1077{
1078 const struct ovsdb_idl_table_class *class = row->table->class;
1079 size_t column_idx = column - class->columns;
1080
1081 assert(row->new != NULL);
1082 assert(column_idx < class->n_columns);
1083
1084 if (row->written && bitmap_is_set(row->written, column_idx)) {
1085 return &row->new[column_idx];
1086 } else if (row->old) {
1087 return &row->old[column_idx];
1088 } else {
1089 return ovsdb_datum_default(&column->type);
1090 }
1091}
1092
1093/* Same as ovsdb_idl_read(), except that it also asserts that 'column' has key
1094 * type 'key_type' and value type 'value_type'. (Scalar and set types will
1095 * have a value type of OVSDB_TYPE_VOID.)
1096 *
1097 * This is useful in code that "knows" that a particular column has a given
1098 * type, so that it will abort if someone changes the column's type without
1099 * updating the code that uses it. */
1100const struct ovsdb_datum *
1101ovsdb_idl_get(const struct ovsdb_idl_row *row,
1102 const struct ovsdb_idl_column *column,
1103 enum ovsdb_atomic_type key_type OVS_UNUSED,
1104 enum ovsdb_atomic_type value_type OVS_UNUSED)
1105{
1106 assert(column->type.key.type == key_type);
1107 assert(column->type.value.type == value_type);
1108
1109 return ovsdb_idl_read(row, column);
1110}
cfea354b
BP
1111
1112/* Returns false if 'row' was obtained from the IDL, true if it was initialized
1113 * to all-zero-bits by some other entity. If 'row' was set up some other way
1114 * then the return value is indeterminate. */
1115bool
1116ovsdb_idl_row_is_synthetic(const struct ovsdb_idl_row *row)
1117{
1118 return row->table == NULL;
1119}
475281c0
BP
1120\f
1121/* Transactions. */
1122
1123static void ovsdb_idl_txn_complete(struct ovsdb_idl_txn *txn,
1124 enum ovsdb_idl_txn_status);
1125
1126const char *
1127ovsdb_idl_txn_status_to_string(enum ovsdb_idl_txn_status status)
1128{
1129 switch (status) {
b54e22e9
BP
1130 case TXN_UNCHANGED:
1131 return "unchanged";
475281c0
BP
1132 case TXN_INCOMPLETE:
1133 return "incomplete";
1134 case TXN_ABORTED:
1135 return "aborted";
1136 case TXN_SUCCESS:
1137 return "success";
1138 case TXN_TRY_AGAIN:
1139 return "try again";
1140 case TXN_ERROR:
1141 return "error";
1142 }
1143 return "<unknown>";
1144}
1145
1146struct ovsdb_idl_txn *
1147ovsdb_idl_txn_create(struct ovsdb_idl *idl)
1148{
1149 struct ovsdb_idl_txn *txn;
1150
1151 assert(!idl->txn);
1152 idl->txn = txn = xmalloc(sizeof *txn);
0196cc15 1153 txn->request_id = NULL;
475281c0 1154 txn->idl = idl;
475281c0 1155 hmap_init(&txn->txn_rows);
0196cc15 1156 txn->status = TXN_INCOMPLETE;
91e310a5 1157 txn->error = NULL;
577aebdf 1158 txn->dry_run = false;
d171b584 1159 ds_init(&txn->comment);
0196cc15 1160
b54e22e9
BP
1161 txn->inc_table = NULL;
1162 txn->inc_column = NULL;
1163 txn->inc_where = NULL;
0196cc15 1164
69490970 1165 hmap_init(&txn->inserted_rows);
0196cc15 1166
475281c0
BP
1167 return txn;
1168}
1169
e1c0e2d1
BP
1170/* Appends 's', which is treated as a printf()-type format string, to the
1171 * comments that will be passed to the OVSDB server when 'txn' is committed.
1172 * (The comment will be committed to the OVSDB log, which "ovsdb-tool
1173 * show-log" can print in a relatively human-readable form.) */
d171b584 1174void
e1c0e2d1 1175ovsdb_idl_txn_add_comment(struct ovsdb_idl_txn *txn, const char *s, ...)
d171b584 1176{
e1c0e2d1
BP
1177 va_list args;
1178
d171b584
BP
1179 if (txn->comment.length) {
1180 ds_put_char(&txn->comment, '\n');
1181 }
e1c0e2d1
BP
1182
1183 va_start(args, s);
1184 ds_put_format_valist(&txn->comment, s, args);
1185 va_end(args);
d171b584
BP
1186}
1187
577aebdf
BP
1188void
1189ovsdb_idl_txn_set_dry_run(struct ovsdb_idl_txn *txn)
1190{
1191 txn->dry_run = true;
1192}
1193
b54e22e9
BP
1194void
1195ovsdb_idl_txn_increment(struct ovsdb_idl_txn *txn, const char *table,
1196 const char *column, const struct json *where)
1197{
1198 assert(!txn->inc_table);
1199 txn->inc_table = xstrdup(table);
1200 txn->inc_column = xstrdup(column);
1201 txn->inc_where = where ? json_clone(where) : json_array_create_empty();
1202}
1203
475281c0
BP
1204void
1205ovsdb_idl_txn_destroy(struct ovsdb_idl_txn *txn)
1206{
69490970
BP
1207 struct ovsdb_idl_txn_insert *insert, *next;
1208
0196cc15 1209 json_destroy(txn->request_id);
fbd8fd40
BP
1210 if (txn->status == TXN_INCOMPLETE) {
1211 hmap_remove(&txn->idl->outstanding_txns, &txn->hmap_node);
1212 }
475281c0 1213 ovsdb_idl_txn_abort(txn);
d171b584 1214 ds_destroy(&txn->comment);
91e310a5 1215 free(txn->error);
b54e22e9
BP
1216 free(txn->inc_table);
1217 free(txn->inc_column);
1218 json_destroy(txn->inc_where);
4e8e4213 1219 HMAP_FOR_EACH_SAFE (insert, next, hmap_node, &txn->inserted_rows) {
69490970
BP
1220 free(insert);
1221 }
0196cc15 1222 hmap_destroy(&txn->inserted_rows);
475281c0
BP
1223 free(txn);
1224}
1225
586bb84a
BP
1226void
1227ovsdb_idl_txn_wait(const struct ovsdb_idl_txn *txn)
1228{
1229 if (txn->status != TXN_INCOMPLETE) {
1230 poll_immediate_wake();
1231 }
1232}
1233
475281c0
BP
1234static struct json *
1235where_uuid_equals(const struct uuid *uuid)
1236{
1237 return
1238 json_array_create_1(
1239 json_array_create_3(
1240 json_string_create("_uuid"),
1241 json_string_create("=="),
1242 json_array_create_2(
1243 json_string_create("uuid"),
1244 json_string_create_nocopy(
1245 xasprintf(UUID_FMT, UUID_ARGS(uuid))))));
1246}
1247
1248static char *
1249uuid_name_from_uuid(const struct uuid *uuid)
1250{
1251 char *name;
1252 char *p;
1253
1254 name = xasprintf("row"UUID_FMT, UUID_ARGS(uuid));
1255 for (p = name; *p != '\0'; p++) {
1256 if (*p == '-') {
1257 *p = '_';
1258 }
1259 }
1260
1261 return name;
1262}
1263
1264static const struct ovsdb_idl_row *
1265ovsdb_idl_txn_get_row(const struct ovsdb_idl_txn *txn, const struct uuid *uuid)
1266{
1267 const struct ovsdb_idl_row *row;
1268
4e8e4213 1269 HMAP_FOR_EACH_WITH_HASH (row, txn_node, uuid_hash(uuid), &txn->txn_rows) {
475281c0
BP
1270 if (uuid_equals(&row->uuid, uuid)) {
1271 return row;
1272 }
1273 }
1274 return NULL;
1275}
1276
1277/* XXX there must be a cleaner way to do this */
1278static struct json *
1279substitute_uuids(struct json *json, const struct ovsdb_idl_txn *txn)
1280{
1281 if (json->type == JSON_ARRAY) {
1282 struct uuid uuid;
1283 size_t i;
1284
1285 if (json->u.array.n == 2
1286 && json->u.array.elems[0]->type == JSON_STRING
1287 && json->u.array.elems[1]->type == JSON_STRING
1288 && !strcmp(json->u.array.elems[0]->u.string, "uuid")
1289 && uuid_from_string(&uuid, json->u.array.elems[1]->u.string)) {
1290 const struct ovsdb_idl_row *row;
1291
1292 row = ovsdb_idl_txn_get_row(txn, &uuid);
1293 if (row && !row->old && row->new) {
1294 json_destroy(json);
1295
1296 return json_array_create_2(
1297 json_string_create("named-uuid"),
1298 json_string_create_nocopy(uuid_name_from_uuid(&uuid)));
1299 }
1300 }
1301
1302 for (i = 0; i < json->u.array.n; i++) {
1303 json->u.array.elems[i] = substitute_uuids(json->u.array.elems[i],
1304 txn);
1305 }
1306 } else if (json->type == JSON_OBJECT) {
1307 struct shash_node *node;
1308
1309 SHASH_FOR_EACH (node, json_object(json)) {
1310 node->data = substitute_uuids(node->data, txn);
1311 }
1312 }
1313 return json;
1314}
1315
1316static void
1317ovsdb_idl_txn_disassemble(struct ovsdb_idl_txn *txn)
1318{
1319 struct ovsdb_idl_row *row, *next;
1320
979821c0
BP
1321 /* This must happen early. Otherwise, ovsdb_idl_row_parse() will call an
1322 * ovsdb_idl_column's 'parse' function, which will call
1323 * ovsdb_idl_get_row_arc(), which will seen that the IDL is in a
1324 * transaction and fail to update the graph. */
1325 txn->idl->txn = NULL;
1326
4e8e4213 1327 HMAP_FOR_EACH_SAFE (row, next, txn_node, &txn->txn_rows) {
979821c0
BP
1328 if (row->old) {
1329 if (row->written) {
1330 ovsdb_idl_row_unparse(row);
1331 ovsdb_idl_row_clear_arcs(row, false);
1332 ovsdb_idl_row_parse(row);
1333 }
1334 } else {
0196cc15 1335 ovsdb_idl_row_unparse(row);
8bc915de 1336 }
475281c0
BP
1337 ovsdb_idl_row_clear_new(row);
1338
1339 free(row->prereqs);
1340 row->prereqs = NULL;
1341
1342 free(row->written);
1343 row->written = NULL;
1344
1345 hmap_remove(&txn->txn_rows, &row->txn_node);
1346 hmap_node_nullify(&row->txn_node);
0196cc15
BP
1347 if (!row->old) {
1348 hmap_remove(&row->table->rows, &row->hmap_node);
1349 free(row);
1350 }
475281c0
BP
1351 }
1352 hmap_destroy(&txn->txn_rows);
1353 hmap_init(&txn->txn_rows);
1354}
1355
1356enum ovsdb_idl_txn_status
1357ovsdb_idl_txn_commit(struct ovsdb_idl_txn *txn)
1358{
1359 struct ovsdb_idl_row *row;
1360 struct json *operations;
1361 bool any_updates;
475281c0
BP
1362
1363 if (txn != txn->idl->txn) {
1364 return txn->status;
1365 }
1366
9cb53f26
BP
1367 operations = json_array_create_1(
1368 json_string_create(txn->idl->class->database));
475281c0
BP
1369
1370 /* Add prerequisites and declarations of new rows. */
4e8e4213 1371 HMAP_FOR_EACH (row, txn_node, &txn->txn_rows) {
475281c0
BP
1372 /* XXX check that deleted rows exist even if no prereqs? */
1373 if (row->prereqs) {
1374 const struct ovsdb_idl_table_class *class = row->table->class;
1375 size_t n_columns = class->n_columns;
1376 struct json *op, *columns, *row_json;
1377 size_t idx;
1378
1379 op = json_object_create();
1380 json_array_add(operations, op);
1381 json_object_put_string(op, "op", "wait");
1382 json_object_put_string(op, "table", class->name);
1383 json_object_put(op, "timeout", json_integer_create(0));
1384 json_object_put(op, "where", where_uuid_equals(&row->uuid));
1385 json_object_put_string(op, "until", "==");
1386 columns = json_array_create_empty();
1387 json_object_put(op, "columns", columns);
1388 row_json = json_object_create();
1389 json_object_put(op, "rows", json_array_create_1(row_json));
1390
1391 BITMAP_FOR_EACH_1 (idx, n_columns, row->prereqs) {
1392 const struct ovsdb_idl_column *column = &class->columns[idx];
1393 json_array_add(columns, json_string_create(column->name));
1394 json_object_put(row_json, column->name,
1395 ovsdb_datum_to_json(&row->old[idx],
1396 &column->type));
1397 }
1398 }
475281c0
BP
1399 }
1400
1401 /* Add updates. */
1402 any_updates = false;
4e8e4213 1403 HMAP_FOR_EACH (row, txn_node, &txn->txn_rows) {
475281c0 1404 const struct ovsdb_idl_table_class *class = row->table->class;
475281c0
BP
1405
1406 if (row->old == row->new) {
1407 continue;
1408 } else if (!row->new) {
dcd1dbc5
BP
1409 if (class->is_root) {
1410 struct json *op = json_object_create();
1411 json_object_put_string(op, "op", "delete");
1412 json_object_put_string(op, "table", class->name);
1413 json_object_put(op, "where", where_uuid_equals(&row->uuid));
1414 json_array_add(operations, op);
1415 any_updates = true;
1416 } else {
1417 /* Let ovsdb-server decide whether to really delete it. */
1418 }
475281c0 1419 } else {
f0f54cb4
BP
1420 struct json *row_json;
1421 struct json *op;
1422 size_t idx;
1423
1424 op = json_object_create();
1425 json_object_put_string(op, "op", row->old ? "update" : "insert");
1426 json_object_put_string(op, "table", class->name);
1427 if (row->old) {
1428 json_object_put(op, "where", where_uuid_equals(&row->uuid));
1429 } else {
69490970
BP
1430 struct ovsdb_idl_txn_insert *insert;
1431
c15f1d11
BP
1432 any_updates = true;
1433
f0f54cb4
BP
1434 json_object_put(op, "uuid-name",
1435 json_string_create_nocopy(
1436 uuid_name_from_uuid(&row->uuid)));
69490970
BP
1437
1438 insert = xmalloc(sizeof *insert);
1439 insert->dummy = row->uuid;
9cb53f26 1440 insert->op_index = operations->u.array.n - 1;
69490970
BP
1441 uuid_zero(&insert->real);
1442 hmap_insert(&txn->inserted_rows, &insert->hmap_node,
1443 uuid_hash(&insert->dummy));
f0f54cb4
BP
1444 }
1445 row_json = json_object_create();
1446 json_object_put(op, "row", row_json);
1447
35c2ce98
JG
1448 if (row->written) {
1449 BITMAP_FOR_EACH_1 (idx, class->n_columns, row->written) {
1450 const struct ovsdb_idl_column *column =
1451 &class->columns[idx];
1452
1453 if (row->old
1cc618c3 1454 || !ovsdb_datum_is_default(&row->new[idx],
35c2ce98
JG
1455 &column->type)) {
1456 json_object_put(row_json, column->name,
1457 substitute_uuids(
1458 ovsdb_datum_to_json(&row->new[idx],
1459 &column->type),
1460 txn));
c15f1d11
BP
1461
1462 /* If anything really changed, consider it an update.
1463 * We can't suppress not-really-changed values earlier
1464 * or transactions would become nonatomic (see the big
1465 * comment inside ovsdb_idl_txn_write()). */
1466 if (!any_updates && row->old &&
1467 !ovsdb_datum_equals(&row->old[idx], &row->new[idx],
1468 &column->type)) {
1469 any_updates = true;
1470 }
35c2ce98 1471 }
475281c0 1472 }
f0f54cb4
BP
1473 }
1474
1475 if (!row->old || !shash_is_empty(json_object(row_json))) {
1476 json_array_add(operations, op);
f0f54cb4
BP
1477 } else {
1478 json_destroy(op);
475281c0
BP
1479 }
1480 }
1481 }
1482
b54e22e9
BP
1483 /* Add increment. */
1484 if (txn->inc_table && any_updates) {
1485 struct json *op;
1486
9cb53f26 1487 txn->inc_index = operations->u.array.n - 1;
b54e22e9
BP
1488
1489 op = json_object_create();
1490 json_object_put_string(op, "op", "mutate");
1491 json_object_put_string(op, "table", txn->inc_table);
1492 json_object_put(op, "where",
1493 substitute_uuids(json_clone(txn->inc_where), txn));
1494 json_object_put(op, "mutations",
1495 json_array_create_1(
1496 json_array_create_3(
1497 json_string_create(txn->inc_column),
1498 json_string_create("+="),
1499 json_integer_create(1))));
1500 json_array_add(operations, op);
1501
1502 op = json_object_create();
1503 json_object_put_string(op, "op", "select");
1504 json_object_put_string(op, "table", txn->inc_table);
1505 json_object_put(op, "where",
1506 substitute_uuids(json_clone(txn->inc_where), txn));
1507 json_object_put(op, "columns",
1508 json_array_create_1(json_string_create(
1509 txn->inc_column)));
1510 json_array_add(operations, op);
1511 }
1512
d171b584
BP
1513 if (txn->comment.length) {
1514 struct json *op = json_object_create();
1515 json_object_put_string(op, "op", "comment");
1516 json_object_put_string(op, "comment", ds_cstr(&txn->comment));
1517 json_array_add(operations, op);
1518 }
1519
577aebdf
BP
1520 if (txn->dry_run) {
1521 struct json *op = json_object_create();
1522 json_object_put_string(op, "op", "abort");
1523 json_array_add(operations, op);
1524 }
1525
72c6edc5 1526 if (!any_updates) {
b54e22e9 1527 txn->status = TXN_UNCHANGED;
2f3ca7ea 1528 json_destroy(operations);
72c6edc5
BP
1529 } else if (!jsonrpc_session_send(
1530 txn->idl->session,
1531 jsonrpc_create_request(
1532 "transact", operations, &txn->request_id))) {
1533 hmap_insert(&txn->idl->outstanding_txns, &txn->hmap_node,
1534 json_hash(txn->request_id, 0));
1535 } else {
79554078 1536 txn->status = TXN_TRY_AGAIN;
72c6edc5 1537 }
475281c0 1538
475281c0 1539 ovsdb_idl_txn_disassemble(txn);
475281c0
BP
1540 return txn->status;
1541}
1542
af96ccd2
BP
1543/* Attempts to commit 'txn', blocking until the commit either succeeds or
1544 * fails. Returns the final commit status, which may be any TXN_* value other
1545 * than TXN_INCOMPLETE. */
1546enum ovsdb_idl_txn_status
1547ovsdb_idl_txn_commit_block(struct ovsdb_idl_txn *txn)
1548{
1549 enum ovsdb_idl_txn_status status;
1550
b302749b 1551 fatal_signal_run();
af96ccd2
BP
1552 while ((status = ovsdb_idl_txn_commit(txn)) == TXN_INCOMPLETE) {
1553 ovsdb_idl_run(txn->idl);
1554 ovsdb_idl_wait(txn->idl);
1555 ovsdb_idl_txn_wait(txn);
1556 poll_block();
1557 }
1558 return status;
1559}
1560
b54e22e9
BP
1561int64_t
1562ovsdb_idl_txn_get_increment_new_value(const struct ovsdb_idl_txn *txn)
1563{
1564 assert(txn->status == TXN_SUCCESS);
1565 return txn->inc_new_value;
1566}
1567
475281c0
BP
1568void
1569ovsdb_idl_txn_abort(struct ovsdb_idl_txn *txn)
1570{
1571 ovsdb_idl_txn_disassemble(txn);
1572 if (txn->status == TXN_INCOMPLETE) {
1573 txn->status = TXN_ABORTED;
1574 }
1575}
1576
91e310a5
BP
1577const char *
1578ovsdb_idl_txn_get_error(const struct ovsdb_idl_txn *txn)
1579{
1580 if (txn->status != TXN_ERROR) {
1581 return ovsdb_idl_txn_status_to_string(txn->status);
1582 } else if (txn->error) {
1583 return txn->error;
1584 } else {
1585 return "no error details available";
1586 }
1587}
1588
1589static void
1590ovsdb_idl_txn_set_error_json(struct ovsdb_idl_txn *txn,
1591 const struct json *json)
1592{
1593 if (txn->error == NULL) {
1594 txn->error = json_to_string(json, JSSF_SORT);
1595 }
1596}
1597
69490970
BP
1598/* For transaction 'txn' that completed successfully, finds and returns the
1599 * permanent UUID that the database assigned to a newly inserted row, given the
1600 * 'uuid' that ovsdb_idl_txn_insert() assigned locally to that row.
1601 *
1602 * Returns NULL if 'uuid' is not a UUID assigned by ovsdb_idl_txn_insert() or
1603 * if it was assigned by that function and then deleted by
1604 * ovsdb_idl_txn_delete() within the same transaction. (Rows that are inserted
1605 * and then deleted within a single transaction are never sent to the database
1606 * server, so it never assigns them a permanent UUID.) */
1607const struct uuid *
1608ovsdb_idl_txn_get_insert_uuid(const struct ovsdb_idl_txn *txn,
1609 const struct uuid *uuid)
1610{
1611 const struct ovsdb_idl_txn_insert *insert;
1612
1613 assert(txn->status == TXN_SUCCESS || txn->status == TXN_UNCHANGED);
4e8e4213 1614 HMAP_FOR_EACH_IN_BUCKET (insert, hmap_node,
69490970
BP
1615 uuid_hash(uuid), &txn->inserted_rows) {
1616 if (uuid_equals(uuid, &insert->dummy)) {
1617 return &insert->real;
1618 }
1619 }
1620 return NULL;
1621}
1622
475281c0
BP
1623static void
1624ovsdb_idl_txn_complete(struct ovsdb_idl_txn *txn,
1625 enum ovsdb_idl_txn_status status)
1626{
1627 txn->status = status;
1628 hmap_remove(&txn->idl->outstanding_txns, &txn->hmap_node);
1629}
1630
b827c67b
BP
1631/* Writes 'datum' to the specified 'column' in 'row_'. Updates both 'row_'
1632 * itself and the structs derived from it (e.g. the "struct ovsrec_*", for
1633 * ovs-vswitchd).
1634 *
1635 * 'datum' must have the correct type for its column. The IDL does not check
1636 * that it meets schema constraints, but ovsdb-server will do so at commit time
1637 * so it had better be correct.
1638 *
1639 * A transaction must be in progress. Replication of 'column' must not have
1640 * been disabled (by calling ovsdb_idl_omit()).
1641 *
1642 * Usually this function is used indirectly through one of the "set" functions
27a32516
BP
1643 * generated by ovsdb-idlc.
1644 *
1645 * Takes ownership of what 'datum' points to (and in some cases destroys that
1646 * data before returning) but makes a copy of 'datum' itself. (Commonly
1647 * 'datum' is on the caller's stack.) */
979821c0
BP
1648void
1649ovsdb_idl_txn_write(const struct ovsdb_idl_row *row_,
475281c0
BP
1650 const struct ovsdb_idl_column *column,
1651 struct ovsdb_datum *datum)
1652{
979821c0 1653 struct ovsdb_idl_row *row = (struct ovsdb_idl_row *) row_;
475281c0
BP
1654 const struct ovsdb_idl_table_class *class = row->table->class;
1655 size_t column_idx = column - class->columns;
1656
979821c0 1657 assert(row->new != NULL);
bd76d25d 1658 assert(column_idx < class->n_columns);
ef73f86c
BP
1659 assert(row->old == NULL ||
1660 row->table->modes[column_idx] & OVSDB_IDL_MONITOR);
c547535a 1661
1cc618c3
BP
1662 /* If this is a write-only column and the datum being written is the same
1663 * as the one already there, just skip the update entirely. This is worth
1664 * optimizing because we have a lot of columns that get periodically
1665 * refreshed into the database but don't actually change that often.
1666 *
1667 * We don't do this for read/write columns because that would break
1668 * atomicity of transactions--some other client might have written a
c15f1d11
BP
1669 * different value in that column since we read it. (But if a whole
1670 * transaction only does writes of existing values, without making any real
1671 * changes, we will drop the whole transaction later in
1672 * ovsdb_idl_txn_commit().) */
1cc618c3
BP
1673 if (row->table->modes[column_idx] == OVSDB_IDL_MONITOR
1674 && ovsdb_datum_equals(ovsdb_idl_read(row, column),
1675 datum, &column->type)) {
1676 ovsdb_datum_destroy(datum, &column->type);
1677 return;
1678 }
1679
475281c0
BP
1680 if (hmap_node_is_null(&row->txn_node)) {
1681 hmap_insert(&row->table->idl->txn->txn_rows, &row->txn_node,
1682 uuid_hash(&row->uuid));
1683 }
1684 if (row->old == row->new) {
1685 row->new = xmalloc(class->n_columns * sizeof *row->new);
1686 }
1687 if (!row->written) {
1688 row->written = bitmap_allocate(class->n_columns);
1689 }
1690 if (bitmap_is_set(row->written, column_idx)) {
1691 ovsdb_datum_destroy(&row->new[column_idx], &column->type);
1692 } else {
1693 bitmap_set1(row->written, column_idx);
1694 }
1695 row->new[column_idx] = *datum;
979821c0
BP
1696 (column->unparse)(row);
1697 (column->parse)(row, &row->new[column_idx]);
475281c0
BP
1698}
1699
b827c67b
BP
1700/* Causes the original contents of 'column' in 'row_' to be verified as a
1701 * prerequisite to completing the transaction. That is, if 'column' in 'row_'
1702 * changed (or if 'row_' was deleted) between the time that the IDL originally
1703 * read its contents and the time that the transaction commits, then the
1704 * transaction aborts and ovsdb_idl_txn_commit() returns TXN_TRY_AGAIN.
1705 *
1706 * The intention is that, to ensure that no transaction commits based on dirty
1707 * reads, an application should call ovsdb_idl_txn_verify() on each data item
1708 * read as part of a read-modify-write operation.
1709 *
1710 * In some cases ovsdb_idl_txn_verify() reduces to a no-op, because the current
1711 * value of 'column' is already known:
1712 *
1713 * - If 'row_' is a row created by the current transaction (returned by
1714 * ovsdb_idl_txn_insert()).
1715 *
1716 * - If 'column' has already been modified (with ovsdb_idl_txn_write())
1717 * within the current transaction.
1718 *
1719 * Because of the latter property, always call ovsdb_idl_txn_verify() *before*
1720 * ovsdb_idl_txn_write() for a given read-modify-write.
1721 *
1722 * A transaction must be in progress.
1723 *
1724 * Usually this function is used indirectly through one of the "verify"
1725 * functions generated by ovsdb-idlc. */
475281c0
BP
1726void
1727ovsdb_idl_txn_verify(const struct ovsdb_idl_row *row_,
1728 const struct ovsdb_idl_column *column)
1729{
1730 struct ovsdb_idl_row *row = (struct ovsdb_idl_row *) row_;
1731 const struct ovsdb_idl_table_class *class = row->table->class;
1732 size_t column_idx = column - class->columns;
1733
979821c0 1734 assert(row->new != NULL);
ee21cfa7
BP
1735 assert(row->old == NULL ||
1736 row->table->modes[column_idx] & OVSDB_IDL_MONITOR);
475281c0
BP
1737 if (!row->old
1738 || (row->written && bitmap_is_set(row->written, column_idx))) {
1739 return;
1740 }
1741
1742 if (hmap_node_is_null(&row->txn_node)) {
1743 hmap_insert(&row->table->idl->txn->txn_rows, &row->txn_node,
1744 uuid_hash(&row->uuid));
1745 }
1746 if (!row->prereqs) {
1747 row->prereqs = bitmap_allocate(class->n_columns);
1748 }
1749 bitmap_set1(row->prereqs, column_idx);
1750}
1751
b827c67b
BP
1752/* Deletes 'row_' from its table. May free 'row_', so it must not be
1753 * accessed afterward.
1754 *
1755 * A transaction must be in progress.
1756 *
1757 * Usually this function is used indirectly through one of the "delete"
1758 * functions generated by ovsdb-idlc. */
475281c0 1759void
9e336f49 1760ovsdb_idl_txn_delete(const struct ovsdb_idl_row *row_)
475281c0 1761{
9e336f49
BP
1762 struct ovsdb_idl_row *row = (struct ovsdb_idl_row *) row_;
1763
979821c0 1764 assert(row->new != NULL);
475281c0 1765 if (!row->old) {
0196cc15 1766 ovsdb_idl_row_unparse(row);
475281c0
BP
1767 ovsdb_idl_row_clear_new(row);
1768 assert(!row->prereqs);
979821c0 1769 hmap_remove(&row->table->rows, &row->hmap_node);
475281c0
BP
1770 hmap_remove(&row->table->idl->txn->txn_rows, &row->txn_node);
1771 free(row);
c7f7adb7 1772 return;
475281c0
BP
1773 }
1774 if (hmap_node_is_null(&row->txn_node)) {
1775 hmap_insert(&row->table->idl->txn->txn_rows, &row->txn_node,
1776 uuid_hash(&row->uuid));
1777 }
1ebeed63
BP
1778 ovsdb_idl_row_clear_new(row);
1779 row->new = NULL;
475281c0
BP
1780}
1781
b827c67b
BP
1782/* Inserts and returns a new row in the table with the specified 'class' in the
1783 * database with open transaction 'txn'.
1784 *
1785 * The new row is assigned a provisional UUID. If 'uuid' is null then one is
1786 * randomly generated; otherwise 'uuid' should specify a randomly generated
1787 * UUID not otherwise in use. ovsdb-server will assign a different UUID when
1788 * 'txn' is committed, but the IDL will replace any uses of the provisional
1789 * UUID in the data to be to be committed by the UUID assigned by
1790 * ovsdb-server.
1791 *
1792 * Usually this function is used indirectly through one of the "insert"
1793 * functions generated by ovsdb-idlc. */
9e336f49 1794const struct ovsdb_idl_row *
475281c0 1795ovsdb_idl_txn_insert(struct ovsdb_idl_txn *txn,
ce5a3e38
BP
1796 const struct ovsdb_idl_table_class *class,
1797 const struct uuid *uuid)
475281c0
BP
1798{
1799 struct ovsdb_idl_row *row = ovsdb_idl_row_create__(class);
ce5a3e38
BP
1800
1801 if (uuid) {
1802 assert(!ovsdb_idl_txn_get_row(txn, uuid));
1803 row->uuid = *uuid;
1804 } else {
1805 uuid_generate(&row->uuid);
1806 }
1807
475281c0
BP
1808 row->table = ovsdb_idl_table_from_class(txn->idl, class);
1809 row->new = xmalloc(class->n_columns * sizeof *row->new);
979821c0 1810 hmap_insert(&row->table->rows, &row->hmap_node, uuid_hash(&row->uuid));
475281c0
BP
1811 hmap_insert(&txn->txn_rows, &row->txn_node, uuid_hash(&row->uuid));
1812 return row;
1813}
1814
1815static void
1816ovsdb_idl_txn_abort_all(struct ovsdb_idl *idl)
1817{
1818 struct ovsdb_idl_txn *txn;
1819
4e8e4213 1820 HMAP_FOR_EACH (txn, hmap_node, &idl->outstanding_txns) {
475281c0
BP
1821 ovsdb_idl_txn_complete(txn, TXN_TRY_AGAIN);
1822 }
1823}
1824
1825static struct ovsdb_idl_txn *
1826ovsdb_idl_txn_find(struct ovsdb_idl *idl, const struct json *id)
1827{
1828 struct ovsdb_idl_txn *txn;
1829
4e8e4213 1830 HMAP_FOR_EACH_WITH_HASH (txn, hmap_node,
475281c0
BP
1831 json_hash(id, 0), &idl->outstanding_txns) {
1832 if (json_equal(id, txn->request_id)) {
1833 return txn;
1834 }
1835 }
1836 return NULL;
1837}
1838
b54e22e9
BP
1839static bool
1840check_json_type(const struct json *json, enum json_type type, const char *name)
1841{
1842 if (!json) {
1843 VLOG_WARN_RL(&syntax_rl, "%s is missing", name);
1844 return false;
1845 } else if (json->type != type) {
1846 VLOG_WARN_RL(&syntax_rl, "%s is %s instead of %s",
1847 name, json_type_to_string(json->type),
1848 json_type_to_string(type));
1849 return false;
1850 } else {
1851 return true;
1852 }
1853}
1854
1855static bool
1856ovsdb_idl_txn_process_inc_reply(struct ovsdb_idl_txn *txn,
1857 const struct json_array *results)
1858{
1859 struct json *count, *rows, *row, *column;
1860 struct shash *mutate, *select;
1861
1862 if (txn->inc_index + 2 > results->n) {
1863 VLOG_WARN_RL(&syntax_rl, "reply does not contain enough operations "
6fce4487 1864 "for increment (has %zu, needs %u)",
b54e22e9
BP
1865 results->n, txn->inc_index + 2);
1866 return false;
1867 }
1868
69490970 1869 /* We know that this is a JSON object because the loop in
b54e22e9
BP
1870 * ovsdb_idl_txn_process_reply() checked. */
1871 mutate = json_object(results->elems[txn->inc_index]);
1872 count = shash_find_data(mutate, "count");
1873 if (!check_json_type(count, JSON_INTEGER, "\"mutate\" reply \"count\"")) {
1874 return false;
1875 }
1876 if (count->u.integer != 1) {
1877 VLOG_WARN_RL(&syntax_rl,
6fce4487 1878 "\"mutate\" reply \"count\" is %lld instead of 1",
b54e22e9
BP
1879 count->u.integer);
1880 return false;
1881 }
1882
1883 select = json_object(results->elems[txn->inc_index + 1]);
1884 rows = shash_find_data(select, "rows");
1885 if (!check_json_type(rows, JSON_ARRAY, "\"select\" reply \"rows\"")) {
1886 return false;
1887 }
1888 if (rows->u.array.n != 1) {
6fce4487 1889 VLOG_WARN_RL(&syntax_rl, "\"select\" reply \"rows\" has %zu elements "
b54e22e9
BP
1890 "instead of 1",
1891 rows->u.array.n);
1892 return false;
1893 }
1894 row = rows->u.array.elems[0];
1895 if (!check_json_type(row, JSON_OBJECT, "\"select\" reply row")) {
1896 return false;
1897 }
1898 column = shash_find_data(json_object(row), txn->inc_column);
1899 if (!check_json_type(column, JSON_INTEGER,
1900 "\"select\" reply inc column")) {
1901 return false;
1902 }
1903 txn->inc_new_value = column->u.integer;
1904 return true;
1905}
1906
69490970
BP
1907static bool
1908ovsdb_idl_txn_process_insert_reply(struct ovsdb_idl_txn_insert *insert,
1909 const struct json_array *results)
1910{
bd76d25d 1911 static const struct ovsdb_base_type uuid_type = OVSDB_BASE_UUID_INIT;
69490970
BP
1912 struct ovsdb_error *error;
1913 struct json *json_uuid;
1914 union ovsdb_atom uuid;
1915 struct shash *reply;
1916
1917 if (insert->op_index >= results->n) {
1918 VLOG_WARN_RL(&syntax_rl, "reply does not contain enough operations "
6fce4487 1919 "for insert (has %zu, needs %u)",
69490970
BP
1920 results->n, insert->op_index);
1921 return false;
1922 }
1923
1924 /* We know that this is a JSON object because the loop in
1925 * ovsdb_idl_txn_process_reply() checked. */
1926 reply = json_object(results->elems[insert->op_index]);
1927 json_uuid = shash_find_data(reply, "uuid");
1928 if (!check_json_type(json_uuid, JSON_ARRAY, "\"insert\" reply \"uuid\"")) {
1929 return false;
1930 }
1931
bd76d25d 1932 error = ovsdb_atom_from_json(&uuid, &uuid_type, json_uuid, NULL);
69490970
BP
1933 if (error) {
1934 char *s = ovsdb_error_to_string(error);
1935 VLOG_WARN_RL(&syntax_rl, "\"insert\" reply \"uuid\" is not a JSON "
1936 "UUID: %s", s);
1937 free(s);
1938 return false;
1939 }
1940
1941 insert->real = uuid.uuid;
1942
1943 return true;
1944}
b54e22e9 1945
475281c0
BP
1946static bool
1947ovsdb_idl_txn_process_reply(struct ovsdb_idl *idl,
1948 const struct jsonrpc_msg *msg)
1949{
1950 struct ovsdb_idl_txn *txn;
1951 enum ovsdb_idl_txn_status status;
1952
1953 txn = ovsdb_idl_txn_find(idl, msg->id);
1954 if (!txn) {
1955 return false;
1956 }
1957
1958 if (msg->type == JSONRPC_ERROR) {
1959 status = TXN_ERROR;
1960 } else if (msg->result->type != JSON_ARRAY) {
1961 VLOG_WARN_RL(&syntax_rl, "reply to \"transact\" is not JSON array");
1962 status = TXN_ERROR;
1963 } else {
69490970 1964 struct json_array *ops = &msg->result->u.array;
475281c0
BP
1965 int hard_errors = 0;
1966 int soft_errors = 0;
1967 size_t i;
1968
69490970
BP
1969 for (i = 0; i < ops->n; i++) {
1970 struct json *op = ops->elems[i];
475281c0 1971
69490970 1972 if (op->type == JSON_NULL) {
475281c0
BP
1973 /* This isn't an error in itself but indicates that some prior
1974 * operation failed, so make sure that we know about it. */
1975 soft_errors++;
69490970 1976 } else if (op->type == JSON_OBJECT) {
475281c0
BP
1977 struct json *error;
1978
69490970 1979 error = shash_find_data(json_object(op), "error");
475281c0
BP
1980 if (error) {
1981 if (error->type == JSON_STRING) {
1982 if (!strcmp(error->u.string, "timed out")) {
1983 soft_errors++;
577aebdf 1984 } else if (strcmp(error->u.string, "aborted")) {
475281c0 1985 hard_errors++;
91e310a5 1986 ovsdb_idl_txn_set_error_json(txn, op);
475281c0
BP
1987 }
1988 } else {
1989 hard_errors++;
91e310a5 1990 ovsdb_idl_txn_set_error_json(txn, op);
475281c0
BP
1991 VLOG_WARN_RL(&syntax_rl,
1992 "\"error\" in reply is not JSON string");
1993 }
1994 }
1995 } else {
1996 hard_errors++;
91e310a5 1997 ovsdb_idl_txn_set_error_json(txn, op);
475281c0
BP
1998 VLOG_WARN_RL(&syntax_rl,
1999 "operation reply is not JSON null or object");
2000 }
2001 }
2002
69490970
BP
2003 if (!soft_errors && !hard_errors) {
2004 struct ovsdb_idl_txn_insert *insert;
2005
2006 if (txn->inc_table && !ovsdb_idl_txn_process_inc_reply(txn, ops)) {
2007 hard_errors++;
2008 }
2009
4e8e4213 2010 HMAP_FOR_EACH (insert, hmap_node, &txn->inserted_rows) {
69490970
BP
2011 if (!ovsdb_idl_txn_process_insert_reply(insert, ops)) {
2012 hard_errors++;
2013 }
2014 }
b54e22e9
BP
2015 }
2016
475281c0
BP
2017 status = (hard_errors ? TXN_ERROR
2018 : soft_errors ? TXN_TRY_AGAIN
2019 : TXN_SUCCESS);
2020 }
2021
2022 ovsdb_idl_txn_complete(txn, status);
2023 return true;
2024}
76c91af9
BP
2025
2026struct ovsdb_idl_txn *
2027ovsdb_idl_txn_get(const struct ovsdb_idl_row *row)
2028{
2029 struct ovsdb_idl_txn *txn = row->table->idl->txn;
2030 assert(txn != NULL);
2031 return txn;
2032}
1e86ae6f
BP
2033
2034struct ovsdb_idl *
2035ovsdb_idl_txn_get_idl (struct ovsdb_idl_txn *txn)
2036{
2037 return txn->idl;
2038}
2039