| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424 |
- /*
- * Copyright (c) 2006-2009 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.
- */
- #include <config.h>
- #ifndef _GNU_SOURCE
- #define _GNU_SOURCE 1
- #endif
- #include <pthread.h>
- #include <assert.h>
- #include <pwd.h>
- #include <grp.h>
- #include <sys/types.h>
- #include <sys/poll.h>
- #include <sys/uio.h>
- #include <sys/mman.h>
- #include <sys/socket.h>
- #include <sys/un.h>
- #include <sys/time.h>
- #include <sys/resource.h>
- #include <sys/wait.h>
- #include <sys/stat.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <errno.h>
- #include <signal.h>
- #include <sched.h>
- #include <time.h>
- #if defined(HAVE_GETPEERUCRED)
- #include <ucred.h>
- #endif
- #include <string.h>
- #include <sys/shm.h>
- #include <sys/sem.h>
- #include <corosync/corotypes.h>
- #include <corosync/list.h>
- #include <corosync/coroipc_types.h>
- #include <corosync/coroipcs.h>
- #include <corosync/coroipc_ipc.h>
- #ifndef MSG_NOSIGNAL
- #define MSG_NOSIGNAL 0
- #endif
- #define SERVER_BACKLOG 5
- #define MSG_SEND_LOCKED 0
- #define MSG_SEND_UNLOCKED 1
- static struct coroipcs_init_state *api;
- DECLARE_LIST_INIT (conn_info_list_head);
- struct outq_item {
- void *msg;
- size_t mlen;
- struct list_head list;
- };
- struct zcb_mapped {
- struct list_head list;
- void *addr;
- size_t size;
- };
- #if defined(_SEM_SEMUN_UNDEFINED)
- union semun {
- int val;
- struct semid_ds *buf;
- unsigned short int *array;
- struct seminfo *__buf;
- };
- #endif
- enum conn_state {
- CONN_STATE_THREAD_INACTIVE = 0,
- CONN_STATE_THREAD_ACTIVE = 1,
- CONN_STATE_THREAD_REQUEST_EXIT = 2,
- CONN_STATE_THREAD_DESTROYED = 3,
- CONN_STATE_LIB_EXIT_CALLED = 4,
- CONN_STATE_DISCONNECT_INACTIVE = 5
- };
- struct conn_info {
- int fd;
- pthread_t thread;
- pthread_attr_t thread_attr;
- unsigned int service;
- enum conn_state state;
- int notify_flow_control_enabled;
- int refcount;
- key_t shmkey;
- key_t semkey;
- int semid;
- unsigned int pending_semops;
- pthread_mutex_t mutex;
- struct control_buffer *control_buffer;
- char *request_buffer;
- char *response_buffer;
- char *dispatch_buffer;
- size_t control_size;
- size_t request_size;
- size_t response_size;
- size_t dispatch_size;
- struct list_head outq_head;
- void *private_data;
- struct list_head list;
- char setup_msg[sizeof (mar_req_setup_t)];
- unsigned int setup_bytes_read;
- struct list_head zcb_mapped_list_head;
- char *sending_allowed_private_data[64];
- };
- static int shared_mem_dispatch_bytes_left (const struct conn_info *conn_info);
- static void outq_flush (struct conn_info *conn_info);
- static int priv_change (struct conn_info *conn_info);
- static void ipc_disconnect (struct conn_info *conn_info);
- static void msg_send (void *conn, const struct iovec *iov, unsigned int iov_len,
- int locked);
- static int
- memory_map (
- const char *path,
- size_t bytes,
- void **buf)
- {
- int fd;
- void *addr_orig;
- void *addr;
- int res;
- fd = open (path, O_RDWR, 0600);
- unlink (path);
- res = ftruncate (fd, bytes);
- addr_orig = mmap (NULL, bytes, PROT_NONE,
- MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
- if (addr_orig == MAP_FAILED) {
- return (-1);
- }
- addr = mmap (addr_orig, bytes, PROT_READ | PROT_WRITE,
- MAP_FIXED | MAP_SHARED, fd, 0);
- if (addr != addr_orig) {
- return (-1);
- }
- #ifdef COROSYNC_BSD
- madvise(addr, bytes, MADV_NOSYNC);
- #endif
- res = close (fd);
- if (res) {
- return (-1);
- }
- *buf = addr_orig;
- return (0);
- }
- static int
- circular_memory_map (
- const char *path,
- size_t bytes,
- void **buf)
- {
- int fd;
- void *addr_orig;
- void *addr;
- int res;
- fd = open (path, O_RDWR, 0600);
- unlink (path);
- res = ftruncate (fd, bytes);
- addr_orig = mmap (NULL, bytes << 1, PROT_NONE,
- MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
- if (addr_orig == MAP_FAILED) {
- return (-1);
- }
- addr = mmap (addr_orig, bytes, PROT_READ | PROT_WRITE,
- MAP_FIXED | MAP_SHARED, fd, 0);
- if (addr != addr_orig) {
- return (-1);
- }
- #ifdef COROSYNC_BSD
- madvise(addr_orig, bytes, MADV_NOSYNC);
- #endif
- addr = mmap (((char *)addr_orig) + bytes,
- bytes, PROT_READ | PROT_WRITE,
- MAP_FIXED | MAP_SHARED, fd, 0);
- #ifdef COROSYNC_BSD
- madvise(((char *)addr_orig) + bytes, bytes, MADV_NOSYNC);
- #endif
- res = close (fd);
- if (res) {
- return (-1);
- }
- *buf = addr_orig;
- return (0);
- }
- static inline int
- circular_memory_unmap (void *buf, size_t bytes)
- {
- int res;
- res = munmap (buf, bytes << 1);
- return (res);
- }
- static inline int zcb_free (struct zcb_mapped *zcb_mapped)
- {
- unsigned int res;
- res = munmap (zcb_mapped->addr, zcb_mapped->size);
- list_del (&zcb_mapped->list);
- free (zcb_mapped);
- return (res);
- }
- static inline int zcb_by_addr_free (struct conn_info *conn_info, void *addr)
- {
- struct list_head *list;
- struct zcb_mapped *zcb_mapped;
- unsigned int res = 0;
- for (list = conn_info->zcb_mapped_list_head.next;
- list != &conn_info->zcb_mapped_list_head; list = list->next) {
- zcb_mapped = list_entry (list, struct zcb_mapped, list);
- if (zcb_mapped->addr == addr) {
- res = zcb_free (zcb_mapped);
- break;
- }
- }
- return (res);
- }
- static inline int zcb_all_free (
- struct conn_info *conn_info)
- {
- struct list_head *list;
- struct zcb_mapped *zcb_mapped;
- for (list = conn_info->zcb_mapped_list_head.next;
- list != &conn_info->zcb_mapped_list_head;) {
- zcb_mapped = list_entry (list, struct zcb_mapped, list);
- list = list->next;
- zcb_free (zcb_mapped);
- }
- return (0);
- }
- static inline int zcb_alloc (
- struct conn_info *conn_info,
- const char *path_to_file,
- size_t size,
- void **addr)
- {
- struct zcb_mapped *zcb_mapped;
- unsigned int res;
- zcb_mapped = malloc (sizeof (struct zcb_mapped));
- if (zcb_mapped == NULL) {
- return (-1);
- }
- res = memory_map (
- path_to_file,
- size,
- addr);
- if (res == -1) {
- return (-1);
- }
- list_init (&zcb_mapped->list);
- zcb_mapped->addr = *addr;
- zcb_mapped->size = size;
- list_add_tail (&zcb_mapped->list, &conn_info->zcb_mapped_list_head);
- return (0);
- }
- static int ipc_thread_active (void *conn)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- int retval = 0;
- pthread_mutex_lock (&conn_info->mutex);
- if (conn_info->state == CONN_STATE_THREAD_ACTIVE) {
- retval = 1;
- }
- pthread_mutex_unlock (&conn_info->mutex);
- return (retval);
- }
- static int ipc_thread_exiting (void *conn)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- int retval = 1;
- pthread_mutex_lock (&conn_info->mutex);
- if (conn_info->state == CONN_STATE_THREAD_INACTIVE) {
- retval = 0;
- } else
- if (conn_info->state == CONN_STATE_THREAD_ACTIVE) {
- retval = 0;
- }
- pthread_mutex_unlock (&conn_info->mutex);
- return (retval);
- }
- /*
- * returns 0 if should be called again, -1 if finished
- */
- static inline int conn_info_destroy (struct conn_info *conn_info)
- {
- unsigned int res;
- void *retval;
- list_del (&conn_info->list);
- list_init (&conn_info->list);
- if (conn_info->state == CONN_STATE_THREAD_REQUEST_EXIT) {
- res = pthread_join (conn_info->thread, &retval);
- conn_info->state = CONN_STATE_THREAD_DESTROYED;
- return (0);
- }
- if (conn_info->state == CONN_STATE_THREAD_INACTIVE ||
- conn_info->state == CONN_STATE_DISCONNECT_INACTIVE) {
- list_del (&conn_info->list);
- close (conn_info->fd);
- api->free (conn_info);
- return (-1);
- }
- if (conn_info->state == CONN_STATE_THREAD_ACTIVE) {
- pthread_kill (conn_info->thread, SIGUSR1);
- return (0);
- }
- api->serialize_lock ();
- /*
- * Retry library exit function if busy
- */
- if (conn_info->state == CONN_STATE_THREAD_DESTROYED) {
- res = api->exit_fn_get (conn_info->service) (conn_info);
- if (res == -1) {
- api->serialize_unlock ();
- return (0);
- } else {
- conn_info->state = CONN_STATE_LIB_EXIT_CALLED;
- }
- }
- pthread_mutex_lock (&conn_info->mutex);
- if (conn_info->refcount > 0) {
- pthread_mutex_unlock (&conn_info->mutex);
- api->serialize_unlock ();
- return (0);
- }
- list_del (&conn_info->list);
- pthread_mutex_unlock (&conn_info->mutex);
- /*
- * Destroy shared memory segment and semaphore
- */
- res = munmap ((void *)conn_info->control_buffer, conn_info->control_size);
- res = munmap ((void *)conn_info->request_buffer, conn_info->request_size);
- res = munmap ((void *)conn_info->response_buffer, conn_info->response_size);
- semctl (conn_info->semid, 0, IPC_RMID);
- /*
- * Free allocated data needed to retry exiting library IPC connection
- */
- if (conn_info->private_data) {
- api->free (conn_info->private_data);
- }
- close (conn_info->fd);
- res = circular_memory_unmap (conn_info->dispatch_buffer, conn_info->dispatch_size);
- zcb_all_free (conn_info);
- api->free (conn_info);
- api->serialize_unlock ();
- return (-1);
- }
- union u {
- uint64_t server_addr;
- void *server_ptr;
- };
- static uint64_t void2serveraddr (void *server_ptr)
- {
- union u u;
- u.server_ptr = server_ptr;
- return (u.server_addr);
- }
- static void *serveraddr2void (uint64_t server_addr)
- {
- union u u;
- u.server_addr = server_addr;
- return (u.server_ptr);
- };
- static inline void zerocopy_operations_process (
- struct conn_info *conn_info,
- coroipc_request_header_t **header_out,
- unsigned int *new_message)
- {
- coroipc_request_header_t *header;
- header = (coroipc_request_header_t *)conn_info->request_buffer;
- if (header->id == ZC_ALLOC_HEADER) {
- mar_req_coroipcc_zc_alloc_t *hdr = (mar_req_coroipcc_zc_alloc_t *)header;
- coroipc_response_header_t res_header;
- void *addr = NULL;
- struct coroipcs_zc_header *zc_header;
- unsigned int res;
- res = zcb_alloc (conn_info, hdr->path_to_file, hdr->map_size,
- &addr);
- zc_header = (struct coroipcs_zc_header *)addr;
- zc_header->server_address = void2serveraddr(addr);
- res_header.size = sizeof (coroipc_response_header_t);
- res_header.id = 0;
- coroipcs_response_send (
- conn_info, &res_header,
- res_header.size);
- *new_message = 0;
- return;
- } else
- if (header->id == ZC_FREE_HEADER) {
- mar_req_coroipcc_zc_free_t *hdr = (mar_req_coroipcc_zc_free_t *)header;
- coroipc_response_header_t res_header;
- void *addr = NULL;
- addr = serveraddr2void (hdr->server_address);
- zcb_by_addr_free (conn_info, addr);
- res_header.size = sizeof (coroipc_response_header_t);
- res_header.id = 0;
- coroipcs_response_send (
- conn_info, &res_header,
- res_header.size);
- *new_message = 0;
- return;
- } else
- if (header->id == ZC_EXECUTE_HEADER) {
- mar_req_coroipcc_zc_execute_t *hdr = (mar_req_coroipcc_zc_execute_t *)header;
- header = (coroipc_request_header_t *)(((char *)serveraddr2void(hdr->server_address) + sizeof (struct coroipcs_zc_header)));
- }
- *header_out = header;
- *new_message = 1;
- }
- static void *pthread_ipc_consumer (void *conn)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- struct sembuf sop;
- int res;
- coroipc_request_header_t *header;
- coroipc_response_header_t coroipc_response_header;
- int send_ok;
- unsigned int new_message;
- #if defined(HAVE_PTHREAD_SETSCHEDPARAM) && defined(HAVE_SCHED_GET_PRIORITY_MAX)
- if (api->sched_policy != 0) {
- res = pthread_setschedparam (conn_info->thread,
- api->sched_policy, api->sched_param);
- }
- #endif
- for (;;) {
- sop.sem_num = 0;
- sop.sem_op = -1;
- sop.sem_flg = 0;
- retry_semop:
- if (ipc_thread_active (conn_info) == 0) {
- coroipcs_refcount_dec (conn_info);
- pthread_exit (0);
- }
- res = semop (conn_info->semid, &sop, 1);
- if ((res == -1) && (errno == EINTR || errno == EAGAIN)) {
- goto retry_semop;
- } else
- if ((res == -1) && (errno == EINVAL || errno == EIDRM)) {
- coroipcs_refcount_dec (conn_info);
- pthread_exit (0);
- }
- zerocopy_operations_process (conn_info, &header, &new_message);
- /*
- * There is no new message to process, continue for loop
- */
- if (new_message == 0) {
- continue;
- }
- coroipcs_refcount_inc (conn);
- send_ok = api->sending_allowed (conn_info->service,
- header->id,
- header,
- conn_info->sending_allowed_private_data);
- if (send_ok) {
- api->serialize_lock();
- api->handler_fn_get (conn_info->service, header->id) (conn_info, header);
- api->serialize_unlock();
- } else {
- /*
- * Overload, tell library to retry
- */
- coroipc_response_header.size = sizeof (coroipc_response_header_t);
- coroipc_response_header.id = 0;
- coroipc_response_header.error = CS_ERR_TRY_AGAIN;
- coroipcs_response_send (conn_info,
- &coroipc_response_header,
- sizeof (coroipc_response_header_t));
- }
- api->sending_allowed_release (conn_info->sending_allowed_private_data);
- coroipcs_refcount_dec (conn);
- }
- pthread_exit (0);
- }
- static int
- req_setup_send (
- struct conn_info *conn_info,
- int error)
- {
- mar_res_setup_t res_setup;
- unsigned int res;
- res_setup.error = error;
- retry_send:
- res = send (conn_info->fd, &res_setup, sizeof (mar_res_setup_t), MSG_WAITALL);
- if (res == -1 && errno == EINTR) {
- goto retry_send;
- } else
- if (res == -1 && errno == EAGAIN) {
- goto retry_send;
- }
- return (0);
- }
- static int
- req_setup_recv (
- struct conn_info *conn_info)
- {
- int res;
- struct msghdr msg_recv;
- struct iovec iov_recv;
- int authenticated = 0;
- #ifdef COROSYNC_LINUX
- struct cmsghdr *cmsg;
- char cmsg_cred[CMSG_SPACE (sizeof (struct ucred))];
- int off = 0;
- int on = 1;
- struct ucred *cred;
- #endif
- msg_recv.msg_iov = &iov_recv;
- msg_recv.msg_iovlen = 1;
- msg_recv.msg_name = 0;
- msg_recv.msg_namelen = 0;
- #ifdef COROSYNC_LINUX
- msg_recv.msg_control = (void *)cmsg_cred;
- msg_recv.msg_controllen = sizeof (cmsg_cred);
- #endif
- #ifdef COROSYNC_SOLARIS
- msg_recv.msg_accrights = 0;
- msg_recv.msg_accrightslen = 0;
- #endif /* COROSYNC_SOLARIS */
- iov_recv.iov_base = &conn_info->setup_msg[conn_info->setup_bytes_read];
- iov_recv.iov_len = sizeof (mar_req_setup_t) - conn_info->setup_bytes_read;
- #ifdef COROSYNC_LINUX
- setsockopt(conn_info->fd, SOL_SOCKET, SO_PASSCRED, &on, sizeof (on));
- #endif
- retry_recv:
- res = recvmsg (conn_info->fd, &msg_recv, MSG_NOSIGNAL);
- if (res == -1 && errno == EINTR) {
- goto retry_recv;
- } else
- if (res == -1 && errno != EAGAIN) {
- return (0);
- } else
- if (res == 0) {
- #if defined(COROSYNC_SOLARIS) || defined(COROSYNC_BSD) || defined(COROSYNC_DARWIN)
- /* On many OS poll never return POLLHUP or POLLERR.
- * EOF is detected when recvmsg return 0.
- */
- ipc_disconnect (conn_info);
- #endif
- return (-1);
- }
- conn_info->setup_bytes_read += res;
- /*
- * currently support getpeerucred, getpeereid, and SO_PASSCRED credential
- * retrieval mechanisms for various Platforms
- */
- #ifdef HAVE_GETPEERUCRED
- /*
- * Solaris and some BSD systems
- */
- {
- ucred_t *uc = NULL;
- uid_t euid = -1;
- gid_t egid = -1;
- if (getpeerucred (conn_info->fd, &uc) == 0) {
- euid = ucred_geteuid (uc);
- egid = ucred_getegid (uc);
- if (api->security_valid (euid, egid)) {
- authenticated = 1;
- }
- ucred_free(uc);
- }
- }
- #elif HAVE_GETPEEREID
- /*
- * Usually MacOSX systems
- */
- {
- uid_t euid;
- gid_t egid;
- euid = -1;
- egid = -1;
- if (getpeereid (conn_info->fd, &euid, &egid) == 0) {
- if (api->security_valid (euid, egid)) {
- authenticated = 1;
- }
- }
- }
- #elif SO_PASSCRED
- /*
- * Usually Linux systems
- */
- cmsg = CMSG_FIRSTHDR (&msg_recv);
- assert (cmsg);
- cred = (struct ucred *)CMSG_DATA (cmsg);
- if (cred) {
- if (api->security_valid (cred->uid, cred->gid)) {
- authenticated = 1;
- }
- }
- #else /* no credentials */
- authenticated = 1;
- api->log_printf ("Platform does not support IPC authentication. Using no authentication\n");
- #endif /* no credentials */
- if (authenticated == 0) {
- api->log_printf ("Invalid IPC credentials.\n");
- ipc_disconnect (conn_info);
- return (-1);
- }
- if (conn_info->setup_bytes_read == sizeof (mar_req_setup_t)) {
- #ifdef COROSYNC_LINUX
- setsockopt(conn_info->fd, SOL_SOCKET, SO_PASSCRED,
- &off, sizeof (off));
- #endif
- return (1);
- }
- return (0);
- }
- static void ipc_disconnect (struct conn_info *conn_info)
- {
- if (conn_info->state == CONN_STATE_THREAD_INACTIVE) {
- conn_info->state = CONN_STATE_DISCONNECT_INACTIVE;
- return;
- }
- if (conn_info->state != CONN_STATE_THREAD_ACTIVE) {
- return;
- }
- pthread_mutex_lock (&conn_info->mutex);
- conn_info->state = CONN_STATE_THREAD_REQUEST_EXIT;
- pthread_mutex_unlock (&conn_info->mutex);
- pthread_kill (conn_info->thread, SIGUSR1);
- }
- static int conn_info_create (int fd)
- {
- struct conn_info *conn_info;
- conn_info = api->malloc (sizeof (struct conn_info));
- if (conn_info == NULL) {
- return (-1);
- }
- memset (conn_info, 0, sizeof (struct conn_info));
- conn_info->fd = fd;
- conn_info->service = SOCKET_SERVICE_INIT;
- conn_info->state = CONN_STATE_THREAD_INACTIVE;
- list_init (&conn_info->outq_head);
- list_init (&conn_info->list);
- list_init (&conn_info->zcb_mapped_list_head);
- list_add (&conn_info->list, &conn_info_list_head);
- api->poll_dispatch_add (fd, conn_info);
- return (0);
- }
- #if defined(COROSYNC_LINUX) || defined(COROSYNC_SOLARIS)
- /* SUN_LEN is broken for abstract namespace
- */
- #define COROSYNC_SUN_LEN(a) sizeof(*(a))
- #else
- #define COROSYNC_SUN_LEN(a) SUN_LEN(a)
- #endif
- /*
- * Exported functions
- */
- extern void coroipcs_ipc_init (
- struct coroipcs_init_state *init_state)
- {
- int server_fd;
- struct sockaddr_un un_addr;
- int res;
- api = init_state;
- /*
- * Create socket for IPC clients, name socket, listen for connections
- */
- #if defined(COROSYNC_SOLARIS)
- server_fd = socket (PF_UNIX, SOCK_STREAM, 0);
- #else
- server_fd = socket (PF_LOCAL, SOCK_STREAM, 0);
- #endif
- if (server_fd == -1) {
- api->log_printf ("Cannot create client connections socket.\n");
- api->fatal_error ("Can't create library listen socket");
- };
- res = fcntl (server_fd, F_SETFL, O_NONBLOCK);
- if (res == -1) {
- api->log_printf ("Could not set non-blocking operation on server socket: %s\n", strerror (errno));
- api->fatal_error ("Could not set non-blocking operation on server socket");
- }
- memset (&un_addr, 0, sizeof (struct sockaddr_un));
- un_addr.sun_family = AF_UNIX;
- #if defined(COROSYNC_BSD) || defined(COROSYNC_DARWIN)
- un_addr.sun_len = SUN_LEN(&un_addr);
- #endif
- #if defined(COROSYNC_LINUX)
- sprintf (un_addr.sun_path + 1, "%s", api->socket_name);
- #else
- {
- struct stat stat_out;
- res = stat (SOCKETDIR, &stat_out);
- if (res == -1 || (res == 0 && !S_ISDIR(stat_out.st_mode))) {
- api->log_printf ("Required directory not present %s\n", SOCKETDIR);
- api->fatal_error ("Please create required directory.");
- }
- sprintf (un_addr.sun_path, "%s/%s", SOCKETDIR, api->socket_name);
- unlink (un_addr.sun_path);
- }
- #endif
- res = bind (server_fd, (struct sockaddr *)&un_addr, COROSYNC_SUN_LEN(&un_addr));
- if (res) {
- api->log_printf ("Could not bind AF_UNIX (%s): %s.\n", un_addr.sun_path, strerror (errno));
- api->fatal_error ("Could not bind to AF_UNIX socket\n");
- }
- /*
- * Allow eveyrone to write to the socket since the IPC layer handles
- * security automatically
- */
- #if !defined(COROSYNC_LINUX)
- res = chmod (un_addr.sun_path, S_IRWXU|S_IRWXG|S_IRWXO);
- #endif
- listen (server_fd, SERVER_BACKLOG);
- /*
- * Setup connection dispatch routine
- */
- api->poll_accept_add (server_fd);
- }
- void coroipcs_ipc_exit (void)
- {
- struct list_head *list;
- struct conn_info *conn_info;
- unsigned int res;
- for (list = conn_info_list_head.next; list != &conn_info_list_head;
- list = list->next) {
- conn_info = list_entry (list, struct conn_info, list);
- /*
- * Unmap memory segments
- */
- res = munmap ((void *)conn_info->control_buffer,
- conn_info->control_size);
- res = munmap ((void *)conn_info->request_buffer,
- conn_info->request_size);
- res = munmap ((void *)conn_info->response_buffer,
- conn_info->response_size);
- res = circular_memory_unmap (conn_info->dispatch_buffer,
- conn_info->dispatch_size);
- semctl (conn_info->semid, 0, IPC_RMID);
- pthread_kill (conn_info->thread, SIGUSR1);
- }
- }
- /*
- * Get the conn info private data
- */
- void *coroipcs_private_data_get (void *conn)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- return (conn_info->private_data);
- }
- int coroipcs_response_send (void *conn, const void *msg, size_t mlen)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- struct sembuf sop;
- int res;
- memcpy (conn_info->response_buffer, msg, mlen);
- sop.sem_num = 1;
- sop.sem_op = 1;
- sop.sem_flg = 0;
- retry_semop:
- res = semop (conn_info->semid, &sop, 1);
- if ((res == -1) && (errno == EINTR || errno == EAGAIN)) {
- goto retry_semop;
- } else
- if ((res == -1) && (errno == EINVAL || errno == EIDRM)) {
- return (0);
- }
- return (0);
- }
- int coroipcs_response_iov_send (void *conn, const struct iovec *iov, unsigned int iov_len)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- struct sembuf sop;
- int res;
- int write_idx = 0;
- int i;
- for (i = 0; i < iov_len; i++) {
- memcpy (&conn_info->response_buffer[write_idx],
- iov[i].iov_base, iov[i].iov_len);
- write_idx += iov[i].iov_len;
- }
- sop.sem_num = 1;
- sop.sem_op = 1;
- sop.sem_flg = 0;
- retry_semop:
- res = semop (conn_info->semid, &sop, 1);
- if ((res == -1) && (errno == EINTR || errno == EAGAIN)) {
- goto retry_semop;
- } else
- if ((res == -1) && (errno == EINVAL || errno == EIDRM)) {
- return (0);
- }
- return (0);
- }
- static int shared_mem_dispatch_bytes_left (const struct conn_info *conn_info)
- {
- unsigned int n_read;
- unsigned int n_write;
- unsigned int bytes_left;
- n_read = conn_info->control_buffer->read;
- n_write = conn_info->control_buffer->write;
- if (n_read <= n_write) {
- bytes_left = conn_info->dispatch_size - n_write + n_read;
- } else {
- bytes_left = n_read - n_write;
- }
- return (bytes_left);
- }
- static void memcpy_dwrap (struct conn_info *conn_info, void *msg, unsigned int len)
- {
- unsigned int write_idx;
- write_idx = conn_info->control_buffer->write;
- memcpy (&conn_info->dispatch_buffer[write_idx], msg, len);
- conn_info->control_buffer->write = (write_idx + len) % conn_info->dispatch_size;
- }
- static void msg_send (void *conn, const struct iovec *iov, unsigned int iov_len,
- int locked)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- struct sembuf sop;
- int res;
- int i;
- char buf;
- for (i = 0; i < iov_len; i++) {
- memcpy_dwrap (conn_info, iov[i].iov_base, iov[i].iov_len);
- }
- buf = !list_empty (&conn_info->outq_head);
- res = send (conn_info->fd, &buf, 1, MSG_NOSIGNAL);
- if (res == -1 && errno == EAGAIN) {
- if (locked == 0) {
- pthread_mutex_lock (&conn_info->mutex);
- }
- conn_info->pending_semops += 1;
- if (locked == 0) {
- pthread_mutex_unlock (&conn_info->mutex);
- }
- api->poll_dispatch_modify (conn_info->fd,
- POLLIN|POLLOUT|POLLNVAL);
- } else
- if (res == -1) {
- ipc_disconnect (conn_info);
- }
- sop.sem_num = 2;
- sop.sem_op = 1;
- sop.sem_flg = 0;
- retry_semop:
- res = semop (conn_info->semid, &sop, 1);
- if ((res == -1) && (errno == EINTR || errno == EAGAIN)) {
- goto retry_semop;
- } else
- if ((res == -1) && (errno == EINVAL || errno == EIDRM)) {
- return;
- }
- }
- static void outq_flush (struct conn_info *conn_info) {
- struct list_head *list, *list_next;
- struct outq_item *outq_item;
- unsigned int bytes_left;
- struct iovec iov;
- char buf;
- int res;
- pthread_mutex_lock (&conn_info->mutex);
- if (list_empty (&conn_info->outq_head)) {
- buf = 3;
- res = send (conn_info->fd, &buf, 1, MSG_NOSIGNAL);
- pthread_mutex_unlock (&conn_info->mutex);
- return;
- }
- for (list = conn_info->outq_head.next;
- list != &conn_info->outq_head; list = list_next) {
- list_next = list->next;
- outq_item = list_entry (list, struct outq_item, list);
- bytes_left = shared_mem_dispatch_bytes_left (conn_info);
- if (bytes_left > outq_item->mlen) {
- iov.iov_base = outq_item->msg;
- iov.iov_len = outq_item->mlen;
- msg_send (conn_info, &iov, 1, MSG_SEND_UNLOCKED);
- list_del (list);
- api->free (iov.iov_base);
- api->free (outq_item);
- } else {
- break;
- }
- }
- pthread_mutex_unlock (&conn_info->mutex);
- }
- static int priv_change (struct conn_info *conn_info)
- {
- mar_req_priv_change req_priv_change;
- unsigned int res;
- union semun semun;
- struct semid_ds ipc_set;
- int i;
- retry_recv:
- res = recv (conn_info->fd, &req_priv_change,
- sizeof (mar_req_priv_change),
- MSG_NOSIGNAL);
- if (res == -1 && errno == EINTR) {
- goto retry_recv;
- }
- if (res == -1 && errno == EAGAIN) {
- goto retry_recv;
- }
- if (res == -1 && errno != EAGAIN) {
- return (-1);
- }
- #if defined(COROSYNC_SOLARIS) || defined(COROSYNC_BSD) || defined(COROSYNC_DARWIN)
- /* Error on socket, EOF is detected when recv return 0
- */
- if (res == 0) {
- return (-1);
- }
- #endif
- ipc_set.sem_perm.uid = req_priv_change.euid;
- ipc_set.sem_perm.gid = req_priv_change.egid;
- ipc_set.sem_perm.mode = 0600;
- semun.buf = &ipc_set;
- for (i = 0; i < 3; i++) {
- res = semctl (conn_info->semid, 0, IPC_SET, semun);
- if (res == -1) {
- return (-1);
- }
- }
- return (0);
- }
- static void msg_send_or_queue (void *conn, const struct iovec *iov, unsigned int iov_len)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- unsigned int bytes_left;
- unsigned int bytes_msg = 0;
- int i;
- struct outq_item *outq_item;
- char *write_buf = 0;
- /*
- * Exit transmission if the connection is dead
- */
- if (ipc_thread_active (conn) == 0) {
- return;
- }
- bytes_left = shared_mem_dispatch_bytes_left (conn_info);
- for (i = 0; i < iov_len; i++) {
- bytes_msg += iov[i].iov_len;
- }
- if (bytes_left < bytes_msg || list_empty (&conn_info->outq_head) == 0) {
- outq_item = api->malloc (sizeof (struct outq_item));
- if (outq_item == NULL) {
- ipc_disconnect (conn);
- return;
- }
- outq_item->msg = api->malloc (bytes_msg);
- if (outq_item->msg == 0) {
- api->free (outq_item);
- ipc_disconnect (conn);
- return;
- }
- write_buf = outq_item->msg;
- for (i = 0; i < iov_len; i++) {
- memcpy (write_buf, iov[i].iov_base, iov[i].iov_len);
- write_buf += iov[i].iov_len;
- }
- outq_item->mlen = bytes_msg;
- list_init (&outq_item->list);
- pthread_mutex_lock (&conn_info->mutex);
- if (list_empty (&conn_info->outq_head)) {
- conn_info->notify_flow_control_enabled = 1;
- api->poll_dispatch_modify (conn_info->fd,
- POLLIN|POLLOUT|POLLNVAL);
- }
- list_add_tail (&outq_item->list, &conn_info->outq_head);
- pthread_mutex_unlock (&conn_info->mutex);
- return;
- }
- msg_send (conn, iov, iov_len, MSG_SEND_LOCKED);
- }
- void coroipcs_refcount_inc (void *conn)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- pthread_mutex_lock (&conn_info->mutex);
- conn_info->refcount++;
- pthread_mutex_unlock (&conn_info->mutex);
- }
- void coroipcs_refcount_dec (void *conn)
- {
- struct conn_info *conn_info = (struct conn_info *)conn;
- pthread_mutex_lock (&conn_info->mutex);
- conn_info->refcount--;
- pthread_mutex_unlock (&conn_info->mutex);
- }
- int coroipcs_dispatch_send (void *conn, const void *msg, size_t mlen)
- {
- struct iovec iov;
- iov.iov_base = (void *)msg;
- iov.iov_len = mlen;
- msg_send_or_queue (conn, &iov, 1);
- return (0);
- }
- int coroipcs_dispatch_iov_send (void *conn, const struct iovec *iov, unsigned int iov_len)
- {
- msg_send_or_queue (conn, iov, iov_len);
- return (0);
- }
- int coroipcs_handler_accept (
- int fd,
- int revent,
- void *data)
- {
- socklen_t addrlen;
- struct sockaddr_un un_addr;
- int new_fd;
- #ifdef COROSYNC_LINUX
- int on = 1;
- #endif
- int res;
- addrlen = sizeof (struct sockaddr_un);
- retry_accept:
- new_fd = accept (fd, (struct sockaddr *)&un_addr, &addrlen);
- if (new_fd == -1 && errno == EINTR) {
- goto retry_accept;
- }
- if (new_fd == -1) {
- api->log_printf ("Could not accept Library connection: %s\n", strerror (errno));
- return (0); /* This is an error, but -1 would indicate disconnect from poll loop */
- }
- res = fcntl (new_fd, F_SETFL, O_NONBLOCK);
- if (res == -1) {
- api->log_printf ("Could not set non-blocking operation on library connection: %s\n", strerror (errno));
- close (new_fd);
- return (0); /* This is an error, but -1 would indicate disconnect from poll loop */
- }
- /*
- * Valid accept
- */
- /*
- * Request credentials of sender provided by kernel
- */
- #ifdef COROSYNC_LINUX
- setsockopt(new_fd, SOL_SOCKET, SO_PASSCRED, &on, sizeof (on));
- #endif
- res = conn_info_create (new_fd);
- if (res != 0) {
- close (new_fd);
- }
- return (0);
- }
- int coroipcs_handler_dispatch (
- int fd,
- int revent,
- void *context)
- {
- mar_req_setup_t *req_setup;
- struct conn_info *conn_info = (struct conn_info *)context;
- int res;
- char buf;
- if (ipc_thread_exiting (conn_info)) {
- return conn_info_destroy (conn_info);
- }
- /*
- * If an error occurs, request exit
- */
- if (revent & (POLLERR|POLLHUP)) {
- ipc_disconnect (conn_info);
- return (0);
- }
- /*
- * Read the header and process it
- */
- if (conn_info->service == SOCKET_SERVICE_INIT && (revent & POLLIN)) {
- /*
- * Receive in a nonblocking fashion the request
- * IF security invalid, send ERR_SECURITY, otherwise
- * send OK
- */
- res = req_setup_recv (conn_info);
- if (res == -1) {
- req_setup_send (conn_info, CS_ERR_SECURITY);
- }
- if (res != 1) {
- return (0);
- }
- req_setup_send (conn_info, CS_OK);
- pthread_mutex_init (&conn_info->mutex, NULL);
- req_setup = (mar_req_setup_t *)conn_info->setup_msg;
- /*
- * Is the service registered ?
- */
- if (api->service_available (req_setup->service) == 0) {
- ipc_disconnect (conn_info);
- return (0);
- }
- conn_info->semkey = req_setup->semkey;
- res = memory_map (
- req_setup->control_file,
- req_setup->control_size,
- (void *)&conn_info->control_buffer);
- conn_info->control_size = req_setup->control_size;
- res = memory_map (
- req_setup->request_file,
- req_setup->request_size,
- (void *)&conn_info->request_buffer);
- conn_info->request_size = req_setup->request_size;
- res = memory_map (
- req_setup->response_file,
- req_setup->response_size,
- (void *)&conn_info->response_buffer);
- conn_info->response_size = req_setup->response_size;
- res = circular_memory_map (
- req_setup->dispatch_file,
- req_setup->dispatch_size,
- (void *)&conn_info->dispatch_buffer);
- conn_info->dispatch_size = req_setup->dispatch_size;
- conn_info->service = req_setup->service;
- conn_info->refcount = 0;
- conn_info->notify_flow_control_enabled = 0;
- conn_info->setup_bytes_read = 0;
- conn_info->semid = semget (conn_info->semkey, 3, 0600);
- conn_info->pending_semops = 0;
- /*
- * ipc thread is the only reference at startup
- */
- conn_info->refcount = 1;
- conn_info->state = CONN_STATE_THREAD_ACTIVE;
- conn_info->private_data = api->malloc (api->private_data_size_get (conn_info->service));
- memset (conn_info->private_data, 0,
- api->private_data_size_get (conn_info->service));
- api->init_fn_get (conn_info->service) (conn_info);
- pthread_attr_init (&conn_info->thread_attr);
- /*
- * IA64 needs more stack space then other arches
- */
- #if defined(__ia64__)
- pthread_attr_setstacksize (&conn_info->thread_attr, 400000);
- #else
- pthread_attr_setstacksize (&conn_info->thread_attr, 200000);
- #endif
- pthread_attr_setdetachstate (&conn_info->thread_attr, PTHREAD_CREATE_JOINABLE);
- res = pthread_create (&conn_info->thread,
- &conn_info->thread_attr,
- pthread_ipc_consumer,
- conn_info);
- /*
- * Security check - disallow multiple configurations of
- * the ipc connection
- */
- if (conn_info->service == SOCKET_SERVICE_INIT) {
- conn_info->service = -1;
- }
- } else
- if (revent & POLLIN) {
- coroipcs_refcount_inc (conn_info);
- res = recv (fd, &buf, 1, MSG_NOSIGNAL);
- if (res == 1) {
- switch (buf) {
- case MESSAGE_REQ_OUTQ_FLUSH:
- outq_flush (conn_info);
- break;
- case MESSAGE_REQ_CHANGE_EUID:
- if (priv_change (conn_info) == -1) {
- ipc_disconnect (conn_info);
- }
- break;
- default:
- res = 0;
- break;
- }
- }
- #if defined(COROSYNC_SOLARIS) || defined(COROSYNC_BSD) || defined(COROSYNC_DARWIN)
- /* On many OS poll never return POLLHUP or POLLERR.
- * EOF is detected when recvmsg return 0.
- */
- if (res == 0) {
- ipc_disconnect (conn_info);
- coroipcs_refcount_dec (conn_info);
- return (0);
- }
- #endif
- coroipcs_refcount_dec (conn_info);
- }
- coroipcs_refcount_inc (conn_info);
- pthread_mutex_lock (&conn_info->mutex);
- if ((conn_info->state == CONN_STATE_THREAD_ACTIVE) && (revent & POLLOUT)) {
- buf = !list_empty (&conn_info->outq_head);
- for (; conn_info->pending_semops;) {
- res = send (conn_info->fd, &buf, 1, MSG_NOSIGNAL);
- if (res == 1) {
- conn_info->pending_semops--;
- } else {
- break;
- }
- }
- if (conn_info->notify_flow_control_enabled) {
- buf = 2;
- res = send (conn_info->fd, &buf, 1, MSG_NOSIGNAL);
- if (res == 1) {
- conn_info->notify_flow_control_enabled = 0;
- }
- }
- if (conn_info->notify_flow_control_enabled == 0 &&
- conn_info->pending_semops == 0) {
- api->poll_dispatch_modify (conn_info->fd,
- POLLIN|POLLNVAL);
- }
- }
- pthread_mutex_unlock (&conn_info->mutex);
- coroipcs_refcount_dec (conn_info);
- return (0);
- }
|