blob: 4fe8140c061c6c199347b8e30570b4a27b17660f [file] [log] [blame]
Chenbo Feng75b410b2018-10-10 15:01:19 -07001/*
2 * Copyright (C) 2018 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
17#include <linux/bpf.h>
18#include "bpf_kern.h"
19
20
21ELF_SEC(BPF_CGROUP_INGRESS_PROG_NAME)
22int bpf_cgroup_ingress(struct __sk_buff* skb) {
23 return bpf_traffic_account(skb, BPF_INGRESS);
24}
25
26ELF_SEC(BPF_CGROUP_EGRESS_PROG_NAME)
27int bpf_cgroup_egress(struct __sk_buff* skb) {
28 return bpf_traffic_account(skb, BPF_EGRESS);
29}
30
31ELF_SEC(XT_BPF_EGRESS_PROG_NAME)
32int xt_bpf_egress_prog(struct __sk_buff* skb) {
33 uint32_t key = skb->ifindex;
34 bpf_update_stats(skb, IFACE_STATS_MAP, BPF_EGRESS, &key);
35 return BPF_MATCH;
36}
37
38ELF_SEC(XT_BPF_INGRESS_PROG_NAME)
39int xt_bpf_ingress_prog(struct __sk_buff* skb) {
40 uint32_t key = skb->ifindex;
41 bpf_update_stats(skb, IFACE_STATS_MAP, BPF_INGRESS, &key);
42 return BPF_MATCH;
43}
44
45ELF_SEC(XT_BPF_WHITELIST_PROG_NAME)
46int xt_bpf_whitelist_prog(struct __sk_buff* skb) {
47 uint32_t sock_uid = get_socket_uid(skb);
48 if (is_system_uid(sock_uid)) return BPF_MATCH;
49 uint8_t* whitelistMatch = find_map_entry(UID_OWNER_MAP, &sock_uid);
50 if (whitelistMatch) return *whitelistMatch & HAPPY_BOX_MATCH;
51 return BPF_NOMATCH;
52}
53
54ELF_SEC(XT_BPF_BLACKLIST_PROG_NAME)
55int xt_bpf_blacklist_prog(struct __sk_buff* skb) {
56 uint32_t sock_uid = get_socket_uid(skb);
57 uint8_t* blacklistMatch = find_map_entry(UID_OWNER_MAP, &sock_uid);
58 if (blacklistMatch) return *blacklistMatch & PENALTY_BOX_MATCH;
59 return BPF_NOMATCH;
60}