| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657 |
- /*
- * vi: set autoindent tabstop=4 shiftwidth=4 :
- *
- * 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 <stdlib.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <errno.h>
- #include <sys/ioctl.h>
- #include <sys/types.h>
- #include <sys/uio.h>
- #include <sys/socket.h>
- #include <sys/select.h>
- #include <sys/time.h>
- #include <sys/un.h>
- #include <net/if.h>
- #include <arpa/inet.h>
- #include <netinet/in.h>
- #include <assert.h>
- #include "../include/ais_types.h"
- #include "../include/ipc_gen.h"
- #include "util.h"
- enum SA_HANDLE_STATE {
- SA_HANDLE_STATE_EMPTY,
- SA_HANDLE_STATE_PENDINGREMOVAL,
- SA_HANDLE_STATE_ACTIVE
- };
- struct saHandle {
- int state;
- void *instance;
- int refCount;
- uint32_t check;
- };
- SaErrorT
- saServiceConnect (
- int *fdOut,
- enum service_types service)
- {
- int fd;
- int result;
- struct sockaddr_un address;
- struct req_lib_response_init req_lib_response_init;
- struct res_lib_response_init res_lib_response_init;
- SaErrorT error;
- gid_t egid;
- /*
- * Allow set group id binaries to be authenticated
- */
- egid = getegid();
- setregid (egid, -1);
- memset (&address, 0, sizeof (struct sockaddr_un));
- address.sun_family = PF_UNIX;
- strcpy (address.sun_path + 1, "libais.socket");
- fd = socket (PF_UNIX, SOCK_STREAM, 0);
- if (fd == -1) {
- return (SA_AIS_ERR_NO_RESOURCES);
- }
- result = connect (fd, (struct sockaddr *)&address, sizeof (address));
- if (result == -1) {
- return (SA_AIS_ERR_TRY_AGAIN);
- }
- req_lib_response_init.resdis_header.size = sizeof (req_lib_response_init);
- req_lib_response_init.resdis_header.id = MESSAGE_REQ_RESPONSE_INIT;
- req_lib_response_init.resdis_header.service = service;
- error = saSendRetry (fd, &req_lib_response_init,
- sizeof (struct req_lib_response_init), MSG_NOSIGNAL);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saRecvRetry (fd, &res_lib_response_init,
- sizeof (struct res_lib_response_init), MSG_WAITALL | MSG_NOSIGNAL);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- /*
- * Check for security errors
- */
- if (res_lib_response_init.header.error != SA_AIS_OK) {
- error = res_lib_response_init.header.error;
- goto error_exit;
- }
- *fdOut = fd;
- return (SA_AIS_OK);
- error_exit:
- close (fd);
- return (error);
- }
- SaErrorT
- saServiceConnectTwo (
- int *responseOut,
- int *callbackOut,
- enum service_types service)
- {
- int responseFD;
- int callbackFD;
- int result;
- struct sockaddr_un address;
- struct req_lib_response_init req_lib_response_init;
- struct res_lib_response_init res_lib_response_init;
- struct req_lib_dispatch_init req_lib_dispatch_init;
- struct res_lib_dispatch_init res_lib_dispatch_init;
- SaErrorT error;
- gid_t egid;
- /*
- * Allow set group id binaries to be authenticated
- */
- egid = getegid();
- setregid (egid, -1);
- memset (&address, 0, sizeof (struct sockaddr_un));
- address.sun_family = PF_UNIX;
- strcpy (address.sun_path + 1, "libais.socket");
- responseFD = socket (PF_UNIX, SOCK_STREAM, 0);
- if (responseFD == -1) {
- return (SA_AIS_ERR_NO_RESOURCES);
- }
- result = connect (responseFD, (struct sockaddr *)&address, sizeof (address));
- if (result == -1) {
- return (SA_AIS_ERR_TRY_AGAIN);
- }
- req_lib_response_init.resdis_header.size = sizeof (req_lib_response_init);
- req_lib_response_init.resdis_header.id = MESSAGE_REQ_RESPONSE_INIT;
- req_lib_response_init.resdis_header.service = service;
- error = saSendRetry (responseFD, &req_lib_response_init,
- sizeof (struct req_lib_response_init),
- MSG_NOSIGNAL);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error = saRecvRetry (responseFD, &res_lib_response_init,
- sizeof (struct res_lib_response_init),
- MSG_WAITALL | MSG_NOSIGNAL);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- /*
- * Check for security errors
- */
- if (res_lib_response_init.header.error != SA_AIS_OK) {
- error = res_lib_response_init.header.error;
- goto error_exit;
- }
- *responseOut = responseFD;
- /* if I comment out the 4 lines below the executive crashes */
- callbackFD = socket (PF_UNIX, SOCK_STREAM, 0);
- if (callbackFD == -1) {
- return (SA_AIS_ERR_NO_RESOURCES);
- }
- result = connect (callbackFD, (struct sockaddr *)&address, sizeof (address));
- if (result == -1) {
- return (SA_AIS_ERR_TRY_AGAIN);
- }
- req_lib_dispatch_init.resdis_header.size = sizeof (req_lib_dispatch_init);
- req_lib_dispatch_init.resdis_header.id = MESSAGE_REQ_DISPATCH_INIT;
- req_lib_dispatch_init.resdis_header.service = service;
- req_lib_dispatch_init.conn_info = res_lib_response_init.conn_info;
- error = saSendRetry (callbackFD, &req_lib_dispatch_init,
- sizeof (struct req_lib_dispatch_init),
- MSG_NOSIGNAL);
- if (error != SA_AIS_OK) {
- goto error_exit_two;
- }
- error = saRecvRetry (callbackFD, &res_lib_dispatch_init,
- sizeof (struct res_lib_dispatch_init),
- MSG_WAITALL | MSG_NOSIGNAL);
- if (error != SA_AIS_OK) {
- goto error_exit_two;
- }
- /*
- * Check for security errors
- */
- if (res_lib_dispatch_init.header.error != SA_AIS_OK) {
- error = res_lib_dispatch_init.header.error;
- goto error_exit;
- }
- *callbackOut = callbackFD;
- return (SA_AIS_OK);
- error_exit_two:
- close (callbackFD);
- error_exit:
- close (responseFD);
- return (error);
- }
- SaErrorT
- saRecvRetry (
- int s,
- void *msg,
- size_t len,
- int flags)
- {
- SaErrorT error = SA_AIS_OK;
- int result;
- struct msghdr msg_recv;
- struct iovec iov_recv;
- char *rbuf = (char *)msg;
- int processed = 0;
- msg_recv.msg_iov = &iov_recv;
- msg_recv.msg_iovlen = 1;
- msg_recv.msg_name = 0;
- msg_recv.msg_namelen = 0;
- msg_recv.msg_control = 0;
- msg_recv.msg_controllen = 0;
- msg_recv.msg_flags = 0;
- retry_recv:
- iov_recv.iov_base = (void *)&rbuf[processed];
- iov_recv.iov_len = len - processed;
- result = recvmsg (s, &msg_recv, flags);
- if (result == -1 && errno == EINTR) {
- goto retry_recv;
- }
- if (result == -1 || result == 0) {
- error = SA_AIS_ERR_LIBRARY;
- goto error_exit;
- }
- processed += result;
- if (processed != len) {
- goto retry_recv;
- }
- assert (processed == len);
- error_exit:
- return (error);
- }
- struct res_overlay {
- struct res_header header;
- char payload[0];
- };
- SaErrorT
- saSendRetry (
- int s,
- const void *msg,
- size_t len,
- int flags)
- {
- SaErrorT error = SA_AIS_OK;
- int result;
- struct msghdr msg_send;
- struct iovec iov_send;
- iov_send.iov_base = (void *)msg;
- iov_send.iov_len = len;
- msg_send.msg_iov = &iov_send;
- msg_send.msg_iovlen = 1;
- msg_send.msg_name = 0;
- msg_send.msg_namelen = 0;
- msg_send.msg_control = 0;
- msg_send.msg_controllen = 0;
- msg_send.msg_flags = 0;
- retry_send:
- result = sendmsg (s, &msg_send, flags);
- if (result == -1 && errno == EINTR) {
- goto retry_send;
- }
- if (result == -1) {
- error = SA_AIS_ERR_LIBRARY;
- }
- return (error);
- }
- SaErrorT saSendMsgRetry (
- int s,
- struct iovec *iov,
- int iov_len)
- {
- SaErrorT error = SA_AIS_OK;
- int result;
- struct msghdr msg_send;
- msg_send.msg_iov = iov;
- msg_send.msg_iovlen = iov_len;
- msg_send.msg_name = 0;
- msg_send.msg_namelen = 0;
- msg_send.msg_control = 0;
- msg_send.msg_controllen = 0;
- msg_send.msg_flags = 0;
- retry_send:
- result = sendmsg (s, &msg_send, MSG_NOSIGNAL);
- if (result == -1 && errno == EINTR) {
- goto retry_send;
- }
- if (result == -1) {
- error = SA_AIS_ERR_LIBRARY;
- }
- return (error);
- }
- SaErrorT saSendMsgReceiveReply (
- int s,
- struct iovec *iov,
- int iov_len,
- void *responseMessage,
- int responseLen)
- {
- SaErrorT error = SA_AIS_OK;
- error = saSendMsgRetry (s, iov, iov_len);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
-
- error = saRecvRetry (s, responseMessage, responseLen,
- MSG_WAITALL | MSG_NOSIGNAL);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error_exit:
- return (error);
- }
- SaErrorT saSendReceiveReply (
- int s,
- void *requestMessage,
- int requestLen,
- void *responseMessage,
- int responseLen)
- {
- SaErrorT error = SA_AIS_OK;
- error = saSendRetry (s, requestMessage, requestLen,
- MSG_NOSIGNAL);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
-
- error = saRecvRetry (s, responseMessage, responseLen,
- MSG_WAITALL | MSG_NOSIGNAL);
- if (error != SA_AIS_OK) {
- goto error_exit;
- }
- error_exit:
- return (error);
- }
- SaErrorT
- saPollRetry (
- struct pollfd *ufds,
- unsigned int nfds,
- int timeout)
- {
- SaErrorT error = SA_AIS_OK;
- int result;
- retry_poll:
- result = poll (ufds, nfds, timeout);
- if (result == -1 && errno == EINTR) {
- goto retry_poll;
- }
- if (result == -1) {
- error = SA_AIS_ERR_LIBRARY;
- }
- return (error);
- }
- SaErrorT
- saHandleCreate (
- struct saHandleDatabase *handleDatabase,
- int instanceSize,
- SaUint64T *handleOut)
- {
- uint32_t handle;
- uint32_t check;
- void *newHandles;
- int found = 0;
- void *instance;
- pthread_mutex_lock (&handleDatabase->mutex);
- for (handle = 0; handle < handleDatabase->handleCount; handle++) {
- if (handleDatabase->handles[handle].state == SA_HANDLE_STATE_EMPTY) {
- found = 1;
- break;
- }
- }
- if (found == 0) {
- handleDatabase->handleCount += 1;
- newHandles = (struct saHandle *)realloc (handleDatabase->handles,
- sizeof (struct saHandle) * handleDatabase->handleCount);
- if (newHandles == 0) {
- pthread_mutex_unlock (&handleDatabase->mutex);
- return (SA_AIS_ERR_NO_MEMORY);
- }
- handleDatabase->handles = newHandles;
- }
- instance = malloc (instanceSize);
- if (instance == 0) {
- return (SA_AIS_ERR_NO_MEMORY);
- }
- check = random();
- memset (instance, 0, instanceSize);
- handleDatabase->handles[handle].state = SA_HANDLE_STATE_ACTIVE;
- handleDatabase->handles[handle].instance = instance;
- handleDatabase->handles[handle].refCount = 1;
- handleDatabase->handles[handle].check = check;
- *handleOut = (SaUint64T)((uint64_t)check << 32 | handle);
- pthread_mutex_unlock (&handleDatabase->mutex);
- return (SA_AIS_OK);
- }
- SaErrorT
- saHandleDestroy (
- struct saHandleDatabase *handleDatabase,
- SaUint64T inHandle)
- {
- SaAisErrorT error = SA_AIS_OK;
- uint32_t check = inHandle >> 32;
- uint32_t handle = inHandle & 0xffffffff;
- pthread_mutex_lock (&handleDatabase->mutex);
- if (check != handleDatabase->handles[handle].check) {
- error = SA_AIS_ERR_BAD_HANDLE;
- goto error_exit;
- }
- handleDatabase->handles[handle].state = SA_HANDLE_STATE_PENDINGREMOVAL;
- error_exit:
- pthread_mutex_unlock (&handleDatabase->mutex);
- saHandleInstancePut (handleDatabase, inHandle);
- return (error);
- }
- SaErrorT
- saHandleInstanceGet (
- struct saHandleDatabase *handleDatabase,
- SaUint64T inHandle,
- void **instance)
- {
- uint32_t check = inHandle >> 32;
- uint32_t handle = inHandle & 0xffffffff;
- SaErrorT error = SA_AIS_OK;
- pthread_mutex_lock (&handleDatabase->mutex);
- if (handle >= (SaUint64T)handleDatabase->handleCount) {
- error = SA_AIS_ERR_BAD_HANDLE;
- goto error_exit;
- }
- if (handleDatabase->handles[handle].state != SA_HANDLE_STATE_ACTIVE) {
- error = SA_AIS_ERR_BAD_HANDLE;
- goto error_exit;
- }
- if (check != handleDatabase->handles[handle].check) {
- error = SA_AIS_ERR_BAD_HANDLE;
- goto error_exit;
- }
- *instance = handleDatabase->handles[handle].instance;
- handleDatabase->handles[handle].refCount += 1;
- error_exit:
- pthread_mutex_unlock (&handleDatabase->mutex);
- return (error);
- }
- SaErrorT
- saHandleInstancePut (
- struct saHandleDatabase *handleDatabase,
- SaUint64T inHandle)
- {
- void *instance;
- SaAisErrorT error = SA_AIS_OK;
- uint32_t check = inHandle >> 32;
- uint32_t handle = inHandle & 0xffffffff;
- pthread_mutex_lock (&handleDatabase->mutex);
- if (check != handleDatabase->handles[handle].check) {
- error = SA_AIS_ERR_BAD_HANDLE;
- goto error_exit;
- }
- handleDatabase->handles[handle].refCount -= 1;
- assert (handleDatabase->handles[handle].refCount >= 0);
- if (handleDatabase->handles[handle].refCount == 0) {
- instance = (handleDatabase->handles[handle].instance);
- handleDatabase->handleInstanceDestructor (instance);
- free (instance);
- memset (&handleDatabase->handles[handle], 0, sizeof (struct saHandle));
- }
- error_exit:
- pthread_mutex_unlock (&handleDatabase->mutex);
- return (error);
- }
- SaErrorT
- saVersionVerify (
- struct saVersionDatabase *versionDatabase,
- SaVersionT *version)
- {
- int i;
- SaErrorT error = SA_AIS_ERR_VERSION;
- if (version == 0) {
- return (SA_AIS_ERR_INVALID_PARAM);
- }
- /*
- * Look for a release code that we support. If we find it then
- * make sure that the supported major version is >= to the required one.
- * In any case we return what we support in the version structure.
- */
- for (i = 0; i < versionDatabase->versionCount; i++) {
- /*
- * Check if the caller requires and old release code that we don't support.
- */
- if (version->releaseCode < versionDatabase->versionsSupported[i].releaseCode) {
- break;
- }
- /*
- * Check if we can support this release code.
- */
- if (version->releaseCode == versionDatabase->versionsSupported[i].releaseCode) {
- /*
- * Check if we can support the major version requested.
- */
- if (versionDatabase->versionsSupported[i].major >= version->major) {
- error = SA_AIS_OK;
- break;
- }
- /*
- * We support the release code, but not the major version.
- */
- break;
- }
- }
- /*
- * If we fall out of the if loop, the caller requires a release code
- * beyond what we support.
- */
- if (i == versionDatabase->versionCount) {
- i = versionDatabase->versionCount - 1;
- }
- /*
- * Tell the caller what we support
- */
- memcpy(version, &versionDatabase->versionsSupported[i], sizeof(*version));
- return (error);
- }
- /*
- * Get the time of day and convert to nanoseconds
- */
- SaTimeT clustTimeNow(void)
- {
- struct timeval tv;
- SaTimeT time_now;
- if (gettimeofday(&tv, 0)) {
- return 0ULL;
- }
- time_now = (SaTimeT)(tv.tv_sec) * 1000000000ULL;
- time_now += (SaTimeT)(tv.tv_usec) * 1000ULL;
- return time_now;
- }
|