#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/socket.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <netgraph/ng_message.h>
#include <netgraph/netgraph.h>
#include "ng_rfc1490.h"
#define HDLC_UI 0x03
#define NLPID_IP 0xCC
#define NLPID_PPP 0xCF
#define NLPID_SNAP 0x80
#define NLPID_Q933 0x08
#define NLPID_CLNP 0x81
#define NLPID_ESIS 0x82
#define NLPID_ISIS 0x83
struct ng_rfc1490_private {
hook_p downlink;
hook_p ppp;
hook_p inet;
};
typedef struct ng_rfc1490_private *priv_p;
static ng_constructor_t ng_rfc1490_constructor;
static ng_rcvmsg_t ng_rfc1490_rcvmsg;
static ng_shutdown_t ng_rfc1490_rmnode;
static ng_newhook_t ng_rfc1490_newhook;
static ng_rcvdata_t ng_rfc1490_rcvdata;
static ng_disconnect_t ng_rfc1490_disconnect;
static struct ng_type typestruct = {
NG_VERSION,
NG_RFC1490_NODE_TYPE,
NULL,
ng_rfc1490_constructor,
ng_rfc1490_rcvmsg,
ng_rfc1490_rmnode,
ng_rfc1490_newhook,
NULL,
NULL,
ng_rfc1490_rcvdata,
ng_rfc1490_rcvdata,
ng_rfc1490_disconnect,
NULL
};
NETGRAPH_INIT(rfc1490, &typestruct);
static int
ng_rfc1490_constructor(node_p *nodep)
{
priv_p priv;
int error;
priv = kmalloc(sizeof(*priv), M_NETGRAPH, M_NOWAIT | M_ZERO);
if (priv == NULL)
return (ENOMEM);
if ((error = ng_make_node_common(&typestruct, nodep))) {
kfree(priv, M_NETGRAPH);
return (error);
}
(*nodep)->private = priv;
return (0);
}
static int
ng_rfc1490_newhook(node_p node, hook_p hook, const char *name)
{
const priv_p priv = node->private;
if (!strcmp(name, NG_RFC1490_HOOK_DOWNSTREAM)) {
if (priv->downlink)
return (EISCONN);
priv->downlink = hook;
} else if (!strcmp(name, NG_RFC1490_HOOK_PPP)) {
if (priv->ppp)
return (EISCONN);
priv->ppp = hook;
} else if (!strcmp(name, NG_RFC1490_HOOK_INET)) {
if (priv->inet)
return (EISCONN);
priv->inet = hook;
} else
return (EINVAL);
return (0);
}
static int
ng_rfc1490_rcvmsg(node_p node, struct ng_mesg *msg,
const char *raddr, struct ng_mesg **rp)
{
kfree(msg, M_NETGRAPH);
return (EINVAL);
}
#define MAX_ENCAPS_HDR 8
#define ERROUT(x) do { error = (x); goto done; } while (0)
#define OUICMP(P,A,B,C) ((P)[0]==(A) && (P)[1]==(B) && (P)[2]==(C))
static int
ng_rfc1490_rcvdata(hook_p hook, struct mbuf *m, meta_p meta)
{
const node_p node = hook->node;
const priv_p priv = node->private;
int error = 0;
if (hook == priv->downlink) {
const u_char *start;
const u_char *ptr;
if (!m || (m->m_len < MAX_ENCAPS_HDR
&& !(m = m_pullup(m, MAX_ENCAPS_HDR))))
ERROUT(ENOBUFS);
ptr = start = mtod(m, const u_char *);
if (*ptr++ != HDLC_UI)
ERROUT(0);
if (*ptr == 0x00)
ptr++;
switch (*ptr++) {
case NLPID_SNAP:
if (OUICMP(ptr, 0, 0, 0)) {
u_int16_t etype;
ptr += 3;
etype = ntohs(*((const u_int16_t *)ptr));
ptr += 2;
m_adj(m, ptr - start);
switch (etype) {
case ETHERTYPE_IP:
NG_SEND_DATA(error,
priv->inet, m, meta);
break;
case ETHERTYPE_ARP:
case ETHERTYPE_REVARP:
default:
ERROUT(0);
}
} else if (OUICMP(ptr, 0x00, 0x80, 0xc2))
ERROUT(0);
else
ERROUT(0);
break;
case NLPID_IP:
m_adj(m, ptr - start);
NG_SEND_DATA(error, priv->inet, m, meta);
break;
case NLPID_PPP:
m_adj(m, ptr - start);
NG_SEND_DATA(error, priv->ppp, m, meta);
break;
case NLPID_Q933:
case NLPID_CLNP:
case NLPID_ESIS:
case NLPID_ISIS:
ERROUT(0);
default:
ptr--;
if ((*ptr & 0x01) == 0x01)
ERROUT(0);
m_adj(m, ptr - start);
NG_SEND_DATA(error, priv->ppp, m, meta);
break;
}
} else if (hook == priv->ppp) {
M_PREPEND(m, 2, M_NOWAIT);
if (!m)
ERROUT(ENOBUFS);
mtod(m, u_char *)[0] = HDLC_UI;
mtod(m, u_char *)[1] = NLPID_PPP;
NG_SEND_DATA(error, priv->downlink, m, meta);
} else if (hook == priv->inet) {
M_PREPEND(m, 2, M_NOWAIT);
if (!m)
ERROUT(ENOBUFS);
mtod(m, u_char *)[0] = HDLC_UI;
mtod(m, u_char *)[1] = NLPID_IP;
NG_SEND_DATA(error, priv->downlink, m, meta);
} else
panic(__func__);
done:
NG_FREE_DATA(m, meta);
return (error);
}
static int
ng_rfc1490_rmnode(node_p node)
{
const priv_p priv = node->private;
node->flags |= NG_INVALID;
ng_cutlinks(node);
ng_unname(node);
bzero(priv, sizeof(*priv));
node->private = NULL;
kfree(priv, M_NETGRAPH);
ng_unref(node);
return (0);
}
static int
ng_rfc1490_disconnect(hook_p hook)
{
const priv_p priv = hook->node->private;
if (hook->node->numhooks == 0)
ng_rmnode(hook->node);
else if (hook == priv->downlink)
priv->downlink = NULL;
else if (hook == priv->inet)
priv->inet = NULL;
else if (hook == priv->ppp)
priv->ppp = NULL;
else
panic(__func__);
return (0);
}