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