blob: 7b7d0cf498c38b5c887c2b08cfd7c788a0127c9c [file] [log] [blame]
Dan Egnor2b4abcd2010-04-07 17:30:50 -07001/*
2 * Copyright (C) 2010 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#define LOG_TAG "TrafficStats"
18
19#include <dirent.h>
20#include <errno.h>
21#include <fcntl.h>
Mark Salyzyn85394032014-04-16 10:28:37 -070022#include <inttypes.h>
Dan Egnor2b4abcd2010-04-07 17:30:50 -070023#include <sys/stat.h>
24#include <sys/types.h>
25
Andreas Gampeed6b9df2014-11-20 22:02:20 -080026#include "core_jni_helpers.h"
Dan Egnor2b4abcd2010-04-07 17:30:50 -070027#include <jni.h>
Elliott Hughesf17b9712011-04-12 16:12:09 -070028#include <ScopedUtfChars.h>
Dan Egnor2b4abcd2010-04-07 17:30:50 -070029#include <utils/misc.h>
30#include <utils/Log.h>
31
32namespace android {
33
Jeff Sharkey4b17a132013-02-05 21:32:33 -080034static const char* QTAGUID_IFACE_STATS = "/proc/net/xt_qtaguid/iface_stat_fmt";
Jeff Sharkey92be93a2013-01-15 17:25:09 -080035static const char* QTAGUID_UID_STATS = "/proc/net/xt_qtaguid/stats";
Ashish Sharmac39c1d42011-01-27 15:52:38 -080036
Jeff Sharkey234766a2012-04-10 19:48:07 -070037// NOTE: keep these in sync with TrafficStats.java
Jeff Sharkey4b17a132013-02-05 21:32:33 -080038static const uint64_t UNKNOWN = -1;
39
40enum StatsType {
Jeff Sharkey234766a2012-04-10 19:48:07 -070041 RX_BYTES = 0,
42 RX_PACKETS = 1,
43 TX_BYTES = 2,
Jeff Sharkey4b17a132013-02-05 21:32:33 -080044 TX_PACKETS = 3,
45 TCP_RX_PACKETS = 4,
46 TCP_TX_PACKETS = 5
Jeff Sharkey234766a2012-04-10 19:48:07 -070047};
48
Jeff Sharkey4b17a132013-02-05 21:32:33 -080049struct Stats {
Jeff Sharkey234766a2012-04-10 19:48:07 -070050 uint64_t rxBytes;
51 uint64_t rxPackets;
52 uint64_t txBytes;
53 uint64_t txPackets;
Jeff Sharkey4b17a132013-02-05 21:32:33 -080054 uint64_t tcpRxPackets;
55 uint64_t tcpTxPackets;
Jeff Sharkey234766a2012-04-10 19:48:07 -070056};
57
Jeff Sharkey4b17a132013-02-05 21:32:33 -080058static uint64_t getStatsType(struct Stats* stats, StatsType type) {
59 switch (type) {
60 case RX_BYTES:
61 return stats->rxBytes;
62 case RX_PACKETS:
63 return stats->rxPackets;
64 case TX_BYTES:
65 return stats->txBytes;
66 case TX_PACKETS:
67 return stats->txPackets;
68 case TCP_RX_PACKETS:
69 return stats->tcpRxPackets;
70 case TCP_TX_PACKETS:
71 return stats->tcpTxPackets;
72 default:
73 return UNKNOWN;
74 }
75}
76
Jeff Sharkey4b17a132013-02-05 21:32:33 -080077static int parseIfaceStats(const char* iface, struct Stats* stats) {
78 FILE *fp = fopen(QTAGUID_IFACE_STATS, "r");
79 if (fp == NULL) {
80 return -1;
Jeff Sharkey234766a2012-04-10 19:48:07 -070081 }
Kazuhiro Ondo64ba5ea2011-07-05 16:12:10 -050082
Jeff Sharkey8669a162013-02-07 15:02:55 -080083 char buffer[384];
Jeff Sharkey234766a2012-04-10 19:48:07 -070084 char cur_iface[32];
Jeff Sharkey4b17a132013-02-05 21:32:33 -080085 bool foundTcp = false;
86 uint64_t rxBytes, rxPackets, txBytes, txPackets, tcpRxPackets, tcpTxPackets;
Kazuhiro Ondo64ba5ea2011-07-05 16:12:10 -050087
Jeff Sharkey4b17a132013-02-05 21:32:33 -080088 while (fgets(buffer, sizeof(buffer), fp) != NULL) {
Mark Salyzyn85394032014-04-16 10:28:37 -070089 int matched = sscanf(buffer, "%31s %" SCNu64 " %" SCNu64 " %" SCNu64
90 " %" SCNu64 " " "%*u %" SCNu64 " %*u %*u %*u %*u "
91 "%*u %" SCNu64 " %*u %*u %*u %*u", cur_iface, &rxBytes,
Jeff Sharkey4b17a132013-02-05 21:32:33 -080092 &rxPackets, &txBytes, &txPackets, &tcpRxPackets, &tcpTxPackets);
93 if (matched >= 5) {
94 if (matched == 7) {
95 foundTcp = true;
96 }
97 if (!iface || !strcmp(iface, cur_iface)) {
98 stats->rxBytes += rxBytes;
99 stats->rxPackets += rxPackets;
100 stats->txBytes += txBytes;
101 stats->txPackets += txPackets;
102 if (matched == 7) {
103 stats->tcpRxPackets += tcpRxPackets;
104 stats->tcpTxPackets += tcpTxPackets;
105 }
Jeff Sharkey234766a2012-04-10 19:48:07 -0700106 }
Dan Egnor2b4abcd2010-04-07 17:30:50 -0700107 }
108 }
109
Jeff Sharkey4b17a132013-02-05 21:32:33 -0800110 if (!foundTcp) {
111 stats->tcpRxPackets = UNKNOWN;
112 stats->tcpTxPackets = UNKNOWN;
113 }
114
115 if (fclose(fp) != 0) {
116 return -1;
117 }
Jeff Sharkey234766a2012-04-10 19:48:07 -0700118 return 0;
Dan Egnor2b4abcd2010-04-07 17:30:50 -0700119}
120
Jeff Sharkey92be93a2013-01-15 17:25:09 -0800121static int parseUidStats(const uint32_t uid, struct Stats* stats) {
122 FILE *fp = fopen(QTAGUID_UID_STATS, "r");
123 if (fp == NULL) {
124 return -1;
125 }
126
Jeff Sharkey8669a162013-02-07 15:02:55 -0800127 char buffer[384];
Jeff Sharkey92be93a2013-01-15 17:25:09 -0800128 char iface[32];
129 uint32_t idx, cur_uid, set;
130 uint64_t tag, rxBytes, rxPackets, txBytes, txPackets;
131
Jeff Sharkey8669a162013-02-07 15:02:55 -0800132 while (fgets(buffer, sizeof(buffer), fp) != NULL) {
Mark Salyzyn85394032014-04-16 10:28:37 -0700133 if (sscanf(buffer,
134 "%" SCNu32 " %31s 0x%" SCNx64 " %u %u %" SCNu64 " %" SCNu64
135 " %" SCNu64 " %" SCNu64 "",
136 &idx, iface, &tag, &cur_uid, &set, &rxBytes, &rxPackets,
137 &txBytes, &txPackets) == 9) {
Jeff Sharkey92be93a2013-01-15 17:25:09 -0800138 if (uid == cur_uid && tag == 0L) {
139 stats->rxBytes += rxBytes;
140 stats->rxPackets += rxPackets;
141 stats->txBytes += txBytes;
142 stats->txPackets += txPackets;
143 }
144 }
145 }
146
147 if (fclose(fp) != 0) {
148 return -1;
149 }
150 return 0;
151}
152
Jeff Sharkey234766a2012-04-10 19:48:07 -0700153static jlong getTotalStat(JNIEnv* env, jclass clazz, jint type) {
Jeff Sharkey4b17a132013-02-05 21:32:33 -0800154 struct Stats stats;
155 memset(&stats, 0, sizeof(Stats));
156 if (parseIfaceStats(NULL, &stats) == 0) {
157 return getStatsType(&stats, (StatsType) type);
158 } else {
159 return UNKNOWN;
160 }
Irfan Sheriff227bec42011-02-15 19:30:27 -0800161}
162
Jeff Sharkey234766a2012-04-10 19:48:07 -0700163static jlong getIfaceStat(JNIEnv* env, jclass clazz, jstring iface, jint type) {
Jeff Sharkey4b17a132013-02-05 21:32:33 -0800164 ScopedUtfChars iface8(env, iface);
165 if (iface8.c_str() == NULL) {
166 return UNKNOWN;
167 }
168
169 struct Stats stats;
170 memset(&stats, 0, sizeof(Stats));
JP Abgrall62f16bf2013-03-01 23:38:40 -0800171 if (parseIfaceStats(iface8.c_str(), &stats) == 0) {
Jeff Sharkey4b17a132013-02-05 21:32:33 -0800172 return getStatsType(&stats, (StatsType) type);
Jeff Sharkey234766a2012-04-10 19:48:07 -0700173 } else {
Jeff Sharkey4b17a132013-02-05 21:32:33 -0800174 return UNKNOWN;
Jeff Sharkey234766a2012-04-10 19:48:07 -0700175 }
Irfan Sheriff227bec42011-02-15 19:30:27 -0800176}
177
Jeff Sharkey92be93a2013-01-15 17:25:09 -0800178static jlong getUidStat(JNIEnv* env, jclass clazz, jint uid, jint type) {
179 struct Stats stats;
180 memset(&stats, 0, sizeof(Stats));
181 if (parseUidStats(uid, &stats) == 0) {
182 return getStatsType(&stats, (StatsType) type);
183 } else {
184 return UNKNOWN;
Ashish Sharmac39c1d42011-01-27 15:52:38 -0800185 }
Dan Egnor2b4abcd2010-04-07 17:30:50 -0700186}
187
Daniel Micay76f6a862015-09-19 17:31:01 -0400188static const JNINativeMethod gMethods[] = {
Jeff Sharkey234766a2012-04-10 19:48:07 -0700189 {"nativeGetTotalStat", "(I)J", (void*) getTotalStat},
190 {"nativeGetIfaceStat", "(Ljava/lang/String;I)J", (void*) getIfaceStat},
Jeff Sharkey92be93a2013-01-15 17:25:09 -0800191 {"nativeGetUidStat", "(II)J", (void*) getUidStat},
Dan Egnor2b4abcd2010-04-07 17:30:50 -0700192};
193
194int register_android_net_TrafficStats(JNIEnv* env) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800195 return RegisterMethodsOrDie(env, "android/net/TrafficStats", gMethods, NELEM(gMethods));
Dan Egnor2b4abcd2010-04-07 17:30:50 -0700196}
197
198}