hash.c 36.4 KB
Newer Older
D
Daniel Veillard 已提交
1
/*
2
 * hash.c: chained hash tables for domain and domain/connection deallocations
D
Daniel Veillard 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * Reference: Your favorite introductory book on algorithms
 *
 * Copyright (C) 2000 Bjorn Reese and Daniel Veillard.
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
 * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
 *
 * Author: breese@users.sourceforge.net
18
 *         Daniel Veillard <veillard@redhat.com>
D
Daniel Veillard 已提交
19 20
 */

21
#include <config.h>
J
Jim Meyering 已提交
22

D
Daniel Veillard 已提交
23
#include <string.h>
24
#include <stdlib.h>
25 26
#include <libxml/threads.h>
#include "internal.h"
D
Daniel Veillard 已提交
27 28 29 30
#include "hash.h"

#define MAX_HASH_LEN 8

31 32 33
#define DEBUG(fmt,...) VIR_DEBUG(__FILE__, fmt, __VA_ARGS__)
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)

D
Daniel Veillard 已提交
34 35 36 37 38
/* #define DEBUG_GROW */

/*
 * A single entry in the hash table
 */
39 40 41 42
typedef struct _virHashEntry virHashEntry;
typedef virHashEntry *virHashEntryPtr;
struct _virHashEntry {
    struct _virHashEntry *next;
D
Daniel Veillard 已提交
43 44 45 46 47 48 49 50
    char *name;
    void *payload;
    int valid;
};

/*
 * The entire hash table
 */
51 52
struct _virHashTable {
    struct _virHashEntry *table;
D
Daniel Veillard 已提交
53 54 55 56 57
    int size;
    int nbElems;
};

/*
58
 * virHashComputeKey:
D
Daniel Veillard 已提交
59 60 61
 * Calculate the hash key
 */
static unsigned long
62 63
virHashComputeKey(virHashTablePtr table, const char *name)
{
D
Daniel Veillard 已提交
64 65
    unsigned long value = 0L;
    char ch;
66

D
Daniel Veillard 已提交
67
    if (name != NULL) {
68 69 70 71 72
        value += 30 * (*name);
        while ((ch = *name++) != 0) {
            value =
                value ^ ((value << 5) + (value >> 3) + (unsigned long) ch);
        }
D
Daniel Veillard 已提交
73 74 75 76 77
    }
    return (value % table->size);
}

/**
78
 * virHashCreate:
D
Daniel Veillard 已提交
79 80
 * @size: the size of the hash table
 *
81
 * Create a new virHashTablePtr.
D
Daniel Veillard 已提交
82 83 84
 *
 * Returns the newly created object, or NULL if an error occured.
 */
85
virHashTablePtr
86 87
virHashCreate(int size)
{
88
    virHashTablePtr table;
89

D
Daniel Veillard 已提交
90 91
    if (size <= 0)
        size = 256;
92

93
    table = malloc(sizeof(*table));
D
Daniel Veillard 已提交
94 95
    if (table) {
        table->size = size;
96
        table->nbElems = 0;
97
        table->table = calloc(1, size * sizeof(*(table->table)));
D
Daniel Veillard 已提交
98
        if (table->table) {
99
            return (table);
D
Daniel Veillard 已提交
100 101 102
        }
        free(table);
    }
103
    return (NULL);
D
Daniel Veillard 已提交
104 105 106
}

/**
107
 * virHashGrow:
D
Daniel Veillard 已提交
108 109 110 111 112 113 114 115
 * @table: the hash table
 * @size: the new size of the hash table
 *
 * resize the hash table
 *
 * Returns 0 in case of success, -1 in case of failure
 */
static int
116 117
virHashGrow(virHashTablePtr table, int size)
{
D
Daniel Veillard 已提交
118 119
    unsigned long key;
    int oldsize, i;
120 121
    virHashEntryPtr iter, next;
    struct _virHashEntry *oldtable;
122

D
Daniel Veillard 已提交
123 124 125
#ifdef DEBUG_GROW
    unsigned long nbElem = 0;
#endif
126

D
Daniel Veillard 已提交
127
    if (table == NULL)
128
        return (-1);
D
Daniel Veillard 已提交
129
    if (size < 8)
130
        return (-1);
D
Daniel Veillard 已提交
131
    if (size > 8 * 2048)
132
        return (-1);
D
Daniel Veillard 已提交
133 134 135 136

    oldsize = table->size;
    oldtable = table->table;
    if (oldtable == NULL)
137 138
        return (-1);

139
    table->table = calloc(1, size * sizeof(*(table->table)));
D
Daniel Veillard 已提交
140
    if (table->table == NULL) {
141 142
        table->table = oldtable;
        return (-1);
D
Daniel Veillard 已提交
143 144 145
    }
    table->size = size;

146
    /*  If the two loops are merged, there would be situations where
147
     * a new entry needs to allocated and data copied into it from
148 149 150 151
     * the main table. So instead, we run through the array twice, first
     * copying all the elements in the main array (where we can't get
     * conflicts) and then the rest, so we only free (and don't allocate)
     */
D
Daniel Veillard 已提交
152
    for (i = 0; i < oldsize; i++) {
153 154 155 156 157
        if (oldtable[i].valid == 0)
            continue;
        key = virHashComputeKey(table, oldtable[i].name);
        memcpy(&(table->table[key]), &(oldtable[i]), sizeof(virHashEntry));
        table->table[key].next = NULL;
D
Daniel Veillard 已提交
158 159 160
    }

    for (i = 0; i < oldsize; i++) {
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
        iter = oldtable[i].next;
        while (iter) {
            next = iter->next;

            /*
             * put back the entry in the new table
             */

            key = virHashComputeKey(table, iter->name);
            if (table->table[key].valid == 0) {
                memcpy(&(table->table[key]), iter, sizeof(virHashEntry));
                table->table[key].next = NULL;
                free(iter);
            } else {
                iter->next = table->table[key].next;
                table->table[key].next = iter;
            }
D
Daniel Veillard 已提交
178 179

#ifdef DEBUG_GROW
180
            nbElem++;
D
Daniel Veillard 已提交
181 182
#endif

183 184
            iter = next;
        }
D
Daniel Veillard 已提交
185 186 187 188 189 190
    }

    free(oldtable);

#ifdef DEBUG_GROW
    xmlGenericError(xmlGenericErrorContext,
191 192
                    "virHashGrow : from %d to %d, %d elems\n", oldsize,
                    size, nbElem);
D
Daniel Veillard 已提交
193 194
#endif

195
    return (0);
D
Daniel Veillard 已提交
196 197 198
}

