| /* |
| * Copyright (C) 2023 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| package android.net.apf; |
| |
| import android.util.ArrayMap; |
| |
| import com.android.internal.annotations.VisibleForTesting; |
| |
| import java.util.Arrays; |
| import java.util.List; |
| import java.util.Map; |
| |
| /** |
| * Common counter class for {@code ApfFilter} and {@code LegacyApfFilter}. |
| * |
| * @hide |
| */ |
| public class ApfCounterTracker { |
| /** |
| * APF packet counters. |
| * |
| * Packet counters are 32bit big-endian values, and allocated near the end of the APF data |
| * buffer, using negative byte offsets, where -4 is equivalent to maximumApfProgramSize - 4, |
| * the last writable 32bit word. |
| */ |
| @VisibleForTesting |
| public enum Counter { |
| RESERVED_OOB, // Points to offset 0 from the end of the buffer (out-of-bounds) |
| TOTAL_PACKETS, |
| PASSED_ARP, |
| PASSED_DHCP, |
| PASSED_IPV4, |
| PASSED_IPV6_NON_ICMP, |
| PASSED_IPV4_UNICAST, |
| PASSED_IPV6_ICMP, |
| PASSED_IPV6_UNICAST_NON_ICMP, |
| PASSED_ARP_NON_IPV4, |
| PASSED_ARP_UNKNOWN, |
| PASSED_ARP_UNICAST_REPLY, |
| PASSED_NON_IP_UNICAST, |
| PASSED_MDNS, |
| DROPPED_ETH_BROADCAST, |
| DROPPED_RA, |
| DROPPED_GARP_REPLY, |
| DROPPED_ARP_OTHER_HOST, |
| DROPPED_IPV4_L2_BROADCAST, |
| DROPPED_IPV4_BROADCAST_ADDR, |
| DROPPED_IPV4_BROADCAST_NET, |
| DROPPED_IPV4_MULTICAST, |
| DROPPED_IPV6_ROUTER_SOLICITATION, |
| DROPPED_IPV6_MULTICAST_NA, |
| DROPPED_IPV6_MULTICAST, |
| DROPPED_IPV6_MULTICAST_PING, |
| DROPPED_IPV6_NON_ICMP_MULTICAST, |
| DROPPED_802_3_FRAME, |
| DROPPED_ETHERTYPE_DENYLISTED, |
| DROPPED_ARP_REPLY_SPA_NO_HOST, |
| DROPPED_IPV4_KEEPALIVE_ACK, |
| DROPPED_IPV6_KEEPALIVE_ACK, |
| DROPPED_IPV4_NATT_KEEPALIVE, |
| DROPPED_MDNS, |
| DROPPED_IPV4_TCP_PORT7_UNICAST, |
| DROPPED_ARP_NON_IPV4, |
| DROPPED_ARP_UNKNOWN; |
| |
| /** |
| * Returns the negative byte offset from the end of the APF data segment for |
| * a given counter. |
| */ |
| public int offset() { |
| return -this.ordinal() * 4; // Currently, all counters are 32bit long. |
| } |
| |
| /** |
| * Returns the total size of the data segment in bytes. |
| */ |
| public static int totalSize() { |
| return (Counter.class.getEnumConstants().length - 1) * 4; |
| } |
| } |
| |
| private final List<Counter> mCounterList; |
| // Store the counters' value |
| private final Map<Counter, Long> mCounters = new ArrayMap<>(); |
| |
| public ApfCounterTracker() { |
| Counter[] counters = Counter.class.getEnumConstants(); |
| mCounterList = Arrays.asList(counters).subList(1, counters.length); |
| } |
| |
| /** |
| * Get the value of a counter from APF data. |
| */ |
| public static long getCounterValue(byte[] data, Counter counter) |
| throws ArrayIndexOutOfBoundsException { |
| // Follow the same wrap-around addressing scheme of the interpreter. |
| int offset = counter.offset(); |
| if (offset < 0) { |
| offset = data.length + offset; |
| } |
| |
| // Decode 32bit big-endian integer into a long so we can count up beyond 2^31. |
| long value = 0; |
| for (int i = 0; i < 4; i++) { |
| value = value << 8 | (data[offset] & 0xFF); |
| offset++; |
| } |
| return value; |
| } |
| |
| /** |
| * Update counters from APF data. |
| */ |
| public void updateCountersFromData(byte[] data) { |
| if (data == null) return; |
| for (Counter counter : mCounterList) { |
| long value; |
| try { |
| value = getCounterValue(data, counter); |
| } catch (ArrayIndexOutOfBoundsException e) { |
| value = 0; |
| } |
| long oldValue = mCounters.getOrDefault(counter, 0L); |
| // All counters are increamental |
| if (value > oldValue) { |
| mCounters.put(counter, value); |
| } |
| } |
| } |
| |
| /** |
| * Get counters map. |
| */ |
| public Map<Counter, Long> getCounters() { |
| return mCounters; |
| } |
| } |