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 _XT_POLICY_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _XT_POLICY_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h>
22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define XT_POLICY_MAX_ELEM 4
23655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengenum xt_policy_flags {
25d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  XT_POLICY_MATCH_IN = 0x1,
26d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  XT_POLICY_MATCH_OUT = 0x2,
27d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  XT_POLICY_MATCH_NONE = 0x4,
28655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  XT_POLICY_MATCH_STRICT = 0x8,
30655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
31655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengenum xt_policy_modes {
32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  XT_POLICY_MODE_TRANSPORT,
33655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  XT_POLICY_MODE_TUNNEL
35655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
36655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct xt_policy_spec {
37d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 saddr : 1, daddr : 1, proto : 1, mode : 1, spi : 1, reqid : 1;
38655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
40655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengunion xt_policy_addr {
41d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  struct in_addr a4;
42d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  struct in6_addr a6;
43655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
45655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct xt_policy_elem {
46d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  union {
47d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao    struct {
48655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao      union xt_policy_addr saddr;
50d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao      union xt_policy_addr smask;
51d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao      union xt_policy_addr daddr;
52d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao      union xt_policy_addr dmask;
53655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao    };
55d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  };
56d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __be32 spi;
57d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 reqid;
58655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
59d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 proto;
60d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u8 mode;
61d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  struct xt_policy_spec match;
62d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  struct xt_policy_spec invert;
63655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
64655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
65655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct xt_policy_info {
66d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  struct xt_policy_elem pol[XT_POLICY_MAX_ELEM];
67d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u16 flags;
68655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
69d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u16 len;
70655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
71a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
72