| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932 |
- /*
- * Copyright (c) 2006 MontaVista Software, Inc.
- * Copyright (c) 2007-2010 Red Hat, Inc.
- *
- * All rights reserved.
- *
- * Author: Steven Dake (sdake@redhat.com)
- *
- * This software licensed under BSD license, the text of which follows:
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * - Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * - Neither the name of the MontaVista Software, Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
- #define _XOPEN_SOURCE 600
- #include <config.h>
- #include <stdio.h>
- #include <errno.h>
- #include <pthread.h>
- #include <corosync/list.h>
- #include <corosync/hdb.h>
- #include <corosync/lcr/lcr_comp.h>
- #include <corosync/engine/objdb.h>
- #include <corosync/engine/config.h>
- #include <corosync/corotypes.h>
- #include <corosync/coroipc_types.h>
- #include "main.h"
- struct object_key {
- void *key_name;
- size_t key_len;
- void *value;
- size_t value_len;
- objdb_value_types_t value_type;
- struct list_head list;
- };
- struct object_tracker {
- hdb_handle_t object_handle;
- void * data_pt;
- object_track_depth_t depth;
- object_key_change_notify_fn_t key_change_notify_fn;
- object_create_notify_fn_t object_create_notify_fn;
- object_destroy_notify_fn_t object_destroy_notify_fn;
- object_reload_notify_fn_t object_reload_notify_fn;
- struct list_head tracker_list;
- struct list_head object_list;
- };
- struct object_instance {
- void *object_name;
- size_t object_name_len;
- hdb_handle_t object_handle;
- hdb_handle_t parent_handle;
- struct list_head key_head;
- struct list_head child_head;
- struct list_head child_list;
- struct list_head *find_child_list;
- struct list_head *iter_key_list;
- struct list_head *iter_list;
- void *priv;
- struct object_valid *object_valid_list;
- int object_valid_list_entries;
- struct object_key_valid *object_key_valid_list;
- int object_key_valid_list_entries;
- struct list_head track_head;
- };
- struct object_find_instance {
- void *object_name;
- size_t object_len;
- hdb_handle_t *handles_array;
- size_t handles_array_size;
- size_t handles_array_pos;
- };
- struct objdb_iface_ver0 objdb_iface;
- struct list_head objdb_trackers_head;
- static pthread_mutex_t objdb_mutex;
- static pthread_mutexattr_t objdb_mutex_attr;
- DECLARE_HDB_DATABASE (object_instance_database,NULL);
- DECLARE_HDB_DATABASE (object_find_instance_database,NULL);
- static void objdb_lock(void)
- {
- pthread_mutex_lock(&objdb_mutex);
- }
- static void objdb_unlock(void)
- {
- pthread_mutex_unlock(&objdb_mutex);
- }
- static int objdb_init (void)
- {
- hdb_handle_t handle;
- struct object_instance *instance;
- unsigned int res;
- res = hdb_handle_create (&object_instance_database,
- sizeof (struct object_instance), &handle);
- if (res != 0) {
- goto error_exit;
- }
- res = hdb_handle_get (&object_instance_database,
- handle, (void *)&instance);
- if (res != 0) {
- goto error_destroy;
- }
- instance->find_child_list = &instance->child_head;
- instance->object_name = (char *)"parent";
- instance->object_name_len = strlen ("parent");
- instance->object_handle = handle;
- instance->parent_handle = OBJECT_PARENT_HANDLE;
- instance->priv = NULL;
- instance->object_valid_list = NULL;
- instance->object_valid_list_entries = 0;
- list_init (&instance->key_head);
- list_init (&instance->child_head);
- list_init (&instance->child_list);
- list_init (&instance->track_head);
- list_init (&objdb_trackers_head);
- pthread_mutexattr_init(&objdb_mutex_attr);
- pthread_mutexattr_settype(&objdb_mutex_attr, PTHREAD_MUTEX_RECURSIVE);
- pthread_mutex_init(&objdb_mutex, &objdb_mutex_attr);
- hdb_handle_put (&object_instance_database, handle);
- return (0);
- error_destroy:
- hdb_handle_destroy (&object_instance_database, handle);
- error_exit:
- return (-1);
- }
- static int _object_notify_deleted_children(struct object_instance *parent_pt)
- {
- struct list_head *list;
- struct list_head *notify_list;
- int res;
- struct object_instance *obj_pt = NULL;
- struct object_tracker * tracker_pt;
- for (list = parent_pt->child_head.next;
- list != &parent_pt->child_head; list = list->next) {
- obj_pt = list_entry(list, struct object_instance,
- child_list);
- res = _object_notify_deleted_children(obj_pt);
- if (res)
- return res;
- for (notify_list = obj_pt->track_head.next;
- notify_list != &obj_pt->track_head;
- notify_list = notify_list->next) {
- tracker_pt = list_entry (notify_list, struct object_tracker, object_list);
- if ((tracker_pt != NULL) &&
- (tracker_pt->object_destroy_notify_fn != NULL))
- tracker_pt->object_destroy_notify_fn(parent_pt->object_handle,
- obj_pt->object_name,
- obj_pt->object_name_len,
- tracker_pt->data_pt);
- }
- }
- return 0;
- }
- static void object_created_notification(
- hdb_handle_t parent_object_handle,
- hdb_handle_t object_handle,
- const void *name_pt, size_t name_len)
- {
- struct list_head * list;
- struct object_instance * obj_pt;
- struct object_tracker * tracker_pt;
- hdb_handle_t obj_handle = object_handle;
- unsigned int res;
- do {
- res = hdb_handle_get (&object_instance_database,
- obj_handle, (void *)&obj_pt);
- for (list = obj_pt->track_head.next;
- list != &obj_pt->track_head; list = list->next) {
- tracker_pt = list_entry (list, struct object_tracker, object_list);
- if (((obj_handle == parent_object_handle) ||
- (tracker_pt->depth == OBJECT_TRACK_DEPTH_RECURSIVE)) &&
- (tracker_pt->object_create_notify_fn != NULL)) {
- tracker_pt->object_create_notify_fn(parent_object_handle,
- object_handle,
- name_pt, name_len,
- tracker_pt->data_pt);
- }
- }
- hdb_handle_put (&object_instance_database, obj_handle);
- obj_handle = obj_pt->parent_handle;
- } while (obj_handle != OBJECT_PARENT_HANDLE);
- }
- static void object_pre_deletion_notification(hdb_handle_t object_handle,
- hdb_handle_t parent_object_handle,
- const void *name_pt, size_t name_len)
- {
- struct list_head * list;
- struct object_instance * obj_pt;
- struct object_tracker * tracker_pt;
- hdb_handle_t obj_handle = object_handle;
- unsigned int res;
- do {
- res = hdb_handle_get (&object_instance_database,
- obj_handle, (void *)&obj_pt);
- for (list = obj_pt->track_head.next;
- list != &obj_pt->track_head; list = list->next) {
- tracker_pt = list_entry (list, struct object_tracker, object_list);
- if (((obj_handle == parent_object_handle) ||
- (tracker_pt->depth == OBJECT_TRACK_DEPTH_RECURSIVE)) &&
- (tracker_pt->object_destroy_notify_fn != NULL)) {
- tracker_pt->object_destroy_notify_fn(
- parent_object_handle,
- name_pt, name_len,
- tracker_pt->data_pt);
- }
- }
- /* notify child object listeners */
- if (obj_handle == object_handle)
- _object_notify_deleted_children(obj_pt);
- obj_handle = obj_pt->parent_handle;
- hdb_handle_put (&object_instance_database, obj_pt->object_handle);
- } while (obj_handle != OBJECT_PARENT_HANDLE);
- }
- static void object_key_changed_notification(hdb_handle_t object_handle,
- const void *name_pt, size_t name_len,
- const void *value_pt, size_t value_len,
- object_change_type_t type)
- {
- struct list_head * list;
- struct object_instance * obj_pt;
- struct object_instance * owner_pt = NULL;
- struct object_tracker * tracker_pt;
- hdb_handle_t obj_handle = object_handle;
- unsigned int res;
- do {
- res = hdb_handle_get (&object_instance_database,
- obj_handle, (void *)&obj_pt);
- if (owner_pt == NULL)
- owner_pt = obj_pt;
- for (list = obj_pt->track_head.next;
- list != &obj_pt->track_head; list = list->next) {
- tracker_pt = list_entry (list, struct object_tracker, object_list);
- if (((obj_handle == object_handle) ||
- (tracker_pt->depth == OBJECT_TRACK_DEPTH_RECURSIVE)) &&
- (tracker_pt->key_change_notify_fn != NULL))
- tracker_pt->key_change_notify_fn(type, obj_pt->parent_handle, object_handle,
- owner_pt->object_name, owner_pt->object_name_len,
- name_pt, name_len,
- value_pt, value_len,
- tracker_pt->data_pt);
- }
- obj_handle = obj_pt->parent_handle;
- hdb_handle_put (&object_instance_database, obj_pt->object_handle);
- } while (obj_handle != OBJECT_PARENT_HANDLE);
- }
- static void object_reload_notification(int startstop, int flush)
- {
- struct list_head * list, *tmp;
- struct list_head tmplist;
- struct object_instance * obj_pt;
- struct object_tracker * tracker_pt;
- struct object_tracker * tmptracker_pt;
- unsigned int res;
- res = hdb_handle_get (&object_instance_database,
- OBJECT_PARENT_HANDLE, (void *)&obj_pt);
- /*
- * Make a copy of the list
- * so that items can be added & removed in the callbacks
- */
- list_init(&tmplist);
- for (list = obj_pt->track_head.next;
- list != &obj_pt->track_head; list = list->next) {
- tracker_pt = list_entry (list, struct object_tracker, object_list);
- if (tracker_pt->object_reload_notify_fn != NULL) {
- tmptracker_pt = malloc(sizeof(*tracker_pt));
- if (tmptracker_pt) {
- list_add(&tmptracker_pt->object_list, &tmplist);
- tmptracker_pt->object_reload_notify_fn = tracker_pt->object_reload_notify_fn;
- tmptracker_pt->data_pt = tracker_pt->data_pt;
- }
- }
- }
- for (list = tmplist.next, tmp = list->next;
- list != &tmplist; list = tmp, tmp = list->next) {
- tracker_pt = list_entry (list, struct object_tracker, object_list);
- tracker_pt->object_reload_notify_fn(startstop, flush,
- tracker_pt->data_pt);
- free(tracker_pt);
- }
- hdb_handle_put (&object_instance_database, OBJECT_PARENT_HANDLE);
- }
- /*
- * object db create/destroy/set
- */
- static int object_create (
- hdb_handle_t parent_object_handle,
- hdb_handle_t *object_handle,
- const void *object_name,
- size_t object_name_len)
- {
- struct object_instance *object_instance;
- struct object_instance *parent_instance;
- unsigned int res;
- int found = 0;
- int i;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- parent_object_handle, (void *)&parent_instance);
- if (res != 0) {
- goto error_exit;
- }
- /*
- * Do validation check if validation is configured for the parent object
- */
- if (parent_instance->object_valid_list_entries) {
- for (i = 0; i < parent_instance->object_valid_list_entries; i++) {
- if ((object_name_len ==
- parent_instance->object_valid_list[i].object_len) &&
- (memcmp (object_name,
- parent_instance->object_valid_list[i].object_name,
- object_name_len) == 0)) {
- found = 1;
- break;
- }
- }
- /*
- * Item not found in validation list
- */
- if (found == 0) {
- goto error_object_put;
- }
- }
- res = hdb_handle_create (&object_instance_database,
- sizeof (struct object_instance), object_handle);
- if (res != 0) {
- goto error_object_put;
- }
- res = hdb_handle_get (&object_instance_database,
- *object_handle, (void *)&object_instance);
- if (res != 0) {
- goto error_destroy;
- }
- list_init (&object_instance->key_head);
- list_init (&object_instance->child_head);
- list_init (&object_instance->child_list);
- list_init (&object_instance->track_head);
- object_instance->object_name = malloc (object_name_len);
- if (object_instance->object_name == 0) {
- goto error_put_destroy;
- }
- memcpy (object_instance->object_name, object_name, object_name_len);
- object_instance->object_name_len = object_name_len;
- list_add_tail (&object_instance->child_list, &parent_instance->child_head);
- object_instance->object_handle = *object_handle;
- object_instance->find_child_list = &object_instance->child_head;
- object_instance->iter_key_list = &object_instance->key_head;
- object_instance->iter_list = &object_instance->child_head;
- object_instance->priv = NULL;
- object_instance->object_valid_list = NULL;
- object_instance->object_valid_list_entries = 0;
- object_instance->parent_handle = parent_object_handle;
- hdb_handle_put (&object_instance_database, *object_handle);
- hdb_handle_put (&object_instance_database, parent_object_handle);
- object_created_notification(
- object_instance->parent_handle,
- object_instance->object_handle,
- object_instance->object_name,
- object_instance->object_name_len);
- objdb_unlock();
- return (0);
- error_put_destroy:
- hdb_handle_put (&object_instance_database, *object_handle);
- error_destroy:
- hdb_handle_destroy (&object_instance_database, *object_handle);
- error_object_put:
- hdb_handle_put (&object_instance_database, parent_object_handle);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_priv_set (
- hdb_handle_t object_handle,
- void *priv)
- {
- int res;
- struct object_instance *object_instance;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&object_instance);
- if (res != 0) {
- goto error_exit;
- }
- object_instance->priv = priv;
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (0);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_create_typed(
- hdb_handle_t object_handle,
- const char *key_name,
- const void *value,
- size_t value_len,
- objdb_value_types_t value_type)
- {
- struct object_instance *instance;
- struct object_key *object_key;
- unsigned int res;
- struct list_head *list;
- int found = 0;
- int i;
- size_t key_len = strlen(key_name);
- size_t expected_size;
- int test_size_by_type = CS_TRUE;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- switch (value_type) {
- case OBJDB_VALUETYPE_INT16:
- expected_size = sizeof (int16_t);
- break;
- case OBJDB_VALUETYPE_UINT16:
- expected_size = sizeof (uint16_t);
- break;
- case OBJDB_VALUETYPE_INT32:
- expected_size = sizeof (int32_t);
- break;
- case OBJDB_VALUETYPE_UINT32:
- expected_size = sizeof (uint32_t);
- break;
- case OBJDB_VALUETYPE_INT64:
- expected_size = sizeof (int64_t);
- break;
- case OBJDB_VALUETYPE_UINT64:
- expected_size = sizeof (uint64_t);
- break;
- case OBJDB_VALUETYPE_FLOAT:
- expected_size = sizeof (float);
- break;
- case OBJDB_VALUETYPE_DOUBLE:
- expected_size = sizeof (double);
- break;
- case OBJDB_VALUETYPE_ANY:
- default:
- test_size_by_type = CS_FALSE;
- break;
- }
- if (test_size_by_type) {
- if (expected_size != value_len) {
- //printf ("%s exp:%d != len:%d\n", key_name, expected_size, value_len);
- goto error_put;
- }
- }
- /*
- * Do validation check if validation is configured for the parent object
- */
- if (instance->object_key_valid_list_entries) {
- for (i = 0; i < instance->object_key_valid_list_entries; i++) {
- if ((key_len ==
- instance->object_key_valid_list[i].key_len) &&
- (memcmp (key_name,
- instance->object_key_valid_list[i].key_name,
- key_len) == 0)) {
- found = 1;
- break;
- }
- }
- /*
- * Item not found in validation list
- */
- if (found == 0) {
- goto error_put;
- } else {
- if (instance->object_key_valid_list[i].validate_callback) {
- res = instance->object_key_valid_list[i].validate_callback (
- key_name, key_len, value, value_len);
- if (res != 0) {
- goto error_put;
- }
- }
- }
- }
- /* See if it already exists */
- found = 0;
- for (list = instance->key_head.next;
- list != &instance->key_head; list = list->next) {
- object_key = list_entry (list, struct object_key, list);
- if ((object_key->key_len == key_len) &&
- (memcmp (object_key->key_name, key_name, key_len) == 0)) {
- found = 1;
- break;
- }
- }
- if (found) {
- free(object_key->value);
- }
- else {
- object_key = malloc (sizeof (struct object_key));
- if (object_key == 0) {
- goto error_put;
- }
- object_key->key_name = malloc (key_len + 1);
- if (object_key->key_name == 0) {
- goto error_put_object;
- }
- memcpy (object_key->key_name, key_name, key_len + 1);
- list_init (&object_key->list);
- list_add_tail (&object_key->list, &instance->key_head);
- }
- object_key->value = malloc (value_len);
- if (object_key->value == 0) {
- goto error_put_key;
- }
- memcpy (object_key->value, value, value_len);
- object_key->key_len = key_len;
- object_key->value_len = value_len;
- object_key->value_type = value_type;
- object_key_changed_notification(object_handle, key_name, key_len,
- value, value_len, OBJECT_KEY_CREATED);
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (0);
- error_put_key:
- free (object_key->key_name);
- error_put_object:
- free (object_key);
- error_put:
- hdb_handle_put (&object_instance_database, object_handle);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_create (
- hdb_handle_t object_handle,
- const void *key_name,
- size_t key_len,
- const void *value,
- size_t value_len)
- {
- char *key_name_terminated = NULL;
- char *key_name_str = (char*)key_name;
- int ret;
- if (key_name_str[key_len-1] != '\0') {
- key_name_terminated = malloc (key_len + 1);
- memcpy (key_name_terminated, key_name, key_len);
- key_name_terminated[key_len] = '\0';
- key_name_str = key_name_terminated;
- }
- ret = object_key_create_typed (object_handle, key_name_str,
- value, value_len, OBJDB_VALUETYPE_ANY);
- if (key_name_terminated) {
- free (key_name_terminated);
- }
- return ret;
- }
- static int _clear_object(struct object_instance *instance)
- {
- struct list_head *list;
- int res;
- struct object_instance *find_instance = NULL;
- struct object_key *object_key = NULL;
- struct object_tracker *tracker_pt = NULL;
- for (list = instance->key_head.next;
- list != &instance->key_head; ) {
- object_key = list_entry (list, struct object_key,
- list);
- list = list->next;
- list_del(&object_key->list);
- free(object_key->key_name);
- free(object_key->value);
- free(object_key);
- }
- for (list = instance->track_head.next;
- list != &instance->track_head;) {
- tracker_pt = list_entry (list,
- struct object_tracker, object_list);
- list = list->next;
- list_del(&tracker_pt->tracker_list);
- list_del(&tracker_pt->object_list);
- free(tracker_pt);
- }
- for (list = instance->child_head.next;
- list != &instance->child_head; ) {
- find_instance = list_entry (list, struct object_instance,
- child_list);
- res = _clear_object(find_instance);
- if (res)
- return res;
- list = list->next;
- list_del(&find_instance->child_list);
- free(find_instance->object_name);
- hdb_handle_destroy (&object_instance_database, find_instance->object_handle);
- }
- return 0;
- }
- static int object_destroy (
- hdb_handle_t object_handle)
- {
- struct object_instance *instance;
- unsigned int res;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- objdb_unlock();
- return (res);
- }
- object_pre_deletion_notification(object_handle,
- instance->parent_handle,
- instance->object_name,
- instance->object_name_len);
- /* Recursively clear sub-objects & keys */
- res = _clear_object(instance);
- list_del(&instance->child_list);
- free(instance->object_name);
- hdb_handle_put (&object_instance_database, object_handle);
- hdb_handle_destroy (&object_instance_database, object_handle);
- objdb_unlock();
- return (res);
- }
- static int object_valid_set (
- hdb_handle_t object_handle,
- struct object_valid *object_valid_list,
- size_t object_valid_list_entries)
- {
- struct object_instance *instance;
- unsigned int res;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- instance->object_valid_list = object_valid_list;
- instance->object_valid_list_entries = object_valid_list_entries;
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (0);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_valid_set (
- hdb_handle_t object_handle,
- struct object_key_valid *object_key_valid_list,
- size_t object_key_valid_list_entries)
- {
- struct object_instance *instance;
- unsigned int res;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- instance->object_key_valid_list = object_key_valid_list;
- instance->object_key_valid_list_entries = object_key_valid_list_entries;
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (0);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- /*
- * object db reading
- */
- static int object_find_create (
- hdb_handle_t object_handle,
- const void *object_name,
- size_t object_len,
- hdb_handle_t *object_find_handle)
- {
- unsigned int res;
- struct object_instance *iter_obj_inst;
- struct object_instance *object_instance;
- struct object_find_instance *object_find_instance;
- struct list_head *list;
- hdb_handle_t *handles_array, *handles_array_realloc;
- size_t ha_len;
- size_t ha_used;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&object_instance);
- if (res != 0) {
- goto error_exit;
- }
- res = hdb_handle_create (&object_find_instance_database,
- sizeof (struct object_find_instance), object_find_handle);
- if (res != 0) {
- goto error_put;
- }
- res = hdb_handle_get (&object_find_instance_database,
- *object_find_handle, (void *)&object_find_instance);
- if (res != 0) {
- goto error_destroy;
- }
- object_find_instance->object_name = (char *)object_name;
- object_find_instance->object_len = object_len;
- ha_len = ha_used = 0;
- handles_array = NULL;
- for (list = object_instance->child_head.next;
- list != &object_instance->child_head; list = list->next) {
- iter_obj_inst = list_entry (list, struct object_instance,
- child_list);
- if (object_find_instance->object_len == 0 ||
- ((iter_obj_inst->object_name_len ==
- object_find_instance->object_len) &&
- (memcmp (iter_obj_inst->object_name,
- object_find_instance->object_name,
- object_find_instance->object_len) == 0))) {
- /*
- * Add handle to list
- */
- if (ha_used + 1 > ha_len) {
- ha_len = ha_len * 2 + 1;
- if ((handles_array_realloc =
- realloc (handles_array, ha_len * sizeof (hdb_handle_t))) ==
- NULL) {
- goto error_ha_free;
- }
- handles_array = handles_array_realloc;
- }
- handles_array[ha_used] =
- iter_obj_inst->object_handle;
- ha_used++;
- }
- }
- object_find_instance->handles_array_size = ha_used;
- object_find_instance->handles_array_pos = 0;
- object_find_instance->handles_array = handles_array;
- hdb_handle_put (&object_instance_database, object_handle);
- hdb_handle_put (&object_find_instance_database, *object_find_handle);
- objdb_unlock();
- return (0);
- error_ha_free:
- free(handles_array);
- error_destroy:
- hdb_handle_destroy (&object_instance_database, *object_find_handle);
- error_put:
- hdb_handle_put (&object_instance_database, object_handle);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_find_next (
- hdb_handle_t object_find_handle,
- hdb_handle_t *object_handle)
- {
- unsigned int res;
- struct object_find_instance *object_find_instance;
- struct object_instance *object_instance = NULL;
- unsigned int found = 0;
- size_t pos;
- objdb_lock();
- res = hdb_handle_get (&object_find_instance_database,
- object_find_handle, (void *)&object_find_instance);
- if (res != 0) {
- goto error_exit;
- }
- for (pos = object_find_instance->handles_array_pos; !found &&
- pos < object_find_instance->handles_array_size; pos++) {
- *object_handle = object_find_instance->handles_array[pos];
- res = hdb_handle_get (&object_instance_database,
- *object_handle, (void *)&object_instance);
- if (res != 0) {
- continue;
- }
- if (object_find_instance->object_len == 0 ||
- ((object_instance->object_name_len ==
- object_find_instance->object_len) &&
- (memcmp (object_instance->object_name,
- object_find_instance->object_name,
- object_find_instance->object_len) == 0))) {
- found = 1;
- }
- hdb_handle_put (&object_instance_database, *object_handle);
- }
- object_find_instance->handles_array_pos = pos;
- hdb_handle_put (&object_find_instance_database, object_find_handle);
- objdb_unlock();
- return (found ? 0 : -1);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_find_destroy (
- hdb_handle_t object_find_handle)
- {
- struct object_find_instance *object_find_instance;
- unsigned int res;
- objdb_lock();
- res = hdb_handle_get (&object_find_instance_database,
- object_find_handle, (void *)&object_find_instance);
- if (res != 0) {
- goto error_exit;
- }
- free(object_find_instance->handles_array);
- hdb_handle_put(&object_find_instance_database, object_find_handle);
- hdb_handle_destroy(&object_find_instance_database, object_find_handle);
- objdb_unlock();
- return (0);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_get_typed (
- hdb_handle_t object_handle,
- const char *key_name,
- void **value,
- size_t *value_len,
- objdb_value_types_t * type)
- {
- unsigned int res = 0;
- struct object_instance *instance;
- struct object_key *object_key = NULL;
- struct list_head *list;
- int found = 0;
- size_t key_len = strlen(key_name);
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- for (list = instance->key_head.next;
- list != &instance->key_head; list = list->next) {
- object_key = list_entry (list, struct object_key, list);
- if ((object_key->key_len == key_len) &&
- (memcmp (object_key->key_name, key_name, key_len) == 0)) {
- found = 1;
- break;
- }
- }
- if (found) {
- *value = object_key->value;
- if (value_len) {
- *value_len = object_key->value_len;
- }
- *type = object_key->value_type;
- }
- else {
- res = -1;
- }
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (res);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_get (
- hdb_handle_t object_handle,
- const void *key_name,
- size_t key_len,
- void **value,
- size_t *value_len)
- {
- objdb_value_types_t t;
- int ret;
- char *key_name_str = (char*)key_name;
- char *key_name_terminated = NULL;
- if (key_name_str[key_len-1] != '\0') {
- key_name_terminated = malloc (key_len + 1);
- memcpy (key_name_terminated, key_name, key_len);
- key_name_terminated[key_len] = '\0';
- key_name_str = key_name_terminated;
- }
- ret = object_key_get_typed(object_handle,
- key_name_str,
- value, value_len, &t);
- if (key_name_terminated) {
- free (key_name_terminated);
- }
- return ret;
- }
- static int object_key_increment (
- hdb_handle_t object_handle,
- const void *key_name,
- size_t key_len,
- unsigned int *value)
- {
- unsigned int res = 0;
- struct object_instance *instance;
- struct object_key *object_key = NULL;
- struct list_head *list;
- int found = 0;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- for (list = instance->key_head.next;
- list != &instance->key_head; list = list->next) {
- object_key = list_entry (list, struct object_key, list);
- if ((object_key->key_len == key_len) &&
- (memcmp (object_key->key_name, key_name, key_len) == 0)) {
- found = 1;
- break;
- }
- }
- if (found) {
- switch (object_key->value_type) {
- case OBJDB_VALUETYPE_INT16:
- (*(int16_t *)object_key->value)++;
- break;
- case OBJDB_VALUETYPE_UINT16:
- (*(uint16_t *)object_key->value)++;
- break;
- case OBJDB_VALUETYPE_INT32:
- (*(int32_t *)object_key->value)++;
- break;
- case OBJDB_VALUETYPE_UINT32:
- (*(uint32_t *)object_key->value)++;
- break;
- case OBJDB_VALUETYPE_INT64:
- (*(int64_t *)object_key->value)++;
- break;
- case OBJDB_VALUETYPE_UINT64:
- (*(uint64_t *)object_key->value)++;
- break;
- case OBJDB_VALUETYPE_ANY:
- /* for backwards compatibilty */
- if (object_key->value_len == sizeof(int)) {
- (*(int *)object_key->value)++;
- }
- else {
- res = -1;
- }
- break;
- default:
- res = -1;
- break;
- }
- if (res == 0) {
- /* nasty, not sure why we need to return this typed
- * instead of void* */
- *value = *(int *)object_key->value;
- }
- }
- else {
- res = -1;
- }
- hdb_handle_put (&object_instance_database, object_handle);
- if (res == 0) {
- object_key_changed_notification (object_handle, key_name, key_len,
- object_key->value, object_key->value_len, OBJECT_KEY_REPLACED);
- }
- objdb_unlock();
- return (res);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_decrement (
- hdb_handle_t object_handle,
- const void *key_name,
- size_t key_len,
- unsigned int *value)
- {
- unsigned int res = 0;
- struct object_instance *instance;
- struct object_key *object_key = NULL;
- struct list_head *list;
- int found = 0;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- for (list = instance->key_head.next;
- list != &instance->key_head; list = list->next) {
- object_key = list_entry (list, struct object_key, list);
- if ((object_key->key_len == key_len) &&
- (memcmp (object_key->key_name, key_name, key_len) == 0)) {
- found = 1;
- break;
- }
- }
- if (found) {
- switch (object_key->value_type) {
- case OBJDB_VALUETYPE_INT16:
- (*(int16_t *)object_key->value)--;
- break;
- case OBJDB_VALUETYPE_UINT16:
- (*(uint16_t *)object_key->value)--;
- break;
- case OBJDB_VALUETYPE_INT32:
- (*(int32_t *)object_key->value)--;
- break;
- case OBJDB_VALUETYPE_UINT32:
- (*(uint32_t *)object_key->value)--;
- break;
- case OBJDB_VALUETYPE_INT64:
- (*(int64_t *)object_key->value)--;
- break;
- case OBJDB_VALUETYPE_UINT64:
- (*(uint64_t *)object_key->value)--;
- break;
- case OBJDB_VALUETYPE_ANY:
- /* for backwards compatibilty */
- if (object_key->value_len == sizeof(int)) {
- (*(int *)object_key->value)--;
- }
- else {
- res = -1;
- }
- break;
- default:
- res = -1;
- break;
- }
- if (res == 0) {
- /* nasty, not sure why we need to return this typed
- * instead of void* */
- *value = *(int *)object_key->value;
- }
- }
- else {
- res = -1;
- }
- hdb_handle_put (&object_instance_database, object_handle);
- if (res == 0) {
- object_key_changed_notification (object_handle, key_name, key_len,
- object_key->value, object_key->value_len, OBJECT_KEY_REPLACED);
- }
- objdb_unlock();
- return (res);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_delete (
- hdb_handle_t object_handle,
- const void *key_name,
- size_t key_len)
- {
- unsigned int res;
- int ret = 0;
- struct object_instance *instance;
- struct object_key *object_key = NULL;
- struct list_head *list;
- int found = 0;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- for (list = instance->key_head.next;
- list != &instance->key_head; list = list->next) {
- object_key = list_entry (list, struct object_key, list);
- if ((object_key->key_len == key_len) &&
- (memcmp (object_key->key_name, key_name, key_len) == 0)) {
- found = 1;
- break;
- }
- }
- if (found) {
- list_del(&object_key->list);
- free(object_key->key_name);
- free(object_key->value);
- free(object_key);
- }
- else {
- ret = -1;
- errno = ENOENT;
- }
- hdb_handle_put (&object_instance_database, object_handle);
- if (ret == 0) {
- object_key_changed_notification(object_handle, key_name, key_len,
- NULL, 0, OBJECT_KEY_DELETED);
- }
- objdb_unlock();
- return (ret);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_replace (
- hdb_handle_t object_handle,
- const void *key_name,
- size_t key_len,
- const void *new_value,
- size_t new_value_len)
- {
- unsigned int res;
- int ret = 0;
- struct object_instance *instance;
- struct object_key *object_key = NULL;
- struct list_head *list;
- int found = 0;
- int value_changed = 0;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- for (list = instance->key_head.next;
- list != &instance->key_head; list = list->next) {
- object_key = list_entry (list, struct object_key, list);
- if ((object_key->key_len == key_len) &&
- (memcmp (object_key->key_name, key_name, key_len) == 0)) {
- found = 1;
- break;
- }
- }
- if (found) {
- int i;
- int found_validator = 0;
- /*
- * Do validation check if validation is configured for the parent object
- */
- if (instance->object_key_valid_list_entries) {
- for (i = 0; i < instance->object_key_valid_list_entries; i++) {
- if ((key_len ==
- instance->object_key_valid_list[i].key_len) &&
- (memcmp (key_name,
- instance->object_key_valid_list[i].key_name,
- key_len) == 0)) {
- found_validator = 1;
- break;
- }
- }
- /*
- * Item not found in validation list
- */
- if (found_validator == 0) {
- goto error_put;
- } else {
- if (instance->object_key_valid_list[i].validate_callback) {
- res = instance->object_key_valid_list[i].validate_callback (
- key_name, key_len, new_value, new_value_len);
- if (res != 0) {
- goto error_put;
- }
- }
- }
- }
- if (new_value_len != object_key->value_len) {
- void *replacement_value;
- replacement_value = malloc(new_value_len);
- if (!replacement_value)
- goto error_exit;
- free(object_key->value);
- object_key->value = replacement_value;
- memset (object_key->value, 0, new_value_len);
- object_key->value_len = new_value_len;
- }
- if (memcmp (object_key->value, new_value, new_value_len) == 0) {
- value_changed = 0;
- }
- else {
- memcpy(object_key->value, new_value, new_value_len);
- object_key->value_len = new_value_len;
- value_changed = 1;
- }
- }
- else {
- ret = -1;
- errno = ENOENT;
- }
- hdb_handle_put (&object_instance_database, object_handle);
- if (ret == 0 && value_changed) {
- object_key_changed_notification (object_handle, key_name, key_len,
- new_value, new_value_len, OBJECT_KEY_REPLACED);
- }
- objdb_unlock();
- return (ret);
- error_put:
- hdb_handle_put (&object_instance_database, object_handle);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_priv_get (
- hdb_handle_t object_handle,
- void **priv)
- {
- int res;
- struct object_instance *object_instance;
- objdb_unlock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&object_instance);
- if (res != 0) {
- goto error_exit;
- }
- *priv = object_instance->priv;
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (0);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int _dump_object(struct object_instance *instance, FILE *file, int depth)
- {
- struct list_head *list;
- int res;
- int i;
- struct object_instance *find_instance = NULL;
- struct object_key *object_key = NULL;
- char stringbuf1[1024];
- char stringbuf2[1024];
- memcpy(stringbuf1, instance->object_name, instance->object_name_len);
- stringbuf1[instance->object_name_len] = '\0';
- for (i=0; i<depth; i++)
- fprintf(file, " ");
- if (instance->object_handle != OBJECT_PARENT_HANDLE)
- fprintf(file, "%s {\n", stringbuf1);
- for (list = instance->key_head.next;
- list != &instance->key_head; list = list->next) {
- object_key = list_entry (list, struct object_key,
- list);
- memcpy(stringbuf1, object_key->key_name, object_key->key_len);
- stringbuf1[object_key->key_len] = '\0';
- switch (object_key->value_type) {
- case OBJDB_VALUETYPE_INT16:
- snprintf (stringbuf2, sizeof(int), "%hd",
- *(unsigned int*)object_key->value);
- break;
- case OBJDB_VALUETYPE_UINT16:
- snprintf (stringbuf2, sizeof(int), "%hu",
- *(unsigned int*)object_key->value);
- break;
- case OBJDB_VALUETYPE_INT32:
- snprintf (stringbuf2, sizeof(int), "%d",
- *(int*)object_key->value);
- break;
- case OBJDB_VALUETYPE_UINT32:
- snprintf (stringbuf2, sizeof(int), "%u",
- *(unsigned int*)object_key->value);
- break;
- case OBJDB_VALUETYPE_INT64:
- snprintf (stringbuf2, sizeof(int), "%ld",
- *(long int*)object_key->value);
- break;
- case OBJDB_VALUETYPE_UINT64:
- snprintf (stringbuf2, sizeof(int), "%lu",
- *(unsigned long int*)object_key->value);
- break;
- default:
- case OBJDB_VALUETYPE_STRING:
- case OBJDB_VALUETYPE_ANY:
- memcpy(stringbuf2, object_key->value, object_key->value_len);
- stringbuf2[object_key->value_len] = '\0';
- break;
- }
- for (i=0; i<depth+1; i++)
- fprintf(file, " ");
- fprintf(file, "%s: %s\n", stringbuf1, stringbuf2);
- }
- for (list = instance->child_head.next;
- list != &instance->child_head; list = list->next) {
- find_instance = list_entry (list, struct object_instance,
- child_list);
- res = _dump_object(find_instance, file, depth+1);
- if (res)
- return res;
- }
- for (i=0; i<depth; i++)
- fprintf(file, " ");
- if (instance->object_handle != OBJECT_PARENT_HANDLE)
- fprintf(file, "}\n");
- return 0;
- }
- static int object_key_iter_reset(hdb_handle_t object_handle)
- {
- unsigned int res;
- struct object_instance *instance;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- instance->iter_key_list = &instance->key_head;
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (0);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_iter_typed (hdb_handle_t parent_object_handle,
- char **key_name,
- void **value,
- size_t *value_len,
- objdb_value_types_t *type)
- {
- unsigned int res;
- struct object_instance *instance;
- struct object_key *find_key = NULL;
- struct list_head *list;
- unsigned int found = 0;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- parent_object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- res = -ENOENT;
- list = instance->iter_key_list->next;
- if (list != &instance->key_head) {
- find_key = list_entry (list, struct object_key, list);
- found = 1;
- }
- instance->iter_key_list = list;
- if (found) {
- *key_name = find_key->key_name;
- *value = find_key->value;
- *type = find_key->value_type;
- if (value_len)
- *value_len = find_key->value_len;
- res = 0;
- }
- else {
- res = -1;
- }
- hdb_handle_put (&object_instance_database, parent_object_handle);
- objdb_unlock();
- return (res);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_key_iter(hdb_handle_t parent_object_handle,
- void **key_name,
- size_t *key_len,
- void **value,
- size_t *value_len)
- {
- objdb_value_types_t t;
- int ret;
- char *str;
- ret = object_key_iter_typed (parent_object_handle,
- (char**)key_name, value, value_len, &t);
- if (!ret) {
- str = *key_name;
- *key_len = strlen(str);
- }
- return ret;
- }
- static int object_key_iter_from(hdb_handle_t parent_object_handle,
- hdb_handle_t start_pos,
- void **key_name,
- size_t *key_len,
- void **value,
- size_t *value_len)
- {
- unsigned int pos = 0;
- unsigned int res;
- struct object_instance *instance;
- struct object_key *find_key = NULL;
- struct list_head *list;
- unsigned int found = 0;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- parent_object_handle, (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- res = -ENOENT;
- for (list = instance->key_head.next;
- list != &instance->key_head; list = list->next) {
- find_key = list_entry (list, struct object_key, list);
- if (pos++ == start_pos) {
- found = 1;
- break;
- }
- }
- if (found) {
- *key_name = find_key->key_name;
- if (key_len)
- *key_len = find_key->key_len;
- *value = find_key->value;
- if (value_len)
- *value_len = find_key->value_len;
- res = 0;
- }
- else {
- res = -1;
- }
- hdb_handle_put (&object_instance_database, parent_object_handle);
- objdb_unlock();
- return (res);
- error_exit:
- objdb_unlock();
- return (-1);
- }
- static int object_parent_get(hdb_handle_t object_handle,
- hdb_handle_t *parent_handle)
- {
- struct object_instance *instance;
- unsigned int res;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- objdb_unlock();
- return (res);
- }
- if (object_handle == OBJECT_PARENT_HANDLE)
- *parent_handle = 0;
- else
- *parent_handle = instance->parent_handle;
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (0);
- }
- static int object_name_get(hdb_handle_t object_handle,
- char *object_name,
- size_t *object_name_len)
- {
- struct object_instance *instance;
- unsigned int res;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- objdb_unlock();
- return (res);
- }
- memcpy(object_name, instance->object_name, instance->object_name_len);
- *object_name_len = instance->object_name_len;
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (0);
- }
- static int object_track_start(hdb_handle_t object_handle,
- object_track_depth_t depth,
- object_key_change_notify_fn_t key_change_notify_fn,
- object_create_notify_fn_t object_create_notify_fn,
- object_destroy_notify_fn_t object_destroy_notify_fn,
- object_reload_notify_fn_t object_reload_notify_fn,
- void * priv_data_pt)
- {
- struct object_instance *instance;
- unsigned int res;
- struct object_tracker * tracker_pt;
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- return (res);
- }
- tracker_pt = malloc(sizeof(struct object_tracker));
- tracker_pt->depth = depth;
- tracker_pt->object_handle = object_handle;
- tracker_pt->key_change_notify_fn = key_change_notify_fn;
- tracker_pt->object_create_notify_fn = object_create_notify_fn;
- tracker_pt->object_destroy_notify_fn = object_destroy_notify_fn;
- tracker_pt->object_reload_notify_fn = object_reload_notify_fn;
- tracker_pt->data_pt = priv_data_pt;
- list_init(&tracker_pt->object_list);
- list_init(&tracker_pt->tracker_list);
- list_add(&tracker_pt->object_list, &instance->track_head);
- list_add(&tracker_pt->tracker_list, &objdb_trackers_head);
- hdb_handle_put (&object_instance_database, object_handle);
- return (res);
- }
- static void object_track_stop(object_key_change_notify_fn_t key_change_notify_fn,
- object_create_notify_fn_t object_create_notify_fn,
- object_destroy_notify_fn_t object_destroy_notify_fn,
- object_reload_notify_fn_t object_reload_notify_fn,
- void * priv_data_pt)
- {
- struct object_instance *instance;
- struct object_tracker * tracker_pt = NULL;
- struct object_tracker * obj_tracker_pt = NULL;
- struct list_head *list, *tmp_list;
- struct list_head *obj_list, *tmp_obj_list;
- unsigned int res;
- /* go through the global list and find all the trackers to stop */
- for (list = objdb_trackers_head.next, tmp_list = list->next;
- list != &objdb_trackers_head; list = tmp_list, tmp_list = tmp_list->next) {
- tracker_pt = list_entry (list, struct object_tracker, tracker_list);
- if (tracker_pt && (tracker_pt->data_pt == priv_data_pt) &&
- (tracker_pt->object_create_notify_fn == object_create_notify_fn) &&
- (tracker_pt->object_destroy_notify_fn == object_destroy_notify_fn) &&
- (tracker_pt->object_reload_notify_fn == object_reload_notify_fn) &&
- (tracker_pt->key_change_notify_fn == key_change_notify_fn)) {
- /* get the object & take this tracker off of it's list. */
- res = hdb_handle_get (&object_instance_database,
- tracker_pt->object_handle, (void *)&instance);
- if (res != 0) continue;
- for (obj_list = instance->track_head.next, tmp_obj_list = obj_list->next;
- obj_list != &instance->track_head; obj_list = tmp_obj_list, tmp_obj_list = tmp_obj_list->next) {
- obj_tracker_pt = list_entry (obj_list, struct object_tracker, object_list);
- if (obj_tracker_pt == tracker_pt) {
- /* this is the tracker we are after. */
- list_del(obj_list);
- }
- }
- hdb_handle_put (&object_instance_database, tracker_pt->object_handle);
- /* remove the tracker off of the global list */
- list_del(list);
- free(tracker_pt);
- }
- }
- }
- static int object_dump(hdb_handle_t object_handle,
- FILE *file)
- {
- struct object_instance *instance;
- unsigned int res;
- objdb_lock();
- res = hdb_handle_get (&object_instance_database,
- object_handle, (void *)&instance);
- if (res != 0) {
- objdb_unlock();
- return (res);
- }
- res = _dump_object(instance, file, -1);
- hdb_handle_put (&object_instance_database, object_handle);
- objdb_unlock();
- return (res);
- }
- static int object_write_config(const char **error_string)
- {
- struct config_iface_ver0 **modules;
- int num_modules;
- int i;
- int res;
- main_get_config_modules(&modules, &num_modules);
- objdb_lock();
- for (i=0; i<num_modules; i++) {
- if (modules[i]->config_writeconfig) {
- res = modules[i]->config_writeconfig(&objdb_iface, error_string);
- if (res) {
- objdb_unlock();
- return res;
- }
- }
- }
- objdb_unlock();
- return 0;
- }
- static int object_reload_config(int flush, const char **error_string)
- {
- struct config_iface_ver0 **modules;
- int num_modules;
- int i;
- int res;
- main_get_config_modules(&modules, &num_modules);
- object_reload_notification(OBJDB_RELOAD_NOTIFY_START, flush);
- objdb_lock();
- for (i=0; i<num_modules; i++) {
- if (modules[i]->config_reloadconfig) {
- res = modules[i]->config_reloadconfig(&objdb_iface, flush, error_string);
- if (res) {
- object_reload_notification(OBJDB_RELOAD_NOTIFY_FAILED, flush);
- objdb_unlock();
- return res;
- }
- }
- }
- objdb_unlock();
- object_reload_notification(OBJDB_RELOAD_NOTIFY_END, flush);
- return 0;
- }
- struct objdb_iface_ver0 objdb_iface = {
- .objdb_init = objdb_init,
- .object_create = object_create,
- .object_priv_set = object_priv_set,
- .object_key_create = object_key_create,
- .object_key_delete = object_key_delete,
- .object_key_replace = object_key_replace,
- .object_destroy = object_destroy,
- .object_valid_set = object_valid_set,
- .object_key_valid_set = object_key_valid_set,
- .object_find_create = object_find_create,
- .object_find_next = object_find_next,
- .object_find_destroy = object_find_destroy,
- .object_key_get = object_key_get,
- .object_key_iter_reset = object_key_iter_reset,
- .object_key_iter = object_key_iter,
- .object_key_iter_from = object_key_iter_from,
- .object_priv_get = object_priv_get,
- .object_parent_get = object_parent_get,
- .object_name_get = object_name_get,
- .object_track_start = object_track_start,
- .object_track_stop = object_track_stop,
- .object_dump = object_dump,
- .object_write_config = object_write_config,
- .object_reload_config = object_reload_config,
- .object_key_increment = object_key_increment,
- .object_key_decrement = object_key_decrement,
- .object_key_create_typed = object_key_create_typed,
- .object_key_get_typed = object_key_get_typed,
- .object_key_iter_typed = object_key_iter_typed,
- };
- struct lcr_iface objdb_iface_ver0[1] = {
- {
- .name = "objdb",
- .version = 0,
- .versions_replace = 0,
- .versions_replace_count = 0,
- .dependencies = 0,
- .dependency_count = 0,
- .constructor = NULL,
- .destructor = NULL,
- .interfaces = NULL,
- }
- };
- struct lcr_comp objdb_comp_ver0 = {
- .iface_count = 1,
- .ifaces = objdb_iface_ver0
- };
- #ifdef COROSYNC_SOLARIS
- void corosync_lcr_component_register (void);
- void corosync_lcr_component_register (void) {
- #else
- __attribute__ ((constructor)) static void corosync_lcr_component_register (void) {
- #endif
- lcr_interfaces_set (&objdb_iface_ver0[0], &objdb_iface);
- lcr_component_register (&objdb_comp_ver0);
- }
|