blob: 1c3e2f01e8289de60b844f0e2d34599c5ee09e07 [file] [log] [blame]
Sreeram Ramachandrand736d4b2014-03-26 18:33:47 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Sreeram Ramachandran4d4c8b72014-06-20 11:59:40 -070017#ifndef NETD_INCLUDE_FWMARK_H
18#define NETD_INCLUDE_FWMARK_H
Sreeram Ramachandrand736d4b2014-03-26 18:33:47 -070019
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070020#include "Permission.h"
Sreeram Ramachandrand736d4b2014-03-26 18:33:47 -070021
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070022#include <stdint.h>
Sreeram Ramachandrand736d4b2014-03-26 18:33:47 -070023
Sreeram Ramachandran122f5812014-05-11 20:29:49 -070024union Fwmark {
Sreeram Ramachandran122f5812014-05-11 20:29:49 -070025 uint32_t intValue;
26 struct {
27 unsigned netId : 16;
28 bool explicitlySelected : 1;
29 bool protectedFromVpn : 1;
30 Permission permission : 2;
Benedict Wongb9baf262017-12-03 15:43:08 -080031 bool uidBillingDone : 1;
Maciej Żenczykowskia657ec12023-10-19 03:02:48 +000032 unsigned reserved : 8;
33 unsigned vendor : 2; // reserved for vendor
Maciej Żenczykowskicfb37452023-05-16 22:06:05 +000034 bool ingress_cpu_wakeup : 1; // reserved for config_networkWakeupPacketMark/Mask
Sreeram Ramachandran122f5812014-05-11 20:29:49 -070035 };
Benedict Wongb9baf262017-12-03 15:43:08 -080036 constexpr Fwmark() : intValue(0) {}
37
38 static inline uint32_t getUidBillingMask() {
39 Fwmark m;
40 m.uidBillingDone = true;
41 return m.intValue;
42 }
Maciej Żenczykowski0a47ca42023-11-15 08:00:03 +000043
44 static inline uint32_t getIngressCpuWakeupMask() {
45 Fwmark m;
46 m.ingress_cpu_wakeup = true;
47 return m.intValue;
48 }
Sreeram Ramachandran122f5812014-05-11 20:29:49 -070049};
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070050
Sreeram Ramachandran122f5812014-05-11 20:29:49 -070051static const unsigned FWMARK_NET_ID_MASK = 0xffff;
52
Sreeram Ramachandran56afacf2014-05-28 15:07:00 -070053static_assert(sizeof(Fwmark) == sizeof(uint32_t), "The entire fwmark must fit into 32 bits");
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070054
Sreeram Ramachandran4d4c8b72014-06-20 11:59:40 -070055#endif // NETD_INCLUDE_FWMARK_H