$22 GRAYBYTE WORDPRESS FILE MANAGER $33

SERVER : in-mum-web1330.main-hosting.eu #1 SMP Mon Feb 10 22:45:17 UTC 2025
SERVER IP : 88.222.222.132 | ADMIN IP 216.73.216.215
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/alt/python311/lib/python3.11/site-packages/pyroute2/netlink/rtnl/tcmsg/

HOME
Current File : /opt/alt/python311/lib/python3.11/site-packages/pyroute2/netlink/rtnl/tcmsg//cls_basic.py
'''
basic
+++++

Basic filter has multiple types supports.
Examples with ipset matches::

    # Prepare a simple match on an ipset at index 0 src
    # (the first ipset name that appears when running `ipset list`)
    match = [{"kind": "ipset", "index": 0, "mode": "src"}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # The same match but inverted, simply add inverse flag
    match = [{"kind": "ipset", "index": 0, "mode": "src",
              "inverse": True}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # Still one ipset but with multiple dimensions:
    # comma separated list of modes
    match = [{"kind": "ipset", "index": 0, "mode": "src,dst"}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # Now let's add multiple expressions (ipset 0 src and ipset 1 src)
    match = [{"kind": "ipset", "index": 0, "mode": "src",
              "relation": "and"},
             {"kind": "ipset", "index": 1, "mode": "src"}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # The same works with OR (ipset 0 src or ipset 1 src)
    match = [{"kind": "ipset", "index": 0, "mode": "src",
              "relation": "OR"},
             {"kind": "ipset", "index": 1, "mode": "src"}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)


Examples with cmp matches::

    # Repeating the example given in the man page
    match = [{"kind": "cmp", "layer": 2, "opnd": "gt", "align": "u16",
              "offset": 3, "mask": 0xff00, "value": 20}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # Now, the same example but with variations
    # - use layer name instead of enum
    # - use operand sign instead of name
    match = [{"kind": "cmp", "layer": "transport", "opnd": ">","align": "u16",
              "offset": 3, "mask": 0xff00, "value": 20}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # Again, the same example with all possible keywords even if they are
    # ignored
    match = [{"kind": "cmp", "layer": "tcp", "opnd": ">", "align": "u16",
              "offset": 3, "mask": 0xff00, "value": 20, "trans": False}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # Another example, we want to work at the link layer
    # and filter incoming packets matching hwaddr 00:DE:AD:C0:DE:00
    # OSI model tells us that the source hwaddr is at offset 0 of
    # the link layer.
    # Size of hwaddr is 6-bytes in length, so I use an u32 then an u16
    # to do the complete match
    match = [{"kind": "cmp", "layer": "link", "opnd": "eq", "align": "u32",
              "offset": 0, "mask": 0xffffffff, "value": 0x00DEADC0,
              "relation": "and"},
             {"kind": "cmp", "layer": "link", "opnd": "eq", "align": "u16",
              "offset": 4, "mask": 0xffff, "value": 0xDE00}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # As the man page says, here are the different key-value pairs you can use:
    # "layer": "link" or "eth" or 0
    # "layer": "network" or "ip" or 1
    # "layer": "transport" or "tcp" or 2
    # "opnd": "eq" or "=" or 0
    # "opnd": "gt" or ">" or 1
    # "opnd": "lt" or "<" or 2
    # "align": "u8" or "u16" or "u32"
    # "trans": True or False
    # "offset", "mask" and "value": any integer


Examples with meta matches::

    # Repeating the example given in the man page
    match = [{"kind": "meta", "object":{"kind": "nfmark", "opnd": "gt"},
              "value": 24, "relation": "and"},
             {"kind": "meta", "object":{"kind": "tcindex", "opnd": "eq"},
              "value": 0xf0, "mask": 0xf0}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # Now, the same example but with variations
    # - use operand sign instead of name
    match = [{"kind": "meta", "object":{"kind": "nfmark", "opnd": ">"},
              "value": 24, "relation": "and"},
             {"kind": "meta", "object":{"kind": "tcindex", "opnd": "="},
              "value": 0xf0, "mask": 0xf0}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # Another example given by the tc helper
    # meta(indev shift 1 eq "ppp")
    match = [{"kind": "meta", "object":{"kind": "dev", "opnd": "eq",
              "shift": 1}, "value": "ppp"}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match)

    # Another example, drop every packets arriving on ifb0
    match = [{"kind": "meta", "object":{"kind": "dev", "opnd": "eq"},
              "value": "ifb0"}]
    ip.tc("add-filter", "basic", ifb0,
          parent=0x10000, classid=0x10010, match=match, action="drop")

    # As the man page says, here are the different key-value pairs you can use:
    # "opnd": "eq" or "=" or 0
    # "opnd": "gt" or ">" or 1
    # "opnd": "lt" or "<" or 2
    # "shift": any integer between 0 and 255 included
    # "kind" object: see `tc filter add dev iface basic match 'meta(list)'`
                     result
    # "value": any string if kind matches 'dev' or 'sk_bound_if',
    #          any integer otherwise

NOTES:
    When not specified, `inverse` flag is set to False.
    Do not specify `relation` keyword on the last expression or
    if there is only one expression.
    `relation` can be written using multiple format:
      "and", "AND", "&&", "or", "OR", "||"

    You can combine multiple different types of ematch. Here is an example::
    match = [{"kind": "cmp", "layer": 2, "opnd": "eq", "align": "u32",
              "offset": 0, "value": 32, "relation": "&&"},
             {"kind": "meta",
              "object":{"kind": "vlan_tag", "opnd": "eq"}, "value": 100,
              "relation": "||"},
             {"kind": "ipset", "index": 0, "mode": "src", "inverse": True}
            ]
'''

