mirror of
				https://git.proxmox.com/git/mirror_corosync
				synced 2025-10-31 10:51:36 +00:00 
			
		
		
		
	 5408399b23
			
		
	
	
		5408399b23
		
	
	
	
	
		
			
			of the dispatch if they were sent by a service engine. git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@2754 fd59a12c-fef9-0310-b244-a6a79926bd2f
		
			
				
	
	
		
			423 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			423 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2008, 2009 Red Hat, Inc.
 | |
|  *
 | |
|  * All rights reserved.
 | |
|  *
 | |
|  * Author: Christine Caulfield (ccaulfie@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.
 | |
|  */
 | |
| /*
 | |
|  * Provides a quorum API using the corosync executive
 | |
|  */
 | |
| 
 | |
| #include <config.h>
 | |
| 
 | |
| #include <stdlib.h>
 | |
| #include <string.h>
 | |
| #include <unistd.h>
 | |
| #include <sys/types.h>
 | |
| #include <sys/socket.h>
 | |
| #include <errno.h>
 | |
| 
 | |
| #include <corosync/corotypes.h>
 | |
| #include <corosync/coroipc_types.h>
 | |
| #include <corosync/coroipcc.h>
 | |
| #include <corosync/corodefs.h>
 | |
| #include <corosync/hdb.h>
 | |
| 
 | |
| #include <corosync/quorum.h>
 | |
| #include <corosync/ipc_quorum.h>
 | |
| 
 | |
| #include "util.h"
 | |
| 
 | |
| struct quorum_inst {
 | |
| 	hdb_handle_t handle;
 | |
| 	int finalize;
 | |
| 	const void *context;
 | |
| 	quorum_callbacks_t callbacks;
 | |
| };
 | |
| 
 | |
| DECLARE_HDB_DATABASE(quorum_handle_t_db,NULL);
 | |
| 
 | |
| cs_error_t quorum_initialize (
 | |
| 	quorum_handle_t *handle,
 | |
| 	quorum_callbacks_t *callbacks)
 | |
| {
 | |
| 	cs_error_t error;
 | |
| 	struct quorum_inst *quorum_inst;
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_create (&quorum_handle_t_db, sizeof (struct quorum_inst), handle));
 | |
| 	if (error != CS_OK) {
 | |
| 		goto error_no_destroy;
 | |
| 	}
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_get (&quorum_handle_t_db, *handle, (void *)&quorum_inst));
 | |
| 	if (error != CS_OK) {
 | |
| 		goto error_destroy;
 | |
| 	}
 | |
| 
 | |
| 	error = coroipcc_service_connect (
 | |
| 		COROSYNC_SOCKET_NAME,
 | |
| 		QUORUM_SERVICE,
 | |
| 		IPC_REQUEST_SIZE,
 | |
| 		IPC_RESPONSE_SIZE,
 | |
| 		IPC_DISPATCH_SIZE,
 | |
| 		&quorum_inst->handle);
 | |
| 	if (error != CS_OK) {
 | |
| 		goto error_put_destroy;
 | |
| 	}
 | |
| 
 | |
| 	if (callbacks)
 | |
| 		memcpy(&quorum_inst->callbacks, callbacks, sizeof (callbacks));
 | |
| 	else
 | |
| 		memset(&quorum_inst->callbacks, 0, sizeof (callbacks));
 | |
| 
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, *handle);
 | |
| 
 | |
| 	return (CS_OK);
 | |
| 
 | |
| error_put_destroy:
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, *handle);
 | |
| error_destroy:
 | |
| 	(void)hdb_handle_destroy (&quorum_handle_t_db, *handle);
 | |
| error_no_destroy:
 | |
| 	return (error);
 | |
| }
 | |
| 
 | |
| cs_error_t quorum_finalize (
 | |
| 	quorum_handle_t handle)
 | |
| {
 | |
| 	struct quorum_inst *quorum_inst;
 | |
| 	cs_error_t error;
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_get (&quorum_handle_t_db, handle, (void *)&quorum_inst));
 | |
| 	if (error != CS_OK) {
 | |
| 		return (error);
 | |
| 	}
 | |
| 
 | |
| 	/*
 | |
| 	 * Another thread has already started finalizing
 | |
| 	 */
 | |
| 	if (quorum_inst->finalize) {
 | |
| 		(void)hdb_handle_put (&quorum_handle_t_db, handle);
 | |
| 		return (CS_ERR_BAD_HANDLE);
 | |
| 	}
 | |
| 
 | |
| 	quorum_inst->finalize = 1;
 | |
| 
 | |
| 	coroipcc_service_disconnect (quorum_inst->handle);
 | |
| 
 | |
| 	(void)hdb_handle_destroy (&quorum_handle_t_db, handle);
 | |
| 
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, handle);
 | |
| 
 | |
| 	return (CS_OK);
 | |
| }
 | |
| 
 | |
| cs_error_t quorum_getquorate (
 | |
| 	quorum_handle_t handle,
 | |
| 	int *quorate)
 | |
| {
 | |
| 	cs_error_t error;
 | |
| 	struct quorum_inst *quorum_inst;
 | |
| 	struct iovec iov;
 | |
| 	coroipc_request_header_t req;
 | |
| 	struct res_lib_quorum_getquorate res_lib_quorum_getquorate;
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_get (&quorum_handle_t_db, handle, (void *)&quorum_inst));
 | |
| 	if (error != CS_OK) {
 | |
| 		return (error);
 | |
| 	}
 | |
| 
 | |
| 	req.size = sizeof (req);
 | |
| 	req.id = MESSAGE_REQ_QUORUM_GETQUORATE;
 | |
| 
 | |
| 	iov.iov_base = (char *)&req;
 | |
| 	iov.iov_len = sizeof (req);
 | |
| 
 | |
|        error = coroipcc_msg_send_reply_receive (
 | |
| 		quorum_inst->handle,
 | |
| 		&iov,
 | |
| 		1,
 | |
| 		&res_lib_quorum_getquorate,
 | |
| 		sizeof (struct res_lib_quorum_getquorate));
 | |
| 
 | |
| 	if (error != CS_OK) {
 | |
| 		goto error_exit;
 | |
| 	}
 | |
| 
 | |
| 	error = res_lib_quorum_getquorate.header.error;
 | |
| 
 | |
| 	*quorate = res_lib_quorum_getquorate.quorate;
 | |
| 
 | |
| error_exit:
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, handle);
 | |
| 
 | |
| 	return (error);
 | |
| }
 | |
| 
 | |
| cs_error_t quorum_fd_get (
 | |
| 	quorum_handle_t handle,
 | |
| 	int *fd)
 | |
| {
 | |
| 	cs_error_t error;
 | |
| 	struct quorum_inst *quorum_inst;
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_get (&quorum_handle_t_db, handle, (void *)&quorum_inst));
 | |
| 	if (error != CS_OK) {
 | |
| 		return (error);
 | |
| 	}
 | |
| 
 | |
| 	error = coroipcc_fd_get (quorum_inst->handle, fd);
 | |
| 
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, handle);
 | |
| 
 | |
| 	return (error);
 | |
| }
 | |
| 
 | |
| 
 | |
| cs_error_t quorum_context_get (
 | |
| 	quorum_handle_t handle,
 | |
| 	const void **context)
 | |
| {
 | |
| 	cs_error_t error;
 | |
| 	struct quorum_inst *quorum_inst;
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_get (&quorum_handle_t_db, handle, (void *)&quorum_inst));
 | |
| 	if (error != CS_OK) {
 | |
| 		return (error);
 | |
| 	}
 | |
| 
 | |
| 	*context = quorum_inst->context;
 | |
| 
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, handle);
 | |
| 
 | |
| 	return (CS_OK);
 | |
| }
 | |
| 
 | |
| cs_error_t quorum_context_set (
 | |
| 	quorum_handle_t handle,
 | |
| 	const void *context)
 | |
