1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/****************************************************************************
2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   This header was automatically generated from a Linux kernel header
5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   of the same name, to make information necessary for userspace to
6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   call into the kernel available to libc.  It contains only constants,
7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   structures, and macros generated from the original header, and thus,
8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   contains no copyrightable information.
9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   To edit the content of this header, modify the corresponding
11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   source file (e.g. under external/kernel-headers/original/) then
12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   run bionic/libc/kernel/tools/update_all.py
13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   Any manual change here will be lost the next time this script will
15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   be run. You've been warned!
16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/
19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _UAPI__LINUX_BRIDGE_EBT_802_3_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _UAPI__LINUX_BRIDGE_EBT_802_3_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h>
2238062f954c637861348dd8078cefb73554e6f12cChristopher Ferris#include <linux/if_ether.h>
2338062f954c637861348dd8078cefb73554e6f12cChristopher Ferris#define EBT_802_3_SAP 0x01
24655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define EBT_802_3_TYPE 0x02
25655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define EBT_802_3_MATCH "802_3"
26655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define CHECK_TYPE 0xaa
2738062f954c637861348dd8078cefb73554e6f12cChristopher Ferris#define IS_UI 0x03
28655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define EBT_802_3_MASK (EBT_802_3_SAP | EBT_802_3_TYPE | EBT_802_3)
29655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct hdr_ui {
30d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 dsap;
31d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 ssap;
32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 ctrl;
33d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 orig[3];
34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __be16 type;
3538062f954c637861348dd8078cefb73554e6f12cChristopher Ferris};
36655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct hdr_ni {
37d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 dsap;
38d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 ssap;
39d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __be16 ctrl;
40d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 orig[3];
41d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __be16 type;
42655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
4338062f954c637861348dd8078cefb73554e6f12cChristopher Ferrisstruct ebt_802_3_hdr {
44d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 daddr[ETH_ALEN];
45d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 saddr[ETH_ALEN];
46d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __be16 len;
47d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  union {
48d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao    struct hdr_ui ui;
49d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao    struct hdr_ni ni;
50d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  } llc;
5138062f954c637861348dd8078cefb73554e6f12cChristopher Ferris};
52655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct ebt_802_3_info {
53d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 sap;
54d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __be16 type;
55d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 bitmask;
56d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 invflags;
57655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
58a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
59