mirror of
https://git.proxmox.com/git/mirror_corosync
synced 2025-10-27 14:08:54 +00:00
219 lines
5.5 KiB
C
219 lines
5.5 KiB
C
/*
|
|
* Copyright (c) 2015-2016 Red Hat, Inc.
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
* Author: Jan Friesse (jfriesse@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 Red Hat, 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 "msgio.h"
|
|
#include "msg.h"
|
|
|
|
#define MSGIO_LOCAL_BUF_SIZE (1 << 10)
|
|
|
|
ssize_t
|
|
msgio_send(PRFileDesc *sock, const char *msg, size_t msg_len, size_t *start_pos)
|
|
{
|
|
ssize_t sent_bytes;
|
|
|
|
if ((sent_bytes = PR_Send(sock, msg + *start_pos,
|
|
msg_len - *start_pos, 0, PR_INTERVAL_NO_TIMEOUT)) != -1) {
|
|
*start_pos += sent_bytes;
|
|
}
|
|
|
|
return (sent_bytes);
|
|
}
|
|
|
|
ssize_t
|
|
msgio_send_blocking(PRFileDesc *sock, const char *msg, size_t msg_len)
|
|
{
|
|
PRPollDesc pfd;
|
|
size_t already_sent_bytes;
|
|
PRInt32 res;
|
|
ssize_t ret;
|
|
|
|
already_sent_bytes = 0;
|
|
ret = 0;
|
|
|
|
while (ret != -1 && already_sent_bytes < msg_len) {
|
|
pfd.fd = sock;
|
|
pfd.in_flags = PR_POLL_WRITE;
|
|
pfd.out_flags = 0;
|
|
|
|
if ((res = PR_Poll(&pfd, 1, PR_INTERVAL_NO_TIMEOUT)) > 0) {
|
|
if (pfd.out_flags & PR_POLL_WRITE) {
|
|
if ((msgio_send(sock, msg, msg_len, &already_sent_bytes) == -1) &&
|
|
PR_GetError() != PR_WOULD_BLOCK_ERROR) {
|
|
ret = -1;
|
|
} else {
|
|
ret = already_sent_bytes;
|
|
}
|
|
} else if (pfd.out_flags & (PR_POLL_ERR | PR_POLL_NVAL | PR_POLL_HUP)) {
|
|
PR_SetError(PR_IO_ERROR, 0);
|
|
ret = -1;
|
|
}
|
|
} else {
|
|
ret = -1;
|
|
}
|
|
}
|
|
|
|
return (ret);
|
|
}
|
|
|
|
/*
|
|
* -1 = send returned 0,
|
|
* -2 = unhandled error.
|
|
* 0 = success but whole buffer is still not sent
|
|
* 1 = all data was sent
|
|
*/
|
|
int
|
|
msgio_write(PRFileDesc *sock, const struct dynar *msg, size_t *already_sent_bytes)
|
|
{
|
|
PRInt32 sent;
|
|
PRInt32 to_send;
|
|
|
|
to_send = dynar_size(msg) - *already_sent_bytes;
|
|
if (to_send > MSGIO_LOCAL_BUF_SIZE) {
|
|
to_send = MSGIO_LOCAL_BUF_SIZE;
|
|
}
|
|
|
|
sent = PR_Send(sock, dynar_data(msg) + *already_sent_bytes, to_send, 0,
|
|
PR_INTERVAL_NO_TIMEOUT);
|
|
|
|
if (sent > 0) {
|
|
*already_sent_bytes += sent;
|
|
|
|
if (*already_sent_bytes == dynar_size(msg)) {
|
|
/*
|
|
* All data sent
|
|
*/
|
|
return (1);
|
|
}
|
|
}
|
|
|
|
if (sent == 0) {
|
|
return (-1);
|
|
}
|
|
|
|
if (sent < 0 && PR_GetError() != PR_WOULD_BLOCK_ERROR) {
|
|
return (-2);
|
|
}
|
|
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* 1 Full message received
|
|
* 0 Partial read (no error)
|
|
* -1 End of connection
|
|
* -2 Unhandled error
|
|
* -3 Fatal error. Unable to store message header
|
|
* -4 Unable to store message
|
|
* -5 Invalid msg type
|
|
* -6 Msg too long
|
|
*/
|
|
int
|
|
msgio_read(PRFileDesc *sock, struct dynar *msg, size_t *already_received_bytes, int *skipping_msg)
|
|
{
|
|
char local_read_buffer[MSGIO_LOCAL_BUF_SIZE];
|
|
PRInt32 readed;
|
|
PRInt32 to_read;
|
|
int ret;
|
|
|
|
ret = 0;
|
|
|
|
if (*already_received_bytes < msg_get_header_length()) {
|
|
/*
|
|
* Complete reading of header
|
|
*/
|
|
to_read = msg_get_header_length() - *already_received_bytes;
|
|
} else {
|
|
/*
|
|
* Read rest of message (or at least as much as possible)
|
|
*/
|
|
to_read = (msg_get_header_length() + msg_get_len(msg)) - *already_received_bytes;
|
|
}
|
|
|
|
if (to_read > MSGIO_LOCAL_BUF_SIZE) {
|
|
to_read = MSGIO_LOCAL_BUF_SIZE;
|
|
}
|
|
|
|
readed = PR_Recv(sock, local_read_buffer, to_read, 0, PR_INTERVAL_NO_TIMEOUT);
|
|
if (readed > 0) {
|
|
*already_received_bytes += readed;
|
|
|
|
if (!*skipping_msg) {
|
|
if (dynar_cat(msg, local_read_buffer, readed) == -1) {
|
|
*skipping_msg = 1;
|
|
ret = -4;
|
|
}
|
|
}
|
|
|
|
if (*skipping_msg && *already_received_bytes < msg_get_header_length()) {
|
|
/*
|
|
* Fatal error. We were unable to store even message header
|
|
*/
|
|
return (-3);
|
|
}
|
|
|
|
if (!*skipping_msg && *already_received_bytes == msg_get_header_length()) {
|
|
/*
|
|
* Full header received. Check type, maximum size, ...
|
|
*/
|
|
if (!msg_is_valid_msg_type(msg)) {
|
|
*skipping_msg = 1;
|
|
ret = -5;
|
|
} else if ((msg_get_header_length() + msg_get_len(msg)) >
|
|
dynar_max_size(msg)) {
|
|
*skipping_msg = 1;
|
|
ret = -6;
|
|
}
|
|
}
|
|
|
|
if (*already_received_bytes >= msg_get_header_length() &&
|
|
*already_received_bytes == (msg_get_header_length() + msg_get_len(msg))) {
|
|
/*
|
|
* Full message skipped or received
|
|
*/
|
|
ret = 1;
|
|
}
|
|
|
|
}
|
|
|
|
if (readed == 0) {
|
|
return (-1);
|
|
}
|
|
|
|
if (readed < 0 && PR_GetError() != PR_WOULD_BLOCK_ERROR) {
|
|
return (-2);
|
|
}
|
|
|
|
return (ret);
|
|
}
|