/**
199
 * virHashFree:
D
Daniel Veillard 已提交
200 201 202 203 204 205 206
 * @table: the hash table
 * @f:  the deallocator function for items in the hash
 *
 * Free the hash @table and its contents. The userdata is
 * deallocated with @f if provided.
 */
void
207 208
virHashFree(virHashTablePtr table, virHashDeallocator f)
{
D
Daniel Veillard 已提交
209
    int i;
210 211
    virHashEntryPtr iter;
    virHashEntryPtr next;
D
Daniel Veillard 已提交
212 213 214 215
    int inside_table = 0;
    int nbElems;

    if (table == NULL)
216
        return;
D
Daniel Veillard 已提交
217
    if (table->table) {
218 219 220 221 222 223 224 225 226 227
        nbElems = table->nbElems;
        for (i = 0; (i < table->size) && (nbElems > 0); i++) {
            iter = &(table->table[i]);
            if (iter->valid == 0)
                continue;
            inside_table = 1;
            while (iter) {
                next = iter->next;
                if ((f != NULL) && (iter->payload != NULL))
                    f(iter->payload, iter->name);
228
                free(iter->name);
229 230 231 232 233 234 235 236 237 238
                iter->payload = NULL;
                if (!inside_table)
                    free(iter);
                nbElems--;
                inside_table = 0;
                iter = next;
            }
            inside_table = 0;
        }
        free(table->table);
D
Daniel Veillard 已提交
239 240 241 242 243
    }
    free(table);
}

/**
244
 * virHashAddEntry3:
D
Daniel Veillard 已提交
245 246 247 248 249 250 251 252 253 254
 * @table: the hash table
 * @name: the name of the userdata
 * @userdata: a pointer to the userdata
 *
 * Add the @userdata to the hash @table. This can later be retrieved
 * by using @name. Duplicate entries generate errors.
 *
 * Returns 0 the addition succeeded and -1 in case of error.
 */
int
255 256
virHashAddEntry(virHashTablePtr table, const char *name, void *userdata)
{
D
Daniel Veillard 已提交
257
    unsigned long key, len = 0;
258 259
    virHashEntryPtr entry;
    virHashEntryPtr insert;
D
Daniel Veillard 已提交
260 261

    if ((table == NULL) || (name == NULL))
262
        return (-1);
D
Daniel Veillard 已提交
263 264 265 266

    /*
     * Check for duplicate and insertion location.
     */
267
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
268
    if (table->table[key].valid == 0) {
269
        insert = NULL;
D
Daniel Veillard 已提交
270
    } else {
271 272 273 274 275 276 277 278
        for (insert = &(table->table[key]); insert->next != NULL;
             insert = insert->next) {
            if (!strcmp(insert->name, name))
                return (-1);
            len++;
        }
        if (!strcmp(insert->name, name))
            return (-1);
D
Daniel Veillard 已提交
279 280 281
    }

    if (insert == NULL) {
282
        entry = &(table->table[key]);
D
Daniel Veillard 已提交
283
    } else {
284
        entry = malloc(sizeof(*entry));
285 286
        if (entry == NULL)
            return (-1);
D
Daniel Veillard 已提交
287 288 289 290 291 292 293 294
    }

    entry->name = strdup(name);
    entry->payload = userdata;
    entry->next = NULL;
    entry->valid = 1;


295 296
    if (insert != NULL)
        insert->next = entry;
D
Daniel Veillard 已提交
297 298 299 300

    table->nbElems++;

    if (len > MAX_HASH_LEN)
301
        virHashGrow(table, MAX_HASH_LEN * table->size);
D
Daniel Veillard 已提交
302

303
    return (0);
D
Daniel Veillard 已提交
304 305 306
}

/**
307
 * virHashUpdateEntry:
D
Daniel Veillard 已提交
308 309 310 311 312 313 314 315 316 317 318 319
 * @table: the hash table
 * @name: the name of the userdata
 * @userdata: a pointer to the userdata
 * @f: the deallocator function for replaced item (if any)
 *
 * Add the @userdata to the hash @table. This can later be retrieved
 * by using @name. Existing entry for this tuple
 * will be removed and freed with @f if found.
 *
 * Returns 0 the addition succeeded and -1 in case of error.
 */
