blob: 649086575c33826c38ef45b6821fc91fae4bfb00 [file] [log] [blame]
Jeff Sharkey63abc372012-01-11 18:38:16 -08001/*
2 * Copyright (C) 2012 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
17package com.android.server.net;
18
19import static android.net.NetworkStats.TAG_NONE;
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -070020import static android.net.TrafficStats.KB_IN_BYTES;
21import static android.net.TrafficStats.MB_IN_BYTES;
Jeff Sharkey63abc372012-01-11 18:38:16 -080022import static com.android.internal.util.Preconditions.checkNotNull;
23
24import android.net.NetworkStats;
25import android.net.NetworkStats.NonMonotonicObserver;
26import android.net.NetworkStatsHistory;
27import android.net.NetworkTemplate;
28import android.net.TrafficStats;
Jeff Sharkey6de357e2012-05-09 13:33:52 -070029import android.os.DropBoxManager;
Jeff Sharkey63abc372012-01-11 18:38:16 -080030import android.util.Log;
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -070031import android.util.MathUtils;
Jeff Sharkey63abc372012-01-11 18:38:16 -080032import android.util.Slog;
33
Wenchao Tongf5ea3402015-03-04 13:26:38 -080034import com.android.internal.net.VpnInfo;
Jeff Sharkey63abc372012-01-11 18:38:16 -080035import com.android.internal.util.FileRotator;
36import com.android.internal.util.IndentingPrintWriter;
37import com.google.android.collect.Sets;
38
Jeff Sharkey6de357e2012-05-09 13:33:52 -070039import java.io.ByteArrayOutputStream;
Jeff Sharkey63abc372012-01-11 18:38:16 -080040import java.io.DataOutputStream;
41import java.io.File;
42import java.io.IOException;
43import java.io.InputStream;
44import java.io.OutputStream;
Jeff Sharkey55a442e2014-11-18 18:22:21 -080045import java.io.PrintWriter;
Jeff Sharkey63abc372012-01-11 18:38:16 -080046import java.lang.ref.WeakReference;
Jeff Sharkeydaa57e82012-09-19 14:10:39 -070047import java.util.Arrays;
Jeff Sharkey63abc372012-01-11 18:38:16 -080048import java.util.HashSet;
49import java.util.Map;
50
Jeff Sharkey6de357e2012-05-09 13:33:52 -070051import libcore.io.IoUtils;
52
Jeff Sharkey63abc372012-01-11 18:38:16 -080053/**
54 * Logic to record deltas between periodic {@link NetworkStats} snapshots into
55 * {@link NetworkStatsHistory} that belong to {@link NetworkStatsCollection}.
56 * Keeps pending changes in memory until they pass a specific threshold, in
57 * bytes. Uses {@link FileRotator} for persistence logic.
58 * <p>
59 * Not inherently thread safe.
60 */
61public class NetworkStatsRecorder {
62 private static final String TAG = "NetworkStatsRecorder";
Jeff Sharkeye7bb71d2012-02-28 15:13:08 -080063 private static final boolean LOGD = false;
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -080064 private static final boolean LOGV = false;
Jeff Sharkey63abc372012-01-11 18:38:16 -080065
Jeff Sharkey6de357e2012-05-09 13:33:52 -070066 private static final String TAG_NETSTATS_DUMP = "netstats_dump";
67
68 /** Dump before deleting in {@link #recoverFromWtf()}. */
69 private static final boolean DUMP_BEFORE_DELETE = true;
70
Jeff Sharkey63abc372012-01-11 18:38:16 -080071 private final FileRotator mRotator;
72 private final NonMonotonicObserver<String> mObserver;
Jeff Sharkey6de357e2012-05-09 13:33:52 -070073 private final DropBoxManager mDropBox;
Jeff Sharkey63abc372012-01-11 18:38:16 -080074 private final String mCookie;
75
76 private final long mBucketDuration;
Jeff Sharkey63abc372012-01-11 18:38:16 -080077 private final boolean mOnlyTags;
78
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -070079 private long mPersistThresholdBytes = 2 * MB_IN_BYTES;
Jeff Sharkey63abc372012-01-11 18:38:16 -080080 private NetworkStats mLastSnapshot;
81
82 private final NetworkStatsCollection mPending;
83 private final NetworkStatsCollection mSinceBoot;
84
85 private final CombiningRewriter mPendingRewriter;
86
87 private WeakReference<NetworkStatsCollection> mComplete;
88
89 public NetworkStatsRecorder(FileRotator rotator, NonMonotonicObserver<String> observer,
Jeff Sharkey6de357e2012-05-09 13:33:52 -070090 DropBoxManager dropBox, String cookie, long bucketDuration, boolean onlyTags) {
Jeff Sharkey63abc372012-01-11 18:38:16 -080091 mRotator = checkNotNull(rotator, "missing FileRotator");
92 mObserver = checkNotNull(observer, "missing NonMonotonicObserver");
Jeff Sharkey6de357e2012-05-09 13:33:52 -070093 mDropBox = checkNotNull(dropBox, "missing DropBoxManager");
Jeff Sharkey63abc372012-01-11 18:38:16 -080094 mCookie = cookie;
95
96 mBucketDuration = bucketDuration;
Jeff Sharkey63abc372012-01-11 18:38:16 -080097 mOnlyTags = onlyTags;
98
99 mPending = new NetworkStatsCollection(bucketDuration);
100 mSinceBoot = new NetworkStatsCollection(bucketDuration);
101
102 mPendingRewriter = new CombiningRewriter(mPending);
103 }
104
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -0700105 public void setPersistThreshold(long thresholdBytes) {
106 if (LOGV) Slog.v(TAG, "setPersistThreshold() with " + thresholdBytes);
107 mPersistThresholdBytes = MathUtils.constrain(
108 thresholdBytes, 1 * KB_IN_BYTES, 100 * MB_IN_BYTES);
109 }
110
Jeff Sharkey63abc372012-01-11 18:38:16 -0800111 public void resetLocked() {
112 mLastSnapshot = null;
113 mPending.reset();
114 mSinceBoot.reset();
115 mComplete.clear();
116 }
117
118 public NetworkStats.Entry getTotalSinceBootLocked(NetworkTemplate template) {
119 return mSinceBoot.getSummary(template, Long.MIN_VALUE, Long.MAX_VALUE).getTotal(null);
120 }
121
122 /**
123 * Load complete history represented by {@link FileRotator}. Caches
124 * internally as a {@link WeakReference}, and updated with future
125 * {@link #recordSnapshotLocked(NetworkStats, Map, long)} snapshots as long
126 * as reference is valid.
127 */
128 public NetworkStatsCollection getOrLoadCompleteLocked() {
Jeff Sharkey55a442e2014-11-18 18:22:21 -0800129 NetworkStatsCollection res = mComplete != null ? mComplete.get() : null;
130 if (res == null) {
131 res = loadLocked(Long.MIN_VALUE, Long.MAX_VALUE);
132 mComplete = new WeakReference<NetworkStatsCollection>(res);
Jeff Sharkey63abc372012-01-11 18:38:16 -0800133 }
Jeff Sharkey55a442e2014-11-18 18:22:21 -0800134 return res;
135 }
136
137 public NetworkStatsCollection getOrLoadPartialLocked(long start, long end) {
138 NetworkStatsCollection res = mComplete != null ? mComplete.get() : null;
139 if (res == null) {
140 res = loadLocked(start, end);
141 }
142 return res;
143 }
144
145 private NetworkStatsCollection loadLocked(long start, long end) {
146 if (LOGD) Slog.d(TAG, "loadLocked() reading from disk for " + mCookie);
147 final NetworkStatsCollection res = new NetworkStatsCollection(mBucketDuration);
148 try {
149 mRotator.readMatching(res, start, end);
150 res.recordCollection(mPending);
151 } catch (IOException e) {
152 Log.wtf(TAG, "problem completely reading network stats", e);
153 recoverFromWtf();
154 } catch (OutOfMemoryError e) {
155 Log.wtf(TAG, "problem completely reading network stats", e);
156 recoverFromWtf();
157 }
158 return res;
Jeff Sharkey63abc372012-01-11 18:38:16 -0800159 }
160
161 /**
162 * Record any delta that occurred since last {@link NetworkStats} snapshot,
163 * using the given {@link Map} to identify network interfaces. First
164 * snapshot is considered bootstrap, and is not counted as delta.
165 */
166 public void recordSnapshotLocked(NetworkStats snapshot,
Wenchao Tongf5ea3402015-03-04 13:26:38 -0800167 Map<String, NetworkIdentitySet> ifaceIdent, VpnInfo[] vpnArray,
168 long currentTimeMillis) {
Jeff Sharkey63abc372012-01-11 18:38:16 -0800169 final HashSet<String> unknownIfaces = Sets.newHashSet();
170
Jeff Sharkeye8914c32012-05-01 16:26:09 -0700171 // skip recording when snapshot missing
172 if (snapshot == null) return;
173
Jeff Sharkey63abc372012-01-11 18:38:16 -0800174 // assume first snapshot is bootstrap and don't record
175 if (mLastSnapshot == null) {
176 mLastSnapshot = snapshot;
177 return;
178 }
179
180 final NetworkStatsCollection complete = mComplete != null ? mComplete.get() : null;
181
182 final NetworkStats delta = NetworkStats.subtract(
183 snapshot, mLastSnapshot, mObserver, mCookie);
184 final long end = currentTimeMillis;
185 final long start = end - delta.getElapsedRealtime();
186
Wenchao Tongf5ea3402015-03-04 13:26:38 -0800187 if (vpnArray != null) {
188 for (VpnInfo info : vpnArray) {
189 delta.migrateTun(info.ownerUid, info.vpnIface, info.primaryUnderlyingIface);
190 }
191 }
192
Jeff Sharkey63abc372012-01-11 18:38:16 -0800193 NetworkStats.Entry entry = null;
194 for (int i = 0; i < delta.size(); i++) {
195 entry = delta.getValues(i, entry);
196 final NetworkIdentitySet ident = ifaceIdent.get(entry.iface);
197 if (ident == null) {
198 unknownIfaces.add(entry.iface);
199 continue;
200 }
201
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -0700202 // skip when no delta occurred
Jeff Sharkey63abc372012-01-11 18:38:16 -0800203 if (entry.isEmpty()) continue;
204
205 // only record tag data when requested
206 if ((entry.tag == TAG_NONE) != mOnlyTags) {
207 mPending.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
208
209 // also record against boot stats when present
210 if (mSinceBoot != null) {
211 mSinceBoot.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
212 }
213
214 // also record against complete dataset when present
215 if (complete != null) {
216 complete.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
217 }
218 }
219 }
220
221 mLastSnapshot = snapshot;
222
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -0800223 if (LOGV && unknownIfaces.size() > 0) {
Jeff Sharkey63abc372012-01-11 18:38:16 -0800224 Slog.w(TAG, "unknown interfaces " + unknownIfaces + ", ignoring those stats");
225 }
226 }
227
228 /**
229 * Consider persisting any pending deltas, if they are beyond
230 * {@link #mPersistThresholdBytes}.
231 */
232 public void maybePersistLocked(long currentTimeMillis) {
233 final long pendingBytes = mPending.getTotalBytes();
234 if (pendingBytes >= mPersistThresholdBytes) {
235 forcePersistLocked(currentTimeMillis);
236 } else {
237 mRotator.maybeRotate(currentTimeMillis);
238 }
239 }
240
241 /**
242 * Force persisting any pending deltas.
243 */
244 public void forcePersistLocked(long currentTimeMillis) {
245 if (mPending.isDirty()) {
246 if (LOGD) Slog.d(TAG, "forcePersistLocked() writing for " + mCookie);
247 try {
248 mRotator.rewriteActive(mPendingRewriter, currentTimeMillis);
249 mRotator.maybeRotate(currentTimeMillis);
250 mPending.reset();
251 } catch (IOException e) {
252 Log.wtf(TAG, "problem persisting pending stats", e);
Jeff Sharkey6de357e2012-05-09 13:33:52 -0700253 recoverFromWtf();
Jeff Sharkeye4984be2013-09-10 21:03:27 -0700254 } catch (OutOfMemoryError e) {
255 Log.wtf(TAG, "problem persisting pending stats", e);
256 recoverFromWtf();
Jeff Sharkey63abc372012-01-11 18:38:16 -0800257 }
258 }
259 }
260
261 /**
262 * Remove the given UID from all {@link FileRotator} history, migrating it
263 * to {@link TrafficStats#UID_REMOVED}.
264 */
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700265 public void removeUidsLocked(int[] uids) {
Jeff Sharkey63abc372012-01-11 18:38:16 -0800266 try {
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700267 // Rewrite all persisted data to migrate UID stats
268 mRotator.rewriteAll(new RemoveUidRewriter(mBucketDuration, uids));
Jeff Sharkey63abc372012-01-11 18:38:16 -0800269 } catch (IOException e) {
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700270 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e);
Jeff Sharkey6de357e2012-05-09 13:33:52 -0700271 recoverFromWtf();
Jeff Sharkeye4984be2013-09-10 21:03:27 -0700272 } catch (OutOfMemoryError e) {
273 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e);
274 recoverFromWtf();
Jeff Sharkey63abc372012-01-11 18:38:16 -0800275 }
276
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700277 // Remove any pending stats
278 mPending.removeUids(uids);
279 mSinceBoot.removeUids(uids);
280
281 // Clear UID from current stats snapshot
Jeff Sharkey63abc372012-01-11 18:38:16 -0800282 if (mLastSnapshot != null) {
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700283 mLastSnapshot = mLastSnapshot.withoutUids(uids);
Jeff Sharkey63abc372012-01-11 18:38:16 -0800284 }
Jeff Sharkeyb52e3e52012-04-06 11:12:08 -0700285
286 final NetworkStatsCollection complete = mComplete != null ? mComplete.get() : null;
287 if (complete != null) {
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700288 complete.removeUids(uids);
Jeff Sharkeyb52e3e52012-04-06 11:12:08 -0700289 }
Jeff Sharkey63abc372012-01-11 18:38:16 -0800290 }
291
292 /**
293 * Rewriter that will combine current {@link NetworkStatsCollection} values
294 * with anything read from disk, and write combined set to disk. Clears the
295 * original {@link NetworkStatsCollection} when finished writing.
296 */
297 private static class CombiningRewriter implements FileRotator.Rewriter {
298 private final NetworkStatsCollection mCollection;
299
300 public CombiningRewriter(NetworkStatsCollection collection) {
301 mCollection = checkNotNull(collection, "missing NetworkStatsCollection");
302 }
303
Jeff Sharkeybfdd6802012-04-09 10:49:19 -0700304 @Override
Jeff Sharkey63abc372012-01-11 18:38:16 -0800305 public void reset() {
306 // ignored
307 }
308
Jeff Sharkeybfdd6802012-04-09 10:49:19 -0700309 @Override
Jeff Sharkey63abc372012-01-11 18:38:16 -0800310 public void read(InputStream in) throws IOException {
311 mCollection.read(in);
312 }
313
Jeff Sharkeybfdd6802012-04-09 10:49:19 -0700314 @Override
Jeff Sharkey63abc372012-01-11 18:38:16 -0800315 public boolean shouldWrite() {
316 return true;
317 }
318
Jeff Sharkeybfdd6802012-04-09 10:49:19 -0700319 @Override
Jeff Sharkey63abc372012-01-11 18:38:16 -0800320 public void write(OutputStream out) throws IOException {
321 mCollection.write(new DataOutputStream(out));
322 mCollection.reset();
323 }
324 }
325
326 /**
327 * Rewriter that will remove any {@link NetworkStatsHistory} attributed to
328 * the requested UID, only writing data back when modified.
329 */
330 public static class RemoveUidRewriter implements FileRotator.Rewriter {
331 private final NetworkStatsCollection mTemp;
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700332 private final int[] mUids;
Jeff Sharkey63abc372012-01-11 18:38:16 -0800333
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700334 public RemoveUidRewriter(long bucketDuration, int[] uids) {
Jeff Sharkey63abc372012-01-11 18:38:16 -0800335 mTemp = new NetworkStatsCollection(bucketDuration);
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700336 mUids = uids;
Jeff Sharkey63abc372012-01-11 18:38:16 -0800337 }
338
Jeff Sharkeybfdd6802012-04-09 10:49:19 -0700339 @Override
Jeff Sharkey63abc372012-01-11 18:38:16 -0800340 public void reset() {
341 mTemp.reset();
342 }
343
Jeff Sharkeybfdd6802012-04-09 10:49:19 -0700344 @Override
Jeff Sharkey63abc372012-01-11 18:38:16 -0800345 public void read(InputStream in) throws IOException {
346 mTemp.read(in);
347 mTemp.clearDirty();
Jeff Sharkeydaa57e82012-09-19 14:10:39 -0700348 mTemp.removeUids(mUids);
Jeff Sharkey63abc372012-01-11 18:38:16 -0800349 }
350
Jeff Sharkeybfdd6802012-04-09 10:49:19 -0700351 @Override
Jeff Sharkey63abc372012-01-11 18:38:16 -0800352 public boolean shouldWrite() {
353 return mTemp.isDirty();
354 }
355
Jeff Sharkeybfdd6802012-04-09 10:49:19 -0700356 @Override
Jeff Sharkey63abc372012-01-11 18:38:16 -0800357 public void write(OutputStream out) throws IOException {
358 mTemp.write(new DataOutputStream(out));
359 }
360 }
361
362 public void importLegacyNetworkLocked(File file) throws IOException {
363 // legacy file still exists; start empty to avoid double importing
364 mRotator.deleteAll();
365
366 final NetworkStatsCollection collection = new NetworkStatsCollection(mBucketDuration);
367 collection.readLegacyNetwork(file);
368
369 final long startMillis = collection.getStartMillis();
370 final long endMillis = collection.getEndMillis();
371
372 if (!collection.isEmpty()) {
373 // process legacy data, creating active file at starting time, then
374 // using end time to possibly trigger rotation.
375 mRotator.rewriteActive(new CombiningRewriter(collection), startMillis);
376 mRotator.maybeRotate(endMillis);
377 }
378 }
379
380 public void importLegacyUidLocked(File file) throws IOException {
381 // legacy file still exists; start empty to avoid double importing
382 mRotator.deleteAll();
383
384 final NetworkStatsCollection collection = new NetworkStatsCollection(mBucketDuration);
385 collection.readLegacyUid(file, mOnlyTags);
386
387 final long startMillis = collection.getStartMillis();
388 final long endMillis = collection.getEndMillis();
389
390 if (!collection.isEmpty()) {
391 // process legacy data, creating active file at starting time, then
392 // using end time to possibly trigger rotation.
393 mRotator.rewriteActive(new CombiningRewriter(collection), startMillis);
394 mRotator.maybeRotate(endMillis);
395 }
396 }
397
398 public void dumpLocked(IndentingPrintWriter pw, boolean fullHistory) {
399 pw.print("Pending bytes: "); pw.println(mPending.getTotalBytes());
400 if (fullHistory) {
401 pw.println("Complete history:");
402 getOrLoadCompleteLocked().dump(pw);
403 } else {
404 pw.println("History since boot:");
405 mSinceBoot.dump(pw);
406 }
407 }
Jeff Sharkey6de357e2012-05-09 13:33:52 -0700408
Jeff Sharkey55a442e2014-11-18 18:22:21 -0800409 public void dumpCheckin(PrintWriter pw, long start, long end) {
410 // Only load and dump stats from the requested window
411 getOrLoadPartialLocked(start, end).dumpCheckin(pw, start, end);
412 }
413
Jeff Sharkey6de357e2012-05-09 13:33:52 -0700414 /**
415 * Recover from {@link FileRotator} failure by dumping state to
416 * {@link DropBoxManager} and deleting contents.
417 */
418 private void recoverFromWtf() {
419 if (DUMP_BEFORE_DELETE) {
420 final ByteArrayOutputStream os = new ByteArrayOutputStream();
421 try {
422 mRotator.dumpAll(os);
423 } catch (IOException e) {
424 // ignore partial contents
425 os.reset();
426 } finally {
427 IoUtils.closeQuietly(os);
428 }
429 mDropBox.addData(TAG_NETSTATS_DUMP, os.toByteArray(), 0);
430 }
431
432 mRotator.deleteAll();
433 }
Jeff Sharkey63abc372012-01-11 18:38:16 -0800434}