| {
 | |
| 	cs_error_t error;
 | |
| 	struct quorum_inst *quorum_inst;
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_get (&quorum_handle_t_db, handle, (void *)&quorum_inst));
 | |
| 	if (error != CS_OK) {
 | |
| 		return (error);
 | |
| 	}
 | |
| 
 | |
| 	quorum_inst->context = context;
 | |
| 
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, handle);
 | |
| 
 | |
| 	return (CS_OK);
 | |
| }
 | |
| 
 | |
| 
 | |
| cs_error_t quorum_trackstart (
 | |
| 	quorum_handle_t handle,
 | |
| 	unsigned int flags )
 | |
| {
 | |
| 	cs_error_t error;
 | |
| 	struct quorum_inst *quorum_inst;
 | |
| 	struct iovec iov;
 | |
| 	struct req_lib_quorum_trackstart req_lib_quorum_trackstart;
 | |
| 	coroipc_response_header_t res;
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_get (&quorum_handle_t_db, handle, (void *)&quorum_inst));
 | |
| 	if (error != CS_OK) {
 | |
| 		return (error);
 | |
| 	}
 | |
| 
 | |
| 	req_lib_quorum_trackstart.header.size = sizeof (struct req_lib_quorum_trackstart);
 | |
| 	req_lib_quorum_trackstart.header.id = MESSAGE_REQ_QUORUM_TRACKSTART;
 | |
| 	req_lib_quorum_trackstart.track_flags = flags;
 | |
| 
 | |
| 	iov.iov_base = (char *)&req_lib_quorum_trackstart;
 | |
| 	iov.iov_len = sizeof (struct req_lib_quorum_trackstart);
 | |
| 
 | |
|        error = coroipcc_msg_send_reply_receive (
 | |
| 		quorum_inst->handle,
 | |
|                 &iov,
 | |
|                 1,
 | |
|                 &res,
 | |
|                 sizeof (res));
 | |
| 
 | |
| 	if (error != CS_OK) {
 | |
| 		goto error_exit;
 | |
| 	}
 | |
| 
 | |
| 	error = res.error;
 | |
| 
 | |
| error_exit:
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, handle);
 | |
| 
 | |
| 	return (error);
 | |
| }
 | |
| 
 | |
| cs_error_t quorum_trackstop (
 | |
| 	quorum_handle_t handle)
 | |
| {
 | |
| 	cs_error_t error;
 | |
| 	struct quorum_inst *quorum_inst;
 | |
| 	struct iovec iov;
 | |
| 	coroipc_request_header_t req;
 | |
| 	coroipc_response_header_t res;
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_get (&quorum_handle_t_db, handle, (void *)&quorum_inst));
 | |
| 	if (error != CS_OK) {
 | |
| 		return (error);
 | |
| 	}
 | |
| 
 | |
| 	req.size = sizeof (req);
 | |
| 	req.id = MESSAGE_REQ_QUORUM_TRACKSTOP;
 | |
| 
 | |
| 	iov.iov_base = (char *)&req;
 | |
| 	iov.iov_len = sizeof (req);
 | |
| 
 | |
|        error = coroipcc_msg_send_reply_receive (
 | |
| 		quorum_inst->handle,
 | |
|                 &iov,
 | |
|                 1,
 | |
|                 &res,
 | |
|                 sizeof (res));
 | |
| 
 | |
| 	if (error != CS_OK) {
 | |
| 		goto error_exit;
 | |
| 	}
 | |
| 
 | |
| 	error = res.error;
 | |
| 
 | |
| error_exit:
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, handle);
 | |
| 
 | |
| 	return (error);
 | |
| }
 | |
| 
 | |
| cs_error_t quorum_dispatch (
 | |
| 	quorum_handle_t handle,
 | |
| 	cs_dispatch_flags_t dispatch_types)
 | |