int
320
virHashUpdateEntry(virHashTablePtr table, const char *name,
321 322
                   void *userdata, virHashDeallocator f)
{
D
Daniel Veillard 已提交
323
    unsigned long key;
324 325
    virHashEntryPtr entry;
    virHashEntryPtr insert;
D
Daniel Veillard 已提交
326 327

    if ((table == NULL) || name == NULL)
328
        return (-1);
D
Daniel Veillard 已提交
329 330 331 332

    /*
     * Check for duplicate and insertion location.
     */
333
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
334
    if (table->table[key].valid == 0) {
335
        insert = NULL;
D
Daniel Veillard 已提交
336
    } else {
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
        for (insert = &(table->table[key]); insert->next != NULL;
             insert = insert->next) {
            if (!strcmp(insert->name, name)) {
                if (f)
                    f(insert->payload, insert->name);
                insert->payload = userdata;
                return (0);
            }
        }
        if (!strcmp(insert->name, name)) {
            if (f)
                f(insert->payload, insert->name);
            insert->payload = userdata;
            return (0);
        }
D
Daniel Veillard 已提交
352 353 354
    }

    if (insert == NULL) {
355
        entry = &(table->table[key]);
D
Daniel Veillard 已提交
356
    } else {
357
        entry = malloc(sizeof(*entry));
358 359
        if (entry == NULL)
            return (-1);
D
Daniel Veillard 已提交
360 361 362 363 364 365 366 367 368 369
    }

    entry->name = strdup(name);
    entry->payload = userdata;
    entry->next = NULL;
    entry->valid = 1;
    table->nbElems++;


    if (insert != NULL) {
370
        insert->next = entry;
D
Daniel Veillard 已提交
371
    }
372
    return (0);
D
Daniel Veillard 已提交
373 374 375
}

/**
376
 * virHashLookup:
D
Daniel Veillard 已提交
377 378 379 380 381 382 383 384
 * @table: the hash table
 * @name: the name of the userdata
 *
 * Find the userdata specified by the (@name, @name2, @name3) tuple.
 *
 * Returns the a pointer to the userdata
 */
void *
385 386
virHashLookup(virHashTablePtr table, const char *name)
{
D
Daniel Veillard 已提交
387
    unsigned long key;
388
    virHashEntryPtr entry;
D
Daniel Veillard 已提交
389 390

    if (table == NULL)
391
        return (NULL);
D
Daniel Veillard 已提交
392
    if (name == NULL)
393
        return (NULL);
394
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
395
    if (table->table[key].valid == 0)
396
        return (NULL);
D
Daniel Veillard 已提交
397
    for (entry = &(table->table[key]); entry != NULL; entry = entry->next) {
398 399
        if (!strcmp(entry->name, name))
            return (entry->payload);
D
Daniel Veillard 已提交
400
    }
401
    return (NULL);
D
Daniel Veillard 已提交
402 403 404
}

/**
405
 * virHashSize:
D
Daniel Veillard 已提交
406 407 408 409 410 411 412 413
 * @table: the hash table
 *
 * Query the number of elements installed in the hash @table.
 *
 * Returns the number of elements in the hash table or
 * -1 in case of error
 */
int
414 415
virHashSize(virHashTablePtr table)
{
D
Daniel Veillard 已提交
416
    if (table == NULL)
417 418
        return (-1);
    return (table->nbElems);
D
Daniel Veillard 已提交
419 420 421
}

/**
422
 * virHashRemoveEntry:
D
Daniel Veillard 已提交
423 424 425 426 427 428 429 430 431 432 433
 * @table: the hash table
 * @name: the name of the userdata
 * @f: the deallocator function for removed item (if any)
 *
 * Find the userdata specified by the @name and remove
 * it from the hash @table. Existing userdata for this tuple will be removed
 * and freed with @f.
 *
 * Returns 0 if the removal succeeded and -1 in case of error or not found.
 */
int
434
virHashRemoveEntry(virHashTablePtr table, const char *name,
435 436
                   virHashDeallocator f)
{
D
Daniel Veillard 已提交
437
    unsigned long key;
438 439
    virHashEntryPtr entry;
    virHashEntryPtr prev = NULL;
D
Daniel Veillard 已提交
440 441

    if (table == NULL || name == NULL)
442
        return (-1);
D
Daniel Veillard 已提交
443

444
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
445
    if (table->table[key].valid == 0) {
446
        return (-1);
D
Daniel Veillard 已提交
447
    } else {
448 449
        for (entry = &(table->table[key]); entry != NULL;
             entry = entry->next) {
D
Daniel Veillard 已提交
450 451 452 453
            if (!strcmp(entry->name, name)) {
                if ((f != NULL) && (entry->payload != NULL))
                    f(entry->payload, entry->name);
                entry->payload = NULL;
454
                free(entry->name);
455
                if (prev) {
D
Daniel Veillard 已提交
456
                    prev->next = entry->next;
457 458 459 460 461 462 463 464 465 466 467
                    free(entry);
                } else {
                    if (entry->next == NULL) {
                        entry->valid = 0;
                    } else {
                        entry = entry->next;
                        memcpy(&(table->table[key]), entry,
                               sizeof(virHashEntry));
                        free(entry);
                    }
                }
D
Daniel Veillard 已提交
468
                table->nbElems--;
469
                return (0);
D
Daniel Veillard 已提交
470 471 472
            }
            prev = entry;
        }
473
        return (-1);
D
Daniel Veillard 已提交
474 475
    }
}
476

477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537

