Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | */ |
Yi Jin | b592e3b | 2018-02-01 15:17:04 -0800 | [diff] [blame] | 16 | #pragma once |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 17 | |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 18 | #ifndef PRIVACY_BUFFER_H |
| 19 | #define PRIVACY_BUFFER_H |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 20 | |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 21 | #include "Privacy.h" |
| 22 | |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 23 | #include <android/util/EncodedBuffer.h> |
Yi Jin | 42711a0 | 2017-10-11 18:20:24 -0700 | [diff] [blame] | 24 | #include <android/util/ProtoOutputStream.h> |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 25 | #include <stdint.h> |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 26 | #include <utils/Errors.h> |
| 27 | |
| 28 | using namespace android; |
| 29 | using namespace android::util; |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 30 | |
| 31 | /** |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 32 | * PrivacyBuffer holds the original protobuf data and strips PII-sensitive fields |
| 33 | * based on the request and holds stripped data in its own buffer for output. |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 34 | */ |
Yi Jin | b592e3b | 2018-02-01 15:17:04 -0800 | [diff] [blame] | 35 | class PrivacyBuffer { |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 36 | public: |
Yi Jin | 86dce41 | 2018-03-07 11:36:57 -0800 | [diff] [blame^] | 37 | PrivacyBuffer(const Privacy* policy, EncodedBuffer::iterator data); |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 38 | ~PrivacyBuffer(); |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 39 | |
| 40 | /** |
Yi Jin | b592e3b | 2018-02-01 15:17:04 -0800 | [diff] [blame] | 41 | * Strip based on the request and hold data in its own buffer. Return NO_ERROR if strip |
| 42 | * succeeds. |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 43 | */ |
| 44 | status_t strip(const PrivacySpec& spec); |
| 45 | |
| 46 | /** |
| 47 | * Clear encoded buffer so it can be reused by another request. |
| 48 | */ |
| 49 | void clear(); |
| 50 | |
| 51 | /** |
| 52 | * Return the size of the stripped data. |
| 53 | */ |
| 54 | size_t size() const; |
| 55 | |
| 56 | /** |
| 57 | * Flush buffer to the given fd. NO_ERROR is returned if the flush succeeds. |
| 58 | */ |
| 59 | status_t flush(int fd); |
| 60 | |
| 61 | private: |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 62 | const Privacy* mPolicy; |
Yi Jin | 86dce41 | 2018-03-07 11:36:57 -0800 | [diff] [blame^] | 63 | EncodedBuffer::iterator mData; |
Yi Jin | c23fad2 | 2017-09-15 17:24:59 -0700 | [diff] [blame] | 64 | |
Yi Jin | 42711a0 | 2017-10-11 18:20:24 -0700 | [diff] [blame] | 65 | ProtoOutputStream mProto; |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 66 | size_t mSize; |
Yi Jin | 42711a0 | 2017-10-11 18:20:24 -0700 | [diff] [blame] | 67 | |
Yi Jin | b592e3b | 2018-02-01 15:17:04 -0800 | [diff] [blame] | 68 | status_t stripField(const Privacy* parentPolicy, const PrivacySpec& spec, int depth); |
Yi Jin | 42711a0 | 2017-10-11 18:20:24 -0700 | [diff] [blame] | 69 | void writeFieldOrSkip(uint32_t fieldTag, bool skip); |
Yi Jin | 99c248f | 2017-08-25 18:11:58 -0700 | [diff] [blame] | 70 | }; |
| 71 | |
Yi Jin | b592e3b | 2018-02-01 15:17:04 -0800 | [diff] [blame] | 72 | #endif // PRIVACY_BUFFER_H |