blob: 0bffa75d778f818432a32d2af95694bd981d2bae [file] [log] [blame]
Andreas Huber0a451282016-08-30 11:27:24 -07001/*
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 Valsaraju4fe70f02016-09-20 21:02:51 -070023#include <utils/NativeHandle.h>
Andreas Huber0a451282016-08-30 11:27:24 -070024
25namespace android {
26namespace hardware {
27
Hridya Valsaraju62bb7a02016-09-23 10:44:04 -070028typedef uint64_t RingBufferPosition;
29
Andreas Huber0a451282016-08-30 11:27:24 -070030struct GrantorDescriptor {
31 uint32_t flags;
32 uint32_t fdIndex;
33 uint32_t offset;
Hridya Valsaraju62bb7a02016-09-23 10:44:04 -070034 size_t extent;
Andreas Huber0a451282016-08-30 11:27:24 -070035};
36
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -070037enum 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 Valsaraju56575782016-10-13 21:44:55 -070043 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 Valsaraju24fb4e22016-09-26 10:37:01 -070050};
51
52template <MQFlavor flavor>
Andreas Huber0a451282016-08-30 11:27:24 -070053struct MQDescriptor {
54 MQDescriptor(
55 const std::vector<GrantorDescriptor>& grantors,
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -070056 native_handle_t* nHandle, size_t size);
Hridya Valsaraju62bb7a02016-09-23 10:44:04 -070057
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -070058 MQDescriptor(size_t bufferSize, native_handle_t* nHandle,
Hridya Valsaraju9ec57302016-12-14 09:00:31 -080059 size_t messageSize, bool configureEventFlag = false);
Andreas Huber0a451282016-08-30 11:27:24 -070060
61 ~MQDescriptor();
62
63 explicit MQDescriptor(const MQDescriptor &other);
64 MQDescriptor &operator=(const MQDescriptor &other) = delete;
65
66 size_t getSize() const;
67
68 size_t getQuantum() const;
69
70 int32_t getFlags() const;
Andreas Huber0a451282016-08-30 11:27:24 -070071
Andreas Huber0a451282016-08-30 11:27:24 -070072 bool isHandleValid() const { return mHandle != nullptr; }
73 size_t countGrantors() const { return mGrantors.size(); }
Hridya Valsaraju4fe70f02016-09-20 21:02:51 -070074 std::vector<GrantorDescriptor> getGrantors() const;
75 const sp<NativeHandle> getNativeHandle() const;
Yifan Hong089ae132016-11-11 11:32:52 -080076
77 inline const ::android::hardware::hidl_vec<GrantorDescriptor> &grantors() const {
78 return mGrantors;
79 }
80
81 inline ::android::hardware::hidl_vec<GrantorDescriptor> &grantors() {
82 return mGrantors;
83 }
84
85 inline const ::native_handle_t *handle() const {
86 return mHandle;
87 }
88
89 inline ::native_handle_t *handle() {
90 return mHandle;
91 }
92
93 static const size_t kOffsetOfGrantors;
94 static const size_t kOffsetOfHandle;
Hridya Valsaraju9ec57302016-12-14 09:00:31 -080095 enum GrantorType : int { READPTRPOS = 0, WRITEPTRPOS, DATAPTRPOS, EVFLAGWORDPOS };
96
Hridya Valsaraju62bb7a02016-09-23 10:44:04 -070097 /*
Hridya Valsaraju9ec57302016-12-14 09:00:31 -080098 * There should at least be GrantorDescriptors for the read counter, write
99 * counter and data buffer. A GrantorDescriptor for an EventFlag word is
100 * not required if there is no need for blocking FMQ operations.
Hridya Valsaraju62bb7a02016-09-23 10:44:04 -0700101 */
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800102 static constexpr int32_t kMinGrantorCount = DATAPTRPOS + 1;
103
104 /*
105 * Minimum number of GrantorDescriptors required if EventFlag support is
106 * needed for blocking FMQ operations.
107 */
108 static constexpr int32_t kMinGrantorCountForEvFlagSupport = EVFLAGWORDPOS + 1;
Andreas Huber0a451282016-08-30 11:27:24 -0700109private:
110 ::android::hardware::hidl_vec<GrantorDescriptor> mGrantors;
Hridya Valsaraju44843442016-12-09 13:38:55 -0800111 ::android::hardware::details::hidl_pointer<native_handle_t> mHandle;
Andreas Huber0a451282016-08-30 11:27:24 -0700112 uint32_t mQuantum;
113 uint32_t mFlags;
114};
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700115
Yifan Hong089ae132016-11-11 11:32:52 -0800116template<MQFlavor flavor>
117const size_t MQDescriptor<flavor>::kOffsetOfGrantors = offsetof(MQDescriptor<flavor>, mGrantors);
118
119template<MQFlavor flavor>
120const size_t MQDescriptor<flavor>::kOffsetOfHandle = offsetof(MQDescriptor<flavor>, mHandle);
121
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700122/*
123 * MQDescriptorSync will describe the wait-free synchronized
124 * flavor of FMQ.
125 */
126using MQDescriptorSync = MQDescriptor<kSynchronizedReadWrite>;
127
Hridya Valsaraju56575782016-10-13 21:44:55 -0700128/*
129 * MQDescriptorUnsync will describe the unsynchronized write
130 * flavor of FMQ.
131 */
132using MQDescriptorUnsync = MQDescriptor<kUnsynchronizedWrite>;
133
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700134template<MQFlavor flavor>
135MQDescriptor<flavor>::MQDescriptor(
136 const std::vector<GrantorDescriptor>& grantors,
137 native_handle_t* nhandle,
138 size_t size)
139 : mHandle(nhandle),
140 mQuantum(size),
141 mFlags(flavor) {
142 mGrantors.resize(grantors.size());
143 for (size_t i = 0; i < grantors.size(); ++i) {
144 mGrantors[i] = grantors[i];
145 }
146}
147
148template<MQFlavor flavor>
149MQDescriptor<flavor>::MQDescriptor(size_t bufferSize, native_handle_t *nHandle,
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800150 size_t messageSize, bool configureEventFlag)
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700151 : mHandle(nHandle), mQuantum(messageSize), mFlags(flavor) {
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800152 /*
153 * If configureEventFlag is true, allocate an additional spot in mGrantor
154 * for containing the fd and offset for mmapping the EventFlag word.
155 */
156 mGrantors.resize(configureEventFlag? kMinGrantorCountForEvFlagSupport : kMinGrantorCount);
157
158 size_t memSize[] = {
159 sizeof(RingBufferPosition), /* memory to be allocated for read pointer counter */
160 sizeof(RingBufferPosition), /* memory to be allocated for write pointer counter */
161 bufferSize, /* memory to be allocated for data buffer */
162 sizeof(std::atomic<uint32_t>)/* memory to be allocated for EventFlag word */
163 };
164
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700165 /*
166 * Create a default grantor descriptor for read, write pointers and
167 * the data buffer. fdIndex parameter is set to 0 by default and
168 * the offset for each grantor is contiguous.
169 */
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800170 for (size_t grantorPos = 0, offset = 0;
171 grantorPos < mGrantors.size();
172 offset += memSize[grantorPos++]) {
173 mGrantors[grantorPos] = {
174 0 /* grantor flags */,
175 0 /* fdIndex */,
176 static_cast<uint32_t>(offset),
177 memSize[grantorPos]
178 };
179 }
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700180}
181
182template<MQFlavor flavor>
183MQDescriptor<flavor>::MQDescriptor(const MQDescriptor<flavor> &other)
184 : mGrantors(other.mGrantors),
185 mHandle(nullptr),
186 mQuantum(other.mQuantum),
187 mFlags(other.mFlags) {
188 if (other.mHandle != nullptr) {
189 mHandle = native_handle_create(
190 other.mHandle->numFds, other.mHandle->numInts);
191
192 for (int i = 0; i < other.mHandle->numFds; ++i) {
Hridya Valsaraju44843442016-12-09 13:38:55 -0800193 mHandle->data[i] = dup(other.mHandle->data[i]);
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700194 }
195
Hridya Valsaraju44843442016-12-09 13:38:55 -0800196 memcpy(&mHandle->data[other.mHandle->numFds],
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700197 &other.mHandle->data[other.mHandle->numFds],
198 other.mHandle->numInts * sizeof(int));
199 }
200}
201
202template<MQFlavor flavor>
203MQDescriptor<flavor>::~MQDescriptor() {
204 if (mHandle != nullptr) {
Hridya Valsaraju44843442016-12-09 13:38:55 -0800205 native_handle_close(mHandle);
206 native_handle_delete(mHandle);
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700207 }
208}
209
210template<MQFlavor flavor>
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700211size_t MQDescriptor<flavor>::getSize() const {
212 return mGrantors[DATAPTRPOS].extent;
213}
214
215template<MQFlavor flavor>
216size_t MQDescriptor<flavor>::getQuantum() const { return mQuantum; }
217
218template<MQFlavor flavor>
219int32_t MQDescriptor<flavor>::getFlags() const { return mFlags; }
220
221template<MQFlavor flavor>
222std::vector<GrantorDescriptor> MQDescriptor<flavor>::getGrantors() const {
223 size_t grantor_count = mGrantors.size();
224 std::vector<GrantorDescriptor> grantors(grantor_count);
225 for (size_t i = 0; i < grantor_count; i++) {
226 grantors[i] = mGrantors[i];
227 }
228 return grantors;
229}
230
231template<MQFlavor flavor>
232const sp<NativeHandle> MQDescriptor<flavor>::getNativeHandle() const {
233 /*
234 * Create an sp<NativeHandle> from mHandle.
235 */
236 return NativeHandle::create(mHandle, false /* ownsHandle */);
237}
Hridya Valsaraju4fe70f02016-09-20 21:02:51 -0700238} // namespace hardware
239} // namespace android
Andreas Huber0a451282016-08-30 11:27:24 -0700240
241#endif // FMSGQ_DESCRIPTOR_H