/**
 * virHashForEach
 * @table: the hash table to process
 * @iter: callback to process each element
 * @data: opaque data to pass to the iterator
 *
 * Iterates over every element in the hash table, invoking the
 * 'iter' callback. The callback must not call any other virHash*
 * functions, and in particular must not attempt to remove the
 * element.
 *
 * Returns number of items iterated over upon completion, -1 on failure
 */
int virHashForEach(virHashTablePtr table, virHashIterator iter, const void *data) {
    int i, count = 0;

    if (table == NULL || iter == NULL)
        return (-1);

    for (i = 0 ; i < table->size ; i++) {
        virHashEntryPtr entry = table->table + i;
        while (entry) {
            if (entry->valid) {
                iter(entry->payload, entry->name, data);
                count++;
            }
            entry = entry->next;
        }
    }
    return (count);
}

/**
 * virHashRemoveSet
 * @table: the hash table to process
 * @iter: callback to identify elements for removal
 * @f: callback to free memory from element payload
 * @data: opaque data to pass to the iterator
 *
 * Iterates over all elements in the hash table, invoking the 'iter'
 * callback. If the callback returns a non-zero value, the element
 * will be removed from the hash table & its payload passed to the
 * callback 'f' for de-allocation.
 *
 * Returns number of items removed on success, -1 on failure
 */
int virHashRemoveSet(virHashTablePtr table, virHashSearcher iter, virHashDeallocator f, const void *data) {
    int i, count = 0;

    if (table == NULL || iter == NULL)
        return (-1);

    for (i = 0 ; i < table->size ; i++) {
        virHashEntryPtr prev = NULL;
        virHashEntryPtr entry = &(table->table[i]);

        while (entry && entry->valid) {
            if (iter(entry->payload, entry->name, data)) {
                count++;
                f(entry->payload, entry->name);
538
                free(entry->name);
D
Daniel Veillard 已提交
539
                table->nbElems--;
540 541 542
                if (prev) {
                    prev->next = entry->next;
                    free(entry);
D
Daniel Veillard 已提交
543
                    entry = prev;
544 545 546 547 548 549 550 551 552
                } else {
                    if (entry->next == NULL) {
                        entry->valid = 0;
                        entry->name = NULL;
                    } else {
                        entry = entry->next;
                        memcpy(&(table->table[i]), entry,
                               sizeof(virHashEntry));
                        free(entry);
D
Daniel Veillard 已提交
553 554
                        entry = &(table->table[i]);
                        continue;
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
                    }
                }
            }
            prev = entry;
            if (entry) {
                entry = entry->next;
            }
        }
    }
    return (count);
}

/**
 * virHashSearch:
 * @table: the hash table to search
 * @iter: an iterator to identify the desired element
 * @data: extra opaque information passed to the iter
 *
 * Iterates over the hash table calling the 'iter' callback
 * for each element. The first element for which the iter
 * returns non-zero will be returned by this function.
 * The elements are processed in a undefined order
 */
void *virHashSearch(virHashTablePtr table, virHashSearcher iter, const void *data) {
    int i;

    if (table == NULL || iter == NULL)
        return (NULL);

    for (i = 0 ; i < table->size ; i++) {
        virHashEntryPtr entry = table->table + i;
        while (entry) {
            if (entry->valid) {
                if (iter(entry->payload, entry->name, data))
                    return entry->payload;
            }
            entry = entry->next;
        }
    }
    return (NULL);
}

597 598 599 600 601 602 603 604 605
/************************************************************************
 *									*
 *			Domain and Connections allocations		*
 *									*
 ************************************************************************/

/**
 * virHashError:
 * @conn: the connection if available
D
Daniel Veillard 已提交
606
 * @error: the error number
607 608 609 610 611 612 613 614 615 616 617 618 619
 * @info: extra information string
 *
 * Handle an error at the connection level
 */
static void
virHashError(virConnectPtr conn, virErrorNumber error, const char *info)
{
    const char *errmsg;

    if (error == VIR_ERR_OK)
        return;

    errmsg = __virErrorMsg(error, info);
620
    __virRaiseError(conn, NULL, NULL, VIR_FROM_NONE, error, VIR_ERR_ERROR,
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
                    errmsg, info, NULL, 0, 0, errmsg, info);
}


/**
 * virDomainFreeName:
 * @domain: a domain object
 *
 * Destroy the domain object, this is just used by the domain hash callback.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
static int
virDomainFreeName(virDomainPtr domain, const char *name ATTRIBUTE_UNUSED)
{
    return (virDomainFree(domain));
}

639 640 641 642 643 644 645 646 647 648 649 650 651 652
/**
 * virNetworkFreeName:
 * @network: a network object
 *
 * Destroy the network object, this is just used by the network hash callback.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
static int
virNetworkFreeName(virNetworkPtr network, const char *name ATTRIBUTE_UNUSED)
{
    return (virNetworkFree(network));
}

653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
/**
 * virStoragePoolFreeName:
 * @pool: a pool object
 *
 * Destroy the pool object, this is just used by the pool hash callback.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
static int
virStoragePoolFreeName(virStoragePoolPtr pool, const char *name ATTRIBUTE_UNUSED)
{
    return (virStoragePoolFree(pool));
}

/**
 * virStorageVolFreeName:
 * @vol: a vol object
 *
 * Destroy the vol object, this is just used by the vol hash callback.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
static int
virStorageVolFreeName(virStorageVolPtr vol, const char *name ATTRIBUTE_UNUSED)
{
    return (virStorageVolFree(vol));
}

681 682 683 684 685 686 687 688 689 690 691
/**
 * virGetConnect:
 *
 * Allocates a new hypervisor connection structure
 *
 * Returns a new pointer or NULL in case of error.
 */
virConnectPtr
virGetConnect(void) {
    virConnectPtr ret;

692
    ret = calloc(1, sizeof(*ret));
693
    if (ret == NULL) {
694
        virHashError(NULL, VIR_ERR_NO_MEMORY, _("allocating connection"));
695 696 697
        goto failed;
    }
    ret->magic = VIR_CONNECT_MAGIC;
698 699 700 701
    ret->driver = NULL;
    ret->networkDriver = NULL;
    ret->privateData = NULL;
    ret->networkPrivateData = NULL;
702 703 704
    ret->domains = virHashCreate(20);
    if (ret->domains == NULL)
        goto failed;
705 706 707
    ret->networks = virHashCreate(20);
    if (ret->networks == NULL)
        goto failed;
708 709 710 711 712 713
    ret->storagePools = virHashCreate(20);
    if (ret->storagePools == NULL)
        goto failed;
    ret->storageVols = virHashCreate(20);
    if (ret->storageVols == NULL)
        goto failed;
714

715 716 717
    pthread_mutex_init(&ret->lock, NULL);

    ret->refs = 1;
718 719 720 721
    return(ret);

failed:
    if (ret != NULL) {
722 723 724 725
        if (ret->domains != NULL)
            virHashFree(ret->domains, (virHashDeallocator) virDomainFreeName);
        if (ret->networks != NULL)
            virHashFree(ret->networks, (virHashDeallocator) virNetworkFreeName);
726 727 728 729
        if (ret->storagePools != NULL)
            virHashFree(ret->storagePools, (virHashDeallocator) virStoragePoolFreeName);
        if (ret->storageVols != NULL)
            virHashFree(ret->storageVols, (virHashDeallocator) virStorageVolFreeName);
730 731

        pthread_mutex_destroy(&ret->lock);
732 733 734 735 736 737
        free(ret);
    }
    return(NULL);
}

/**
738 739
 * virReleaseConnect:
 * @conn: the hypervisor connection to release
740
 *
741 742 743 744 745 746 747 748 749 750 751 752
 * Unconditionally release all memory associated with a connection.
 * The conn.lock mutex must be held prior to calling this, and will
 * be released prior to this returning. The connection obj must not
 * be used once this method returns.
 */
static void
virReleaseConnect(virConnectPtr conn) {
    DEBUG("release connection %p %s", conn, conn->name);
    if (conn->domains != NULL)
        virHashFree(conn->domains, (virHashDeallocator) virDomainFreeName);
    if (conn->networks != NULL)
        virHashFree(conn->networks, (virHashDeallocator) virNetworkFreeName);
753 754 755 756 757
    if (conn->storagePools != NULL)
        virHashFree(conn->storagePools, (virHashDeallocator) virStoragePoolFreeName);
    if (conn->storageVols != NULL)
        virHashFree(conn->storageVols, (virHashDeallocator) virStorageVolFreeName);

758
    virResetError(&conn->err);
759 760 761
    if (__lastErr.conn == conn)
        __lastErr.conn = NULL;

762 763 764 765 766 767 768 769 770 771 772 773
    free(conn->name);

    pthread_mutex_unlock(&conn->lock);
    pthread_mutex_destroy(&conn->lock);
    free(conn);
}

/**
 * virUnrefConnect:
 * @conn: the hypervisor connection to unreference
 *
 * Unreference the connection. If the use count drops to zero, the structure is
774 775 776 777
 * actually freed.
 *
 * Returns the reference count or -1 in case of failure.
 */
778 779 780
int
virUnrefConnect(virConnectPtr conn) {
    int refs;
781

782
    if ((!VIR_IS_CONNECT(conn))) {
783 784 785
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(-1);
    }
786 787 788 789 790 791 792 793
    pthread_mutex_lock(&conn->lock);
    DEBUG("unref connection %p %s %d", conn, conn->name, conn->refs);
    conn->refs--;
    refs = conn->refs;
    if (refs == 0) {
        virReleaseConnect(conn);
        /* Already unlocked mutex */
        return (0);
794
    }
795 796
    pthread_mutex_unlock(&conn->lock);
    return (refs);
797 798 799 800 801
}

/**
 * virGetDomain:
 * @conn: the hypervisor connection
802 803
 * @name: pointer to the domain name
 * @uuid: pointer to the uuid
804 805 806 807
 *
 * Lookup if the domain is already registered for that connection,
 * if yes return a new pointer to it, if no allocate a new structure,
 * and register it in the table. In any case a corresponding call to
808
 * virUnrefDomain() is needed to not leak data.
809 810 811 812
 *
 * Returns a pointer to the domain, or NULL in case of failure
 */
virDomainPtr
813
__virGetDomain(virConnectPtr conn, const char *name, const unsigned char *uuid) {
814 815
    virDomainPtr ret = NULL;

816
    if ((!VIR_IS_CONNECT(conn)) || (name == NULL) || (uuid == NULL)) {
817 818 819
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(NULL);
    }
820
    pthread_mutex_lock(&conn->lock);
821 822 823 824

    /* TODO search by UUID first as they are better differenciators */

    ret = (virDomainPtr) virHashLookup(conn->domains, name);
825
    /* TODO check the UUID */
826
    if (ret == NULL) {
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
        ret = (virDomainPtr) calloc(1, sizeof(*ret));
        if (ret == NULL) {
            virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating domain"));
            goto error;
        }
        ret->name = strdup(name);
        if (ret->name == NULL) {
            virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating domain"));
            goto error;
        }
        ret->magic = VIR_DOMAIN_MAGIC;
        ret->conn = conn;
        ret->id = -1;
        if (uuid != NULL)
            memcpy(&(ret->uuid[0]), uuid, VIR_UUID_BUFLEN);

        if (virHashAddEntry(conn->domains, name, ret) < 0) {
            virHashError(conn, VIR_ERR_INTERNAL_ERROR,
                         _("failed to add domain to connection hash table"));
            goto error;
        }
        conn->refs++;
849
    }
850 851
    ret->refs++;
    pthread_mutex_unlock(&conn->lock);
852 853
    return(ret);

854 855
 error:
    pthread_mutex_unlock(&conn->lock);
856
    if (ret != NULL) {
857
        free(ret->name );
858
        free(ret);
859 860 861 862 863
    }
    return(NULL);
}

/**
864
 * virReleaseDomain:
865 866
 * @domain: the domain to release
 *
867 868 869 870
 * Unconditionally release all memory associated with a domain.
 * The conn.lock mutex must be held prior to calling this, and will
 * be released prior to this returning. The domain obj must not
 * be used once this method returns.
871
 *
872 873
 * It will also unreference the associated connection object,
 * which may also be released if its ref count hits zero.
874
 */
875 876 877 878
static void
virReleaseDomain(virDomainPtr domain) {
    virConnectPtr conn = domain->conn;
    DEBUG("release domain %p %s", domain, domain->name);
879 880

    /* TODO search by UUID first as they are better differenciators */
881
    if (virHashRemoveEntry(conn->domains, domain->name, NULL) < 0)
882
        virHashError(conn, VIR_ERR_INTERNAL_ERROR,
883 884
                     _("domain missing from connection hash table"));

885 886 887 888
    if (conn->err.dom == domain)
        conn->err.dom = NULL;
    if (__lastErr.dom == domain)
        __lastErr.dom = NULL;
889
    domain->magic = -1;
890
    domain->id = -1;
891
    free(domain->name);
892 893
    free(domain);

894 895 896 897 898 899 900
    DEBUG("unref connection %p %s %d", conn, conn->name, conn->refs);
    conn->refs--;
    if (conn->refs == 0) {
        virReleaseConnect(conn);
        /* Already unlocked mutex */
        return;
    }
901

902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932
    pthread_mutex_unlock(&conn->lock);
}


/**
 * virUnrefDomain:
 * @domain: the domain to unreference
 *
 * Unreference the domain. If the use count drops to zero, the structure is
 * actually freed.
 *
 * Returns the reference count or -1 in case of failure.
 */