| {
 | |
| 	int timeout = -1;
 | |
| 	cs_error_t error;
 | |
| 	int cont = 1; /* always continue do loop except when set to 0 */
 | |
| 	struct quorum_inst *quorum_inst;
 | |
| 	quorum_callbacks_t callbacks;
 | |
| 	coroipc_response_header_t *dispatch_data;
 | |
| 	struct res_lib_quorum_notification *res_lib_quorum_notification;
 | |
| 
 | |
| 	if (dispatch_types != CS_DISPATCH_ONE &&
 | |
| 		dispatch_types != CS_DISPATCH_ALL &&
 | |
| 		dispatch_types != CS_DISPATCH_BLOCKING) {
 | |
| 
 | |
| 		return (CS_ERR_INVALID_PARAM);
 | |
| 	}
 | |
| 
 | |
| 	error = hdb_error_to_cs(hdb_handle_get (&quorum_handle_t_db, handle,
 | |
| 		(void *)&quorum_inst));
 | |
| 	if (error != CS_OK) {
 | |
| 		return (error);
 | |
| 	}
 | |
| 
 | |
| 	/*
 | |
| 	 * Timeout instantly for CS_DISPATCH_ONE or SA_DISPATCH_ALL and
 | |
| 	 * wait indefinately for CS_DISPATCH_BLOCKING
 | |
| 	 */
 | |
| 	if (dispatch_types == CS_DISPATCH_ALL) {
 | |
| 		timeout = 0;
 | |
| 	}
 | |
| 
 | |
| 	do {
 | |
| 		error = coroipcc_dispatch_get (
 | |
| 			quorum_inst->handle,
 | |
| 			(void **)&dispatch_data,
 | |
| 			timeout);
 | |
| 		if (error == CS_ERR_BAD_HANDLE) {
 | |
| 			error = CS_OK;
 | |
| 			goto error_put;
 | |
| 		}
 | |
| 		if (error == CS_ERR_TRY_AGAIN) {
 | |
| 			error = CS_OK;
 | |
| 			if (dispatch_types == CPG_DISPATCH_ALL) {
 | |
| 				break; /* exit do while cont is 1 loop */
 | |
| 			} else {
 | |
| 				continue; /* next poll */
 | |
| 			}
 | |
| 		}
 | |
| 		if (error != CS_OK) {
 | |
| 			goto error_put;
 | |
| 		}
 | |
| 
 | |
| 		/*
 | |
| 		 * 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 quorum_finalize has been called in another thread.
 | |
| 		 */
 | |
| 		memcpy (&callbacks, &quorum_inst->callbacks, sizeof (quorum_callbacks_t));
 | |
| 		/*
 | |
| 		 * Dispatch incoming message
 | |
| 		 */
 | |
| 		switch (dispatch_data->id) {
 | |
| 
 | |
| 		case MESSAGE_RES_QUORUM_NOTIFICATION:
 | |
| 			if (callbacks.quorum_notify_fn == NULL) {
 | |
| 				break;
 | |
| 			}
 | |
| 			res_lib_quorum_notification = (struct res_lib_quorum_notification *)dispatch_data;
 | |
| 
 | |
| 			callbacks.quorum_notify_fn ( handle,
 | |
| 				res_lib_quorum_notification->quorate,
 | |
| 				res_lib_quorum_notification->ring_seq,
 | |
| 				res_lib_quorum_notification->view_list_entries,
 | |
| 				res_lib_quorum_notification->view_list);
 | |
| 			break;
 | |
| 
 | |
| 		default:
 | |
| 			coroipcc_dispatch_put (quorum_inst->handle);
 | |
| 			error = CS_ERR_LIBRARY;
 | |
| 			goto error_put;
 | |
| 			break;
 | |
| 		}
 | |
| 		coroipcc_dispatch_put (quorum_inst->handle);
 | |
| 
 | |
| 		/*
 | |
| 		 * Determine if more messages should be processed
 | |
| 		 */
 | |
| 		if (dispatch_types == CS_DISPATCH_ONE) {
 | |
| 			cont = 0;
 | |
| 		}
 | |
| 	} while (cont);
 | |
| 
 | |
| 	goto error_put;
 | |
| 
 | |
| error_put:
 | |
| 	(void)hdb_handle_put (&quorum_handle_t_db, handle);
 | |
| 	return (error);
 | |
| }
 |