mirror of
https://git.kernel.org/pub/scm/network/iproute2/iproute2.git
synced 2024-11-30 13:26:12 +08:00
5295b8f38e
Add support for matching on CFM Maintenance Domain level and opcode. # tc filter add dev ens6 ingress pref 1 proto cfm \ flower cfm op 1 mdl 5 action ok # tc filter show dev ens6 ingress filter protocol cfm pref 1 flower chain 0 filter protocol cfm pref 1 flower chain 0 handle 0x1 eth_type 8902 cfm mdl 5 op 1 not_in_hw action order 1: gact action pass random type none pass val 0 index 1 ref 1 bind 1 # tc -j -p filter show dev ens6 ingress [ { "protocol": "cfm", "pref": 1, "kind": "flower", "chain": 0 },{ "protocol": "cfm", "pref": 1, "kind": "flower", "chain": 0, "options": { "handle": 1, "keys": { "eth_type": "8902", "cfm": { "mdl": 5, "op": 1 } }, "not_in_hw": true, "actions": [ { "order": 1, "kind": "gact", "control_action": { "type": "pass" }, "prob": { "random_type": "none", "control_action": { "type": "pass" }, "val": 0 }, "index": 1, "ref": 1, "bind": 1 } ] } } ] Signed-off-by: Zahari Doychev <zdoychev@maxlinear.com> Reviewed-by: Ido Schimmel <idosch@nvidia.com> Signed-off-by: David Ahern <dsahern@kernel.org>
102 lines
1.8 KiB
C
102 lines
1.8 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* ll_proto.c
|
|
*
|
|
*
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <string.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
#include <linux/if_arp.h>
|
|
#include <linux/sockios.h>
|
|
|
|
#include "utils.h"
|
|
#include "rt_names.h"
|
|
|
|
|
|
#define __PF(f,n) { ETH_P_##f, #n },
|
|
|
|
static const struct proto llproto_names[] = {
|
|
__PF(LOOP,loop)
|
|
__PF(PUP,pup)
|
|
__PF(PUPAT,pupat)
|
|
__PF(IP,ip)
|
|
__PF(X25,x25)
|
|
__PF(ARP,arp)
|
|
__PF(BPQ,bpq)
|
|
__PF(IEEEPUP,ieeepup)
|
|
__PF(IEEEPUPAT,ieeepupat)
|
|
__PF(DEC,dec)
|
|
__PF(DNA_DL,dna_dl)
|
|
__PF(DNA_RC,dna_rc)
|
|
__PF(DNA_RT,dna_rt)
|
|
__PF(LAT,lat)
|
|
__PF(DIAG,diag)
|
|
__PF(CUST,cust)
|
|
__PF(SCA,sca)
|
|
__PF(RARP,rarp)
|
|
__PF(ATALK,atalk)
|
|
__PF(AARP,aarp)
|
|
__PF(IPX,ipx)
|
|
__PF(IPV6,ipv6)
|
|
__PF(PPP_DISC,ppp_disc)
|
|
__PF(PPP_SES,ppp_ses)
|
|
__PF(ATMMPOA,atmmpoa)
|
|
__PF(ATMFATE,atmfate)
|
|
__PF(802_3,802_3)
|
|
__PF(AX25,ax25)
|
|
__PF(ALL,all)
|
|
__PF(802_2,802_2)
|
|
__PF(SNAP,snap)
|
|
__PF(DDCMP,ddcmp)
|
|
__PF(WAN_PPP,wan_ppp)
|
|
__PF(PPP_MP,ppp_mp)
|
|
__PF(LOCALTALK,localtalk)
|
|
__PF(CAN,can)
|
|
__PF(PPPTALK,ppptalk)
|
|
__PF(TR_802_2,tr_802_2)
|
|
__PF(MOBITEX,mobitex)
|
|
__PF(CONTROL,control)
|
|
__PF(IRDA,irda)
|
|
__PF(ECONET,econet)
|
|
__PF(TIPC,tipc)
|
|
__PF(PROFINET,profinet)
|
|
__PF(AOE,aoe)
|
|
__PF(ETHERCAT,ethercat)
|
|
__PF(8021Q,802.1Q)
|
|
__PF(8021AD,802.1ad)
|
|
__PF(MPLS_UC,mpls_uc)
|
|
__PF(MPLS_MC,mpls_mc)
|
|
__PF(TEB,teb)
|
|
__PF(CFM,cfm)
|
|
|
|
{ 0x8100, "802.1Q" },
|
|
{ 0x88cc, "LLDP" },
|
|
{ ETH_P_IP, "ipv4" },
|
|
};
|
|
#undef __PF
|
|
|
|
const char *ll_proto_n2a(unsigned short id, char *buf, int len)
|
|
{
|
|
size_t len_tb = ARRAY_SIZE(llproto_names);
|
|
|
|
return proto_n2a(id, buf, len, llproto_names, len_tb);
|
|
}
|
|
|
|
int ll_proto_a2n(unsigned short *id, const char *buf)
|
|
{
|
|
size_t len_tb = ARRAY_SIZE(llproto_names);
|
|
|
|
return proto_a2n(id, buf, llproto_names, len_tb);
|
|
}
|