int
virUnrefDomain(virDomainPtr domain) {
    int refs;

    if (!VIR_IS_CONNECTED_DOMAIN(domain)) {
        virHashError(domain->conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(-1);
    }
    pthread_mutex_lock(&domain->conn->lock);
    DEBUG("unref domain %p %s %d", domain, domain->name, domain->refs);
    domain->refs--;
    refs = domain->refs;
    if (refs == 0) {
        virReleaseDomain(domain);
        /* Already unlocked mutex */
        return (0);
    }

D
Daniel P. Berrange 已提交
933
    pthread_mutex_unlock(&domain->conn->lock);
934
    return (refs);
935 936
}

937 938 939 940 941 942 943 944 945
/**
 * virGetNetwork:
 * @conn: the hypervisor connection
 * @name: pointer to the network name
 * @uuid: pointer to the uuid
 *
 * Lookup if the network is already registered for that connection,
 * if yes return a new pointer to it, if no allocate a new structure,
 * and register it in the table. In any case a corresponding call to
946
 * virUnrefNetwork() is needed to not leak data.
947 948 949 950
 *
 * Returns a pointer to the network, or NULL in case of failure
 */
virNetworkPtr
951
__virGetNetwork(virConnectPtr conn, const char *name, const unsigned char *uuid) {
952 953
    virNetworkPtr ret = NULL;

954
    if ((!VIR_IS_CONNECT(conn)) || (name == NULL) || (uuid == NULL)) {
955 956 957
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(NULL);
    }
958
    pthread_mutex_lock(&conn->lock);
959 960 961 962

    /* TODO search by UUID first as they are better differenciators */

    ret = (virNetworkPtr) virHashLookup(conn->networks, name);
963
    /* TODO check the UUID */
964
    if (ret == NULL) {
965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985
        ret = (virNetworkPtr) calloc(1, sizeof(*ret));
        if (ret == NULL) {
            virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating network"));
            goto error;
        }
        ret->name = strdup(name);
        if (ret->name == NULL) {
            virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating network"));
            goto error;
        }
        ret->magic = VIR_NETWORK_MAGIC;
        ret->conn = conn;
        if (uuid != NULL)
            memcpy(&(ret->uuid[0]), uuid, VIR_UUID_BUFLEN);

        if (virHashAddEntry(conn->networks, name, ret) < 0) {
            virHashError(conn, VIR_ERR_INTERNAL_ERROR,
                         _("failed to add network to connection hash table"));
            goto error;
        }
        conn->refs++;
986
    }
987 988
    ret->refs++;
    pthread_mutex_unlock(&conn->lock);
989 990
    return(ret);

991 992
 error:
    pthread_mutex_unlock(&conn->lock);
993
    if (ret != NULL) {
994
        free(ret->name );
995
        free(ret);
996 997 998 999 1000
    }
    return(NULL);
}

/**
1001
 * virReleaseNetwork:
1002 1003
 * @network: the network to release
 *
1004 1005 1006 1007
 * Unconditionally release all memory associated with a network.
 * The conn.lock mutex must be held prior to calling this, and will
 * be released prior to this returning. The network obj must not
 * be used once this method returns.
1008
 *
1009 1010
 * It will also unreference the associated connection object,
 * which may also be released if its ref count hits zero.
1011
 */
1012 1013 1014 1015
static void
virReleaseNetwork(virNetworkPtr network) {
    virConnectPtr conn = network->conn;
    DEBUG("release network %p %s", network, network->name);
1016 1017

    /* TODO search by UUID first as they are better differenciators */
1018
    if (virHashRemoveEntry(conn->networks, network->name, NULL) < 0)
1019
        virHashError(conn, VIR_ERR_INTERNAL_ERROR,
1020 1021
                     _("network missing from connection hash table"));

1022 1023 1024 1025 1026
    if (conn->err.net == network)
        conn->err.net = NULL;
    if (__lastErr.net == network)
        __lastErr.net = NULL;

1027
    network->magic = -1;
1028
    free(network->name);
1029 1030
    free(network);

1031 1032 1033 1034 1035 1036 1037
    DEBUG("unref connection %p %s %d", conn, conn->name, conn->refs);
    conn->refs--;
    if (conn->refs == 0) {
        virReleaseConnect(conn);
        /* Already unlocked mutex */
        return;
    }
1038

1039 1040
    pthread_mutex_unlock(&conn->lock);
}
1041

1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069

/**
 * virUnrefNetwork:
 * @network: the network to unreference
 *
 * Unreference the network. If the use count drops to zero, the structure is
 * actually freed.
 *
 * Returns the reference count or -1 in case of failure.
 */
int
virUnrefNetwork(virNetworkPtr network) {
    int refs;

    if (!VIR_IS_CONNECTED_NETWORK(network)) {
        virHashError(network->conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(-1);
    }
    pthread_mutex_lock(&network->conn->lock);
    DEBUG("unref network %p %s %d", network, network->name, network->refs);
    network->refs--;
    refs = network->refs;
    if (refs == 0) {
        virReleaseNetwork(network);
        /* Already unlocked mutex */
        return (0);
    }

D
Daniel P. Berrange 已提交
1070
    pthread_mutex_unlock(&network->conn->lock);
1071
    return (refs);
1072 1073
}

1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345

/**
 * virGetStoragePool:
 * @conn: the hypervisor connection
 * @name: pointer to the storage pool name
 * @uuid: pointer to the uuid
 *
 * Lookup if the storage pool is already registered for that connection,
 * if yes return a new pointer to it, if no allocate a new structure,
 * and register it in the table. In any case a corresponding call to
 * virFreeStoragePool() is needed to not leak data.
 *
 * Returns a pointer to the network, or NULL in case of failure
 */
virStoragePoolPtr
__virGetStoragePool(virConnectPtr conn, const char *name, const unsigned char *uuid) {
    virStoragePoolPtr ret = NULL;

    if ((!VIR_IS_CONNECT(conn)) || (name == NULL) || (uuid == NULL)) {
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(NULL);
    }
    pthread_mutex_lock(&conn->lock);

    /* TODO search by UUID first as they are better differenciators */

    ret = (virStoragePoolPtr) virHashLookup(conn->storagePools, name);
    /* TODO check the UUID */
    if (ret == NULL) {
        ret = (virStoragePoolPtr) calloc(1, sizeof(*ret));
        if (ret == NULL) {
            virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating storage pool"));
            goto error;
        }
        ret->name = strdup(name);
        if (ret->name == NULL) {
            virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating storage pool"));
            goto error;
        }
        ret->magic = VIR_STORAGE_POOL_MAGIC;
        ret->conn = conn;
        if (uuid != NULL)
            memcpy(&(ret->uuid[0]), uuid, VIR_UUID_BUFLEN);

        if (virHashAddEntry(conn->storagePools, name, ret) < 0) {
            virHashError(conn, VIR_ERR_INTERNAL_ERROR,
                         _("failed to add storage pool to connection hash table"));
            goto error;
        }
        conn->refs++;
    }
    ret->refs++;
    pthread_mutex_unlock(&conn->lock);
    return(ret);

error:
    pthread_mutex_unlock(&conn->lock);
    if (ret != NULL) {
        free(ret->name);
        free(ret);
    }
    return(NULL);
}


/**
 * virReleaseStoragePool:
 * @pool: the pool to release
 *
 * Unconditionally release all memory associated with a pool.
 * The conn.lock mutex must be held prior to calling this, and will
 * be released prior to this returning. The pool obj must not
 * be used once this method returns.
 *
 * It will also unreference the associated connection object,
 * which may also be released if its ref count hits zero.
 */
static void
virReleaseStoragePool(virStoragePoolPtr pool) {
    virConnectPtr conn = pool->conn;
    DEBUG("release pool %p %s", pool, pool->name);

    /* TODO search by UUID first as they are better differenciators */
    if (virHashRemoveEntry(conn->storagePools, pool->name, NULL) < 0)
        virHashError(conn, VIR_ERR_INTERNAL_ERROR,
                     _("pool missing from connection hash table"));

    pool->magic = -1;
    free(pool->name);
    free(pool);

    DEBUG("unref connection %p %s %d", conn, conn->name, conn->refs);
    conn->refs--;
    if (conn->refs == 0) {
        virReleaseConnect(conn);
        /* Already unlocked mutex */
        return;
    }

    pthread_mutex_unlock(&conn->lock);
}


/**
 * virUnrefStoragePool:
 * @pool: the pool to unreference
 *
 * Unreference the pool. If the use count drops to zero, the structure is
 * actually freed.
 *
 * Returns the reference count or -1 in case of failure.
 */
int
virUnrefStoragePool(virStoragePoolPtr pool) {
    int refs;

    if (!VIR_IS_CONNECTED_STORAGE_POOL(pool)) {
        virHashError(pool->conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(-1);
    }
    pthread_mutex_lock(&pool->conn->lock);
    DEBUG("unref pool %p %s %d", pool, pool->name, pool->refs);
    pool->refs--;
    refs = pool->refs;
    if (refs == 0) {
        virReleaseStoragePool(pool);
        /* Already unlocked mutex */
        return (0);
    }

    pthread_mutex_unlock(&pool->conn->lock);
    return (refs);
}


/**
 * virGetStorageVol:
 * @conn: the hypervisor connection
 * @pool: pool owning the volume
 * @name: pointer to the storage vol name
 * @uuid: pointer to the uuid
 *
 * Lookup if the storage vol is already registered for that connection,
 * if yes return a new pointer to it, if no allocate a new structure,
 * and register it in the table. In any case a corresponding call to
 * virFreeStorageVol() is needed to not leak data.
 *
 * Returns a pointer to the storage vol, or NULL in case of failure
 */
virStorageVolPtr
__virGetStorageVol(virConnectPtr conn, const char *pool, const char *name, const char *key) {
    virStorageVolPtr ret = NULL;

    if ((!VIR_IS_CONNECT(conn)) || (name == NULL) || (key == NULL)) {
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(NULL);
    }
    pthread_mutex_lock(&conn->lock);

    ret = (virStorageVolPtr) virHashLookup(conn->storageVols, key);
    if (ret == NULL) {
        ret = (virStorageVolPtr) calloc(1, sizeof(*ret));
        if (ret == NULL) {
            virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating storage vol"));
            goto error;
        }
        ret->pool = strdup(pool);
        if (ret->pool == NULL) {
            virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating storage vol"));
            goto error;
        }
        ret->name = strdup(name);
        if (ret->name == NULL) {
            virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating storage vol"));
            goto error;
        }
        strncpy(ret->key, key, sizeof(ret->key)-1);
        ret->key[sizeof(ret->key)-1] = '\0';
        ret->magic = VIR_STORAGE_VOL_MAGIC;
        ret->conn = conn;

        if (virHashAddEntry(conn->storageVols, key, ret) < 0) {
            virHashError(conn, VIR_ERR_INTERNAL_ERROR,
                         _("failed to add storage vol to connection hash table"));
            goto error;
        }
        conn->refs++;
    }
    ret->refs++;
    pthread_mutex_unlock(&conn->lock);
    return(ret);

error:
    pthread_mutex_unlock(&conn->lock);
    if (ret != NULL) {
        free(ret->name);
        free(ret->pool);
        free(ret);
    }
    return(NULL);
}


/**
 * virReleaseStorageVol:
 * @vol: the vol to release
 *
 * Unconditionally release all memory associated with a vol.
 * The conn.lock mutex must be held prior to calling this, and will
 * be released prior to this returning. The vol obj must not
 * be used once this method returns.
 *
 * It will also unreference the associated connection object,
 * which may also be released if its ref count hits zero.
 */
static void
virReleaseStorageVol(virStorageVolPtr vol) {
    virConnectPtr conn = vol->conn;
    DEBUG("release vol %p %s", vol, vol->name);

    /* TODO search by UUID first as they are better differenciators */
    if (virHashRemoveEntry(conn->storageVols, vol->key, NULL) < 0)
        virHashError(conn, VIR_ERR_INTERNAL_ERROR,
                     _("vol missing from connection hash table"));

    vol->magic = -1;
    free(vol->name);
    free(vol->pool);
    free(vol);

    DEBUG("unref connection %p %s %d", conn, conn->name, conn->refs);
    conn->refs--;
    if (conn->refs == 0) {
        virReleaseConnect(conn);
        /* Already unlocked mutex */
        return;
    }

    pthread_mutex_unlock(&conn->lock);
}


/**
 * virUnrefStorageVol:
 * @vol: the vol to unreference
 *
 * Unreference the vol. If the use count drops to zero, the structure is
 * actually freed.
 *
 * Returns the reference count or -1 in case of failure.
 */
int
virUnrefStorageVol(virStorageVolPtr vol) {
    int refs;

    if (!VIR_IS_CONNECTED_STORAGE_VOL(vol)) {
        virHashError(vol->conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(-1);
    }
    pthread_mutex_lock(&vol->conn->lock);
    DEBUG("unref vol %p %s %d", vol, vol->name, vol->refs);
    vol->refs--;
    refs = vol->refs;
    if (refs == 0) {
        virReleaseStorageVol(vol);
        /* Already unlocked mutex */
        return (0);
    }

    pthread_mutex_unlock(&vol->conn->lock);
    return (refs);
}