/usr/src/openvswitch-1.4.0/lib/shash.c is in openvswitch-datapath-dkms 1.4.0-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | /*
* Copyright (c) 2009, 2010, 2011 Nicira Networks.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <config.h>
#include "shash.h"
#include <assert.h>
#include "hash.h"
static struct shash_node *shash_find__(const struct shash *,
const char *name, size_t name_len,
size_t hash);
static size_t
hash_name(const char *name)
{
return hash_string(name, 0);
}
void
shash_init(struct shash *sh)
{
hmap_init(&sh->map);
}
void
shash_destroy(struct shash *sh)
{
if (sh) {
shash_clear(sh);
hmap_destroy(&sh->map);
}
}
/* Like shash_destroy(), but also free() each node's 'data'. */
void
shash_destroy_free_data(struct shash *sh)
{
if (sh) {
shash_clear_free_data(sh);
hmap_destroy(&sh->map);
}
}
void
shash_swap(struct shash *a, struct shash *b)
{
hmap_swap(&a->map, &b->map);
}
void
shash_moved(struct shash *sh)
{
hmap_moved(&sh->map);
}
void
shash_clear(struct shash *sh)
{
struct shash_node *node, *next;
SHASH_FOR_EACH_SAFE (node, next, sh) {
hmap_remove(&sh->map, &node->node);
free(node->name);
free(node);
}
}
/* Like shash_clear(), but also free() each node's 'data'. */
void
shash_clear_free_data(struct shash *sh)
{
struct shash_node *node, *next;
SHASH_FOR_EACH_SAFE (node, next, sh) {
hmap_remove(&sh->map, &node->node);
free(node->data);
free(node->name);
free(node);
}
}
bool
shash_is_empty(const struct shash *shash)
{
return hmap_is_empty(&shash->map);
}
size_t
shash_count(const struct shash *shash)
{
return hmap_count(&shash->map);
}
static struct shash_node *
shash_add_nocopy__(struct shash *sh, char *name, const void *data, size_t hash)
{
struct shash_node *node = xmalloc(sizeof *node);
node->name = name;
node->data = (void *) data;
hmap_insert(&sh->map, &node->node, hash);
return node;
}
/* It is the caller's responsibility to avoid duplicate names, if that is
* desirable. */
struct shash_node *
shash_add_nocopy(struct shash *sh, char *name, const void *data)
{
return shash_add_nocopy__(sh, name, data, hash_name(name));
}
/* It is the caller's responsibility to avoid duplicate names, if that is
* desirable. */
struct shash_node *
shash_add(struct shash *sh, const char *name, const void *data)
{
return shash_add_nocopy(sh, xstrdup(name), data);
}
bool
shash_add_once(struct shash *sh, const char *name, const void *data)
{
if (!shash_find(sh, name)) {
shash_add(sh, name, data);
return true;
} else {
return false;
}
}
void
shash_add_assert(struct shash *sh, const char *name, const void *data)
{
bool added OVS_UNUSED = shash_add_once(sh, name, data);
assert(added);
}
/* Searches for 'name' in 'sh'. If it does not already exist, adds it along
* with 'data' and returns NULL. If it does already exist, replaces its data
* by 'data' and returns the data that it formerly contained. */
void *
shash_replace(struct shash *sh, const char *name, const void *data)
{
size_t hash = hash_name(name);
struct shash_node *node;
node = shash_find__(sh, name, strlen(name), hash);
if (!node) {
shash_add_nocopy__(sh, xstrdup(name), data, hash);
return NULL;
} else {
void *old_data = node->data;
node->data = (void *) data;
return old_data;
}
}
/* Deletes 'node' from 'sh' and frees the node's name. The caller is still
* responsible for freeing the node's data, if necessary. */
void
shash_delete(struct shash *sh, struct shash_node *node)
{
free(shash_steal(sh, node));
}
/* Deletes 'node' from 'sh'. Neither the node's name nor its data is freed;
* instead, ownership is transferred to the caller. Returns the node's
* name. */
char *
shash_steal(struct shash *sh, struct shash_node *node)
{
char *name = node->name;
hmap_remove(&sh->map, &node->node);
free(node);
return name;
}
static struct shash_node *
shash_find__(const struct shash *sh, const char *name, size_t name_len,
size_t hash)
{
struct shash_node *node;
HMAP_FOR_EACH_WITH_HASH (node, node, hash, &sh->map) {
if (!strncmp(node->name, name, name_len) && !node->name[name_len]) {
return node;
}
}
return NULL;
}
/* If there are duplicates, returns a random element. */
struct shash_node *
shash_find(const struct shash *sh, const char *name)
{
return shash_find__(sh, name, strlen(name), hash_name(name));
}
/* Finds and returns a shash_node within 'sh' that has the given 'name' that is
* exactly 'len' bytes long. Returns NULL if no node in 'sh' has that name. */
struct shash_node *
shash_find_len(const struct shash *sh, const char *name, size_t len)
{
return shash_find__(sh, name, len, hash_bytes(name, len, 0));
}
void *
shash_find_data(const struct shash *sh, const char *name)
{
struct shash_node *node = shash_find(sh, name);
return node ? node->data : NULL;
}
void *
shash_find_and_delete(struct shash *sh, const char *name)
{
struct shash_node *node = shash_find(sh, name);
if (node) {
void *data = node->data;
shash_delete(sh, node);
return data;
} else {
return NULL;
}
}
void *
shash_find_and_delete_assert(struct shash *sh, const char *name)
{
void *data = shash_find_and_delete(sh, name);
assert(data != NULL);
return data;
}
struct shash_node *
shash_first(const struct shash *shash)
{
struct hmap_node *node = hmap_first(&shash->map);
return node ? CONTAINER_OF(node, struct shash_node, node) : NULL;
}
static int
compare_nodes_by_name(const void *a_, const void *b_)
{
const struct shash_node *const *a = a_;
const struct shash_node *const *b = b_;
return strcmp((*a)->name, (*b)->name);
}
const struct shash_node **
shash_sort(const struct shash *sh)
{
if (shash_is_empty(sh)) {
return NULL;
} else {
const struct shash_node **nodes;
struct shash_node *node;
size_t i, n;
n = shash_count(sh);
nodes = xmalloc(n * sizeof *nodes);
i = 0;
SHASH_FOR_EACH (node, sh) {
nodes[i++] = node;
}
assert(i == n);
qsort(nodes, n, sizeof *nodes, compare_nodes_by_name);
return nodes;
}
}
/* Returns true if 'a' and 'b' contain the same keys (regardless of their
* values), false otherwise. */
bool
shash_equal_keys(const struct shash *a, const struct shash *b)
{
struct shash_node *node;
if (hmap_count(&a->map) != hmap_count(&b->map)) {
return false;
}
SHASH_FOR_EACH (node, a) {
if (!shash_find(b, node->name)) {
return false;
}
}
return true;
}
/* Chooses and returns a randomly selected node from 'sh', which must not be
* empty.
*
* I wouldn't depend on this algorithm to be fair, since I haven't analyzed it.
* But it does at least ensure that any node in 'sh' can be chosen. */
struct shash_node *
shash_random_node(struct shash *sh)
{
return CONTAINER_OF(hmap_random_node(&sh->map), struct shash_node, node);
}
/* String-to-string maps (smaps). */
/* Frees 'smap', including its keys and string values. */
void
smap_destroy(struct shash *smap)
{
shash_destroy_free_data(smap);
}
/* Returns true if string-to-string maps 'a' and 'b' contain the same keys and
* values, false otherwise. */
bool
smap_equal(const struct shash *a, const struct shash *b)
{
struct shash_node *a_node;
if (shash_count(a) != shash_count(b)) {
return false;
}
SHASH_FOR_EACH (a_node, a) {
uint32_t hash = a_node->node.hash;
size_t len = strlen(a_node->name);
struct shash_node *b_node = shash_find__(b, a_node->name, len, hash);
if (!b_node || strcmp(a_node->data, b_node->data)) {
return false;
}
}
return true;
}
/* Initializes 'dst' as a clone of 'src'. */
void
smap_clone(struct shash *dst, const struct shash *src)
{
struct shash_node *node;
shash_init(dst);
SHASH_FOR_EACH (node, src) {
shash_add_nocopy__(dst, xstrdup(node->name), xstrdup(node->data),
node->node.hash);
}
}
/* Adds 'key' with string 'value' to 'smap', making a copy of each.
*
* It is the caller's responsibility to avoid duplicate names, if that is
* desirable. */
void
smap_add(struct shash *smap, const char *key, const char *value)
{
shash_add(smap, key, xstrdup(value));
}
|