Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 | #ifndef _FMSGQ_DESCRIPTOR_H |
| 18 | #define _FMSGQ_DESCRIPTOR_H |
| 19 | |
| 20 | #include <android-base/macros.h> |
| 21 | #include <cutils/native_handle.h> |
| 22 | #include <hidl/HidlSupport.h> |
Hridya Valsaraju | 4fe70f0 | 2016-09-20 21:02:51 -0700 | [diff] [blame] | 23 | #include <utils/NativeHandle.h> |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 24 | |
| 25 | namespace android { |
| 26 | namespace hardware { |
| 27 | |
Hridya Valsaraju | 62bb7a0 | 2016-09-23 10:44:04 -0700 | [diff] [blame] | 28 | typedef uint64_t RingBufferPosition; |
| 29 | |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 30 | struct GrantorDescriptor { |
| 31 | uint32_t flags; |
| 32 | uint32_t fdIndex; |
| 33 | uint32_t offset; |
Hridya Valsaraju | 62bb7a0 | 2016-09-23 10:44:04 -0700 | [diff] [blame] | 34 | size_t extent; |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 35 | }; |
| 36 | |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 37 | enum MQFlavor : uint32_t { |
| 38 | /* |
| 39 | * kSynchronizedReadWrite represents the wait-free synchronized flavor of the |
| 40 | * FMQ. It is intended to be have a single reader and single writer. |
| 41 | * Attempts to overflow/underflow returns a failure. |
| 42 | */ |
Hridya Valsaraju | 5657578 | 2016-10-13 21:44:55 -0700 | [diff] [blame] | 43 | kSynchronizedReadWrite = 0x01, |
| 44 | /* |
| 45 | * kUnsynchronizedWrite represents the flavor of FMQ where writes always |
| 46 | * succeed. This flavor allows one writer and many readers. A read operation |
| 47 | * can detect an overwrite and reset the read counter. |
| 48 | */ |
| 49 | kUnsynchronizedWrite = 0x02 |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 50 | }; |
| 51 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 52 | template <typename T, MQFlavor flavor> |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 53 | struct MQDescriptor { |
| 54 | MQDescriptor( |
| 55 | const std::vector<GrantorDescriptor>& grantors, |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 56 | native_handle_t* nHandle, size_t size); |
Hridya Valsaraju | 62bb7a0 | 2016-09-23 10:44:04 -0700 | [diff] [blame] | 57 | |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 58 | MQDescriptor(size_t bufferSize, native_handle_t* nHandle, |
Hridya Valsaraju | 9ec5730 | 2016-12-14 09:00:31 -0800 | [diff] [blame] | 59 | size_t messageSize, bool configureEventFlag = false); |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 60 | |
Hridya Valsaraju | 0e326a0 | 2016-12-21 10:52:29 -0800 | [diff] [blame] | 61 | MQDescriptor(); |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 62 | ~MQDescriptor(); |
| 63 | |
| 64 | explicit MQDescriptor(const MQDescriptor &other); |
| 65 | MQDescriptor &operator=(const MQDescriptor &other) = delete; |
| 66 | |
| 67 | size_t getSize() const; |
| 68 | |
| 69 | size_t getQuantum() const; |
| 70 | |
| 71 | int32_t getFlags() const; |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 72 | |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 73 | bool isHandleValid() const { return mHandle != nullptr; } |
| 74 | size_t countGrantors() const { return mGrantors.size(); } |
Hridya Valsaraju | 4fe70f0 | 2016-09-20 21:02:51 -0700 | [diff] [blame] | 75 | std::vector<GrantorDescriptor> getGrantors() const; |
| 76 | const sp<NativeHandle> getNativeHandle() const; |
Yifan Hong | 089ae13 | 2016-11-11 11:32:52 -0800 | [diff] [blame] | 77 | |
| 78 | inline const ::android::hardware::hidl_vec<GrantorDescriptor> &grantors() const { |
| 79 | return mGrantors; |
| 80 | } |
| 81 | |
| 82 | inline ::android::hardware::hidl_vec<GrantorDescriptor> &grantors() { |
| 83 | return mGrantors; |
| 84 | } |
| 85 | |
| 86 | inline const ::native_handle_t *handle() const { |
| 87 | return mHandle; |
| 88 | } |
| 89 | |
| 90 | inline ::native_handle_t *handle() { |
| 91 | return mHandle; |
| 92 | } |
| 93 | |
| 94 | static const size_t kOffsetOfGrantors; |
| 95 | static const size_t kOffsetOfHandle; |
Hridya Valsaraju | 9ec5730 | 2016-12-14 09:00:31 -0800 | [diff] [blame] | 96 | enum GrantorType : int { READPTRPOS = 0, WRITEPTRPOS, DATAPTRPOS, EVFLAGWORDPOS }; |
| 97 | |
Hridya Valsaraju | 62bb7a0 | 2016-09-23 10:44:04 -0700 | [diff] [blame] | 98 | /* |
Hridya Valsaraju | 9ec5730 | 2016-12-14 09:00:31 -0800 | [diff] [blame] | 99 | * There should at least be GrantorDescriptors for the read counter, write |
| 100 | * counter and data buffer. A GrantorDescriptor for an EventFlag word is |
| 101 | * not required if there is no need for blocking FMQ operations. |
Hridya Valsaraju | 62bb7a0 | 2016-09-23 10:44:04 -0700 | [diff] [blame] | 102 | */ |
Hridya Valsaraju | 9ec5730 | 2016-12-14 09:00:31 -0800 | [diff] [blame] | 103 | static constexpr int32_t kMinGrantorCount = DATAPTRPOS + 1; |
| 104 | |
| 105 | /* |
| 106 | * Minimum number of GrantorDescriptors required if EventFlag support is |
| 107 | * needed for blocking FMQ operations. |
| 108 | */ |
| 109 | static constexpr int32_t kMinGrantorCountForEvFlagSupport = EVFLAGWORDPOS + 1; |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 110 | private: |
| 111 | ::android::hardware::hidl_vec<GrantorDescriptor> mGrantors; |
Hridya Valsaraju | 4484344 | 2016-12-09 13:38:55 -0800 | [diff] [blame] | 112 | ::android::hardware::details::hidl_pointer<native_handle_t> mHandle; |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 113 | uint32_t mQuantum; |
| 114 | uint32_t mFlags; |
| 115 | }; |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 116 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 117 | template<typename T, MQFlavor flavor> |
| 118 | const size_t MQDescriptor<T, flavor>::kOffsetOfGrantors = offsetof(MQDescriptor, mGrantors); |
Yifan Hong | 089ae13 | 2016-11-11 11:32:52 -0800 | [diff] [blame] | 119 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 120 | template<typename T, MQFlavor flavor> |
| 121 | const size_t MQDescriptor<T, flavor>::kOffsetOfHandle = offsetof(MQDescriptor, mHandle); |
Yifan Hong | 089ae13 | 2016-11-11 11:32:52 -0800 | [diff] [blame] | 122 | |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 123 | /* |
| 124 | * MQDescriptorSync will describe the wait-free synchronized |
| 125 | * flavor of FMQ. |
| 126 | */ |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 127 | template<typename T> |
| 128 | using MQDescriptorSync = MQDescriptor<T, kSynchronizedReadWrite>; |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 129 | |
Hridya Valsaraju | 5657578 | 2016-10-13 21:44:55 -0700 | [diff] [blame] | 130 | /* |
| 131 | * MQDescriptorUnsync will describe the unsynchronized write |
| 132 | * flavor of FMQ. |
| 133 | */ |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 134 | template<typename T> |
| 135 | using MQDescriptorUnsync = MQDescriptor<T, kUnsynchronizedWrite>; |
Hridya Valsaraju | 5657578 | 2016-10-13 21:44:55 -0700 | [diff] [blame] | 136 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 137 | template<typename T, MQFlavor flavor> |
| 138 | MQDescriptor<T, flavor>::MQDescriptor( |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 139 | const std::vector<GrantorDescriptor>& grantors, |
| 140 | native_handle_t* nhandle, |
| 141 | size_t size) |
| 142 | : mHandle(nhandle), |
| 143 | mQuantum(size), |
| 144 | mFlags(flavor) { |
| 145 | mGrantors.resize(grantors.size()); |
| 146 | for (size_t i = 0; i < grantors.size(); ++i) { |
| 147 | mGrantors[i] = grantors[i]; |
| 148 | } |
| 149 | } |
| 150 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 151 | template<typename T, MQFlavor flavor> |
| 152 | MQDescriptor<T, flavor>::MQDescriptor(size_t bufferSize, native_handle_t *nHandle, |
Hridya Valsaraju | 9ec5730 | 2016-12-14 09:00:31 -0800 | [diff] [blame] | 153 | size_t messageSize, bool configureEventFlag) |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 154 | : mHandle(nHandle), mQuantum(messageSize), mFlags(flavor) { |
Hridya Valsaraju | 9ec5730 | 2016-12-14 09:00:31 -0800 | [diff] [blame] | 155 | /* |
| 156 | * If configureEventFlag is true, allocate an additional spot in mGrantor |
| 157 | * for containing the fd and offset for mmapping the EventFlag word. |
| 158 | */ |
| 159 | mGrantors.resize(configureEventFlag? kMinGrantorCountForEvFlagSupport : kMinGrantorCount); |
| 160 | |
| 161 | size_t memSize[] = { |
| 162 | sizeof(RingBufferPosition), /* memory to be allocated for read pointer counter */ |
| 163 | sizeof(RingBufferPosition), /* memory to be allocated for write pointer counter */ |
| 164 | bufferSize, /* memory to be allocated for data buffer */ |
| 165 | sizeof(std::atomic<uint32_t>)/* memory to be allocated for EventFlag word */ |
| 166 | }; |
| 167 | |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 168 | /* |
| 169 | * Create a default grantor descriptor for read, write pointers and |
| 170 | * the data buffer. fdIndex parameter is set to 0 by default and |
| 171 | * the offset for each grantor is contiguous. |
| 172 | */ |
Hridya Valsaraju | 9ec5730 | 2016-12-14 09:00:31 -0800 | [diff] [blame] | 173 | for (size_t grantorPos = 0, offset = 0; |
| 174 | grantorPos < mGrantors.size(); |
| 175 | offset += memSize[grantorPos++]) { |
| 176 | mGrantors[grantorPos] = { |
| 177 | 0 /* grantor flags */, |
| 178 | 0 /* fdIndex */, |
| 179 | static_cast<uint32_t>(offset), |
| 180 | memSize[grantorPos] |
| 181 | }; |
| 182 | } |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 185 | template<typename T, MQFlavor flavor> |
| 186 | MQDescriptor<T, flavor>::MQDescriptor(const MQDescriptor<T, flavor> &other) |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 187 | : mGrantors(other.mGrantors), |
| 188 | mHandle(nullptr), |
| 189 | mQuantum(other.mQuantum), |
| 190 | mFlags(other.mFlags) { |
| 191 | if (other.mHandle != nullptr) { |
| 192 | mHandle = native_handle_create( |
| 193 | other.mHandle->numFds, other.mHandle->numInts); |
| 194 | |
| 195 | for (int i = 0; i < other.mHandle->numFds; ++i) { |
Hridya Valsaraju | 4484344 | 2016-12-09 13:38:55 -0800 | [diff] [blame] | 196 | mHandle->data[i] = dup(other.mHandle->data[i]); |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Hridya Valsaraju | 4484344 | 2016-12-09 13:38:55 -0800 | [diff] [blame] | 199 | memcpy(&mHandle->data[other.mHandle->numFds], |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 200 | &other.mHandle->data[other.mHandle->numFds], |
| 201 | other.mHandle->numInts * sizeof(int)); |
| 202 | } |
| 203 | } |
| 204 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 205 | template<typename T, MQFlavor flavor> |
| 206 | MQDescriptor<T, flavor>::MQDescriptor() : MQDescriptor( |
Hridya Valsaraju | 0e326a0 | 2016-12-21 10:52:29 -0800 | [diff] [blame] | 207 | std::vector<android::hardware::GrantorDescriptor>(), |
| 208 | nullptr /* nHandle */, |
| 209 | 0 /* size */) {} |
| 210 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 211 | template<typename T, MQFlavor flavor> |
| 212 | MQDescriptor<T, flavor>::~MQDescriptor() { |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 213 | if (mHandle != nullptr) { |
Hridya Valsaraju | 4484344 | 2016-12-09 13:38:55 -0800 | [diff] [blame] | 214 | native_handle_close(mHandle); |
| 215 | native_handle_delete(mHandle); |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 219 | template<typename T, MQFlavor flavor> |
| 220 | size_t MQDescriptor<T, flavor>::getSize() const { |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 221 | return mGrantors[DATAPTRPOS].extent; |
| 222 | } |
| 223 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 224 | template<typename T, MQFlavor flavor> |
| 225 | size_t MQDescriptor<T, flavor>::getQuantum() const { return mQuantum; } |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 226 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 227 | template<typename T, MQFlavor flavor> |
| 228 | int32_t MQDescriptor<T, flavor>::getFlags() const { return mFlags; } |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 229 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 230 | template<typename T, MQFlavor flavor> |
| 231 | std::vector<GrantorDescriptor> MQDescriptor<T, flavor>::getGrantors() const { |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 232 | size_t grantor_count = mGrantors.size(); |
| 233 | std::vector<GrantorDescriptor> grantors(grantor_count); |
| 234 | for (size_t i = 0; i < grantor_count; i++) { |
| 235 | grantors[i] = mGrantors[i]; |
| 236 | } |
| 237 | return grantors; |
| 238 | } |
| 239 | |
Hridya Valsaraju | 7e6404d | 2016-12-27 09:13:34 -0800 | [diff] [blame] | 240 | template<typename T, MQFlavor flavor> |
| 241 | const sp<NativeHandle> MQDescriptor<T, flavor>::getNativeHandle() const { |
Hridya Valsaraju | 24fb4e2 | 2016-09-26 10:37:01 -0700 | [diff] [blame] | 242 | /* |
| 243 | * Create an sp<NativeHandle> from mHandle. |
| 244 | */ |
| 245 | return NativeHandle::create(mHandle, false /* ownsHandle */); |
| 246 | } |
Hridya Valsaraju | 4fe70f0 | 2016-09-20 21:02:51 -0700 | [diff] [blame] | 247 | } // namespace hardware |
| 248 | } // namespace android |
Andreas Huber | 0a45128 | 2016-08-30 11:27:24 -0700 | [diff] [blame] | 249 | |
| 250 | #endif // FMSGQ_DESCRIPTOR_H |