blob: 579694c321449ac486d51a71e9c23cccd3140028 [file] [log] [blame]
Yifan Honge8212f22021-06-28 15:49:08 -07001/*
2 * Copyright (C) 2021 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#define LOG_TAG "RpcTransportTls"
18#include <log/log.h>
19
20#include <poll.h>
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -070021#include <sys/socket.h>
Yifan Honge8212f22021-06-28 15:49:08 -070022
23#include <openssl/bn.h>
24#include <openssl/ssl.h>
25
Yifan Hongbb24eea2021-09-17 18:21:56 -070026#include <binder/RpcTlsUtils.h>
Yifan Honge8212f22021-06-28 15:49:08 -070027#include <binder/RpcTransportTls.h>
28
29#include "FdTrigger.h"
30#include "RpcState.h"
Yifan Hong18ac9472021-09-09 19:55:38 -070031#include "Utils.h"
Yifan Honge8212f22021-06-28 15:49:08 -070032
Tomasz Wasilczyk88aa8c32023-11-01 09:46:07 -070033#include <sstream>
34
Yifan Honge8212f22021-06-28 15:49:08 -070035#define SHOULD_LOG_TLS_DETAIL false
36
37#if SHOULD_LOG_TLS_DETAIL
38#define LOG_TLS_DETAIL(...) ALOGI(__VA_ARGS__)
39#else
40#define LOG_TLS_DETAIL(...) ALOGV(__VA_ARGS__) // for type checking
41#endif
42
Yifan Honge8212f22021-06-28 15:49:08 -070043namespace android {
Tomasz Wasilczyk35804862023-10-30 14:19:19 +000044
45using namespace android::binder::impl;
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -070046using android::binder::borrowed_fd;
47using android::binder::unique_fd;
Tomasz Wasilczyk35804862023-10-30 14:19:19 +000048
Yifan Honge8212f22021-06-28 15:49:08 -070049namespace {
50
Yifan Hongd17353c2021-06-24 21:56:38 -070051// Implement BIO for socket that ignores SIGPIPE.
52int socketNew(BIO* bio) {
53 BIO_set_data(bio, reinterpret_cast<void*>(-1));
54 BIO_set_init(bio, 0);
55 return 1;
56}
57int socketFree(BIO* bio) {
58 LOG_ALWAYS_FATAL_IF(bio == nullptr);
59 return 1;
60}
61int socketRead(BIO* bio, char* buf, int size) {
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -070062 borrowed_fd fd(static_cast<int>(reinterpret_cast<intptr_t>(BIO_get_data(bio))));
Yifan Hongd17353c2021-06-24 21:56:38 -070063 int ret = TEMP_FAILURE_RETRY(::recv(fd.get(), buf, size, MSG_NOSIGNAL));
64 BIO_clear_retry_flags(bio);
65 if (errno == EAGAIN || errno == EWOULDBLOCK) {
66 BIO_set_retry_read(bio);
67 }
68 return ret;
69}
70
71int socketWrite(BIO* bio, const char* buf, int size) {
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -070072 borrowed_fd fd(static_cast<int>(reinterpret_cast<intptr_t>(BIO_get_data(bio))));
Yifan Hongd17353c2021-06-24 21:56:38 -070073 int ret = TEMP_FAILURE_RETRY(::send(fd.get(), buf, size, MSG_NOSIGNAL));
74 BIO_clear_retry_flags(bio);
75 if (errno == EAGAIN || errno == EWOULDBLOCK) {
76 BIO_set_retry_write(bio);
77 }
78 return ret;
79}
80
81long socketCtrl(BIO* bio, int cmd, long num, void*) { // NOLINT
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -070082 borrowed_fd fd(static_cast<int>(reinterpret_cast<intptr_t>(BIO_get_data(bio))));
Yifan Hongd17353c2021-06-24 21:56:38 -070083 if (cmd == BIO_CTRL_FLUSH) return 1;
84 LOG_ALWAYS_FATAL("sockCtrl(fd=%d, %d, %ld)", fd.get(), cmd, num);
85 return 0;
86}
87
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -070088bssl::UniquePtr<BIO> newSocketBio(borrowed_fd fd) {
Yifan Hongd17353c2021-06-24 21:56:38 -070089 static const BIO_METHOD* gMethods = ([] {
90 auto methods = BIO_meth_new(BIO_get_new_index(), "socket_no_signal");
91 LOG_ALWAYS_FATAL_IF(0 == BIO_meth_set_write(methods, socketWrite), "BIO_meth_set_write");
92 LOG_ALWAYS_FATAL_IF(0 == BIO_meth_set_read(methods, socketRead), "BIO_meth_set_read");
93 LOG_ALWAYS_FATAL_IF(0 == BIO_meth_set_ctrl(methods, socketCtrl), "BIO_meth_set_ctrl");
94 LOG_ALWAYS_FATAL_IF(0 == BIO_meth_set_create(methods, socketNew), "BIO_meth_set_create");
95 LOG_ALWAYS_FATAL_IF(0 == BIO_meth_set_destroy(methods, socketFree), "BIO_meth_set_destroy");
96 return methods;
97 })();
98 bssl::UniquePtr<BIO> ret(BIO_new(gMethods));
99 if (ret == nullptr) return nullptr;
100 BIO_set_data(ret.get(), reinterpret_cast<void*>(fd.get()));
101 BIO_set_init(ret.get(), 1);
102 return ret;
Yifan Honge8212f22021-06-28 15:49:08 -0700103}
104
Yifan Honge8212f22021-06-28 15:49:08 -0700105[[maybe_unused]] void sslDebugLog(const SSL* ssl, int type, int value) {
106 switch (type) {
107 case SSL_CB_HANDSHAKE_START:
108 LOG_TLS_DETAIL("Handshake started.");
109 break;
110 case SSL_CB_HANDSHAKE_DONE:
111 LOG_TLS_DETAIL("Handshake done.");
112 break;
113 case SSL_CB_ACCEPT_LOOP:
114 LOG_TLS_DETAIL("Handshake progress: %s", SSL_state_string_long(ssl));
115 break;
116 default:
117 LOG_TLS_DETAIL("SSL Debug Log: type = %d, value = %d", type, value);
118 break;
119 }
120}
121
Yifan Hong87a379c2021-08-12 18:53:24 -0700122// Helper class to ErrorQueue::toString
123class ErrorQueueString {
124public:
125 static std::string toString() {
126 ErrorQueueString thiz;
127 ERR_print_errors_cb(staticCallback, &thiz);
128 return thiz.mSs.str();
129 }
130
131private:
132 static int staticCallback(const char* str, size_t len, void* ctx) {
133 return reinterpret_cast<ErrorQueueString*>(ctx)->callback(str, len);
134 }
135 int callback(const char* str, size_t len) {
136 if (len == 0) return 1; // continue
137 // ERR_print_errors_cb place a new line at the end, but it doesn't say so in the API.
138 if (str[len - 1] == '\n') len -= 1;
139 if (!mIsFirst) {
140 mSs << '\n';
141 }
142 mSs << std::string_view(str, len);
143 mIsFirst = false;
144 return 1; // continue
145 }
146 std::stringstream mSs;
147 bool mIsFirst = true;
148};
149
Yifan Honge8212f22021-06-28 15:49:08 -0700150// Handles libssl's error queue.
151//
152// Call into any of its member functions to ensure the error queue is properly handled or cleared.
153// If the error queue is not handled or cleared, the destructor will abort.
154class ErrorQueue {
155public:
156 ~ErrorQueue() { LOG_ALWAYS_FATAL_IF(!mHandled); }
157
158 // Clear the error queue.
159 void clear() {
160 ERR_clear_error();
161 mHandled = true;
162 }
163
164 // Stores the error queue in |ssl| into a string, then clears the error queue.
165 std::string toString() {
Yifan Hong87a379c2021-08-12 18:53:24 -0700166 auto ret = ErrorQueueString::toString();
Yifan Honge8212f22021-06-28 15:49:08 -0700167 // Though ERR_print_errors_cb should have cleared it, it is okay to clear again.
168 clear();
Yifan Hong87a379c2021-08-12 18:53:24 -0700169 return ret;
Yifan Honge8212f22021-06-28 15:49:08 -0700170 }
171
Andrei Homescu5ad71b52022-03-11 03:49:12 +0000172 status_t toStatus(int sslError, const char* fnString) {
Yifan Honge8212f22021-06-28 15:49:08 -0700173 switch (sslError) {
Yifan Honge8212f22021-06-28 15:49:08 -0700174 case SSL_ERROR_SYSCALL: {
175 auto queue = toString();
176 LOG_TLS_DETAIL("%s(): %s. Treating as DEAD_OBJECT. Error queue: %s", fnString,
177 SSL_error_description(sslError), queue.c_str());
178 return DEAD_OBJECT;
179 }
180 default: {
181 auto queue = toString();
182 ALOGE("%s(): %s. Error queue: %s", fnString, SSL_error_description(sslError),
183 queue.c_str());
184 return UNKNOWN_ERROR;
185 }
186 }
187 }
188
Andrei Homescu5ad71b52022-03-11 03:49:12 +0000189 // |sslError| should be from Ssl::getError().
190 // If |sslError| is WANT_READ / WANT_WRITE, poll for POLLIN / POLLOUT respectively. Otherwise
191 // return error. Also return error if |fdTrigger| is triggered before or during poll().
Tomasz Wasilczyk35804862023-10-30 14:19:19 +0000192 status_t pollForSslError(const android::RpcTransportFd& fd, int sslError, FdTrigger* fdTrigger,
193 const char* fnString, int additionalEvent,
194 const std::optional<SmallFunction<status_t()>>& altPoll) {
Andrei Homescu5ad71b52022-03-11 03:49:12 +0000195 switch (sslError) {
196 case SSL_ERROR_WANT_READ:
197 return handlePoll(POLLIN | additionalEvent, fd, fdTrigger, fnString, altPoll);
198 case SSL_ERROR_WANT_WRITE:
199 return handlePoll(POLLOUT | additionalEvent, fd, fdTrigger, fnString, altPoll);
200 default:
201 return toStatus(sslError, fnString);
202 }
203 }
204
Yifan Honge8212f22021-06-28 15:49:08 -0700205private:
206 bool mHandled = false;
207
Pawan3e0061c2022-08-26 21:08:34 +0000208 status_t handlePoll(int event, const android::RpcTransportFd& fd, FdTrigger* fdTrigger,
Devin Moore695368f2022-06-03 22:29:14 +0000209 const char* fnString,
Tomasz Wasilczyk35804862023-10-30 14:19:19 +0000210 const std::optional<SmallFunction<status_t()>>& altPoll) {
Steven Moreland43921d52021-09-27 17:15:56 -0700211 status_t ret;
212 if (altPoll) {
Devin Moore695368f2022-06-03 22:29:14 +0000213 ret = (*altPoll)();
Steven Moreland43921d52021-09-27 17:15:56 -0700214 if (fdTrigger->isTriggered()) ret = DEAD_OBJECT;
215 } else {
216 ret = fdTrigger->triggerablePoll(fd, event);
217 }
218
Steven Morelandc591b472021-09-16 13:56:11 -0700219 if (ret != OK && ret != DEAD_OBJECT) {
Steven Moreland43921d52021-09-27 17:15:56 -0700220 ALOGE("poll error while after %s(): %s", fnString, statusToString(ret).c_str());
Yifan Honge8212f22021-06-28 15:49:08 -0700221 }
222 clear();
223 return ret;
224 }
225};
226
227// Helper to call a function, with its return value instantiable.
228template <typename Fn, typename... Args>
229struct FuncCaller {
230 struct Monostate {};
231 static constexpr bool sIsVoid = std::is_void_v<std::invoke_result_t<Fn, Args...>>;
232 using Result = std::conditional_t<sIsVoid, Monostate, std::invoke_result_t<Fn, Args...>>;
233 static inline Result call(Fn fn, Args&&... args) {
234 if constexpr (std::is_void_v<std::invoke_result_t<Fn, Args...>>) {
235 std::invoke(fn, std::forward<Args>(args)...);
236 return {};
237 } else {
238 return std::invoke(fn, std::forward<Args>(args)...);
239 }
240 }
241};
242
243// Helper to Ssl::call(). Returns the result to the SSL_* function as well as an ErrorQueue object.
244template <typename Fn, typename... Args>
245struct SslCaller {
246 using RawCaller = FuncCaller<Fn, SSL*, Args...>;
247 struct ResultAndErrorQueue {
248 typename RawCaller::Result result;
249 ErrorQueue errorQueue;
250 };
251 static inline ResultAndErrorQueue call(Fn fn, SSL* ssl, Args&&... args) {
252 LOG_ALWAYS_FATAL_IF(ssl == nullptr);
253 auto result = RawCaller::call(fn, std::forward<SSL*>(ssl), std::forward<Args>(args)...);
254 return ResultAndErrorQueue{std::move(result), ErrorQueue()};
255 }
256};
257
258// A wrapper over bssl::UniquePtr<SSL>. This class ensures that all SSL_* functions are called
259// through call(), which returns an ErrorQueue object that requires the caller to either handle
260// or clear it.
261// Example:
262// auto [ret, errorQueue] = ssl.call(SSL_read, buf, size);
263// if (ret >= 0) errorQueue.clear();
264// else ALOGE("%s", errorQueue.toString().c_str());
265class Ssl {
266public:
267 explicit Ssl(bssl::UniquePtr<SSL> ssl) : mSsl(std::move(ssl)) {
268 LOG_ALWAYS_FATAL_IF(mSsl == nullptr);
269 }
270
271 template <typename Fn, typename... Args>
272 inline typename SslCaller<Fn, Args...>::ResultAndErrorQueue call(Fn fn, Args&&... args) {
273 return SslCaller<Fn, Args...>::call(fn, mSsl.get(), std::forward<Args>(args)...);
274 }
275
276 int getError(int ret) {
277 LOG_ALWAYS_FATAL_IF(mSsl == nullptr);
278 return SSL_get_error(mSsl.get(), ret);
279 }
280
281private:
282 bssl::UniquePtr<SSL> mSsl;
283};
284
Steven Morelanddde45982023-05-24 22:27:14 +0000285} // namespace
286
Yifan Honge8212f22021-06-28 15:49:08 -0700287class RpcTransportTls : public RpcTransport {
288public:
Pawan3e0061c2022-08-26 21:08:34 +0000289 RpcTransportTls(RpcTransportFd socket, Ssl ssl)
Yifan Honge8212f22021-06-28 15:49:08 -0700290 : mSocket(std::move(socket)), mSsl(std::move(ssl)) {}
Andrei Homescu1975aaa2022-03-19 02:34:57 +0000291 status_t pollRead(void) override;
Devin Moore695368f2022-06-03 22:29:14 +0000292 status_t interruptableWriteFully(
293 FdTrigger* fdTrigger, iovec* iovs, int niovs,
Tomasz Wasilczyk35804862023-10-30 14:19:19 +0000294 const std::optional<SmallFunction<status_t()>>& altPoll,
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -0700295 const std::vector<std::variant<unique_fd, borrowed_fd>>* ancillaryFds) override;
Devin Moore695368f2022-06-03 22:29:14 +0000296 status_t interruptableReadFully(
297 FdTrigger* fdTrigger, iovec* iovs, int niovs,
Tomasz Wasilczyk35804862023-10-30 14:19:19 +0000298 const std::optional<SmallFunction<status_t()>>& altPoll,
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -0700299 std::vector<std::variant<unique_fd, borrowed_fd>>* ancillaryFds) override;
Yifan Honge8212f22021-06-28 15:49:08 -0700300
Hao Chen97649ae2023-05-31 14:12:33 -0700301 bool isWaiting() override { return mSocket.isInPollingState(); };
Pawan49d74cb2022-08-03 21:19:11 +0000302
Yifan Honge8212f22021-06-28 15:49:08 -0700303private:
Pawan3e0061c2022-08-26 21:08:34 +0000304 android::RpcTransportFd mSocket;
Yifan Honge8212f22021-06-28 15:49:08 -0700305 Ssl mSsl;
306};
307
308// Error code is errno.
Andrei Homescu1975aaa2022-03-19 02:34:57 +0000309status_t RpcTransportTls::pollRead(void) {
310 uint8_t buf;
311 auto [ret, errorQueue] = mSsl.call(SSL_peek, &buf, sizeof(buf));
Yifan Honge8212f22021-06-28 15:49:08 -0700312 if (ret < 0) {
313 int err = mSsl.getError(ret);
314 if (err == SSL_ERROR_WANT_WRITE || err == SSL_ERROR_WANT_READ) {
315 // Seen EAGAIN / EWOULDBLOCK on recv(2) / send(2).
316 // Like RpcTransportRaw::peek(), don't handle it here.
Andrei Homescu5ad71b52022-03-11 03:49:12 +0000317 errorQueue.clear();
318 return WOULD_BLOCK;
Yifan Honge8212f22021-06-28 15:49:08 -0700319 }
Andrei Homescu5ad71b52022-03-11 03:49:12 +0000320 return errorQueue.toStatus(err, "SSL_peek");
Yifan Honge8212f22021-06-28 15:49:08 -0700321 }
322 errorQueue.clear();
323 LOG_TLS_DETAIL("TLS: Peeked %d bytes!", ret);
Andrei Homescu5ad71b52022-03-11 03:49:12 +0000324 return OK;
Yifan Honge8212f22021-06-28 15:49:08 -0700325}
326
Devin Moore695368f2022-06-03 22:29:14 +0000327status_t RpcTransportTls::interruptableWriteFully(
328 FdTrigger* fdTrigger, iovec* iovs, int niovs,
Tomasz Wasilczyk35804862023-10-30 14:19:19 +0000329 const std::optional<SmallFunction<status_t()>>& altPoll,
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -0700330 const std::vector<std::variant<unique_fd, borrowed_fd>>* ancillaryFds) {
Frederick Mayle69a0c992022-05-26 20:38:39 +0000331 (void)ancillaryFds;
332
Yifan Honge8212f22021-06-28 15:49:08 -0700333 MAYBE_WAIT_IN_FLAKE_MODE;
334
Colin Cross9adfeaf2022-01-21 17:22:09 -0800335 if (niovs < 0) return BAD_VALUE;
336
Yifan Hong15fff8c2021-08-10 15:07:56 -0700337 // Before doing any I/O, check trigger once. This ensures the trigger is checked at least
338 // once. The trigger is also checked via triggerablePoll() after every SSL_write().
Steven Morelandc591b472021-09-16 13:56:11 -0700339 if (fdTrigger->isTriggered()) return DEAD_OBJECT;
Yifan Hong15fff8c2021-08-10 15:07:56 -0700340
Andrei Homescua39e4ed2021-12-10 08:41:54 +0000341 size_t size = 0;
Colin Cross9adfeaf2022-01-21 17:22:09 -0800342 for (int i = 0; i < niovs; i++) {
Andrei Homescua39e4ed2021-12-10 08:41:54 +0000343 const iovec& iov = iovs[i];
344 if (iov.iov_len == 0) {
Yifan Honge8212f22021-06-28 15:49:08 -0700345 continue;
346 }
Andrei Homescua39e4ed2021-12-10 08:41:54 +0000347 size += iov.iov_len;
348
349 auto buffer = reinterpret_cast<const uint8_t*>(iov.iov_base);
350 const uint8_t* end = buffer + iov.iov_len;
351 while (buffer < end) {
352 size_t todo = std::min<size_t>(end - buffer, std::numeric_limits<int>::max());
353 auto [writeSize, errorQueue] = mSsl.call(SSL_write, buffer, todo);
354 if (writeSize > 0) {
355 buffer += writeSize;
356 errorQueue.clear();
357 continue;
358 }
359 // SSL_write() should never return 0 unless BIO_write were to return 0.
360 int sslError = mSsl.getError(writeSize);
361 // TODO(b/195788248): BIO should contain the FdTrigger, and send(2) / recv(2) should be
362 // triggerablePoll()-ed. Then additionalEvent is no longer necessary.
Pawan49d74cb2022-08-03 21:19:11 +0000363 status_t pollStatus = errorQueue.pollForSslError(mSocket, sslError, fdTrigger,
Andrei Homescua39e4ed2021-12-10 08:41:54 +0000364 "SSL_write", POLLIN, altPoll);
365 if (pollStatus != OK) return pollStatus;
366 // Do not advance buffer. Try SSL_write() again.
367 }
Yifan Honge8212f22021-06-28 15:49:08 -0700368 }
369 LOG_TLS_DETAIL("TLS: Sent %zu bytes!", size);
370 return OK;
371}
372
Devin Moore695368f2022-06-03 22:29:14 +0000373status_t RpcTransportTls::interruptableReadFully(
374 FdTrigger* fdTrigger, iovec* iovs, int niovs,
Tomasz Wasilczyk35804862023-10-30 14:19:19 +0000375 const std::optional<SmallFunction<status_t()>>& altPoll,
Tomasz Wasilczyk639490b2023-11-01 13:49:41 -0700376 std::vector<std::variant<unique_fd, borrowed_fd>>* ancillaryFds) {
Frederick Mayleffe9ac22022-06-30 02:07:36 +0000377 (void)ancillaryFds;
Frederick Mayle69a0c992022-05-26 20:38:39 +0000378
Yifan Honge8212f22021-06-28 15:49:08 -0700379 MAYBE_WAIT_IN_FLAKE_MODE;
380
Colin Cross9adfeaf2022-01-21 17:22:09 -0800381 if (niovs < 0) return BAD_VALUE;
382
Yifan Hong15fff8c2021-08-10 15:07:56 -0700383 // Before doing any I/O, check trigger once. This ensures the trigger is checked at least
384 // once. The trigger is also checked via triggerablePoll() after every SSL_write().
Steven Morelandc591b472021-09-16 13:56:11 -0700385 if (fdTrigger->isTriggered()) return DEAD_OBJECT;
Yifan Hong15fff8c2021-08-10 15:07:56 -0700386
Andrei Homescua39e4ed2021-12-10 08:41:54 +0000387 size_t size = 0;
Colin Cross9adfeaf2022-01-21 17:22:09 -0800388 for (int i = 0; i < niovs; i++) {
Andrei Homescua39e4ed2021-12-10 08:41:54 +0000389 const iovec& iov = iovs[i];
390 if (iov.iov_len == 0) {
Yifan Honge8212f22021-06-28 15:49:08 -0700391 continue;
392 }
Andrei Homescua39e4ed2021-12-10 08:41:54 +0000393 size += iov.iov_len;
394
395 auto buffer = reinterpret_cast<uint8_t*>(iov.iov_base);
396 const uint8_t* end = buffer + iov.iov_len;
397 while (buffer < end) {
398 size_t todo = std::min<size_t>(end - buffer, std::numeric_limits<int>::max());
399 auto [readSize, errorQueue] = mSsl.call(SSL_read, buffer, todo);
400 if (readSize > 0) {
401 buffer += readSize;
402 errorQueue.clear();
403 continue;
404 }
405 if (readSize == 0) {
406 // SSL_read() only returns 0 on EOF.
407 errorQueue.clear();
408 return DEAD_OBJECT;
409 }
410 int sslError = mSsl.getError(readSize);
Pawan49d74cb2022-08-03 21:19:11 +0000411 status_t pollStatus = errorQueue.pollForSslError(mSocket, sslError, fdTrigger,
Andrei Homescua39e4ed2021-12-10 08:41:54 +0000412 "SSL_read", 0, altPoll);
413 if (pollStatus != OK) return pollStatus;
414 // Do not advance buffer. Try SSL_read() again.
Yifan Honge8212f22021-06-28 15:49:08 -0700415 }
Yifan Honge8212f22021-06-28 15:49:08 -0700416 }
417 LOG_TLS_DETAIL("TLS: Received %zu bytes!", size);
418 return OK;
419}
420
421// For |ssl|, set internal FD to |fd|, and do handshake. Handshake is triggerable by |fdTrigger|.
Steven Morelanddde45982023-05-24 22:27:14 +0000422static bool setFdAndDoHandshake(Ssl* ssl, const android::RpcTransportFd& socket,
423 FdTrigger* fdTrigger) {
Pawan49d74cb2022-08-03 21:19:11 +0000424 bssl::UniquePtr<BIO> bio = newSocketBio(socket.fd);
Yifan Honge8212f22021-06-28 15:49:08 -0700425 TEST_AND_RETURN(false, bio != nullptr);
426 auto [_, errorQueue] = ssl->call(SSL_set_bio, bio.get(), bio.get());
427 (void)bio.release(); // SSL_set_bio takes ownership.
428 errorQueue.clear();
429
430 MAYBE_WAIT_IN_FLAKE_MODE;
431
432 while (true) {
433 auto [ret, errorQueue] = ssl->call(SSL_do_handshake);
434 if (ret > 0) {
435 errorQueue.clear();
436 return true;
437 }
438 if (ret == 0) {
439 // SSL_do_handshake() only returns 0 on EOF.
440 ALOGE("SSL_do_handshake(): EOF: %s", errorQueue.toString().c_str());
441 return false;
442 }
443 int sslError = ssl->getError(ret);
Pawan49d74cb2022-08-03 21:19:11 +0000444 status_t pollStatus = errorQueue.pollForSslError(socket, sslError, fdTrigger,
Devin Moore695368f2022-06-03 22:29:14 +0000445 "SSL_do_handshake", 0, std::nullopt);
Yifan Honge8212f22021-06-28 15:49:08 -0700446 if (pollStatus != OK) return false;
447 }
448}
449
Yifan Hong1af48582021-08-16 17:13:30 -0700450class RpcTransportCtxTls : public RpcTransportCtx {
Yifan Honge8212f22021-06-28 15:49:08 -0700451public:
Yifan Hong1af48582021-08-16 17:13:30 -0700452 template <typename Impl,
453 typename = std::enable_if_t<std::is_base_of_v<RpcTransportCtxTls, Impl>>>
Yifan Hong180c2da2021-09-09 15:36:30 -0700454 static std::unique_ptr<RpcTransportCtxTls> create(
Yifan Hongffdaf952021-09-17 18:08:38 -0700455 std::shared_ptr<RpcCertificateVerifier> verifier, RpcAuth* auth);
Pawan3e0061c2022-08-26 21:08:34 +0000456 std::unique_ptr<RpcTransport> newTransport(RpcTransportFd fd,
457 FdTrigger* fdTrigger) const override;
Yifan Hong9734cfc2021-09-13 16:14:09 -0700458 std::vector<uint8_t> getCertificate(RpcCertificateFormat) const override;
Yifan Honge8212f22021-06-28 15:49:08 -0700459
Yifan Hong1af48582021-08-16 17:13:30 -0700460protected:
Yifan Hong180c2da2021-09-09 15:36:30 -0700461 static ssl_verify_result_t sslCustomVerify(SSL* ssl, uint8_t* outAlert);
Yifan Hong1af48582021-08-16 17:13:30 -0700462 virtual void preHandshake(Ssl* ssl) const = 0;
Yifan Honge8212f22021-06-28 15:49:08 -0700463 bssl::UniquePtr<SSL_CTX> mCtx;
Yifan Hong180c2da2021-09-09 15:36:30 -0700464 std::shared_ptr<RpcCertificateVerifier> mCertVerifier;
Yifan Honge8212f22021-06-28 15:49:08 -0700465};
466
Yifan Hong9734cfc2021-09-13 16:14:09 -0700467std::vector<uint8_t> RpcTransportCtxTls::getCertificate(RpcCertificateFormat format) const {
Yifan Hong1deca4b2021-09-10 16:16:44 -0700468 X509* x509 = SSL_CTX_get0_certificate(mCtx.get()); // does not own
469 return serializeCertificate(x509, format);
Yifan Hong588d59c2021-08-16 17:13:58 -0700470}
471
Yifan Hong180c2da2021-09-09 15:36:30 -0700472// Verify by comparing the leaf of peer certificate with every certificate in
473// mTrustedPeerCertificates. Does not support certificate chains.
474ssl_verify_result_t RpcTransportCtxTls::sslCustomVerify(SSL* ssl, uint8_t* outAlert) {
475 LOG_ALWAYS_FATAL_IF(outAlert == nullptr);
476 const char* logPrefix = SSL_is_server(ssl) ? "Server" : "Client";
477
Yifan Hong180c2da2021-09-09 15:36:30 -0700478 auto ctx = SSL_get_SSL_CTX(ssl); // Does not set error queue
479 LOG_ALWAYS_FATAL_IF(ctx == nullptr);
480 // void* -> RpcTransportCtxTls*
481 auto rpcTransportCtxTls = reinterpret_cast<RpcTransportCtxTls*>(SSL_CTX_get_app_data(ctx));
482 LOG_ALWAYS_FATAL_IF(rpcTransportCtxTls == nullptr);
483
Yifan Hongb160f8c2021-09-17 22:59:11 -0700484 status_t verifyStatus = rpcTransportCtxTls->mCertVerifier->verify(ssl, outAlert);
Yifan Hong180c2da2021-09-09 15:36:30 -0700485 if (verifyStatus == OK) {
486 return ssl_verify_ok;
487 }
488 LOG_TLS_DETAIL("%s: Failed to verify client: status = %s, alert = %s", logPrefix,
489 statusToString(verifyStatus).c_str(), SSL_alert_desc_string_long(*outAlert));
490 return ssl_verify_invalid;
491}
492
Yifan Hong1af48582021-08-16 17:13:30 -0700493// Common implementation for creating server and client contexts. The child class, |Impl|, is
494// provided as a template argument so that this function can initialize an |Impl| object.
495template <typename Impl, typename>
Yifan Hong180c2da2021-09-09 15:36:30 -0700496std::unique_ptr<RpcTransportCtxTls> RpcTransportCtxTls::create(
Yifan Hongffdaf952021-09-17 18:08:38 -0700497 std::shared_ptr<RpcCertificateVerifier> verifier, RpcAuth* auth) {
Yifan Honge8212f22021-06-28 15:49:08 -0700498 bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method()));
499 TEST_AND_RETURN(nullptr, ctx != nullptr);
500
Yifan Hongffdaf952021-09-17 18:08:38 -0700501 if (status_t authStatus = auth->configure(ctx.get()); authStatus != OK) {
502 ALOGE("%s: Failed to configure auth info: %s", __PRETTY_FUNCTION__,
503 statusToString(authStatus).c_str());
504 return nullptr;
505 };
Yifan Honge8212f22021-06-28 15:49:08 -0700506
Yifan Hong180c2da2021-09-09 15:36:30 -0700507 // Enable two-way authentication by setting SSL_VERIFY_FAIL_IF_NO_PEER_CERT on server.
508 // Client ignores SSL_VERIFY_FAIL_IF_NO_PEER_CERT flag.
509 SSL_CTX_set_custom_verify(ctx.get(), SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
510 sslCustomVerify);
Yifan Honge8212f22021-06-28 15:49:08 -0700511
512 // Require at least TLS 1.3
513 TEST_AND_RETURN(nullptr, SSL_CTX_set_min_proto_version(ctx.get(), TLS1_3_VERSION));
514
515 if constexpr (SHOULD_LOG_TLS_DETAIL) { // NOLINT
516 SSL_CTX_set_info_callback(ctx.get(), sslDebugLog);
517 }
518
Yifan Hong1af48582021-08-16 17:13:30 -0700519 auto ret = std::make_unique<Impl>();
Yifan Hong180c2da2021-09-09 15:36:30 -0700520 // RpcTransportCtxTls* -> void*
521 TEST_AND_RETURN(nullptr, SSL_CTX_set_app_data(ctx.get(), reinterpret_cast<void*>(ret.get())));
Yifan Hong1af48582021-08-16 17:13:30 -0700522 ret->mCtx = std::move(ctx);
Yifan Hong180c2da2021-09-09 15:36:30 -0700523 ret->mCertVerifier = std::move(verifier);
Yifan Hong1af48582021-08-16 17:13:30 -0700524 return ret;
Yifan Honge8212f22021-06-28 15:49:08 -0700525}
526
Pawan3e0061c2022-08-26 21:08:34 +0000527std::unique_ptr<RpcTransport> RpcTransportCtxTls::newTransport(android::RpcTransportFd socket,
Yifan Hong1af48582021-08-16 17:13:30 -0700528 FdTrigger* fdTrigger) const {
Yifan Honge8212f22021-06-28 15:49:08 -0700529 bssl::UniquePtr<SSL> ssl(SSL_new(mCtx.get()));
530 TEST_AND_RETURN(nullptr, ssl != nullptr);
531 Ssl wrapped(std::move(ssl));
532
Yifan Hong1af48582021-08-16 17:13:30 -0700533 preHandshake(&wrapped);
Pawan49d74cb2022-08-03 21:19:11 +0000534 TEST_AND_RETURN(nullptr, setFdAndDoHandshake(&wrapped, socket, fdTrigger));
535 return std::make_unique<RpcTransportTls>(std::move(socket), std::move(wrapped));
Yifan Honge8212f22021-06-28 15:49:08 -0700536}
537
Yifan Hong1af48582021-08-16 17:13:30 -0700538class RpcTransportCtxTlsServer : public RpcTransportCtxTls {
539protected:
540 void preHandshake(Ssl* ssl) const override {
541 ssl->call(SSL_set_accept_state).errorQueue.clear();
542 }
543};
544
545class RpcTransportCtxTlsClient : public RpcTransportCtxTls {
546protected:
547 void preHandshake(Ssl* ssl) const override {
548 ssl->call(SSL_set_connect_state).errorQueue.clear();
549 }
550};
551
Yifan Honge8212f22021-06-28 15:49:08 -0700552std::unique_ptr<RpcTransportCtx> RpcTransportCtxFactoryTls::newServerCtx() const {
Yifan Hongffdaf952021-09-17 18:08:38 -0700553 return android::RpcTransportCtxTls::create<RpcTransportCtxTlsServer>(mCertVerifier,
554 mAuth.get());
Yifan Honge8212f22021-06-28 15:49:08 -0700555}
556
557std::unique_ptr<RpcTransportCtx> RpcTransportCtxFactoryTls::newClientCtx() const {
Yifan Hongffdaf952021-09-17 18:08:38 -0700558 return android::RpcTransportCtxTls::create<RpcTransportCtxTlsClient>(mCertVerifier,
559 mAuth.get());
Yifan Honge8212f22021-06-28 15:49:08 -0700560}
561
562const char* RpcTransportCtxFactoryTls::toCString() const {
563 return "tls";
564}
565
Yifan Hong13c90062021-09-09 14:59:53 -0700566std::unique_ptr<RpcTransportCtxFactory> RpcTransportCtxFactoryTls::make(
Yifan Hongffdaf952021-09-17 18:08:38 -0700567 std::shared_ptr<RpcCertificateVerifier> verifier, std::unique_ptr<RpcAuth> auth) {
Yifan Hong13c90062021-09-09 14:59:53 -0700568 if (verifier == nullptr) {
569 ALOGE("%s: Must provide a certificate verifier", __PRETTY_FUNCTION__);
570 return nullptr;
571 }
Yifan Hongffdaf952021-09-17 18:08:38 -0700572 if (auth == nullptr) {
573 ALOGE("%s: Must provide an auth provider", __PRETTY_FUNCTION__);
574 return nullptr;
575 }
Yifan Hong13c90062021-09-09 14:59:53 -0700576 return std::unique_ptr<RpcTransportCtxFactoryTls>(
Yifan Hongffdaf952021-09-17 18:08:38 -0700577 new RpcTransportCtxFactoryTls(std::move(verifier), std::move(auth)));
Yifan Honge8212f22021-06-28 15:49:08 -0700578}
579
580} // namespace android