2010-02-19 00:16:19 +01:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2009-2010 The FreeBSD Foundation
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This software was developed by Pawel Jakub Dawidek under sponsorship from
|
|
|
|
* the FreeBSD Foundation.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS 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 AUTHORS 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 <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2010-04-29 17:36:32 +02:00
|
|
|
#include <sys/types.h>
|
2010-02-19 00:16:19 +01:00
|
|
|
#include <sys/queue.h>
|
2010-04-29 17:36:32 +02:00
|
|
|
#include <sys/socket.h>
|
2010-02-19 00:16:19 +01:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdint.h>
|
2011-02-02 16:23:07 +01:00
|
|
|
#include <strings.h>
|
2010-02-19 00:16:19 +01:00
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
#include "pjdlog.h"
|
2010-02-19 00:16:19 +01:00
|
|
|
#include "proto.h"
|
|
|
|
#include "proto_impl.h"
|
|
|
|
|
|
|
|
#define PROTO_CONN_MAGIC 0x907041c
|
|
|
|
struct proto_conn {
|
|
|
|
int pc_magic;
|
|
|
|
struct hast_proto *pc_proto;
|
|
|
|
void *pc_ctx;
|
|
|
|
int pc_side;
|
|
|
|
#define PROTO_SIDE_CLIENT 0
|
|
|
|
#define PROTO_SIDE_SERVER_LISTEN 1
|
|
|
|
#define PROTO_SIDE_SERVER_WORK 2
|
|
|
|
};
|
|
|
|
|
2010-08-05 19:56:41 +02:00
|
|
|
static TAILQ_HEAD(, hast_proto) protos = TAILQ_HEAD_INITIALIZER(protos);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
|
|
|
void
|
2010-08-05 19:56:41 +02:00
|
|
|
proto_register(struct hast_proto *proto, bool isdefault)
|
2010-02-19 00:16:19 +01:00
|
|
|
{
|
2010-08-05 19:56:41 +02:00
|
|
|
static bool seen_default = false;
|
2010-02-19 00:16:19 +01:00
|
|
|
|
2010-08-05 19:56:41 +02:00
|
|
|
if (!isdefault)
|
|
|
|
TAILQ_INSERT_HEAD(&protos, proto, hp_next);
|
|
|
|
else {
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(!seen_default);
|
2010-08-05 19:56:41 +02:00
|
|
|
seen_default = true;
|
|
|
|
TAILQ_INSERT_TAIL(&protos, proto, hp_next);
|
|
|
|
}
|
2010-02-19 00:16:19 +01:00
|
|
|
}
|
|
|
|
|
2011-02-02 16:23:07 +01:00
|
|
|
static struct proto_conn *
|
|
|
|
proto_alloc(struct hast_proto *proto, int side)
|
|
|
|
{
|
|
|
|
struct proto_conn *conn;
|
|
|
|
|
|
|
|
PJDLOG_ASSERT(proto != NULL);
|
|
|
|
PJDLOG_ASSERT(side == PROTO_SIDE_CLIENT ||
|
|
|
|
side == PROTO_SIDE_SERVER_LISTEN ||
|
|
|
|
side == PROTO_SIDE_SERVER_WORK);
|
|
|
|
|
|
|
|
conn = malloc(sizeof(*conn));
|
|
|
|
if (conn != NULL) {
|
|
|
|
conn->pc_proto = proto;
|
|
|
|
conn->pc_side = side;
|
|
|
|
conn->pc_magic = PROTO_CONN_MAGIC;
|
|
|
|
}
|
|
|
|
return (conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
proto_free(struct proto_conn *conn)
|
|
|
|
{
|
|
|
|
|
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_side == PROTO_SIDE_CLIENT ||
|
|
|
|
conn->pc_side == PROTO_SIDE_SERVER_LISTEN ||
|
|
|
|
conn->pc_side == PROTO_SIDE_SERVER_WORK);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
|
|
|
|
bzero(conn, sizeof(*conn));
|
|
|
|
free(conn);
|
|
|
|
}
|
|
|
|
|
2010-02-19 00:16:19 +01:00
|
|
|
static int
|
|
|
|
proto_common_setup(const char *addr, struct proto_conn **connp, int side)
|
|
|
|
{
|
|
|
|
struct hast_proto *proto;
|
|
|
|
struct proto_conn *conn;
|
|
|
|
void *ctx;
|
|
|
|
int ret;
|
|
|
|
|
2011-02-02 16:23:07 +01:00
|
|
|
PJDLOG_ASSERT(side == PROTO_SIDE_CLIENT ||
|
|
|
|
side == PROTO_SIDE_SERVER_LISTEN);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
2010-08-05 19:56:41 +02:00
|
|
|
TAILQ_FOREACH(proto, &protos, hp_next) {
|
2011-02-02 09:24:26 +01:00
|
|
|
if (side == PROTO_SIDE_CLIENT) {
|
|
|
|
if (proto->hp_client == NULL)
|
|
|
|
ret = -1;
|
|
|
|
else
|
|
|
|
ret = proto->hp_client(addr, &ctx);
|
|
|
|
} else /* if (side == PROTO_SIDE_SERVER_LISTEN) */ {
|
|
|
|
if (proto->hp_server == NULL)
|
|
|
|
ret = -1;
|
|
|
|
else
|
|
|
|
ret = proto->hp_server(addr, &ctx);
|
|
|
|
}
|
2010-02-19 00:16:19 +01:00
|
|
|
/*
|
|
|
|
* ret == 0 - success
|
|
|
|
* ret == -1 - addr is not for this protocol
|
|
|
|
* ret > 0 - right protocol, but an error occured
|
|
|
|
*/
|
|
|
|
if (ret >= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (proto == NULL) {
|
|
|
|
/* Unrecognized address. */
|
|
|
|
errno = EINVAL;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (ret > 0) {
|
|
|
|
/* An error occured. */
|
|
|
|
errno = ret;
|
|
|
|
return (-1);
|
|
|
|
}
|
2011-02-02 16:23:07 +01:00
|
|
|
conn = proto_alloc(proto, side);
|
|
|
|
if (conn == NULL) {
|
|
|
|
if (proto->hp_close != NULL)
|
|
|
|
proto->hp_close(ctx);
|
|
|
|
errno = ENOMEM;
|
|
|
|
return (-1);
|
|
|
|
}
|
2010-02-19 00:16:19 +01:00
|
|
|
conn->pc_ctx = ctx;
|
|
|
|
*connp = conn;
|
2011-02-02 16:23:07 +01:00
|
|
|
|
2010-02-19 00:16:19 +01:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
proto_client(const char *addr, struct proto_conn **connp)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (proto_common_setup(addr, connp, PROTO_SIDE_CLIENT));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2011-02-02 16:42:00 +01:00
|
|
|
proto_connect(struct proto_conn *conn, int timeout)
|
2010-02-19 00:16:19 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_side == PROTO_SIDE_CLIENT);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_connect != NULL);
|
2011-02-02 16:46:28 +01:00
|
|
|
PJDLOG_ASSERT(timeout >= -1);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
2011-02-02 16:42:00 +01:00
|
|
|
ret = conn->pc_proto->hp_connect(conn->pc_ctx, timeout);
|
2010-02-19 00:16:19 +01:00
|
|
|
if (ret != 0) {
|
|
|
|
errno = ret;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2011-02-02 16:46:28 +01:00
|
|
|
int
|
|
|
|
proto_connect_wait(struct proto_conn *conn, int timeout)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_side == PROTO_SIDE_CLIENT);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_connect_wait != NULL);
|
|
|
|
PJDLOG_ASSERT(timeout >= 0);
|
|
|
|
|
|
|
|
ret = conn->pc_proto->hp_connect_wait(conn->pc_ctx, timeout);
|
|
|
|
if (ret != 0) {
|
|
|
|
errno = ret;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2010-02-19 00:16:19 +01:00
|
|
|
int
|
|
|
|
proto_server(const char *addr, struct proto_conn **connp)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (proto_common_setup(addr, connp, PROTO_SIDE_SERVER_LISTEN));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
proto_accept(struct proto_conn *conn, struct proto_conn **newconnp)
|
|
|
|
{
|
|
|
|
struct proto_conn *newconn;
|
|
|
|
int ret;
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_side == PROTO_SIDE_SERVER_LISTEN);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_accept != NULL);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
2011-02-02 16:23:07 +01:00
|
|
|
newconn = proto_alloc(conn->pc_proto, PROTO_SIDE_SERVER_WORK);
|
2010-02-19 00:16:19 +01:00
|
|
|
if (newconn == NULL)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
ret = conn->pc_proto->hp_accept(conn->pc_ctx, &newconn->pc_ctx);
|
|
|
|
if (ret != 0) {
|
2011-02-02 16:23:07 +01:00
|
|
|
proto_free(newconn);
|
2010-02-19 00:16:19 +01:00
|
|
|
errno = ret;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
*newconnp = newconn;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2010-08-31 00:26:42 +02:00
|
|
|
proto_send(const struct proto_conn *conn, const void *data, size_t size)
|
2010-02-19 00:16:19 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_send != NULL);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
|
|
|
ret = conn->pc_proto->hp_send(conn->pc_ctx, data, size);
|
|
|
|
if (ret != 0) {
|
|
|
|
errno = ret;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2010-08-31 00:26:42 +02:00
|
|
|
proto_recv(const struct proto_conn *conn, void *data, size_t size)
|
2010-02-19 00:16:19 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_recv != NULL);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
|
|
|
ret = conn->pc_proto->hp_recv(conn->pc_ctx, data, size);
|
|
|
|
if (ret != 0) {
|
|
|
|
errno = ret;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2011-01-31 19:35:17 +01:00
|
|
|
int
|
|
|
|
proto_descriptor_send(const struct proto_conn *conn, int fd)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_descriptor_send != NULL);
|
|
|
|
|
|
|
|
ret = conn->pc_proto->hp_descriptor_send(conn->pc_ctx, fd);
|
|
|
|
if (ret != 0) {
|
|
|
|
errno = ret;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
proto_descriptor_recv(const struct proto_conn *conn, int *fdp)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_descriptor_recv != NULL);
|
|
|
|
|
|
|
|
ret = conn->pc_proto->hp_descriptor_recv(conn->pc_ctx, fdp);
|
|
|
|
if (ret != 0) {
|
|
|
|
errno = ret;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2010-02-19 00:16:19 +01:00
|
|
|
int
|
|
|
|
proto_descriptor(const struct proto_conn *conn)
|
|
|
|
{
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_descriptor != NULL);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
|
|
|
return (conn->pc_proto->hp_descriptor(conn->pc_ctx));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
proto_address_match(const struct proto_conn *conn, const char *addr)
|
|
|
|
{
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_address_match != NULL);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
|
|
|
return (conn->pc_proto->hp_address_match(conn->pc_ctx, addr));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
proto_local_address(const struct proto_conn *conn, char *addr, size_t size)
|
|
|
|
{
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_local_address != NULL);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
|
|
|
conn->pc_proto->hp_local_address(conn->pc_ctx, addr, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
proto_remote_address(const struct proto_conn *conn, char *addr, size_t size)
|
|
|
|
{
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_remote_address != NULL);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
|
|
|
conn->pc_proto->hp_remote_address(conn->pc_ctx, addr, size);
|
|
|
|
}
|
|
|
|
|
2010-04-29 17:36:32 +02:00
|
|
|
int
|
|
|
|
proto_timeout(const struct proto_conn *conn, int timeout)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
int fd;
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
2010-04-29 17:36:32 +02:00
|
|
|
|
|
|
|
fd = proto_descriptor(conn);
|
|
|
|
if (fd < 0)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
tv.tv_sec = timeout;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)) < 0)
|
|
|
|
return (-1);
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) < 0)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2010-02-19 00:16:19 +01:00
|
|
|
void
|
|
|
|
proto_close(struct proto_conn *conn)
|
|
|
|
{
|
|
|
|
|
2011-01-31 19:32:17 +01:00
|
|
|
PJDLOG_ASSERT(conn != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_magic == PROTO_CONN_MAGIC);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto != NULL);
|
|
|
|
PJDLOG_ASSERT(conn->pc_proto->hp_close != NULL);
|
2010-02-19 00:16:19 +01:00
|
|
|
|
|
|
|
conn->pc_proto->hp_close(conn->pc_ctx);
|
2011-02-02 16:23:07 +01:00
|
|
|
proto_free(conn);
|
2010-02-19 00:16:19 +01:00
|
|
|
}
|