blob: 3ed368590a5eda4ee93c6002e0cce7bc6f7e48a7 [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>
Hridya Valsarajub7370302017-03-08 14:39:23 -080022#include <hidl/HidlInternal.h>
Andreas Huber0a451282016-08-30 11:27:24 -070023#include <hidl/HidlSupport.h>
Hridya Valsaraju5d148b32017-01-10 14:38:42 -080024#include <utils/Log.h>
Andreas Huber0a451282016-08-30 11:27:24 -070025
26namespace android {
27namespace hardware {
28
Hridya Valsaraju62bb7a02016-09-23 10:44:04 -070029typedef uint64_t RingBufferPosition;
30
Andreas Huber0a451282016-08-30 11:27:24 -070031struct GrantorDescriptor {
Hridya Valsaraju45eb91d2017-01-12 13:20:35 -080032 uint32_t flags __attribute__ ((aligned(4)));
33 uint32_t fdIndex __attribute__ ((aligned(4)));
34 uint32_t offset __attribute__ ((aligned(4)));
35 uint64_t extent __attribute__ ((aligned(8)));
Andreas Huber0a451282016-08-30 11:27:24 -070036};
37
Hridya Valsaraju45eb91d2017-01-12 13:20:35 -080038static_assert(offsetof(GrantorDescriptor, flags) == 0, "wrong offset");
39static_assert(offsetof(GrantorDescriptor, fdIndex) == 4, "wrong offset");
40static_assert(offsetof(GrantorDescriptor, offset) == 8, "wrong offset");
41static_assert(offsetof(GrantorDescriptor, extent) == 16, "wrong offset");
42static_assert(sizeof(GrantorDescriptor) == 24, "wrong size");
43static_assert(__alignof(GrantorDescriptor) == 8, "wrong alignment");
44
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -070045enum MQFlavor : uint32_t {
46 /*
47 * kSynchronizedReadWrite represents the wait-free synchronized flavor of the
48 * FMQ. It is intended to be have a single reader and single writer.
49 * Attempts to overflow/underflow returns a failure.
50 */
Hridya Valsaraju56575782016-10-13 21:44:55 -070051 kSynchronizedReadWrite = 0x01,
52 /*
53 * kUnsynchronizedWrite represents the flavor of FMQ where writes always
54 * succeed. This flavor allows one writer and many readers. A read operation
55 * can detect an overwrite and reset the read counter.
56 */
57 kUnsynchronizedWrite = 0x02
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -070058};
59
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -080060template <typename T, MQFlavor flavor>
Andreas Huber0a451282016-08-30 11:27:24 -070061struct MQDescriptor {
62 MQDescriptor(
63 const std::vector<GrantorDescriptor>& grantors,
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -070064 native_handle_t* nHandle, size_t size);
Hridya Valsaraju62bb7a02016-09-23 10:44:04 -070065
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -070066 MQDescriptor(size_t bufferSize, native_handle_t* nHandle,
Hridya Valsaraju9ec57302016-12-14 09:00:31 -080067 size_t messageSize, bool configureEventFlag = false);
Andreas Huber0a451282016-08-30 11:27:24 -070068
Hridya Valsaraju0e326a02016-12-21 10:52:29 -080069 MQDescriptor();
Andreas Huber0a451282016-08-30 11:27:24 -070070 ~MQDescriptor();
71
72 explicit MQDescriptor(const MQDescriptor &other);
73 MQDescriptor &operator=(const MQDescriptor &other) = delete;
74
75 size_t getSize() const;
76
77 size_t getQuantum() const;
78
79 int32_t getFlags() const;
Andreas Huber0a451282016-08-30 11:27:24 -070080
Andreas Huber0a451282016-08-30 11:27:24 -070081 bool isHandleValid() const { return mHandle != nullptr; }
82 size_t countGrantors() const { return mGrantors.size(); }
Yifan Hong089ae132016-11-11 11:32:52 -080083
84 inline const ::android::hardware::hidl_vec<GrantorDescriptor> &grantors() const {
85 return mGrantors;
86 }
87
88 inline ::android::hardware::hidl_vec<GrantorDescriptor> &grantors() {
89 return mGrantors;
90 }
91
92 inline const ::native_handle_t *handle() const {
93 return mHandle;
94 }
95
96 inline ::native_handle_t *handle() {
97 return mHandle;
98 }
99
100 static const size_t kOffsetOfGrantors;
101 static const size_t kOffsetOfHandle;
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800102 enum GrantorType : int { READPTRPOS = 0, WRITEPTRPOS, DATAPTRPOS, EVFLAGWORDPOS };
103
Hridya Valsaraju62bb7a02016-09-23 10:44:04 -0700104 /*
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800105 * There should at least be GrantorDescriptors for the read counter, write
106 * counter and data buffer. A GrantorDescriptor for an EventFlag word is
107 * not required if there is no need for blocking FMQ operations.
Hridya Valsaraju62bb7a02016-09-23 10:44:04 -0700108 */
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800109 static constexpr int32_t kMinGrantorCount = DATAPTRPOS + 1;
110
111 /*
112 * Minimum number of GrantorDescriptors required if EventFlag support is
113 * needed for blocking FMQ operations.
114 */
115 static constexpr int32_t kMinGrantorCountForEvFlagSupport = EVFLAGWORDPOS + 1;
Hridya Valsaraju5d148b32017-01-10 14:38:42 -0800116
117 //TODO(b/34160777) Identify a better solution that supports remoting.
118 static inline size_t alignToWordBoundary(size_t length) {
119 constexpr size_t kAlignmentSize = 64;
Hridya Valsarajub7370302017-03-08 14:39:23 -0800120 if (kAlignmentSize % __WORDSIZE != 0) {
121 details::logAlwaysFatal("Incompatible word size");
122 }
Hridya Valsarajub0885002017-04-03 13:54:11 -0700123
124 /*
125 * Check if alignment to word boundary would cause an overflow.
126 */
127 if (length > SIZE_MAX - kAlignmentSize/8 + 1) {
128 details::logAlwaysFatal("Queue size too large");
129 }
130
Hridya Valsaraju5d148b32017-01-10 14:38:42 -0800131 return (length + kAlignmentSize/8 - 1) & ~(kAlignmentSize/8 - 1U);
132 }
133
134 static inline size_t isAlignedToWordBoundary(size_t offset) {
135 constexpr size_t kAlignmentSize = 64;
136 return (offset & (kAlignmentSize/8 - 1)) == 0;
137 }
Andreas Huber0a451282016-08-30 11:27:24 -0700138private:
139 ::android::hardware::hidl_vec<GrantorDescriptor> mGrantors;
Hridya Valsaraju44843442016-12-09 13:38:55 -0800140 ::android::hardware::details::hidl_pointer<native_handle_t> mHandle;
Andreas Huber0a451282016-08-30 11:27:24 -0700141 uint32_t mQuantum;
142 uint32_t mFlags;
143};
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700144
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800145template<typename T, MQFlavor flavor>
146const size_t MQDescriptor<T, flavor>::kOffsetOfGrantors = offsetof(MQDescriptor, mGrantors);
Yifan Hong089ae132016-11-11 11:32:52 -0800147
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800148template<typename T, MQFlavor flavor>
149const size_t MQDescriptor<T, flavor>::kOffsetOfHandle = offsetof(MQDescriptor, mHandle);
Yifan Hong089ae132016-11-11 11:32:52 -0800150
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700151/*
152 * MQDescriptorSync will describe the wait-free synchronized
153 * flavor of FMQ.
154 */
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800155template<typename T>
156using MQDescriptorSync = MQDescriptor<T, kSynchronizedReadWrite>;
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700157
Hridya Valsaraju56575782016-10-13 21:44:55 -0700158/*
159 * MQDescriptorUnsync will describe the unsynchronized write
160 * flavor of FMQ.
161 */
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800162template<typename T>
163using MQDescriptorUnsync = MQDescriptor<T, kUnsynchronizedWrite>;
Hridya Valsaraju56575782016-10-13 21:44:55 -0700164
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800165template<typename T, MQFlavor flavor>
166MQDescriptor<T, flavor>::MQDescriptor(
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700167 const std::vector<GrantorDescriptor>& grantors,
168 native_handle_t* nhandle,
169 size_t size)
170 : mHandle(nhandle),
171 mQuantum(size),
172 mFlags(flavor) {
173 mGrantors.resize(grantors.size());
174 for (size_t i = 0; i < grantors.size(); ++i) {
Hridya Valsarajub7370302017-03-08 14:39:23 -0800175 if (isAlignedToWordBoundary(grantors[i].offset) == false) {
176 details::logAlwaysFatal("Grantor offsets need to be aligned");
177 }
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700178 mGrantors[i] = grantors[i];
179 }
180}
181
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800182template<typename T, MQFlavor flavor>
183MQDescriptor<T, flavor>::MQDescriptor(size_t bufferSize, native_handle_t *nHandle,
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800184 size_t messageSize, bool configureEventFlag)
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700185 : mHandle(nHandle), mQuantum(messageSize), mFlags(flavor) {
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800186 /*
187 * If configureEventFlag is true, allocate an additional spot in mGrantor
188 * for containing the fd and offset for mmapping the EventFlag word.
189 */
190 mGrantors.resize(configureEventFlag? kMinGrantorCountForEvFlagSupport : kMinGrantorCount);
191
192 size_t memSize[] = {
193 sizeof(RingBufferPosition), /* memory to be allocated for read pointer counter */
194 sizeof(RingBufferPosition), /* memory to be allocated for write pointer counter */
195 bufferSize, /* memory to be allocated for data buffer */
196 sizeof(std::atomic<uint32_t>)/* memory to be allocated for EventFlag word */
197 };
198
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700199 /*
200 * Create a default grantor descriptor for read, write pointers and
201 * the data buffer. fdIndex parameter is set to 0 by default and
202 * the offset for each grantor is contiguous.
203 */
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800204 for (size_t grantorPos = 0, offset = 0;
205 grantorPos < mGrantors.size();
206 offset += memSize[grantorPos++]) {
207 mGrantors[grantorPos] = {
208 0 /* grantor flags */,
209 0 /* fdIndex */,
Hridya Valsaraju5d148b32017-01-10 14:38:42 -0800210 static_cast<uint32_t>(alignToWordBoundary(offset)),
Hridya Valsaraju9ec57302016-12-14 09:00:31 -0800211 memSize[grantorPos]
212 };
213 }
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700214}
215
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800216template<typename T, MQFlavor flavor>
217MQDescriptor<T, flavor>::MQDescriptor(const MQDescriptor<T, flavor> &other)
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700218 : mGrantors(other.mGrantors),
219 mHandle(nullptr),
220 mQuantum(other.mQuantum),
221 mFlags(other.mFlags) {
222 if (other.mHandle != nullptr) {
223 mHandle = native_handle_create(
224 other.mHandle->numFds, other.mHandle->numInts);
225
226 for (int i = 0; i < other.mHandle->numFds; ++i) {
Hridya Valsaraju44843442016-12-09 13:38:55 -0800227 mHandle->data[i] = dup(other.mHandle->data[i]);
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700228 }
229
Hridya Valsaraju44843442016-12-09 13:38:55 -0800230 memcpy(&mHandle->data[other.mHandle->numFds],
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700231 &other.mHandle->data[other.mHandle->numFds],
232 other.mHandle->numInts * sizeof(int));
233 }
234}
235
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800236template<typename T, MQFlavor flavor>
237MQDescriptor<T, flavor>::MQDescriptor() : MQDescriptor(
Hridya Valsaraju0e326a02016-12-21 10:52:29 -0800238 std::vector<android::hardware::GrantorDescriptor>(),
239 nullptr /* nHandle */,
240 0 /* size */) {}
241
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800242template<typename T, MQFlavor flavor>
243MQDescriptor<T, flavor>::~MQDescriptor() {
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700244 if (mHandle != nullptr) {
Hridya Valsaraju44843442016-12-09 13:38:55 -0800245 native_handle_close(mHandle);
246 native_handle_delete(mHandle);
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700247 }
248}
249
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800250template<typename T, MQFlavor flavor>
251size_t MQDescriptor<T, flavor>::getSize() const {
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700252 return mGrantors[DATAPTRPOS].extent;
253}
254
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800255template<typename T, MQFlavor flavor>
256size_t MQDescriptor<T, flavor>::getQuantum() const { return mQuantum; }
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700257
Hridya Valsaraju7e6404d2016-12-27 09:13:34 -0800258template<typename T, MQFlavor flavor>
259int32_t MQDescriptor<T, flavor>::getFlags() const { return mFlags; }
Hridya Valsaraju24fb4e22016-09-26 10:37:01 -0700260
Yifan Hongbe7a6882017-01-05 17:30:17 -0800261template<typename T, MQFlavor flavor>
262std::string toString(const MQDescriptor<T, flavor> &q) {
263 std::string os;
264 if (flavor & kSynchronizedReadWrite) {
265 os += "fmq_sync";
266 }
267 if (flavor & kUnsynchronizedWrite) {
268 os += "fmq_unsync";
269 }
270 os += " {"
Hridya Valsarajued4e7142017-02-24 11:00:48 -0800271 + toString(q.grantors().size()) + " grantor(s), "
Yifan Hongbe7a6882017-01-05 17:30:17 -0800272 + "size = " + toString(q.getSize())
Hridya Valsarajued4e7142017-02-24 11:00:48 -0800273 + ", .handle = " + toString(q.handle())
Yifan Hongbe7a6882017-01-05 17:30:17 -0800274 + ", .quantum = " + toString(q.getQuantum()) + "}";
275 return os;
276}
Yifan Hongbe7a6882017-01-05 17:30:17 -0800277
Hridya Valsaraju4fe70f02016-09-20 21:02:51 -0700278} // namespace hardware
279} // namespace android
Andreas Huber0a451282016-08-30 11:27:24 -0700280
281#endif // FMSGQ_DESCRIPTOR_H