| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845 |
- /*
- * Copyright (c) 2002-2004 MontaVista Software, Inc.
- *
- * All rights reserved.
- *
- * Author: Steven Dake (sdake@mvista.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.
- */
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include <assert.h>
- #include <unistd.h>
- #include <errno.h>
- #include <pthread.h>
- #include <sys/types.h>
- #include <sys/uio.h>
- #include <sys/socket.h>
- #include <sys/select.h>
- #include <sys/un.h>
- #include "../include/saAis.h"
- #include "../include/list.h"
- #include "../include/saCkpt.h"
- #include "../include/ipc_gen.h"
- #include "../include/ipc_ckpt.h"
- #include "util.h"
- struct message_overlay {
- struct res_header header;
- char data[4096];
- };
- /*
- * Data structure for instance data
- */
- struct ckptInstance {
- int response_fd;
- int dispatch_fd;
- SaCkptCallbacksT callbacks;
- int finalize;
- SaCkptHandleT ckptHandle;
- pthread_mutex_t response_mutex;
- pthread_mutex_t dispatch_mutex;
- struct list_head checkpoint_list;
- };
- struct ckptCheckpointInstance {
- int response_fd;
- SaCkptHandleT ckptHandle;
- SaCkptCheckpointHandleT checkpointHandle;
- SaCkptCheckpointOpenFlagsT checkpointOpenFlags;
- SaNameT checkpointName;
- pthread_mutex_t response_mutex;
- struct list_head list;
- struct list_head section_iteration_list_head;
- };
- struct ckptSectionIterationInstance {
- int response_fd;
- SaCkptSectionIterationHandleT sectionIterationHandle;
- SaNameT checkpointName;
- struct list_head sectionIdListHead;
- pthread_mutex_t response_mutex;
- unsigned int executive_iteration_handle;
- struct list_head list;
- };
- void ckptHandleInstanceDestructor (void *instance);
- void checkpointHandleInstanceDestructor (void *instance);
- void ckptSectionIterationHandleInstanceDestructor (void *instance);
- /*
- * All CKPT instances in this database
- */
- static struct saHandleDatabase ckptHandleDatabase = {
- .handleCount = 0,
- .handles = 0,
- .mutex = PTHREAD_MUTEX_INITIALIZER,
- .handleInstanceDestructor = ckptHandleInstanceDestructor
- };
- /*
- * All Checkpoint instances in this database
- */
- static struct saHandleDatabase checkpointHandleDatabase = {
- .handleCount = 0,
- .handles = 0,
- .mutex = PTHREAD_MUTEX_INITIALIZER,
- .handleInstanceDestructor = checkpointHandleInstanceDestructor
- };
- /*
- * All section iterators in this database
- */
- static struct saHandleDatabase ckptSectionIterationHandleDatabase = {
- .handleCount = 0,
- .handles = 0,
- .mutex = PTHREAD_MUTEX_INITIALIZER,
- .handleInstanceDestructor = ckptSectionIterationHandleInstanceDestructor
- };
- /*
- * Versions supported
- */
- static SaVersionT ckptVersionsSupported[] = {
- { 'B', 1, 1 }
- };
- static struct saVersionDatabase ckptVersionDatabase = {
- sizeof (ckptVersionsSupported) / sizeof (SaVersionT),
- ckptVersionsSupported
- };
- struct iteratorSectionIdListEntry {
- struct list_head list;
- unsigned char data[0];
- };
- /*
- * Implementation
- */
- void ckptHandleInstanceDestructor (void *instance)
- {
- }
- void checkpointHandleInstanceDestructor (void *instance)
- {
- return;
- }
- void ckptSectionIterationHandleInstanceDestructor (void *instance)
- {
- }
- static void ckptSectionIterationInstanceFinalize (struct ckptSectionIterationInstance *ckptSectionIterationInstance)
- {
- struct iteratorSectionIdListEntry *iteratorSectionIdListEntry;
- struct list_head *sectionIdIterationList;
- struct list_head *sectionIdIterationListNext;
- /*
- * iterate list of section ids for this iterator to free the allocated memory
- * be careful to cache next pointer because free removes memory from use
- */
- for (sectionIdIterationList = ckptSectionIterationInstance->sectionIdListHead.next,
- sectionIdIterationListNext = sectionIdIterationList->next;
- sectionIdIterationList != &ckptSectionIterationInstance->sectionIdListHead;
- sectionIdIterationList = sectionIdIterationListNext,
- sectionIdIterationListNext = sectionIdIterationList->next) {
- iteratorSectionIdListEntry = list_entry (sectionIdIterationList,
- struct iteratorSectionIdListEntry, list);
- free (iteratorSectionIdListEntry);
- }
- list_del (&ckptSectionIterationInstance->list);
- saHandleDestroy (&ckptSectionIterationHandleDatabase,
- ckptSectionIterationInstance->sectionIterationHandle);
- }
- static void ckptCheckpointInstanceFinalize (struct ckptCheckpointInstance *ckptCheckpointInstance)
- {
- struct ckptSectionIterationInstance *sectionIterationInstance;
- struct list_head *sectionIterationList;
- struct list_head *sectionIterationListNext;
- for (sectionIterationList = ckptCheckpointInstance->section_iteration_list_head.next,
- sectionIterationListNext = sectionIterationList->next;
- sectionIterationList != &ckptCheckpointInstance->section_iteration_list_head;
- sectionIterationList = sectionIterationListNext,
- sectionIterationListNext = sectionIterationList->next) {
- sectionIterationInstance = list_entry (sectionIterationList,
- struct ckptSectionIterationInstance, list);
- ckptSectionIterationInstanceFinalize (sectionIterationInstance);
- }
- list_del (&ckptCheckpointInstance->list);
- saHandleDestroy (&checkpointHandleDatabase, ckptCheckpointInstance->checkpointHandle);
- }
- static void ckptInstanceFinalize (struct ckptInstance *ckptInstance)
- {
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct list_head *checkpointInstanceList;
- struct list_head *checkpointInstanceListNext;
- for (checkpointInstanceList = ckptInstance->checkpoint_list.next,
- checkpointInstanceListNext = checkpointInstanceList->next;
- checkpointInstanceList != &ckptInstance->checkpoint_list;
- checkpointInstanceList = checkpointInstanceListNext,
- checkpointInstanceListNext = checkpointInstanceList->next) {
- ckptCheckpointInstance = list_entry (checkpointInstanceList,
- struct ckptCheckpointInstance, list);
- ckptCheckpointInstanceFinalize (ckptCheckpointInstance);
- }
- saHandleDestroy (&ckptHandleDatabase, ckptInstance->ckptHandle);
- }
- SaAisErrorT
- saCkptInitialize (
- SaCkptHandleT *ckptHandle,
- const SaCkptCallbacksT *callbacks,
- SaVersionT *version)
- {
- struct ckptInstance *ckptInstance;
- SaAisErrorT error = SA_AIS_OK;
- if (ckptHandle == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saVersionVerify (&ckptVersionDatabase, version);
- if (error != SA_AIS_OK) {
- goto error_no_destroy;
- }
- error = saHandleCreate (&ckptHandleDatabase, sizeof (struct ckptInstance),
- ckptHandle);
- if (error != SA_AIS_OK) {
- goto error_no_destroy;
- }
- error = saHandleInstanceGet (&ckptHandleDatabase, *ckptHandle,
- (void *)&ckptInstance);
- if (error != SA_AIS_OK) {
- goto error_destroy;
- }
- ckptInstance->response_fd = -1;
- error = saServiceConnectTwo (&ckptInstance->response_fd,
- &ckptInstance->dispatch_fd, CKPT_SERVICE);
- if (error != SA_AIS_OK) {
- goto error_put_destroy;
- }
- if (callbacks) {
- memcpy (&ckptInstance->callbacks, callbacks, sizeof (SaCkptCallbacksT));
- } else {
- memset (&ckptInstance->callbacks, 0, sizeof (SaCkptCallbacksT));
- }
- list_init (&ckptInstance->checkpoint_list);
- ckptInstance->ckptHandle = *ckptHandle;
- pthread_mutex_init (&ckptInstance->response_mutex, NULL);
- saHandleInstancePut (&ckptHandleDatabase, *ckptHandle);
- return (SA_AIS_OK);
- error_put_destroy:
- saHandleInstancePut (&ckptHandleDatabase, *ckptHandle);
- error_destroy:
- saHandleDestroy (&ckptHandleDatabase, *ckptHandle);
- error_no_destroy:
- return (error);
- }
- SaAisErrorT
- saCkptSelectionObjectGet (
- const SaCkptHandleT ckptHandle,
- SaSelectionObjectT *selectionObject)
- {
- struct ckptInstance *ckptInstance;
- SaAisErrorT error;
- if (selectionObject == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&ckptHandleDatabase, ckptHandle, (void *)&ckptInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- *selectionObject = ckptInstance->dispatch_fd;
- saHandleInstancePut (&ckptHandleDatabase, ckptHandle);
- return (SA_AIS_OK);
- }
- SaAisErrorT
- saCkptDispatch (
- const SaCkptHandleT ckptHandle,
- SaDispatchFlagsT dispatchFlags)
- {
- struct pollfd ufds;
- int poll_fd;
- int timeout = 1;
- SaCkptCallbacksT callbacks;
- SaAisErrorT error;
- int dispatch_avail;
- struct ckptInstance *ckptInstance;
- int cont = 1; /* always continue do loop except when set to 0 */
- struct message_overlay dispatch_data;
- struct res_lib_ckpt_checkpointopenasync *res_lib_ckpt_checkpointopenasync;
- struct res_lib_ckpt_checkpointsynchronizeasync *res_lib_ckpt_checkpointsynchronizeasync;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- if (dispatchFlags != SA_DISPATCH_ONE &&
- dispatchFlags != SA_DISPATCH_ALL &&
- dispatchFlags != SA_DISPATCH_BLOCKING) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&ckptHandleDatabase, ckptHandle,
- (void *)&ckptInstance);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- /*
- * Timeout instantly for SA_DISPATCH_ALL
- */
- if (dispatchFlags == SA_DISPATCH_ALL) {
- timeout = 0;
- }
- do {
- /*
- * Read data directly from socket
- */
- poll_fd = ckptInstance->dispatch_fd;
- ufds.fd = poll_fd;
- ufds.events = POLLIN;
- ufds.revents = 0;
- error = saPollRetry(&ufds, 1, timeout);
- if (error != SA_AIS_OK) {
- goto error_put;
- }
- pthread_mutex_lock(&ckptInstance->dispatch_mutex);
- if (ckptInstance->finalize == 1) {
- error = SA_AIS_OK;
- goto error_unlock;
- }
- if ((ufds.revents & (POLLERR|POLLHUP|POLLNVAL)) != 0) {
- error = SA_AIS_ERR_BAD_HANDLE;
- goto error_unlock;
- }
-
- dispatch_avail = (ufds.revents & POLLIN);
- if (dispatch_avail == 0 && dispatchFlags == SA_DISPATCH_ALL) {
- pthread_mutex_unlock(&ckptInstance->dispatch_mutex);
- break; /* exit do while cont is 1 loop */
- } else
- if (dispatch_avail == 0) {
- pthread_mutex_unlock(&ckptInstance->dispatch_mutex);
- continue;
- }
-
- memset(&dispatch_data,0, sizeof(struct message_overlay));
- error = saRecvRetry (ckptInstance->dispatch_fd, &dispatch_data.header, sizeof (struct res_header));
- if (error != SA_AIS_OK) {
- goto error_unlock;
- }
- if (dispatch_data.header.size > sizeof (struct res_header)) {
- error = saRecvRetry (ckptInstance->dispatch_fd, &dispatch_data.data,
- dispatch_data.header.size - sizeof (struct res_header));
- if (error != SA_AIS_OK) {
- goto error_unlock;
- }
- }
- /*
- * Make copy of callbacks, message data, unlock instance,
- * and call callback. A risk of this dispatch method is that
- * the callback routines may operate at the same time that
- * CkptFinalize has been called in another thread.
- */
- memcpy(&callbacks,&ckptInstance->callbacks, sizeof(ckptInstance->callbacks));
- pthread_mutex_unlock(&ckptInstance->dispatch_mutex);
- /*
- * Dispatch incoming response
- */
- switch (dispatch_data.header.id) {
- case MESSAGE_RES_CKPT_CHECKPOINT_CHECKPOINTOPENASYNC:
- if (callbacks.saCkptCheckpointOpenCallback == NULL) {
- continue;
- }
- res_lib_ckpt_checkpointopenasync = (struct res_lib_ckpt_checkpointopenasync *) &dispatch_data;
- /*
- * This instance get/listadd/put required so that close
- * later has the proper list of checkpoints
- */
- if (res_lib_ckpt_checkpointopenasync->header.error == SA_AIS_OK) {
- error = saHandleInstanceGet (&checkpointHandleDatabase,
- res_lib_ckpt_checkpointopenasync->checkpointHandle,
- (void *)&ckptCheckpointInstance);
- assert (error == SA_AIS_OK); /* should only be valid handles here */
- /*
- * open succeeded without error
- */
- list_init (&ckptCheckpointInstance->list);
- list_init (&ckptCheckpointInstance->section_iteration_list_head);
- list_add (&ckptCheckpointInstance->list,
- &ckptInstance->checkpoint_list);
- callbacks.saCkptCheckpointOpenCallback(
- res_lib_ckpt_checkpointopenasync->invocation,
- res_lib_ckpt_checkpointopenasync->checkpointHandle,
- res_lib_ckpt_checkpointopenasync->header.error);
- saHandleInstancePut (&checkpointHandleDatabase,
- res_lib_ckpt_checkpointopenasync->checkpointHandle);
- } else {
- /*
- * open failed with error
- */
- callbacks.saCkptCheckpointOpenCallback(
- res_lib_ckpt_checkpointopenasync->invocation,
- -1,
- res_lib_ckpt_checkpointopenasync->header.error);
- }
- break;
- case MESSAGE_RES_CKPT_CHECKPOINT_CHECKPOINTSYNCHRONIZEASYNC:
- if (callbacks.saCkptCheckpointSynchronizeCallback == NULL) {
- continue;
- }
- res_lib_ckpt_checkpointsynchronizeasync = (struct res_lib_ckpt_checkpointsynchronizeasync *) &dispatch_data;
- callbacks.saCkptCheckpointSynchronizeCallback(
- res_lib_ckpt_checkpointsynchronizeasync->invocation,
- res_lib_ckpt_checkpointsynchronizeasync->header.error);
- break;
- default:
- /* TODO */
- break;
- }
- /*
- * Determine if more messages should be processed
- */
- switch (dispatchFlags) {
- case SA_DISPATCH_ONE:
- cont = 0;
- break;
- case SA_DISPATCH_ALL:
- break;
- case SA_DISPATCH_BLOCKING:
- break;
- }
- } while (cont);
- error_unlock:
- pthread_mutex_unlock(&ckptInstance->dispatch_mutex);
- error_put:
- saHandleInstancePut(&ckptHandleDatabase, ckptHandle);
- error_exit:
- return (error);
- }
- SaAisErrorT
- saCkptFinalize (
- const SaCkptHandleT ckptHandle)
- {
- struct ckptInstance *ckptInstance;
- SaAisErrorT error;
- error = saHandleInstanceGet (&ckptHandleDatabase, ckptHandle,
- (void *)&ckptInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- pthread_mutex_lock (&ckptInstance->response_mutex);
- /*
- * Another thread has already started finalizing
- */
- if (ckptInstance->finalize) {
- pthread_mutex_unlock (&ckptInstance->response_mutex);
- saHandleInstancePut (&ckptHandleDatabase, ckptHandle);
- return (SA_AIS_ERR_BAD_HANDLE);
- }
- ckptInstance->finalize = 1;
- pthread_mutex_unlock (&ckptInstance->response_mutex);
- ckptInstanceFinalize (ckptInstance);
- if (ckptInstance->response_fd != -1) {
- shutdown (ckptInstance->response_fd, 0);
- close (ckptInstance->response_fd);
- }
- if (ckptInstance->dispatch_fd != -1) {
- shutdown (ckptInstance->dispatch_fd, 0);
- close (ckptInstance->dispatch_fd);
- }
- saHandleInstancePut (&ckptHandleDatabase, ckptHandle);
- return (SA_AIS_OK);
- }
- SaAisErrorT
- saCkptCheckpointOpen (
- SaCkptHandleT ckptHandle,
- const SaNameT *checkpointName,
- const SaCkptCheckpointCreationAttributesT *checkpointCreationAttributes,
- SaCkptCheckpointOpenFlagsT checkpointOpenFlags,
- SaTimeT timeout,
- SaCkptCheckpointHandleT *checkpointHandle)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct ckptInstance *ckptInstance;
- struct req_lib_ckpt_checkpointopen req_lib_ckpt_checkpointopen;
- struct res_lib_ckpt_checkpointopen res_lib_ckpt_checkpointopen;
- if (checkpointHandle == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- if (checkpointName == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- if ((checkpointOpenFlags & SA_CKPT_CHECKPOINT_CREATE) &&
- checkpointCreationAttributes == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- if (((checkpointOpenFlags & SA_CKPT_CHECKPOINT_CREATE) == 0) &&
- checkpointCreationAttributes != NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- if (checkpointCreationAttributes &&
- (checkpointCreationAttributes->checkpointSize >
- (checkpointCreationAttributes->maxSections * checkpointCreationAttributes->maxSectionSize))) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- if (checkpointOpenFlags & ~(SA_CKPT_CHECKPOINT_READ|SA_CKPT_CHECKPOINT_WRITE|SA_CKPT_CHECKPOINT_CREATE)) {
- return (SA_AIS_ERR_BAD_FLAGS);
- }
- error = saHandleInstanceGet (&ckptHandleDatabase, ckptHandle,
- (void *)&ckptInstance);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saHandleCreate (&checkpointHandleDatabase,
- sizeof (struct ckptCheckpointInstance), checkpointHandle);
- if (error != SA_AIS_OK) {
- goto error_put_ckpt;
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase,
- *checkpointHandle, (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- goto error_destroy;
- }
- ckptCheckpointInstance->response_fd = ckptInstance->response_fd;
- ckptCheckpointInstance->ckptHandle = ckptHandle;
- ckptCheckpointInstance->checkpointHandle = *checkpointHandle;
- ckptCheckpointInstance->checkpointOpenFlags = checkpointOpenFlags;
- list_init (&ckptCheckpointInstance->section_iteration_list_head);
- req_lib_ckpt_checkpointopen.header.size = sizeof (struct req_lib_ckpt_checkpointopen);
- req_lib_ckpt_checkpointopen.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTOPEN;
- memcpy (&req_lib_ckpt_checkpointopen.checkpointName, checkpointName, sizeof (SaNameT));
- memcpy (&ckptCheckpointInstance->checkpointName, checkpointName, sizeof (SaNameT));
- req_lib_ckpt_checkpointopen.checkpointCreationAttributesSet = 0;
- if (checkpointCreationAttributes) {
- memcpy (&req_lib_ckpt_checkpointopen.checkpointCreationAttributes,
- checkpointCreationAttributes,
- sizeof (SaCkptCheckpointCreationAttributesT));
- req_lib_ckpt_checkpointopen.checkpointCreationAttributesSet = 1;
- }
- req_lib_ckpt_checkpointopen.checkpointOpenFlags = checkpointOpenFlags;
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_checkpointopen,
- sizeof (struct req_lib_ckpt_checkpointopen));
- if (error != SA_AIS_OK) {
- goto error_put_destroy;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd, &res_lib_ckpt_checkpointopen,
- sizeof (struct res_lib_ckpt_checkpointopen));
- if (error != SA_AIS_OK) {
- goto error_put_destroy;
- }
-
- if (res_lib_ckpt_checkpointopen.header.error != SA_AIS_OK) {
- error = res_lib_ckpt_checkpointopen.header.error;
- goto error_put_destroy;
- }
- pthread_mutex_init (&ckptCheckpointInstance->response_mutex, NULL);
- saHandleInstancePut (&checkpointHandleDatabase, *checkpointHandle);
- saHandleInstancePut (&ckptHandleDatabase, ckptHandle);
- list_init (&ckptCheckpointInstance->list);
- list_add (&ckptCheckpointInstance->list, &ckptInstance->checkpoint_list);
- return (error);
- error_put_destroy:
- saHandleInstancePut (&checkpointHandleDatabase, *checkpointHandle);
- error_destroy:
- saHandleDestroy (&checkpointHandleDatabase, *checkpointHandle);
- error_put_ckpt:
- saHandleInstancePut (&ckptHandleDatabase, ckptHandle);
- error_exit:
- return (error);
- }
- SaAisErrorT
- saCkptCheckpointOpenAsync (
- const SaCkptHandleT ckptHandle,
- SaInvocationT invocation,
- const SaNameT *checkpointName,
- const SaCkptCheckpointCreationAttributesT *checkpointCreationAttributes,
- SaCkptCheckpointOpenFlagsT checkpointOpenFlags)
- {
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct ckptInstance *ckptInstance;
- SaCkptCheckpointHandleT checkpointHandle;
- SaAisErrorT error;
- struct req_lib_ckpt_checkpointopenasync req_lib_ckpt_checkpointopenasync;
- struct res_lib_ckpt_checkpointopenasync res_lib_ckpt_checkpointopenasync;
- SaAisErrorT failWithError = SA_AIS_OK;
- if (checkpointName == NULL) {
- failWithError = SA_AIS_ERR_INVALID_PARAM;
- } else
- if (checkpointOpenFlags &
- ~(SA_CKPT_CHECKPOINT_READ|SA_CKPT_CHECKPOINT_WRITE|SA_CKPT_CHECKPOINT_CREATE)) {
- failWithError = SA_AIS_ERR_BAD_FLAGS;
- } else
- if ((checkpointOpenFlags & SA_CKPT_CHECKPOINT_CREATE) &&
- checkpointCreationAttributes == NULL) {
- failWithError = SA_AIS_ERR_INVALID_PARAM;
- } else
- if (((checkpointOpenFlags & SA_CKPT_CHECKPOINT_CREATE) == 0) &&
- checkpointCreationAttributes != NULL) {
- failWithError = SA_AIS_ERR_INVALID_PARAM;
- } else
- if (checkpointCreationAttributes &&
- (checkpointCreationAttributes->checkpointSize >
- (checkpointCreationAttributes->maxSections * checkpointCreationAttributes->maxSectionSize))) {
- failWithError = SA_AIS_ERR_INVALID_PARAM;
- }
- error = saHandleInstanceGet (&ckptHandleDatabase, ckptHandle,
- (void *)&ckptInstance);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- if (ckptInstance->callbacks.saCkptCheckpointOpenCallback == NULL) {
- error = SA_AIS_ERR_INIT;
- goto error_put_ckpt;
- }
- error = saHandleCreate (&checkpointHandleDatabase,
- sizeof (struct ckptCheckpointInstance), &checkpointHandle);
- if (error != SA_AIS_OK) {
- goto error_put_ckpt;
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- goto error_destroy;
- }
- ckptCheckpointInstance->response_fd = ckptInstance->response_fd;
- ckptCheckpointInstance->ckptHandle = ckptHandle;
- ckptCheckpointInstance->checkpointHandle = checkpointHandle;
- ckptCheckpointInstance->checkpointOpenFlags = checkpointOpenFlags;
- if (failWithError == SA_AIS_OK) {
- memcpy (&ckptCheckpointInstance->checkpointName, checkpointName,
- sizeof (SaNameT));
- memcpy (&req_lib_ckpt_checkpointopenasync.checkpointName,
- checkpointName, sizeof (SaNameT));
- }
- req_lib_ckpt_checkpointopenasync.header.size = sizeof (struct req_lib_ckpt_checkpointopenasync);
- req_lib_ckpt_checkpointopenasync.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTOPENASYNC;
- req_lib_ckpt_checkpointopenasync.invocation = invocation;
- req_lib_ckpt_checkpointopenasync.fail_with_error = failWithError;
- req_lib_ckpt_checkpointopenasync.checkpointCreationAttributesSet = 0;
- if (checkpointCreationAttributes) {
- memcpy (&req_lib_ckpt_checkpointopenasync.checkpointCreationAttributes,
- checkpointCreationAttributes,
- sizeof (SaCkptCheckpointCreationAttributesT));
- req_lib_ckpt_checkpointopenasync.checkpointCreationAttributesSet = 1;
- }
-
- req_lib_ckpt_checkpointopenasync.checkpointOpenFlags = checkpointOpenFlags;
- req_lib_ckpt_checkpointopenasync.checkpointHandle = checkpointHandle;
- error = saSendRetry (ckptInstance->response_fd, &req_lib_ckpt_checkpointopenasync,
- sizeof (struct req_lib_ckpt_checkpointopenasync));
-
- if (error != SA_AIS_OK) {
- goto error_put_destroy;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_checkpointopenasync,
- sizeof (struct res_lib_ckpt_checkpointopenasync));
- if (error != SA_AIS_OK) {
- goto error_put_destroy;
- }
-
- if (res_lib_ckpt_checkpointopenasync.header.error != SA_AIS_OK) {
- error = res_lib_ckpt_checkpointopenasync.header.error;
- goto error_put_destroy;
- }
-
- pthread_mutex_init (&ckptCheckpointInstance->response_mutex, NULL);
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- saHandleInstancePut (&ckptHandleDatabase, ckptHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_checkpointopenasync.header.error : error);
- error_put_destroy:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- error_destroy:
- saHandleDestroy (&checkpointHandleDatabase, checkpointHandle);
- error_put_ckpt:
- saHandleInstancePut (&ckptHandleDatabase, ckptHandle);
- error_exit:
- return (error);
- }
- SaAisErrorT
- saCkptCheckpointClose (
- SaCkptCheckpointHandleT checkpointHandle)
- {
- struct req_lib_ckpt_checkpointclose req_lib_ckpt_checkpointclose;
- struct res_lib_ckpt_checkpointclose res_lib_ckpt_checkpointclose;
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- req_lib_ckpt_checkpointclose.header.size = sizeof (struct req_lib_ckpt_checkpointclose);
- req_lib_ckpt_checkpointclose.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTCLOSE;
- memcpy (&req_lib_ckpt_checkpointclose.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_checkpointclose,
- sizeof (struct req_lib_ckpt_checkpointclose));
- if (error != SA_AIS_OK) {
- goto exit_put;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd, &res_lib_ckpt_checkpointclose,
- sizeof (struct res_lib_ckpt_checkpointclose));
- if (error == SA_AIS_OK) {
- error = res_lib_ckpt_checkpointclose.header.error;
- }
- if (error == SA_AIS_OK) {
- ckptCheckpointInstanceFinalize (ckptCheckpointInstance);
- }
- exit_put:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- error_exit:
- return (error);
- }
- SaAisErrorT
- saCkptCheckpointUnlink (
- SaCkptHandleT ckptHandle,
- const SaNameT *checkpointName)
- {
- SaAisErrorT error;
- struct ckptInstance *ckptInstance;
- struct req_lib_ckpt_checkpointunlink req_lib_ckpt_checkpointunlink;
- struct res_lib_ckpt_checkpointunlink res_lib_ckpt_checkpointunlink;
- if (checkpointName == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&ckptHandleDatabase, ckptHandle, (void *)&ckptInstance);
- if (error != SA_AIS_OK) {
- goto exit_noclose;
- }
- req_lib_ckpt_checkpointunlink.header.size = sizeof (struct req_lib_ckpt_checkpointunlink);
- req_lib_ckpt_checkpointunlink.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTUNLINK;
- memcpy (&req_lib_ckpt_checkpointunlink.checkpointName, checkpointName, sizeof (SaNameT));
- error = saSendRetry (ckptInstance->response_fd, &req_lib_ckpt_checkpointunlink,
- sizeof (struct req_lib_ckpt_checkpointunlink));
- if (error != SA_AIS_OK) {
- goto exit_put;
- }
- error = saRecvRetry (ckptInstance->response_fd, &res_lib_ckpt_checkpointunlink,
- sizeof (struct res_lib_ckpt_checkpointunlink));
- exit_put:
- saHandleInstancePut (&ckptHandleDatabase, ckptHandle);
-
- return (error == SA_AIS_OK ? res_lib_ckpt_checkpointunlink.header.error : error);
- exit_noclose:
- return (error);
- }
- SaAisErrorT
- saCkptCheckpointRetentionDurationSet (
- SaCkptCheckpointHandleT checkpointHandle,
- SaTimeT retentionDuration)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_checkpointretentiondurationset req_lib_ckpt_checkpointretentiondurationset;
- struct res_lib_ckpt_checkpointretentiondurationset res_lib_ckpt_checkpointretentiondurationset;
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- goto error_exit_noput;
- }
- req_lib_ckpt_checkpointretentiondurationset.header.size = sizeof (struct req_lib_ckpt_checkpointretentiondurationset);
- req_lib_ckpt_checkpointretentiondurationset.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTRETENTIONDURATIONSET;
- req_lib_ckpt_checkpointretentiondurationset.retentionDuration = retentionDuration;
- memcpy (&req_lib_ckpt_checkpointretentiondurationset.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_checkpointretentiondurationset, sizeof (struct req_lib_ckpt_checkpointretentiondurationset));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_checkpointretentiondurationset,
- sizeof (struct res_lib_ckpt_checkpointretentiondurationset));
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- error_exit:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- error_exit_noput:
- return (error == SA_AIS_OK ? res_lib_ckpt_checkpointretentiondurationset.header.error : error);
- }
- SaAisErrorT
- saCkptActiveReplicaSet (
- SaCkptCheckpointHandleT checkpointHandle)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_activereplicaset req_lib_ckpt_activereplicaset;
- struct res_lib_ckpt_activereplicaset res_lib_ckpt_activereplicaset;
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- goto error_noput;
- }
- if ((ckptCheckpointInstance->checkpointOpenFlags & SA_CKPT_CHECKPOINT_WRITE) == 0) {
- error = SA_AIS_ERR_ACCESS;
- goto error_put;
- }
- req_lib_ckpt_activereplicaset.header.size = sizeof (struct req_lib_ckpt_activereplicaset);
- req_lib_ckpt_activereplicaset.header.id = MESSAGE_REQ_CKPT_ACTIVEREPLICASET;
- memcpy (&req_lib_ckpt_activereplicaset.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_activereplicaset,
- sizeof (struct req_lib_ckpt_activereplicaset));
- if (error != SA_AIS_OK) {
- goto error_put;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_activereplicaset,
- sizeof (struct res_lib_ckpt_activereplicaset));
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- error_put:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- error_noput:
- return (error == SA_AIS_OK ? res_lib_ckpt_activereplicaset.header.error : error);
- }
- SaAisErrorT
- saCkptCheckpointStatusGet (
- SaCkptCheckpointHandleT checkpointHandle,
- SaCkptCheckpointDescriptorT *checkpointStatus)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_checkpointstatusget req_lib_ckpt_checkpointstatusget;
- struct res_lib_ckpt_checkpointstatusget res_lib_ckpt_checkpointstatusget;
- if (checkpointStatus == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- req_lib_ckpt_checkpointstatusget.header.size = sizeof (struct req_lib_ckpt_checkpointstatusget);
- req_lib_ckpt_checkpointstatusget.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTSTATUSGET;
- memcpy (&req_lib_ckpt_checkpointstatusget.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_checkpointstatusget,
- sizeof (struct req_lib_ckpt_checkpointstatusget));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_checkpointstatusget,
- sizeof (struct res_lib_ckpt_checkpointstatusget));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- memcpy (checkpointStatus,
- &res_lib_ckpt_checkpointstatusget.checkpointDescriptor,
- sizeof (SaCkptCheckpointDescriptorT));
- error_exit:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_checkpointstatusget.header.error : error);
- }
- SaAisErrorT
- saCkptSectionCreate (
- SaCkptCheckpointHandleT checkpointHandle,
- SaCkptSectionCreationAttributesT *sectionCreationAttributes,
- const void *initialData,
- SaUint32T initialDataSize)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_sectioncreate req_lib_ckpt_sectioncreate;
- struct res_lib_ckpt_sectioncreate res_lib_ckpt_sectioncreate;
- if (sectionCreationAttributes == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- if (initialData == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- if ((ckptCheckpointInstance->checkpointOpenFlags & SA_CKPT_CHECKPOINT_WRITE) == 0) {
- error = SA_AIS_ERR_ACCESS;
- goto error_exit;
- }
- req_lib_ckpt_sectioncreate.header.size =
- sizeof (struct req_lib_ckpt_sectioncreate) +
- sectionCreationAttributes->sectionId->idLen +
- initialDataSize;
- req_lib_ckpt_sectioncreate.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_SECTIONCREATE;
- req_lib_ckpt_sectioncreate.idLen = sectionCreationAttributes->sectionId->idLen;
- req_lib_ckpt_sectioncreate.expirationTime = sectionCreationAttributes->expirationTime;
- req_lib_ckpt_sectioncreate.initialDataSize = initialDataSize;
- memcpy (&req_lib_ckpt_sectioncreate.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_sectioncreate,
- sizeof (struct req_lib_ckpt_sectioncreate));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- /*
- * Write section identifier to server
- */
- error = saSendRetry (ckptCheckpointInstance->response_fd, sectionCreationAttributes->sectionId->id,
- sectionCreationAttributes->sectionId->idLen);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saSendRetry (ckptCheckpointInstance->response_fd, initialData,
- initialDataSize);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_sectioncreate,
- sizeof (struct res_lib_ckpt_sectioncreate));
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- error_exit:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_sectioncreate.header.error : error);
- }
- SaAisErrorT
- saCkptSectionDelete (
- SaCkptCheckpointHandleT checkpointHandle,
- const SaCkptSectionIdT *sectionId)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_sectiondelete req_lib_ckpt_sectiondelete;
- struct res_lib_ckpt_sectiondelete res_lib_ckpt_sectiondelete;
- if (sectionId == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- if ((ckptCheckpointInstance->checkpointOpenFlags & SA_CKPT_CHECKPOINT_WRITE) == 0) {
- error = SA_AIS_ERR_ACCESS;
- goto error_put;
- }
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- req_lib_ckpt_sectiondelete.header.size = sizeof (struct req_lib_ckpt_sectiondelete) + sectionId->idLen;
- req_lib_ckpt_sectiondelete.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_SECTIONDELETE;
- req_lib_ckpt_sectiondelete.idLen = sectionId->idLen;
- memcpy (&req_lib_ckpt_sectiondelete.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_sectiondelete,
- sizeof (struct req_lib_ckpt_sectiondelete));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- /*
- * Write section identifier to server
- */
- error = saSendRetry (ckptCheckpointInstance->response_fd, sectionId->id,
- sectionId->idLen);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_sectiondelete,
- sizeof (struct res_lib_ckpt_sectiondelete));
- error_exit:
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- error_put:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_sectiondelete.header.error : error);
- }
- SaAisErrorT
- saCkptSectionExpirationTimeSet (
- SaCkptCheckpointHandleT checkpointHandle,
- const SaCkptSectionIdT *sectionId,
- SaTimeT expirationTime)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_sectionexpirationtimeset req_lib_ckpt_sectionexpirationtimeset;
- struct res_lib_ckpt_sectionexpirationtimeset res_lib_ckpt_sectionexpirationtimeset;
- if (sectionId == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- if ((ckptCheckpointInstance->checkpointOpenFlags & SA_CKPT_CHECKPOINT_WRITE) == 0) {
- error = SA_AIS_ERR_ACCESS;
- goto error_put;
- }
- req_lib_ckpt_sectionexpirationtimeset.header.size = sizeof (struct req_lib_ckpt_sectionexpirationtimeset) + sectionId->idLen;
- req_lib_ckpt_sectionexpirationtimeset.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_SECTIONEXPIRATIONTIMESET;
- req_lib_ckpt_sectionexpirationtimeset.idLen = sectionId->idLen;
- req_lib_ckpt_sectionexpirationtimeset.expirationTime = expirationTime;
- memcpy (&req_lib_ckpt_sectionexpirationtimeset.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_sectionexpirationtimeset,
- sizeof (struct req_lib_ckpt_sectionexpirationtimeset));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- /*
- * Write section identifier to server
- */
- if (sectionId->idLen) {
- error = saSendRetry (ckptCheckpointInstance->response_fd, sectionId->id,
- sectionId->idLen);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_sectionexpirationtimeset,
- sizeof (struct res_lib_ckpt_sectionexpirationtimeset));
- error_exit:
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- error_put:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_sectionexpirationtimeset.header.error : error);
- }
- SaAisErrorT
- saCkptSectionIterationInitialize (
- SaCkptCheckpointHandleT checkpointHandle,
- SaCkptSectionsChosenT sectionsChosen,
- SaTimeT expirationTime,
- SaCkptSectionIterationHandleT *sectionIterationHandle)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct ckptSectionIterationInstance *ckptSectionIterationInstance;
- struct req_lib_ckpt_sectioniterationinitialize req_lib_ckpt_sectioniterationinitialize;
- struct res_lib_ckpt_sectioniterationinitialize res_lib_ckpt_sectioniterationinitialize;
- if (sectionIterationHandle == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- if (sectionsChosen != SA_CKPT_SECTIONS_FOREVER &&
- sectionsChosen != SA_CKPT_SECTIONS_LEQ_EXPIRATION_TIME &&
- sectionsChosen != SA_CKPT_SECTIONS_GEQ_EXPIRATION_TIME &&
- sectionsChosen != SA_CKPT_SECTIONS_CORRUPTED &&
- sectionsChosen != SA_CKPT_SECTIONS_ANY) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- goto error_no_destroy;
- }
- error = saHandleCreate (&ckptSectionIterationHandleDatabase,
- sizeof (struct ckptSectionIterationInstance), sectionIterationHandle);
- if (error != SA_AIS_OK) {
- goto error_put_checkpoint_db;
- }
- error = saHandleInstanceGet (&ckptSectionIterationHandleDatabase,
- *sectionIterationHandle, (void *)&ckptSectionIterationInstance);
- if (error != SA_AIS_OK) {
- goto error_destroy;
- }
- ckptSectionIterationInstance->response_fd = ckptCheckpointInstance->response_fd;
- ckptSectionIterationInstance->sectionIterationHandle = *sectionIterationHandle;
- memcpy (&ckptSectionIterationInstance->checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- list_init (&ckptSectionIterationInstance->list);
- list_add (&ckptSectionIterationInstance->list,
- &ckptCheckpointInstance->section_iteration_list_head);
- pthread_mutex_init (&ckptSectionIterationInstance->response_mutex, NULL);
- /*
- * Setup section id list for iterator next
- */
- list_init (&ckptSectionIterationInstance->sectionIdListHead);
- req_lib_ckpt_sectioniterationinitialize.header.size = sizeof (struct req_lib_ckpt_sectioniterationinitialize);
- req_lib_ckpt_sectioniterationinitialize.header.id = MESSAGE_REQ_CKPT_SECTIONITERATIONINITIALIZE;
- req_lib_ckpt_sectioniterationinitialize.sectionsChosen = sectionsChosen;
- req_lib_ckpt_sectioniterationinitialize.expirationTime = expirationTime;
- memcpy (&req_lib_ckpt_sectioniterationinitialize.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- pthread_mutex_lock (&ckptSectionIterationInstance->response_mutex);
- error = saSendRetry (ckptSectionIterationInstance->response_fd,
- &req_lib_ckpt_sectioniterationinitialize,
- sizeof (struct req_lib_ckpt_sectioniterationinitialize));
- if (error != SA_AIS_OK) {
- goto error_put_destroy;
- }
- error = saRecvRetry (ckptSectionIterationInstance->response_fd,
- &res_lib_ckpt_sectioniterationinitialize,
- sizeof (struct res_lib_ckpt_sectioniterationinitialize));
- pthread_mutex_unlock (&ckptSectionIterationInstance->response_mutex);
- if (error == SA_AIS_OK) {
- ckptSectionIterationInstance->executive_iteration_handle =
- res_lib_ckpt_sectioniterationinitialize.iteration_handle;
- }
- saHandleInstancePut (&ckptSectionIterationHandleDatabase, *sectionIterationHandle);
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_sectioniterationinitialize.header.error : error);
- error_put_destroy:
- saHandleInstancePut (&ckptSectionIterationHandleDatabase, *sectionIterationHandle);
- error_destroy:
- saHandleDestroy (&ckptSectionIterationHandleDatabase, *sectionIterationHandle);
- error_put_checkpoint_db:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- error_no_destroy:
- return (error);
- }
- SaAisErrorT
- saCkptSectionIterationNext (
- SaCkptSectionIterationHandleT sectionIterationHandle,
- SaCkptSectionDescriptorT *sectionDescriptor)
- {
- SaAisErrorT error;
- struct ckptSectionIterationInstance *ckptSectionIterationInstance;
- struct req_lib_ckpt_sectioniterationnext req_lib_ckpt_sectioniterationnext;
- struct res_lib_ckpt_sectioniterationnext res_lib_ckpt_sectioniterationnext;
- struct iteratorSectionIdListEntry *iteratorSectionIdListEntry;
- if (sectionDescriptor == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&ckptSectionIterationHandleDatabase,
- sectionIterationHandle, (void *)&ckptSectionIterationInstance);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- /*
- * Allocate section id storage area
- */
- /*
- * TODO max section id size is 500
- */
- iteratorSectionIdListEntry = malloc (sizeof (struct list_head) + 500);
- if (iteratorSectionIdListEntry == 0) {
- error = SA_AIS_ERR_NO_MEMORY;
- goto error_put_nounlock;
- }
- req_lib_ckpt_sectioniterationnext.header.size = sizeof (struct req_lib_ckpt_sectioniterationnext);
- req_lib_ckpt_sectioniterationnext.header.id = MESSAGE_REQ_CKPT_SECTIONITERATIONNEXT;
- req_lib_ckpt_sectioniterationnext.iteration_handle = ckptSectionIterationInstance->executive_iteration_handle;
- pthread_mutex_lock (&ckptSectionIterationInstance->response_mutex);
- error = saSendRetry (ckptSectionIterationInstance->response_fd,
- &req_lib_ckpt_sectioniterationnext,
- sizeof (struct req_lib_ckpt_sectioniterationnext));
- if (error != SA_AIS_OK) {
- goto error_put_unlock;
- }
- error = saRecvRetry (ckptSectionIterationInstance->response_fd, &res_lib_ckpt_sectioniterationnext,
- sizeof (struct res_lib_ckpt_sectioniterationnext));
- if (error != SA_AIS_OK) {
- goto error_put_unlock;
- }
- memcpy (sectionDescriptor,
- &res_lib_ckpt_sectioniterationnext.sectionDescriptor,
- sizeof (SaCkptSectionDescriptorT));
- sectionDescriptor->sectionId.id = &iteratorSectionIdListEntry->data[0];
-
- if ((res_lib_ckpt_sectioniterationnext.header.size - sizeof (struct res_lib_ckpt_sectioniterationnext)) > 0) {
- error = saRecvRetry (ckptSectionIterationInstance->response_fd,
- sectionDescriptor->sectionId.id,
- res_lib_ckpt_sectioniterationnext.header.size -
- sizeof (struct res_lib_ckpt_sectioniterationnext));
- }
- error = (error == SA_AIS_OK ? res_lib_ckpt_sectioniterationnext.header.error : error);
-
- /*
- * Add to persistent memory list for this sectioniterator
- */
- if (error == SA_AIS_OK) {
- list_init (&iteratorSectionIdListEntry->list);
- list_add (&iteratorSectionIdListEntry->list, &ckptSectionIterationInstance->sectionIdListHead);
- }
- error_put_unlock:
- pthread_mutex_unlock (&ckptSectionIterationInstance->response_mutex);
- if (error != SA_AIS_OK) {
- free (iteratorSectionIdListEntry);
- }
- error_put_nounlock:
- saHandleInstancePut (&ckptSectionIterationHandleDatabase, sectionIterationHandle);
- error_exit:
- return (error);
- }
-
- SaAisErrorT
- saCkptSectionIterationFinalize (
- SaCkptSectionIterationHandleT sectionIterationHandle)
- {
- SaAisErrorT error;
- struct ckptSectionIterationInstance *ckptSectionIterationInstance;
- struct req_lib_ckpt_sectioniterationfinalize req_lib_ckpt_sectioniterationfinalize;
- struct res_lib_ckpt_sectioniterationfinalize res_lib_ckpt_sectioniterationfinalize;
- error = saHandleInstanceGet (&ckptSectionIterationHandleDatabase,
- sectionIterationHandle, (void *)&ckptSectionIterationInstance);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- req_lib_ckpt_sectioniterationfinalize.header.size = sizeof (struct req_lib_ckpt_sectioniterationfinalize);
- req_lib_ckpt_sectioniterationfinalize.header.id = MESSAGE_REQ_CKPT_SECTIONITERATIONFINALIZE;
- req_lib_ckpt_sectioniterationfinalize.iteration_handle = ckptSectionIterationInstance->executive_iteration_handle;
- pthread_mutex_lock (&ckptSectionIterationInstance->response_mutex);
- error = saSendRetry (ckptSectionIterationInstance->response_fd,
- &req_lib_ckpt_sectioniterationfinalize,
- sizeof (struct req_lib_ckpt_sectioniterationfinalize));
- if (error != SA_AIS_OK) {
- goto error_put;
- }
- error = saRecvRetry (ckptSectionIterationInstance->response_fd, &res_lib_ckpt_sectioniterationfinalize,
- sizeof (struct res_lib_ckpt_sectioniterationfinalize));
- if (error != SA_AIS_OK) {
- goto error_put;
- }
- pthread_mutex_unlock (&ckptSectionIterationInstance->response_mutex);
- ckptSectionIterationInstanceFinalize (ckptSectionIterationInstance);
- saHandleInstancePut (&ckptSectionIterationHandleDatabase, sectionIterationHandle);
- return (error);
- error_put:
- pthread_mutex_unlock (&ckptSectionIterationInstance->response_mutex);
- saHandleInstancePut (&ckptSectionIterationHandleDatabase, sectionIterationHandle);
- error_exit:
- return (error == SA_AIS_OK ? res_lib_ckpt_sectioniterationfinalize.header.error : error);
- }
- SaAisErrorT
- saCkptCheckpointWrite (
- SaCkptCheckpointHandleT checkpointHandle,
- const SaCkptIOVectorElementT *ioVector,
- SaUint32T numberOfElements,
- SaUint32T *erroneousVectorIndex)
- {
- SaAisErrorT error = SA_AIS_OK;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_sectionwrite req_lib_ckpt_sectionwrite;
- struct res_lib_ckpt_sectionwrite res_lib_ckpt_sectionwrite;
- int i;
- struct iovec iov[3];
- int iov_len = 0;
- if (ioVector == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- if ((ckptCheckpointInstance->checkpointOpenFlags & SA_CKPT_CHECKPOINT_WRITE) == 0) {
- error = SA_AIS_ERR_ACCESS;
- goto error_put;
- }
- req_lib_ckpt_sectionwrite.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_SECTIONWRITE;
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- for (i = 0; i < numberOfElements; i++) {
- req_lib_ckpt_sectionwrite.header.size = sizeof (struct req_lib_ckpt_sectionwrite) + ioVector[i].sectionId.idLen + ioVector[i].dataSize;
- req_lib_ckpt_sectionwrite.dataOffset = ioVector[i].dataOffset;
- req_lib_ckpt_sectionwrite.dataSize = ioVector[i].dataSize;
- req_lib_ckpt_sectionwrite.idLen = ioVector[i].sectionId.idLen;
- memcpy (&req_lib_ckpt_sectionwrite.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- iov_len = 0;
- /* TODO check for zero length stuff */
- iov[0].iov_base = (char *)&req_lib_ckpt_sectionwrite;
- iov[0].iov_len = sizeof (struct req_lib_ckpt_sectionwrite);
- iov[1].iov_base = ioVector[i].sectionId.id;
- iov[1].iov_len = ioVector[i].sectionId.idLen;
- iov[2].iov_base = ioVector[i].dataBuffer;
- iov[2].iov_len = ioVector[i].dataSize;
- error = saSendMsgRetry (ckptCheckpointInstance->response_fd,
- iov,
- 3);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- /*
- * Receive response
- */
- error = saRecvRetry (ckptCheckpointInstance->response_fd, &res_lib_ckpt_sectionwrite,
- sizeof (struct res_lib_ckpt_sectionwrite));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- if (res_lib_ckpt_sectionwrite.header.error == SA_AIS_ERR_TRY_AGAIN) {
- error = SA_AIS_ERR_TRY_AGAIN;
- goto error_exit;
- }
- /*
- * If error, report back erroneous index
- */
- if (res_lib_ckpt_sectionwrite.header.error != SA_AIS_OK) {
- if (erroneousVectorIndex) {
- *erroneousVectorIndex = i;
- }
- goto error_exit;
- }
- }
- error_exit:
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- error_put:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_sectionwrite.header.error : error);
- }
- SaAisErrorT
- saCkptSectionOverwrite (
- SaCkptCheckpointHandleT checkpointHandle,
- const SaCkptSectionIdT *sectionId,
- const void *dataBuffer,
- SaSizeT dataSize)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_sectionoverwrite req_lib_ckpt_sectionoverwrite;
- struct res_lib_ckpt_sectionoverwrite res_lib_ckpt_sectionoverwrite;
- if (dataBuffer == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- if (sectionId == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- if ((ckptCheckpointInstance->checkpointOpenFlags & SA_CKPT_CHECKPOINT_WRITE) == 0) {
- return (SA_AIS_ERR_ACCESS);
- }
- req_lib_ckpt_sectionoverwrite.header.size = sizeof (struct req_lib_ckpt_sectionoverwrite) + sectionId->idLen + dataSize;
- req_lib_ckpt_sectionoverwrite.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_SECTIONOVERWRITE;
- req_lib_ckpt_sectionoverwrite.idLen = sectionId->idLen;
- req_lib_ckpt_sectionoverwrite.dataSize = dataSize;
- memcpy (&req_lib_ckpt_sectionoverwrite.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
-
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_sectionoverwrite,
- sizeof (struct req_lib_ckpt_sectionoverwrite));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- if (sectionId->idLen) {
- error = saSendRetry (ckptCheckpointInstance->response_fd, sectionId->id,
- sectionId->idLen);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- }
- error = saSendRetry (ckptCheckpointInstance->response_fd, dataBuffer, dataSize);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_sectionoverwrite,
- sizeof (struct res_lib_ckpt_sectionoverwrite));
- error_exit:
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_sectionoverwrite.header.error : error);
- }
- SaAisErrorT
- saCkptCheckpointRead (
- SaCkptCheckpointHandleT checkpointHandle,
- SaCkptIOVectorElementT *ioVector,
- SaUint32T numberOfElements,
- SaUint32T *erroneousVectorIndex)
- {
- SaAisErrorT error = SA_AIS_OK;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_sectionread req_lib_ckpt_sectionread;
- struct res_lib_ckpt_sectionread res_lib_ckpt_sectionread;
- int dataLength;
- int i;
- struct iovec iov[3];
- if (ioVector == NULL) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- if ((ckptCheckpointInstance->checkpointOpenFlags & SA_CKPT_CHECKPOINT_READ) == 0) {
- return (SA_AIS_ERR_ACCESS);
- }
- req_lib_ckpt_sectionread.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_SECTIONREAD;
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- for (i = 0; i < numberOfElements; i++) {
- req_lib_ckpt_sectionread.header.size = sizeof (struct req_lib_ckpt_sectionread) +
- ioVector[i].sectionId.idLen;
- req_lib_ckpt_sectionread.idLen = ioVector[i].sectionId.idLen;
- req_lib_ckpt_sectionread.dataOffset = ioVector[i].dataOffset;
- req_lib_ckpt_sectionread.dataSize = ioVector[i].dataSize;
- memcpy (&req_lib_ckpt_sectionread.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- iov[0].iov_base = (char *)&req_lib_ckpt_sectionread;
- iov[0].iov_len = sizeof (struct req_lib_ckpt_sectionread);
- iov[1].iov_base = ioVector[i].sectionId.id;
- iov[1].iov_len = ioVector[i].sectionId.idLen;
- error = saSendMsgRetry (ckptCheckpointInstance->response_fd,
- iov,
- 2);
- /*
- * Receive response header
- */
- error = saRecvRetry (ckptCheckpointInstance->response_fd, &res_lib_ckpt_sectionread,
- sizeof (struct res_lib_ckpt_sectionread));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
-
- dataLength = res_lib_ckpt_sectionread.header.size - sizeof (struct res_lib_ckpt_sectionread);
- /*
- * Receive checkpoint section data
- */
- if (ioVector[i].dataBuffer == 0) {
- ioVector[i].dataBuffer =
- malloc (dataLength);
- if (ioVector[i].dataBuffer == NULL) {
- error = SA_AIS_ERR_NO_MEMORY;
- goto error_exit;
- }
- }
-
- if (dataLength > 0) {
- error = saRecvRetry (ckptCheckpointInstance->response_fd, ioVector[i].dataBuffer,
- dataLength);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- }
- if (res_lib_ckpt_sectionread.header.error != SA_AIS_OK) {
- goto error_exit;
- }
- /*
- * Report back bytes of data read
- */
- ioVector[i].readSize = res_lib_ckpt_sectionread.dataRead;
- }
- error_exit:
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- if (error != SA_AIS_OK && erroneousVectorIndex) {
- *erroneousVectorIndex = i;
- }
- return (error == SA_AIS_OK ? res_lib_ckpt_sectionread.header.error : error);
- }
- SaAisErrorT
- saCkptCheckpointSynchronize (
- SaCkptCheckpointHandleT checkpointHandle,
- SaTimeT timeout)
- {
- SaAisErrorT error;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_checkpointsynchronize req_lib_ckpt_checkpointsynchronize;
- struct res_lib_ckpt_checkpointsynchronize res_lib_ckpt_checkpointsynchronize;
- if (timeout == 0) {
- return (SA_AIS_ERR_TIMEOUT);
- }
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- if ((ckptCheckpointInstance->checkpointOpenFlags & SA_CKPT_CHECKPOINT_WRITE) == 0) {
- error = SA_AIS_ERR_ACCESS;
- goto error_put;
- }
- req_lib_ckpt_checkpointsynchronize.header.size = sizeof (struct req_lib_ckpt_checkpointsynchronize);
- req_lib_ckpt_checkpointsynchronize.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTSYNCHRONIZE;
- memcpy (&req_lib_ckpt_checkpointsynchronize.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_checkpointsynchronize,
- sizeof (struct req_lib_ckpt_checkpointsynchronize));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_checkpointsynchronize,
- sizeof (struct res_lib_ckpt_checkpointsynchronize));
- error_exit:
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- error_put:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_checkpointsynchronize.header.error : error);
- }
- SaAisErrorT
- saCkptCheckpointSynchronizeAsync (
- SaCkptCheckpointHandleT checkpointHandle,
- SaInvocationT invocation)
- {
- SaAisErrorT error;
- struct ckptInstance *ckptInstance;
- struct ckptCheckpointInstance *ckptCheckpointInstance;
- struct req_lib_ckpt_checkpointsynchronizeasync req_lib_ckpt_checkpointsynchronizeasync;
- struct res_lib_ckpt_checkpointsynchronizeasync res_lib_ckpt_checkpointsynchronizeasync;
- error = saHandleInstanceGet (&checkpointHandleDatabase, checkpointHandle,
- (void *)&ckptCheckpointInstance);
- if (error != SA_AIS_OK) {
- return (error);
- }
- if ((ckptCheckpointInstance->checkpointOpenFlags & SA_CKPT_CHECKPOINT_WRITE) == 0) {
- error = SA_AIS_ERR_ACCESS;
- goto error_put;
- }
- error = saHandleInstanceGet (&ckptHandleDatabase, ckptCheckpointInstance->ckptHandle,
- (void *)&ckptInstance);
- if (error != SA_AIS_OK) {
- goto error_put;
- }
- if (ckptInstance->callbacks.saCkptCheckpointSynchronizeCallback == NULL) {
- saHandleInstancePut (&ckptHandleDatabase, ckptCheckpointInstance->ckptHandle);
- error = SA_AIS_ERR_INIT;
- goto error_put;
- }
- saHandleInstancePut (&ckptHandleDatabase, ckptCheckpointInstance->ckptHandle);
- req_lib_ckpt_checkpointsynchronizeasync.header.size = sizeof (struct req_lib_ckpt_checkpointsynchronizeasync);
- req_lib_ckpt_checkpointsynchronizeasync.header.id = MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTSYNCHRONIZEASYNC;
- memcpy (&req_lib_ckpt_checkpointsynchronizeasync.checkpointName,
- &ckptCheckpointInstance->checkpointName, sizeof (SaNameT));
- req_lib_ckpt_checkpointsynchronizeasync.invocation = invocation;
- pthread_mutex_lock (&ckptCheckpointInstance->response_mutex);
- error = saSendRetry (ckptCheckpointInstance->response_fd, &req_lib_ckpt_checkpointsynchronizeasync,
- sizeof (struct req_lib_ckpt_checkpointsynchronizeasync));
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saRecvRetry (ckptCheckpointInstance->response_fd,
- &res_lib_ckpt_checkpointsynchronizeasync,
- sizeof (struct res_lib_ckpt_checkpointsynchronizeasync));
- error_exit:
- pthread_mutex_unlock (&ckptCheckpointInstance->response_mutex);
- error_put:
- saHandleInstancePut (&checkpointHandleDatabase, checkpointHandle);
- return (error == SA_AIS_OK ? res_lib_ckpt_checkpointsynchronizeasync.header.error : error);
- return (SA_AIS_OK);
- }
|