blob: 967fd323e5a00040c8e68c7c048246efd5bbc816 [file] [log] [blame]
Yao Chen8a8d16c2018-02-08 14:50:40 -08001/*
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#pragma once
17
18#include "frameworks/base/cmds/statsd/src/statsd_config.pb.h"
19
20namespace android {
21namespace os {
22namespace statsd {
23
24class HashableDimensionKey;
25struct Matcher;
26struct Field;
27struct FieldValue;
28
29const int32_t kAttributionField = 1;
30const int32_t kMaxLogDepth = 2;
31const int32_t kLastBitMask = 0x80;
32const int32_t kClearLastBitDeco = 0x7f;
Yangster-mace06cfd72018-03-10 23:22:59 -080033const int32_t kClearAllPositionMatcherMask = 0xffff00ff;
Yao Chen8a8d16c2018-02-08 14:50:40 -080034
Chenjie Yu12e5e672018-09-14 15:54:59 -070035enum Type { UNKNOWN, INT, LONG, FLOAT, DOUBLE, STRING, STORAGE };
Yao Chen8a8d16c2018-02-08 14:50:40 -080036
Yao Chen4c959cb2018-02-13 13:27:48 -080037int32_t getEncodedField(int32_t pos[], int32_t depth, bool includeDepth);
Yao Chen8a8d16c2018-02-08 14:50:40 -080038
Yao Chen4c959cb2018-02-13 13:27:48 -080039int32_t encodeMatcherMask(int32_t mask[], int32_t depth);
Yao Chen8a8d16c2018-02-08 14:50:40 -080040
41// Get the encoded field for a leaf with a [field] number at depth 0;
Yao Chen4c959cb2018-02-13 13:27:48 -080042inline int32_t getSimpleField(size_t field) {
Yao Chen8a8d16c2018-02-08 14:50:40 -080043 return ((int32_t)field << 8 * 2);
44}
Yao Chen580ea3212018-02-26 14:21:54 -080045
Yao Chen8a8d16c2018-02-08 14:50:40 -080046/**
47 * Field is a wrapper class for 2 integers that represents the field of a log element in its Atom
48 * proto.
49 * [mTag]: the atom id.
50 * [mField]: encoded path from the root (atom) to leaf.
51 *
52 * For example:
53 * WakeLockStateChanged {
54 * repeated AttributionNode = 1;
55 * int state = 2;
56 * string tag = 3;
57 * }
58 * Read from logd, the items are structured as below:
59 * [[[1000, "tag"], [2000, "tag2"],], 2,"hello"]
60 *
61 * When we read through the list, we will encode each field in a 32bit integer.
62 * 8bit segments |--------|--------|--------|--------|
63 * Depth field0 [L]field1 [L]field1
64 *
65 * The first 8 bits are the depth of the field. for example, the uid 1000 has depth 2.
66 * The following 3 8-bit are for the item's position at each level.
67 * The first bit of each 8bits field is reserved to mark if the item is the last item at that level
68 * this is to make matching easier later.
69 *
70 * The above wakelock event is translated into FieldValue pairs.
71 * 0x02010101->1000
72 * 0x02010182->tag
73 * 0x02018201->2000
74 * 0x02018282->tag2
75 * 0x00020000->2
76 * 0x00030000->"hello"
77 *
78 * This encoding is the building block for the later operations.
79 * Please see the definition for Matcher below to see how the matching is done.
80 */
81struct Field {
82private:
83 int32_t mTag;
84 int32_t mField;
85
86public:
Yangster-macf5204922018-02-23 13:08:03 -080087 Field() {}
88
Yao Chen8a8d16c2018-02-08 14:50:40 -080089 Field(int32_t tag, int32_t pos[], int32_t depth) : mTag(tag) {
90 mField = getEncodedField(pos, depth, true);
91 }
92
93 Field(const Field& from) : mTag(from.getTag()), mField(from.getField()) {
94 }
95
96 Field(int32_t tag, int32_t field) : mTag(tag), mField(field){};
97
98 inline void setField(int32_t field) {
99 mField = field;
100 }
101
102 inline void setTag(int32_t tag) {
103 mTag = tag;
104 }
105
106 inline void decorateLastPos(int32_t depth) {
107 int32_t mask = kLastBitMask << 8 * (kMaxLogDepth - depth);
108 mField |= mask;
109 }
110
111 inline int32_t getTag() const {
112 return mTag;
113 }
114
115 inline int32_t getDepth() const {
116 return (mField >> 24);
117 }
118
119 inline int32_t getPath(int32_t depth) const {
120 if (depth > 2 || depth < 0) return 0;
121
122 int32_t field = (mField & 0x00ffffff);
123 int32_t mask = 0xffffffff;
124 return (field & (mask << 8 * (kMaxLogDepth - depth)));
125 }
126
127 inline int32_t getPrefix(int32_t depth) const {
128 if (depth == 0) return 0;
129 return getPath(depth - 1);
130 }
131
132 inline int32_t getField() const {
133 return mField;
134 }
135
136 inline int32_t getRawPosAtDepth(int32_t depth) const {
137 int32_t field = (mField & 0x00ffffff);
138 int32_t shift = 8 * (kMaxLogDepth - depth);
139 int32_t mask = 0xff << shift;
140
141 return (field & mask) >> shift;
142 }
143
144 inline int32_t getPosAtDepth(int32_t depth) const {
145 return getRawPosAtDepth(depth) & kClearLastBitDeco;
146 }
147
148 // Check if the first bit of the 8-bit segment for depth is 1
149 inline bool isLastPos(int32_t depth) const {
150 int32_t field = (mField & 0x00ffffff);
151 int32_t mask = kLastBitMask << 8 * (kMaxLogDepth - depth);
152 return (field & mask) != 0;
153 }
154
155 // if the 8-bit segment is all 0's
156 inline bool isAnyPosMatcher(int32_t depth) const {
157 return getDepth() >= depth && getRawPosAtDepth(depth) == 0;
158 }
159 // if the 8bit is 0x80 (1000 0000)
160 inline bool isLastPosMatcher(int32_t depth) const {
161 return getDepth() >= depth && getRawPosAtDepth(depth) == kLastBitMask;
162 }
163
164 inline bool operator==(const Field& that) const {
165 return mTag == that.getTag() && mField == that.getField();
166 };
167
168 inline bool operator!=(const Field& that) const {
169 return mTag != that.getTag() || mField != that.getField();
170 };
171
172 bool operator<(const Field& that) const {
173 if (mTag != that.getTag()) {
174 return mTag < that.getTag();
175 }
176
177 if (mField != that.getField()) {
178 return mField < that.getField();
179 }
180
181 return false;
182 }
183 bool matches(const Matcher& that) const;
184};
185
186/**
187 * Matcher represents a leaf matcher in the FieldMatcher in statsd_config.
188 *
189 * It contains all information needed to match one or more leaf node.
190 * All information is encoded in a Field(2 ints) and a bit mask(1 int).
191 *
192 * For example, to match the first/any/last uid field in attribution chain in Atom 10,
193 * we have the following FieldMatcher in statsd_config
194 * FieldMatcher {
195 * field:10
196 * FieldMatcher {
197 * field:1
198 * position: any/last/first
199 * FieldMatcher {
200 * field:1
201 * }
202 * }
203 * }
204 *
205 * We translate the FieldMatcher into a Field, and mask
Yao Chen580ea3212018-02-26 14:21:54 -0800206 * First: [Matcher Field] 0x02010101 [Mask]0xff7f7f7f
207 * Last: [Matcher Field] 0x02018001 [Mask]0xff7f807f
208 * Any: [Matcher Field] 0x02010001 [Mask]0xff7f007f
Yangster-mace06cfd72018-03-10 23:22:59 -0800209 * All: [Matcher Field] 0x02010001 [Mask]0xff7f7f7f
Yao Chen8a8d16c2018-02-08 14:50:40 -0800210 *
211 * [To match a log Field with a Matcher] we apply the bit mask to the log Field and check if
212 * the result is equal to the Matcher Field. That's a bit wise AND operation + check if 2 ints are
213 * equal. Nothing can beat the performance of this matching algorithm.
214 *
Yao Chen5bfffb52018-06-21 16:58:51 -0700215 * TODO(b/110561213): ADD EXAMPLE HERE.
Yao Chen8a8d16c2018-02-08 14:50:40 -0800216 */
217struct Matcher {
218 Matcher(const Field& matcher, int32_t mask) : mMatcher(matcher), mMask(mask){};
219
220 const Field mMatcher;
221 const int32_t mMask;
222
Yangster-mac53928882018-02-25 23:02:56 -0800223 inline const Field& getMatcher() const {
224 return mMatcher;
225 }
226
227 inline int32_t getMask() const {
228 return mMask;
229 }
230
Yangster-mace06cfd72018-03-10 23:22:59 -0800231 inline int32_t getRawMaskAtDepth(int32_t depth) const {
232 int32_t field = (mMask & 0x00ffffff);
233 int32_t shift = 8 * (kMaxLogDepth - depth);
234 int32_t mask = 0xff << shift;
235
236 return (field & mask) >> shift;
237 }
238
239 bool hasAllPositionMatcher() const {
240 return mMatcher.getDepth() == 2 && getRawMaskAtDepth(1) == 0x7f;
241 }
242
Yao Chen8a8d16c2018-02-08 14:50:40 -0800243 bool hasAnyPositionMatcher(int* prefix) const {
Yangster-mace06cfd72018-03-10 23:22:59 -0800244 if (mMatcher.getDepth() == 2 && mMatcher.getRawPosAtDepth(1) == 0) {
245 (*prefix) = mMatcher.getPrefix(1);
Yao Chen8a8d16c2018-02-08 14:50:40 -0800246 return true;
247 }
248 return false;
249 }
Yangster-mac53928882018-02-25 23:02:56 -0800250
251 inline bool operator!=(const Matcher& that) const {
252 return mMatcher != that.getMatcher() || mMask != that.getMask();
Yao Chen580ea3212018-02-26 14:21:54 -0800253 }
254
255 inline bool operator==(const Matcher& that) const {
256 return mMatcher == that.mMatcher && mMask == that.mMask;
257 }
Yao Chen8a8d16c2018-02-08 14:50:40 -0800258};
259
Yao Chen580ea3212018-02-26 14:21:54 -0800260inline Matcher getSimpleMatcher(int32_t tag, size_t field) {
261 return Matcher(Field(tag, getSimpleField(field)), 0xff7f0000);
262}
263
tsaichristineed615642020-01-02 12:53:41 -0800264inline Matcher getFirstUidMatcher(int32_t atomId) {
265 int32_t pos[] = {1, 1, 1};
266 return Matcher(Field(atomId, pos, 2), 0xff7f7f7f);
267}
268
Yao Chen8a8d16c2018-02-08 14:50:40 -0800269/**
270 * A wrapper for a union type to contain multiple types of values.
271 *
272 */
273struct Value {
Yangster-macf5204922018-02-23 13:08:03 -0800274 Value() : type(UNKNOWN) {}
275
Yao Chen8a8d16c2018-02-08 14:50:40 -0800276 Value(int32_t v) {
277 int_value = v;
278 type = INT;
279 }
280
281 Value(int64_t v) {
282 long_value = v;
283 type = LONG;
284 }
285
286 Value(float v) {
287 float_value = v;
288 type = FLOAT;
289 }
290
Chenjie Yua0f02242018-07-06 16:14:34 -0700291 Value(double v) {
292 double_value = v;
293 type = DOUBLE;
294 }
295
Yao Chen8a8d16c2018-02-08 14:50:40 -0800296 Value(const std::string& v) {
297 str_value = v;
298 type = STRING;
299 }
300
Chenjie Yu12e5e672018-09-14 15:54:59 -0700301 Value(const std::vector<uint8_t>& v) {
302 storage_value = v;
303 type = STORAGE;
304 }
305
Yao Chen8a8d16c2018-02-08 14:50:40 -0800306 void setInt(int32_t v) {
307 int_value = v;
308 type = INT;
309 }
310
311 void setLong(int64_t v) {
312 long_value = v;
313 type = LONG;
314 }
315
Chenjie Yua0f02242018-07-06 16:14:34 -0700316 void setFloat(float v) {
317 float_value = v;
318 type = FLOAT;
319 }
320
321 void setDouble(double v) {
322 double_value = v;
323 type = DOUBLE;
324 }
325
Yao Chen8a8d16c2018-02-08 14:50:40 -0800326 union {
327 int32_t int_value;
328 int64_t long_value;
329 float float_value;
Chenjie Yua0f02242018-07-06 16:14:34 -0700330 double double_value;
Yao Chen8a8d16c2018-02-08 14:50:40 -0800331 };
332 std::string str_value;
Chenjie Yu12e5e672018-09-14 15:54:59 -0700333 std::vector<uint8_t> storage_value;
Yao Chen8a8d16c2018-02-08 14:50:40 -0800334
335 Type type;
336
337 std::string toString() const;
338
Chenjie Yuc715b9e2018-10-19 07:52:12 -0700339 bool isZero() const;
340
Yao Chen8a8d16c2018-02-08 14:50:40 -0800341 Type getType() const {
342 return type;
343 }
344
Chenjie Yua0f02242018-07-06 16:14:34 -0700345 double getDouble() const;
346
Yao Chen8a8d16c2018-02-08 14:50:40 -0800347 Value(const Value& from);
348
349 bool operator==(const Value& that) const;
350 bool operator!=(const Value& that) const;
351
352 bool operator<(const Value& that) const;
Chenjie Yua0f02242018-07-06 16:14:34 -0700353 bool operator>(const Value& that) const;
354 bool operator>=(const Value& that) const;
355 Value operator-(const Value& that) const;
356 Value& operator+=(const Value& that);
357 Value& operator=(const Value& that);
Yao Chen8a8d16c2018-02-08 14:50:40 -0800358};
359
360/**
361 * Represents a log item, or a dimension item (They are essentially the same).
362 */
363struct FieldValue {
Yangster-macf5204922018-02-23 13:08:03 -0800364 FieldValue() {}
Yao Chen8a8d16c2018-02-08 14:50:40 -0800365 FieldValue(const Field& field, const Value& value) : mField(field), mValue(value) {
366 }
367 bool operator==(const FieldValue& that) const {
368 return mField == that.mField && mValue == that.mValue;
369 }
370 bool operator!=(const FieldValue& that) const {
371 return mField != that.mField || mValue != that.mValue;
372 }
373 bool operator<(const FieldValue& that) const {
374 if (mField != that.mField) {
375 return mField < that.mField;
376 }
377
378 if (mValue != that.mValue) {
379 return mValue < that.mValue;
380 }
381
382 return false;
383 }
384
385 Field mField;
386 Value mValue;
387};
388
Yangster13fb7e42018-03-07 17:30:49 -0800389bool HasPositionANY(const FieldMatcher& matcher);
Yangster-mac9def8e32018-04-17 13:55:51 -0700390bool HasPositionALL(const FieldMatcher& matcher);
Yangster13fb7e42018-03-07 17:30:49 -0800391
Yao Chen8a8d16c2018-02-08 14:50:40 -0800392bool isAttributionUidField(const FieldValue& value);
393
Yao Chen4ce07292019-02-13 13:06:36 -0800394/* returns uid if the field is uid field, or -1 if the field is not a uid field */
395int getUidIfExists(const FieldValue& value);
396
Yao Chen8a8d16c2018-02-08 14:50:40 -0800397void translateFieldMatcher(const FieldMatcher& matcher, std::vector<Matcher>* output);
398
399bool isAttributionUidField(const Field& field, const Value& value);
tsaichristine7a57b8e2019-06-24 18:25:38 -0700400bool isUidField(const Field& field, const Value& value);
Yangster13fb7e42018-03-07 17:30:49 -0800401
402bool equalDimensions(const std::vector<Matcher>& dimension_a,
403 const std::vector<Matcher>& dimension_b);
tsaichristine3a83e812019-12-13 16:46:11 -0800404
405// Returns true if dimension_a is a subset of dimension_b.
406bool subsetDimensions(const std::vector<Matcher>& dimension_a,
407 const std::vector<Matcher>& dimension_b);
Yao Chen8a8d16c2018-02-08 14:50:40 -0800408} // namespace statsd
409} // namespace os
410} // namespace android