]> git.proxmox.com Git - mirror_ovs.git/blame - ovsdb/server.c
Eliminate "whitelist" and "blacklist" terms.
[mirror_ovs.git] / ovsdb / server.c
CommitLineData
b4e8d170 1/* Copyright (c) 2011, 2012 Nicira, Inc.
e317253b
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 "server.h"
19
da897f41 20#include "hash.h"
b4e8d170 21#include "ovsdb.h"
64fada26 22#include "uuid.h"
da897f41 23
b4e8d170 24/* Initializes 'session' as a session within 'server'. */
e317253b 25void
b4e8d170 26ovsdb_session_init(struct ovsdb_session *session, struct ovsdb_server *server)
e317253b 27{
b4e8d170 28 session->server = server;
417e7e66 29 ovs_list_init(&session->completions);
da897f41 30 hmap_init(&session->waiters);
e317253b
BP
31}
32
33/* Destroys 'session'. */
34void
da897f41
BP
35ovsdb_session_destroy(struct ovsdb_session *session)
36{
cb22974d 37 ovs_assert(hmap_is_empty(&session->waiters));
da897f41
BP
38 hmap_destroy(&session->waiters);
39}
40
41/* Searches 'session' for an ovsdb_lock_waiter named 'lock_name' and returns
42 * it if it finds one, otherwise NULL. */
43struct ovsdb_lock_waiter *
44ovsdb_session_get_lock_waiter(const struct ovsdb_session *session,
45 const char *lock_name)
46{
47 struct ovsdb_lock_waiter *waiter;
48
49 HMAP_FOR_EACH_WITH_HASH (waiter, session_node, hash_string(lock_name, 0),
50 &session->waiters) {
51 if (!strcmp(lock_name, waiter->lock_name)) {
52 return waiter;
53 }
54 }
55 return NULL;
56}
57
58/* Returns the waiter that owns 'lock'.
59 *
60 * A lock always has an owner, so this function will never return NULL. */
61struct ovsdb_lock_waiter *
62ovsdb_lock_get_owner(const struct ovsdb_lock *lock)
63{
417e7e66 64 return CONTAINER_OF(ovs_list_front(&lock->waiters),
da897f41
BP
65 struct ovsdb_lock_waiter, lock_node);
66}
67
68/* Removes 'waiter' from its lock's list. This means that, if 'waiter' was
69 * formerly the owner of its lock, then it no longer owns it.
70 *
71 * Returns the session that now owns 'waiter'. This is NULL if 'waiter' was
72 * the lock's owner and no other sessions were waiting for the lock. In this
73 * case, the lock has been destroyed, so the caller must be sure not to refer
74 * to it again. A nonnull return value reflects a change in the lock's
75 * ownership if and only if 'waiter' formerly owned the lock. */
76struct ovsdb_session *
77ovsdb_lock_waiter_remove(struct ovsdb_lock_waiter *waiter)
78{
79 struct ovsdb_lock *lock = waiter->lock;
80
417e7e66 81 ovs_list_remove(&waiter->lock_node);
da897f41
BP
82 waiter->lock = NULL;
83
417e7e66 84 if (ovs_list_is_empty(&lock->waiters)) {
da897f41
BP
85 hmap_remove(&lock->server->locks, &lock->hmap_node);
86 free(lock->name);
87 free(lock);
88 return NULL;
89 }
90
91 return ovsdb_lock_get_owner(lock)->session;
92}
93
94/* Destroys 'waiter', which must have already been removed from its lock's
95 * waiting list with ovsdb_lock_waiter_remove().
96 *
97 * Removing and destroying locks are decoupled because a lock initially created
98 * by the "steal" request, that is later stolen by another client, remains in
99 * the database session until the database client sends an "unlock" request. */
100void
101ovsdb_lock_waiter_destroy(struct ovsdb_lock_waiter *waiter)
102{
cb22974d 103 ovs_assert(!waiter->lock);
da897f41
BP
104 hmap_remove(&waiter->session->waiters, &waiter->session_node);
105 free(waiter->lock_name);
106 free(waiter);
107}
108
109/* Returns true if 'waiter' owns its associated lock. */
110bool
111ovsdb_lock_waiter_is_owner(const struct ovsdb_lock_waiter *waiter)
e317253b 112{
da897f41 113 return waiter->lock && waiter == ovsdb_lock_get_owner(waiter->lock);
e317253b
BP
114}
115
b4e8d170
BP
116/* Initializes 'server'.
117 *
118 * The caller must call ovsdb_server_add_db() for each database to which
119 * 'server' should provide access. */
e317253b 120void
b4e8d170 121ovsdb_server_init(struct ovsdb_server *server)
e317253b 122{
b4e8d170 123 shash_init(&server->dbs);
da897f41 124 hmap_init(&server->locks);
64fada26 125 uuid_generate(&server->uuid);
e317253b
BP
126}
127
b4e8d170
BP
128/* Adds 'db' to the set of databases served out by 'server'. Returns true if
129 * successful, false if 'db''s name is the same as some database already in
130 * 'server'. */
131bool
132ovsdb_server_add_db(struct ovsdb_server *server, struct ovsdb *db)
133{
1b1d2e6d 134 return shash_add_once(&server->dbs, db->name, db);
b4e8d170
BP
135}
136
1b1d2e6d
BP
137/* Removes 'db' from the set of databases served out by 'server'. */
138void
0a3b723b
BP
139ovsdb_server_remove_db(struct ovsdb_server *server, struct ovsdb *db)
140{
1b1d2e6d 141 shash_find_and_delete_assert(&server->dbs, db->name);
0a3b723b
BP
142}
143
e317253b
BP
144/* Destroys 'server'. */
145void
da897f41
BP
146ovsdb_server_destroy(struct ovsdb_server *server)
147{
b4e8d170 148 shash_destroy(&server->dbs);
da897f41
BP
149 hmap_destroy(&server->locks);
150}
151
152static struct ovsdb_lock *
153ovsdb_server_create_lock__(struct ovsdb_server *server, const char *lock_name,
154 uint32_t hash)
155{
156 struct ovsdb_lock *lock;
157
158 HMAP_FOR_EACH_WITH_HASH (lock, hmap_node, hash, &server->locks) {
159 if (!strcmp(lock->name, lock_name)) {
160 return lock;
161 }
162 }
163
164 lock = xzalloc(sizeof *lock);
165 lock->server = server;
166 lock->name = xstrdup(lock_name);
167 hmap_insert(&server->locks, &lock->hmap_node, hash);
417e7e66 168 ovs_list_init(&lock->waiters);
da897f41
BP
169
170 return lock;
171}
172
173/* Attempts to acquire the lock named 'lock_name' for 'session' within
174 * 'server'. Returns the new lock waiter.
175 *
176 * If 'mode' is OVSDB_LOCK_STEAL, then the new lock waiter is always the owner
177 * of the lock. '*victimp' receives the session of the previous owner or NULL
178 * if the lock was previously unowned. (If the victim itself originally
179 * obtained the lock through a "steal" operation, then this function also
180 * removes the victim from the lock's waiting list.)
181 *
182 * If 'mode' is OVSDB_LOCK_WAIT, then the new lock waiter is the owner of the
183 * lock only if this lock had no existing owner. '*victimp' is set to NULL. */
184struct ovsdb_lock_waiter *
185ovsdb_server_lock(struct ovsdb_server *server,
186 struct ovsdb_session *session,
187 const char *lock_name,
188 enum ovsdb_lock_mode mode,
189 struct ovsdb_session **victimp)
e317253b 190{
da897f41
BP
191 uint32_t hash = hash_string(lock_name, 0);
192 struct ovsdb_lock_waiter *waiter, *victim;
193 struct ovsdb_lock *lock;
194
195 lock = ovsdb_server_create_lock__(server, lock_name, hash);
417e7e66 196 victim = (mode == OVSDB_LOCK_STEAL && !ovs_list_is_empty(&lock->waiters)
da897f41
BP
197 ? ovsdb_lock_get_owner(lock)
198 : NULL);
199
200 waiter = xmalloc(sizeof *waiter);
201 waiter->mode = mode;
202 waiter->lock_name = xstrdup(lock_name);
203 waiter->lock = lock;
204 if (mode == OVSDB_LOCK_STEAL) {
417e7e66 205 ovs_list_push_front(&lock->waiters, &waiter->lock_node);
da897f41 206 } else {
417e7e66 207 ovs_list_push_back(&lock->waiters, &waiter->lock_node);
da897f41
BP
208 }
209 waiter->session = session;
210 hmap_insert(&waiter->session->waiters, &waiter->session_node, hash);
211
212 if (victim && victim->mode == OVSDB_LOCK_STEAL) {
213 ovsdb_lock_waiter_remove(victim);
214 }
215 *victimp = victim ? victim->session : NULL;
216
217 return waiter;
e317253b 218}