import struct
from socket import htons

from pyroute2 import protocols
from pyroute2.netlink import nla
from pyroute2.netlink.rtnl.tcmsg.common_act import get_tca_action, tca_act_prio
from pyroute2.netlink.rtnl.tcmsg.common_ematch import (
    get_tcf_ematches,
    nla_plus_tcf_ematch_opt,
)


def fix_msg(msg, kwarg):
    msg['info'] = htons(
        kwarg.get('protocol', protocols.ETH_P_ALL) & 0xFFFF
    ) | ((kwarg.get('prio', 0) << 16) & 0xFFFF0000)


def get_parameters(kwarg):
    ret = {'attrs': []}
    attrs_map = (('classid', 'TCA_BASIC_CLASSID'),)

    if kwarg.get('match'):
        ret['attrs'].append(['TCA_BASIC_EMATCHES', get_tcf_ematches(kwarg)])

    if kwarg.get('action'):
        ret['attrs'].append(['TCA_BASIC_ACT', get_tca_action(kwarg)])

    for k, v in attrs_map:
        r = kwarg.get(k, None)
        if r is not None:
            ret['attrs'].append([v, r])

    return ret


class options(nla):
    nla_map = (
        ('TCA_BASIC_UNSPEC', 'none'),
        ('TCA_BASIC_CLASSID', 'uint32'),
        ('TCA_BASIC_EMATCHES', 'parse_basic_ematch_tree'),
        ('TCA_BASIC_ACT', 'tca_act_prio'),
        ('TCA_BASIC_POLICE', 'hex'),
    )

    class parse_basic_ematch_tree(nla):
        nla_map = (
            ('TCA_EMATCH_TREE_UNSPEC', 'none'),
            ('TCA_EMATCH_TREE_HDR', 'tcf_parse_header'),
            ('TCA_EMATCH_TREE_LIST', '*tcf_parse_list'),
        )

        class tcf_parse_header(nla):
            fields = (('nmatches', 'H'), ('progid', 'H'))

        class tcf_parse_list(nla, nla_plus_tcf_ematch_opt):
            fields = (
                ('matchid', 'H'),
                ('kind', 'H'),
                ('flags', 'H'),
                ('pad', 'H'),
                ('opt', 's'),
            )

            def decode(self):
                nla.decode(self)
                size = 0
                for field in self.fields + self.header:
                    if 'opt' in field:
                        # Ignore this field as it a hack used to brain encoder
                        continue
                    size += struct.calcsize(field[1])

                start = self.offset + size
                end = self.offset + self.length
                data = self.data[start:end]
                self['opt'] = self.parse_ematch_options(self, data)

    tca_act_prio = tca_act_prio

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
8 May 2024 6.33 PM
root / root
0755
__pycache__
--
8 May 2024 6.33 PM
root / root
0755
__init__.py
2.679 KB
8 May 2024 6.33 PM
root / root
0644
act_bpf.py
0.956 KB
8 May 2024 6.33 PM
root / root
0644
act_connmark.py
1.205 KB
8 May 2024 6.33 PM
root / root
0644
act_gact.py
0.692 KB
8 May 2024 6.33 PM
root / root
0644
act_mirred.py
1.685 KB
8 May 2024 6.33 PM
root / root
0644
act_police.py
1.822 KB
8 May 2024 6.33 PM
root / root
0644
act_skbedit.py
3.259 KB
8 May 2024 6.33 PM
root / root
0644
act_vlan.py
1.431 KB
8 May 2024 6.33 PM
root / root
0644
cls_basic.py
8.279 KB
8 May 2024 6.33 PM
root / root
0644
cls_flow.py
4.505 KB
8 May 2024 6.33 PM
root / root
0644
cls_fw.py
1.394 KB
8 May 2024 6.33 PM
root / root
0644
cls_matchall.py
0.963 KB
8 May 2024 6.33 PM
root / root
0644
cls_u32.py
7.846 KB
8 May 2024 6.33 PM
root / root
0644
common.py
10.477 KB
8 May 2024 6.33 PM
root / root
0644
common_act.py
2.015 KB
8 May 2024 6.33 PM
root / root
0644
common_ematch.py
3.074 KB
8 May 2024 6.33 PM
root / root
0644
em_cmp.py
2.711 KB
8 May 2024 6.33 PM
root / root
0644
em_ipset.py
1.7 KB
8 May 2024 6.33 PM
root / root
0644
em_meta.py
5.794 KB
8 May 2024 6.33 PM
root / root
0644
sched_bpf.py
2.511 KB
8 May 2024 6.33 PM
root / root
0644
sched_cake.py
12.532 KB
8 May 2024 6.33 PM
root / root
0644
sched_choke.py
3.352 KB
8 May 2024 6.33 PM
root / root
0644
sched_clsact.py
0.987 KB
8 May 2024 6.33 PM
root / root
0644
sched_codel.py
1.569 KB
8 May 2024 6.33 PM
root / root
0644
sched_drr.py
0.737 KB
8 May 2024 6.33 PM
root / root
0644
sched_fq_codel.py
2.596 KB
8 May 2024 6.33 PM
root / root
0644
sched_hfsc.py
2.298 KB
8 May 2024 6.33 PM
root / root
0644
sched_htb.py
5.604 KB
8 May 2024 6.33 PM
root / root
0644
sched_ingress.py
0.209 KB
8 May 2024 6.33 PM
root / root
0644
sched_netem.py
5.021 KB
8 May 2024 6.33 PM
root / root
0644
sched_pfifo.py
0.191 KB
8 May 2024 6.33 PM
root / root
0644
sched_pfifo_fast.py
0.21 KB
8 May 2024 6.33 PM
root / root
0644
sched_plug.py
0.436 KB
8 May 2024 6.33 PM
root / root
0644
sched_sfq.py
2.653 KB
8 May 2024 6.33 PM
root / root
0644
sched_tbf.py
1.062 KB
8 May 2024 6.33 PM
root / root
0644
sched_template.py
1.221 KB
8 May 2024 6.33 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF