]> git.proxmox.com Git - mirror_ovs.git/blame - ovsdb/ovsdb.c
jsonrpc: Allow jsonrpc_session to have more than one remote.
[mirror_ovs.git] / ovsdb / ovsdb.c
CommitLineData
c2c28dfd 1/* Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
f85f8ebb
BP
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <config.h>
17
18#include "ovsdb.h"
19
0d0f05b9 20#include "column.h"
ee89ea7b 21#include "openvswitch/json.h"
f85f8ebb
BP
22#include "ovsdb-error.h"
23#include "ovsdb-parser.h"
0d0f05b9 24#include "ovsdb-types.h"
0d085684 25#include "simap.h"
f85f8ebb
BP
26#include "table.h"
27#include "transaction.h"
28
f85f8ebb 29struct ovsdb_schema *
6aa09313 30ovsdb_schema_create(const char *name, const char *version, const char *cksum)
f85f8ebb
BP
31{
32 struct ovsdb_schema *schema;
33
34 schema = xzalloc(sizeof *schema);
35 schema->name = xstrdup(name);
8159b984 36 schema->version = xstrdup(version);
6aa09313 37 schema->cksum = xstrdup(cksum);
f85f8ebb
BP
38 shash_init(&schema->tables);
39
40 return schema;
41}
42
58985e09
BP
43struct ovsdb_schema *
44ovsdb_schema_clone(const struct ovsdb_schema *old)
45{
46 struct ovsdb_schema *new;
47 struct shash_node *node;
48
6aa09313 49 new = ovsdb_schema_create(old->name, old->version, old->cksum);
58985e09
BP
50 SHASH_FOR_EACH (node, &old->tables) {
51 const struct ovsdb_table_schema *ts = node->data;
52
53 shash_add(&new->tables, node->name, ovsdb_table_schema_clone(ts));
54 }
55 return new;
56}
57
f85f8ebb
BP
58void
59ovsdb_schema_destroy(struct ovsdb_schema *schema)
60{
61 struct shash_node *node;
62
271915d3
BP
63 if (!schema) {
64 return;
65 }
66
f85f8ebb
BP
67 SHASH_FOR_EACH (node, &schema->tables) {
68 ovsdb_table_schema_destroy(node->data);
69 }
70 shash_destroy(&schema->tables);
f85f8ebb 71 free(schema->name);
8159b984 72 free(schema->version);
6aa09313 73 free(schema->cksum);
f85f8ebb
BP
74 free(schema);
75}
76
77struct ovsdb_error *
78ovsdb_schema_from_file(const char *file_name, struct ovsdb_schema **schemap)
79{
80 struct ovsdb_schema *schema;
81 struct ovsdb_error *error;
82 struct json *json;
83
84 *schemap = NULL;
85 json = json_from_file(file_name);
86 if (json->type == JSON_STRING) {
87 error = ovsdb_error("failed to read schema",
88 "\"%s\" could not be read as JSON (%s)",
89 file_name, json_string(json));
90 json_destroy(json);
91 return error;
92 }
93
94 error = ovsdb_schema_from_json(json, &schema);
e084f690 95 json_destroy(json);
f85f8ebb 96 if (error) {
f85f8ebb
BP
97 return ovsdb_wrap_error(error,
98 "failed to parse \"%s\" as ovsdb schema",
99 file_name);
100 }
101
102 *schemap = schema;
103 return NULL;
104}
105
cab50449 106static struct ovsdb_error * OVS_WARN_UNUSED_RESULT
42a49b96 107ovsdb_schema_check_ref_table(struct ovsdb_column *column,
0d0f05b9
BP
108 const struct shash *tables,
109 const struct ovsdb_base_type *base,
110 const char *base_name)
111{
42a49b96
BP
112 struct ovsdb_table_schema *refTable;
113
114 if (base->type != OVSDB_TYPE_UUID || !base->u.uuid.refTableName) {
115 return NULL;
116 }
117
118 refTable = shash_find_data(tables, base->u.uuid.refTableName);
119 if (!refTable) {
0d0f05b9
BP
120 return ovsdb_syntax_error(NULL, NULL,
121 "column %s %s refers to undefined table %s",
122 column->name, base_name,
123 base->u.uuid.refTableName);
0d0f05b9 124 }
42a49b96
BP
125
126 if (ovsdb_base_type_is_strong_ref(base) && !refTable->is_root) {
127 /* We cannot allow a strong reference to a non-root table to be
128 * ephemeral: if it is the only reference to a row, then replaying the
129 * database log from disk will cause the referenced row to be deleted,
130 * even though it did exist in memory. If there are references to that
131 * row later in the log (to modify it, to delete it, or just to point
132 * to it), then this will yield a transaction error. */
133 column->persistent = true;
134 }
135
136 return NULL;
0d0f05b9
BP
137}
138
8159b984
BP
139static bool
140is_valid_version(const char *s)
141{
142 int n = -1;
c2c28dfd 143 ignore(ovs_scan(s, "%*[0-9].%*[0-9].%*[0-9]%n", &n));
8159b984
BP
144 return n != -1 && s[n] == '\0';
145}
146
c5f341ab
BP
147/* Returns the number of tables in 'schema''s root set. */
148static size_t
149root_set_size(const struct ovsdb_schema *schema)
150{
151 struct shash_node *node;
85dcedff 152 size_t n_root = 0;
c5f341ab
BP
153
154 SHASH_FOR_EACH (node, &schema->tables) {
155 struct ovsdb_table_schema *table = node->data;
156
157 n_root += table->is_root;
158 }
159 return n_root;
160}
161
f85f8ebb
BP
162struct ovsdb_error *
163ovsdb_schema_from_json(struct json *json, struct ovsdb_schema **schemap)
164{
165 struct ovsdb_schema *schema;
6aa09313 166 const struct json *name, *tables, *version_json, *cksum;
f85f8ebb
BP
167 struct ovsdb_error *error;
168 struct shash_node *node;
169 struct ovsdb_parser parser;
8159b984 170 const char *version;
f85f8ebb
BP
171
172 *schemap = NULL;
173
174 ovsdb_parser_init(&parser, json, "database schema");
175 name = ovsdb_parser_member(&parser, "name", OP_ID);
8159b984
BP
176 version_json = ovsdb_parser_member(&parser, "version",
177 OP_STRING | OP_OPTIONAL);
6aa09313 178 cksum = ovsdb_parser_member(&parser, "cksum", OP_STRING | OP_OPTIONAL);
f85f8ebb
BP
179 tables = ovsdb_parser_member(&parser, "tables", OP_OBJECT);
180 error = ovsdb_parser_finish(&parser);
181 if (error) {
182 return error;
183 }
184
8159b984
BP
185 if (version_json) {
186 version = json_string(version_json);
187 if (!is_valid_version(version)) {
188 return ovsdb_syntax_error(json, NULL, "schema version \"%s\" not "
189 "in format x.y.z", version);
190 }
191 } else {
192 /* Backward compatibility with old databases. */
193 version = "";
194 }
195
6aa09313
BP
196 schema = ovsdb_schema_create(json_string(name), version,
197 cksum ? json_string(cksum) : "");
f85f8ebb
BP
198 SHASH_FOR_EACH (node, json_object(tables)) {
199 struct ovsdb_table_schema *table;
200
201 if (node->name[0] == '_') {
202 error = ovsdb_syntax_error(json, NULL, "names beginning with "
203 "\"_\" are reserved");
b966380b
BP
204 } else if (!ovsdb_parser_is_id(node->name)) {
205 error = ovsdb_syntax_error(json, NULL, "name must be a valid id");
f85f8ebb
BP
206 } else {
207 error = ovsdb_table_schema_from_json(node->data, node->name,
208 &table);
209 }
210 if (error) {
211 ovsdb_schema_destroy(schema);
212 return error;
213 }
214
215 shash_add(&schema->tables, table->name, table);
216 }
0d0f05b9 217
42a49b96
BP
218 /* "isRoot" was not part of the original schema definition. Before it was
219 * added, there was no support for garbage collection. So, for backward
220 * compatibility, if the root set is empty then assume that every table is
221 * in the root set. */
222 if (root_set_size(schema) == 0) {
223 SHASH_FOR_EACH (node, &schema->tables) {
224 struct ovsdb_table_schema *table = node->data;
225
226 table->is_root = true;
227 }
228 }
229
230 /* Validate that all refTables refer to the names of tables that exist.
231 *
232 * Also force certain columns to be persistent, as explained in
233 * ovsdb_schema_check_ref_table(). This requires 'is_root' to be known, so
234 * this must follow the loop updating 'is_root' above. */
0d0f05b9
BP
235 SHASH_FOR_EACH (node, &schema->tables) {
236 struct ovsdb_table_schema *table = node->data;
237 struct shash_node *node2;
238
239 SHASH_FOR_EACH (node2, &table->columns) {
240 struct ovsdb_column *column = node2->data;
241
242 error = ovsdb_schema_check_ref_table(column, &schema->tables,
243 &column->type.key, "key");
244 if (!error) {
245 error = ovsdb_schema_check_ref_table(column, &schema->tables,
246 &column->type.value,
247 "value");
248 }
249 if (error) {
250 ovsdb_schema_destroy(schema);
251 return error;
252 }
253 }
254 }
255
f85f8ebb 256 *schemap = schema;
e3c17733 257 return NULL;
f85f8ebb
BP
258}
259
260struct json *
261ovsdb_schema_to_json(const struct ovsdb_schema *schema)
262{
263 struct json *json, *tables;
264 struct shash_node *node;
c5f341ab 265 bool default_is_root;
f85f8ebb
BP
266
267 json = json_object_create();
268 json_object_put_string(json, "name", schema->name);
8159b984
BP
269 if (schema->version[0]) {
270 json_object_put_string(json, "version", schema->version);
271 }
6aa09313
BP
272 if (schema->cksum[0]) {
273 json_object_put_string(json, "cksum", schema->cksum);
274 }
f85f8ebb 275
c5f341ab
BP
276 /* "isRoot" was not part of the original schema definition. Before it was
277 * added, there was no support for garbage collection. So, for backward
278 * compatibility, if every table is in the root set then do not output
279 * "isRoot" in table schemas. */
280 default_is_root = root_set_size(schema) == shash_count(&schema->tables);
281
f85f8ebb
BP
282 tables = json_object_create();
283
284 SHASH_FOR_EACH (node, &schema->tables) {
285 struct ovsdb_table_schema *table = node->data;
286 json_object_put(tables, table->name,
c5f341ab 287 ovsdb_table_schema_to_json(table, default_is_root));
f85f8ebb
BP
288 }
289 json_object_put(json, "tables", tables);
290
291 return json;
292}
403e3a25
BP
293
294/* Returns true if 'a' and 'b' specify equivalent schemas, false if they
295 * differ. */
296bool
297ovsdb_schema_equal(const struct ovsdb_schema *a,
298 const struct ovsdb_schema *b)
299{
300 /* This implementation is simple, stupid, and slow, but I doubt that it
301 * will ever require much maintenance. */
302 struct json *ja = ovsdb_schema_to_json(a);
303 struct json *jb = ovsdb_schema_to_json(b);
304 bool equals = json_equal(ja, jb);
305 json_destroy(ja);
306 json_destroy(jb);
307
308 return equals;
309}
f85f8ebb 310\f
0d0f05b9
BP
311static void
312ovsdb_set_ref_table(const struct shash *tables,
313 struct ovsdb_base_type *base)
314{
315 if (base->type == OVSDB_TYPE_UUID && base->u.uuid.refTableName) {
316 struct ovsdb_table *table;
317
318 table = shash_find_data(tables, base->u.uuid.refTableName);
319 base->u.uuid.refTable = table;
320 }
321}
322
f85f8ebb 323struct ovsdb *
bd06962a 324ovsdb_create(struct ovsdb_schema *schema)
f85f8ebb
BP
325{
326 struct shash_node *node;
327 struct ovsdb *db;
328
329 db = xmalloc(sizeof *db);
330 db->schema = schema;
417e7e66
BW
331 ovs_list_init(&db->replicas);
332 ovs_list_init(&db->triggers);
f85f8ebb
BP
333 db->run_triggers = false;
334
335 shash_init(&db->tables);
336 SHASH_FOR_EACH (node, &schema->tables) {
337 struct ovsdb_table_schema *ts = node->data;
338 shash_add(&db->tables, node->name, ovsdb_table_create(ts));
339 }
340
0d0f05b9
BP
341 /* Set all the refTables. */
342 SHASH_FOR_EACH (node, &schema->tables) {
343 struct ovsdb_table_schema *table = node->data;
344 struct shash_node *node2;
345
346 SHASH_FOR_EACH (node2, &table->columns) {
347 struct ovsdb_column *column = node2->data;
348
349 ovsdb_set_ref_table(&db->tables, &column->type.key);
350 ovsdb_set_ref_table(&db->tables, &column->type.value);
351 }
352 }
353
d6db7b3c
LR
354 /* Use RBAC roles table if present. */
355 db->rbac_role = ovsdb_get_table(db, "RBAC_Role");
356
f85f8ebb
BP
357 return db;
358}
359
f85f8ebb
BP
360void
361ovsdb_destroy(struct ovsdb *db)
362{
363 if (db) {
364 struct shash_node *node;
365
bd06962a 366 /* Remove all the replicas. */
417e7e66 367 while (!ovs_list_is_empty(&db->replicas)) {
bd06962a 368 struct ovsdb_replica *r
417e7e66 369 = CONTAINER_OF(ovs_list_pop_back(&db->replicas),
bd06962a
BP
370 struct ovsdb_replica, node);
371 ovsdb_remove_replica(db, r);
372 }
373
f85f8ebb
BP
374 /* Delete all the tables. This also deletes their schemas. */
375 SHASH_FOR_EACH (node, &db->tables) {
376 struct ovsdb_table *table = node->data;
377 ovsdb_table_destroy(table);
378 }
379 shash_destroy(&db->tables);
380
1248fcd2
BP
381 /* The schemas, but not the table that points to them, were deleted in
382 * the previous step, so we need to clear out the table. We can't
383 * destroy the table, because ovsdb_schema_destroy() will do that. */
384 shash_clear(&db->schema->tables);
f85f8ebb
BP
385
386 ovsdb_schema_destroy(db->schema);
f85f8ebb
BP
387 free(db);
388 }
389}
390
0d085684
BP
391/* Adds some memory usage statistics for 'db' into 'usage', for use with
392 * memory_report(). */
393void
394ovsdb_get_memory_usage(const struct ovsdb *db, struct simap *usage)
395{
396 const struct shash_node *node;
397 unsigned int cells = 0;
398
399 SHASH_FOR_EACH (node, &db->tables) {
400 const struct ovsdb_table *table = node->data;
401 unsigned int n_columns = shash_count(&table->schema->columns);
402 unsigned int n_rows = hmap_count(&table->rows);
403
404 cells += n_rows * n_columns;
405 }
406
407 simap_increase(usage, "cells", cells);
408}
409
f85f8ebb
BP
410struct ovsdb_table *
411ovsdb_get_table(const struct ovsdb *db, const char *name)
412{
413 return shash_find_data(&db->tables, name);
414}
bd06962a
BP
415\f
416void
417ovsdb_replica_init(struct ovsdb_replica *r,
418 const struct ovsdb_replica_class *class)
419{
420 r->class = class;
421}
422
423void
424ovsdb_add_replica(struct ovsdb *db, struct ovsdb_replica *r)
425{
417e7e66 426 ovs_list_push_back(&db->replicas, &r->node);
bd06962a
BP
427}
428
429void
c69ee87c 430ovsdb_remove_replica(struct ovsdb *db OVS_UNUSED, struct ovsdb_replica *r)
bd06962a 431{
417e7e66 432 ovs_list_remove(&r->node);
bd06962a
BP
433 (r->class->destroy)(r);
434}