blob: c712b9d300fd3719fb715866b9c3d006bbe68f33 [file] [log] [blame]
/*
*
* Copyright (C) 2007 Mindspeed Technologies, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _AUTO_BRIDGE_H
#define _AUTO_BRIDGE_H
#include <linux/if_ether.h>
#include <linux/types.h>
#ifndef NETLINK_L2FLOW
#define NETLINK_L2FLOW 33
#endif
#define L2FLOW_NL_GRP 1
/* Msg type */
enum l2flow_msg_types{
L2FLOW_MSG_BASE = 16, //msg_types < 0x10 are reserved control msg types
L2FLOW_MSG_ENTRY,
L2FLOW_MSG_RESET,
L2FLOW_MSG_MAX
};
/* Flags used for CMM answers */
#define L2FLOW_OFFLOADED 0x1
#define L2FLOW_DENIED 0x2
#define L2FLOW_ACK 0x4
/* Actions */
enum l2flow_msg_actions{
L2FLOW_ENTRY_NEW,
L2FLOW_ENTRY_UPDATE,
L2FLOW_ENTRY_DEL,
L2FLOW_ENTRY_MAX,
};
/* L2flow netlink message header base */
struct l2flow_msg
{
/* Minimal parameters */
u_int8_t action;
u_int32_t flags;
u_int8_t saddr[ETH_ALEN];
u_int8_t daddr[ETH_ALEN];
u_int16_t ethertype;
};
enum{
L2FLOWA_UNSPEC,
L2FLOWA_VLAN_TAG,
L2FLOWA_PPP_S_ID,
L2FLOWA_IIF_IDX,
L2FLOWA_OIF_IDX,
L2FLOWA_IP_SRC,
L2FLOWA_IP_DST,
L2FLOWA_IP_PROTO,
L2FLOWA_SPORT,
L2FLOWA_DPORT,
L2FLOWA_MARK,
__L2FLOWA_MAX,
};
#define L2FLOWA_MAX (__L2FLOWA_MAX - 1)
/* RtNetlink style helper macros for CMM */
#define L2FLOWA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct l2flow_msg))
#define L2FLOWA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct l2flow_msg))))
#endif