2001-02-22 17:14:36 +00:00
|
|
|
/*-
|
|
|
|
*
|
|
|
|
* Copyright (c) 1999-2000, Vitaly V Belekhov
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 unmodified, 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 AUTHOR 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 AUTHOR 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.
|
|
|
|
*
|
2001-07-24 23:33:06 +00:00
|
|
|
* $FreeBSD$
|
2001-02-22 17:14:36 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/sockio.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
|
|
|
|
#include <netgraph/ng_message.h>
|
|
|
|
#include <netgraph/netgraph.h>
|
|
|
|
#include <netgraph/ng_split.h>
|
|
|
|
|
|
|
|
/* Netgraph methods */
|
|
|
|
static ng_constructor_t ng_split_constructor;
|
2001-07-24 23:33:06 +00:00
|
|
|
static ng_shutdown_t ng_split_shutdown;
|
2001-02-22 17:14:36 +00:00
|
|
|
static ng_newhook_t ng_split_newhook;
|
|
|
|
static ng_rcvdata_t ng_split_rcvdata;
|
|
|
|
static ng_disconnect_t ng_split_disconnect;
|
|
|
|
|
|
|
|
/* Node type descriptor */
|
|
|
|
static struct ng_type typestruct = {
|
2004-05-29 00:51:19 +00:00
|
|
|
.version = NG_ABI_VERSION,
|
|
|
|
.name = NG_SPLIT_NODE_TYPE,
|
|
|
|
.constructor = ng_split_constructor,
|
|
|
|
.shutdown = ng_split_shutdown,
|
|
|
|
.newhook = ng_split_newhook,
|
|
|
|
.rcvdata = ng_split_rcvdata,
|
|
|
|
.disconnect = ng_split_disconnect,
|
2001-02-22 17:14:36 +00:00
|
|
|
};
|
|
|
|
NETGRAPH_INIT(ng_split, &typestruct);
|
|
|
|
|
|
|
|
/* Node private data */
|
|
|
|
struct ng_split_private {
|
2001-07-24 23:33:06 +00:00
|
|
|
hook_p out;
|
|
|
|
hook_p in;
|
|
|
|
hook_p mixed;
|
2001-02-22 17:14:36 +00:00
|
|
|
node_p node; /* Our netgraph node */
|
|
|
|
};
|
|
|
|
typedef struct ng_split_private *priv_p;
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
NETGRAPH NODE STUFF
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constructor for a node
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
ng_split_constructor(node_p node)
|
|
|
|
{
|
2001-07-24 23:33:06 +00:00
|
|
|
priv_p priv;
|
2001-02-22 17:14:36 +00:00
|
|
|
|
|
|
|
/* Allocate node */
|
2011-04-18 09:12:27 +00:00
|
|
|
priv = malloc(sizeof(*priv), M_NETGRAPH, M_ZERO | M_WAITOK);
|
2001-02-22 17:14:36 +00:00
|
|
|
|
|
|
|
/* Link together node and private info */
|
|
|
|
NG_NODE_SET_PRIVATE(node, priv);
|
|
|
|
priv->node = node;
|
|
|
|
|
|
|
|
/* Done */
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Give our ok for a hook to be added
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
ng_split_newhook(node_p node, hook_p hook, const char *name)
|
|
|
|
{
|
2001-07-24 23:33:06 +00:00
|
|
|
priv_p priv = NG_NODE_PRIVATE(node);
|
|
|
|
hook_p *localhook;
|
|
|
|
|
|
|
|
if (strcmp(name, NG_SPLIT_HOOK_MIXED) == 0) {
|
|
|
|
localhook = &priv->mixed;
|
|
|
|
} else if (strcmp(name, NG_SPLIT_HOOK_IN) == 0) {
|
|
|
|
localhook = &priv->in;
|
|
|
|
} else if (strcmp(name, NG_SPLIT_HOOK_OUT) == 0) {
|
|
|
|
localhook = &priv->out;
|
2005-05-23 13:39:20 +00:00
|
|
|
} else
|
|
|
|
return (EINVAL);
|
2001-02-22 17:14:36 +00:00
|
|
|
|
2001-07-24 23:33:06 +00:00
|
|
|
if (*localhook != NULL)
|
|
|
|
return (EISCONN);
|
|
|
|
*localhook = hook;
|
|
|
|
NG_HOOK_SET_PRIVATE(hook, localhook);
|
2001-02-22 17:14:36 +00:00
|
|
|
|
2001-07-24 23:33:06 +00:00
|
|
|
return (0);
|
2001-02-22 17:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Recive data from a hook.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
ng_split_rcvdata(hook_p hook, item_p item)
|
|
|
|
{
|
2001-07-24 23:33:06 +00:00
|
|
|
const priv_p priv = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
|
|
|
|
int error = 0;
|
2001-02-22 17:14:36 +00:00
|
|
|
|
2001-07-24 23:33:06 +00:00
|
|
|
if (hook == priv->out) {
|
|
|
|
printf("ng_split: got packet from out hook!\n");
|
2001-02-22 17:14:36 +00:00
|
|
|
NG_FREE_ITEM(item);
|
2001-07-24 23:33:06 +00:00
|
|
|
error = EINVAL;
|
|
|
|
} else if ((hook == priv->in) && (priv->mixed != NULL)) {
|
2001-02-22 17:14:36 +00:00
|
|
|
NG_FWD_ITEM_HOOK(error, item, priv->mixed);
|
2001-07-24 23:33:06 +00:00
|
|
|
} else if ((hook == priv->mixed) && (priv->out != NULL)) {
|
|
|
|
NG_FWD_ITEM_HOOK(error, item, priv->out);
|
2001-02-22 17:14:36 +00:00
|
|
|
}
|
2001-07-24 23:33:06 +00:00
|
|
|
|
2005-08-29 13:47:08 +00:00
|
|
|
if (item)
|
|
|
|
NG_FREE_ITEM(item);
|
|
|
|
|
2001-02-22 17:14:36 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-07-24 23:33:06 +00:00
|
|
|
ng_split_shutdown(node_p node)
|
2001-02-22 17:14:36 +00:00
|
|
|
{
|
2001-07-24 23:33:06 +00:00
|
|
|
const priv_p priv = NG_NODE_PRIVATE(node);
|
2001-02-22 17:14:36 +00:00
|
|
|
|
|
|
|
NG_NODE_SET_PRIVATE(node, NULL);
|
|
|
|
NG_NODE_UNREF(node);
|
2008-10-23 15:53:51 +00:00
|
|
|
free(priv, M_NETGRAPH);
|
2001-02-22 17:14:36 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hook disconnection
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
ng_split_disconnect(hook_p hook)
|
|
|
|
{
|
2001-07-24 23:33:06 +00:00
|
|
|
hook_p *localhook = NG_HOOK_PRIVATE(hook);
|
|
|
|
|
2001-12-10 08:09:49 +00:00
|
|
|
KASSERT(localhook != NULL, ("%s: null info", __func__));
|
2001-07-24 23:33:06 +00:00
|
|
|
*localhook = NULL;
|
2001-02-22 17:14:36 +00:00
|
|
|
if ((NG_NODE_NUMHOOKS(NG_HOOK_NODE(hook)) == 0)
|
2001-07-24 23:33:06 +00:00
|
|
|
&& (NG_NODE_IS_VALID(NG_HOOK_NODE(hook)))) {
|
|
|
|
ng_rmnode_self(NG_HOOK_NODE(hook));
|
2001-02-22 17:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|