summaryrefslogtreecommitdiff
path: root/keystore2/apc_compat/apc_compat.cpp
blob: 9f60db2eedfa9205371a35152c8ea8b157166cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
/*
 * Copyright (C) 2020 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "apc_compat.hpp"
#include <android-base/logging.h>
#include <android/hardware/confirmationui/1.0/IConfirmationUI.h>
#include <hwbinder/IBinder.h>

#include <aidl/android/hardware/confirmationui/BnConfirmationResultCallback.h>
#include <aidl/android/hardware/confirmationui/IConfirmationResultCallback.h>
#include <aidl/android/hardware/confirmationui/IConfirmationUI.h>
#include <aidl/android/hardware/confirmationui/UIOption.h>
#include <android/binder_manager.h>

#include <memory>
#include <string>
#include <thread>
#include <vector>

#define LOG_TAG "keystore2_apc_compat"

namespace keystore2 {

using android::sp;
using android::hardware::hidl_death_recipient;
using android::hardware::hidl_vec;
using android::hardware::Return;
using android::hardware::Status;
using HidlConfirmationResultCb =
    android::hardware::confirmationui::V1_0::IConfirmationResultCallback;
using HidlConfirmationUI = android::hardware::confirmationui::V1_0::IConfirmationUI;
using android::hardware::confirmationui::V1_0::ResponseCode;
using HidlUIOptions = android::hardware::confirmationui::V1_0::UIOption;

using AidlConfirmationUI = ::aidl::android::hardware::confirmationui::IConfirmationUI;
using AidlBnConfirmationResultCb =
    ::aidl::android::hardware::confirmationui::BnConfirmationResultCallback;
using AidlUIOptions = ::aidl::android::hardware::confirmationui::UIOption;

class CompatSessionCB {
  public:
    void
    finalize(uint32_t responseCode, ApcCompatCallback callback,
             std::optional<std::reference_wrapper<const std::vector<uint8_t>>> dataConfirmed,
             std::optional<std::reference_wrapper<const std::vector<uint8_t>>> confirmationToken) {
        if (callback.result != nullptr) {
            size_t dataConfirmedSize = 0;
            const uint8_t* dataConfirmedPtr = nullptr;
            size_t confirmationTokenSize = 0;
            const uint8_t* confirmationTokenPtr = nullptr;
            if (responseCode == APC_COMPAT_ERROR_OK) {
                if (dataConfirmed) {
                    dataConfirmedPtr = dataConfirmed->get().data();
                    dataConfirmedSize = dataConfirmed->get().size();
                }
                if (confirmationToken) {
                    confirmationTokenPtr = confirmationToken->get().data();
                    confirmationTokenSize = confirmationToken->get().size();
                }
            }
            callback.result(callback.data, responseCode, dataConfirmedPtr, dataConfirmedSize,
                            confirmationTokenPtr, confirmationTokenSize);
        }
    }
};

class ConfuiHidlCompatSession : public HidlConfirmationResultCb,
                                public hidl_death_recipient,
                                public CompatSessionCB {
  public:
    static sp<ConfuiHidlCompatSession> tryGetService() {
        sp<HidlConfirmationUI> service = HidlConfirmationUI::tryGetService();
        if (service) {
            return sp<ConfuiHidlCompatSession>(new ConfuiHidlCompatSession(std::move(service)));
        } else {
            return nullptr;
        }
    }

    uint32_t promptUserConfirmation(ApcCompatCallback callback, const char* prompt_text,
                                    const uint8_t* extra_data, size_t extra_data_size,
                                    const char* locale, ApcCompatUiOptions ui_options) {
        std::string hidl_prompt(prompt_text);
        std::vector<uint8_t> hidl_extra(extra_data, extra_data + extra_data_size);
        std::vector<HidlUIOptions> hidl_ui_options;
        if (ui_options.inverted) {
            hidl_ui_options.push_back(HidlUIOptions::AccessibilityInverted);
        }
        if (ui_options.magnified) {
            hidl_ui_options.push_back(HidlUIOptions::AccessibilityMagnified);
        }
        auto lock = std::lock_guard(callback_lock_);
        if (callback_.result != nullptr) {
            return APC_COMPAT_ERROR_OPERATION_PENDING;
        }
        auto err = service_->linkToDeath(sp(this), 0);
        if (!err.isOk()) {
            LOG(ERROR) << "Communication error: promptUserConfirmation: "
                          "Trying to register death recipient: "
                       << err.description();
            return APC_COMPAT_ERROR_SYSTEM_ERROR;
        }

        auto rc = service_->promptUserConfirmation(sp(this), hidl_prompt, hidl_extra, locale,
                                                   hidl_ui_options);
        if (!rc.isOk()) {
            LOG(ERROR) << "Communication error: promptUserConfirmation: " << rc.description();
        }
        if (rc == ResponseCode::OK) {
            callback_ = callback;
        }
        return responseCode2Compat(rc.withDefault(ResponseCode::SystemError));
    }

    void abort() { service_->abort(); }

    void finalize(ResponseCode responseCode, const hidl_vec<uint8_t>& dataConfirmed,
                  const hidl_vec<uint8_t>& confirmationToken) {
        ApcCompatCallback callback;
        {
            auto lock = std::lock_guard(callback_lock_);
            // Calling the callback consumes the callback data structure. We have to make
            // sure that it can only be called once.
            callback = callback_;
            callback_ = {nullptr, nullptr};
            // Unlock the callback_lock_ here. It must never be held while calling the callback.
        }

        if (callback.result != nullptr) {
            service_->unlinkToDeath(sp(this));

            std::vector<uint8_t> data = dataConfirmed;
            std::vector<uint8_t> token = confirmationToken;

            CompatSessionCB::finalize(responseCode2Compat(responseCode), callback, data, token);
        }
    }

    // HidlConfirmationResultCb overrides:
    android::hardware::Return<void> result(ResponseCode responseCode,
                                           const hidl_vec<uint8_t>& dataConfirmed,
                                           const hidl_vec<uint8_t>& confirmationToken) override {
        finalize(responseCode, dataConfirmed, confirmationToken);
        return Status::ok();
    };

    void serviceDied(uint64_t /* cookie */,
                     const ::android::wp<::android::hidl::base::V1_0::IBase>& /* who */) override {
        finalize(ResponseCode::SystemError, {}, {});
    }

    static uint32_t responseCode2Compat(ResponseCode rc) {
        switch (rc) {
        case ResponseCode::OK:
            return APC_COMPAT_ERROR_OK;
        case ResponseCode::Canceled:
            return APC_COMPAT_ERROR_CANCELLED;
        case ResponseCode::Aborted:
            return APC_COMPAT_ERROR_ABORTED;
        case ResponseCode::OperationPending:
            return APC_COMPAT_ERROR_OPERATION_PENDING;
        case ResponseCode::Ignored:
            return APC_COMPAT_ERROR_IGNORED;
        case ResponseCode::SystemError:
        case ResponseCode::Unimplemented:
        case ResponseCode::Unexpected:
        case ResponseCode::UIError:
        case ResponseCode::UIErrorMissingGlyph:
        case ResponseCode::UIErrorMessageTooLong:
        case ResponseCode::UIErrorMalformedUTF8Encoding:
        default:
            return APC_COMPAT_ERROR_SYSTEM_ERROR;
        }
    }

  private:
    ConfuiHidlCompatSession(sp<HidlConfirmationUI> service)
        : service_(service), callback_{nullptr, nullptr} {}
    sp<HidlConfirmationUI> service_;

    // The callback_lock_ protects the callback_ field against concurrent modification.
    // IMPORTANT: It must never be held while calling the call back.
    std::mutex callback_lock_;
    ApcCompatCallback callback_;
};

class ConfuiAidlCompatSession : public AidlBnConfirmationResultCb, public CompatSessionCB {
  public:
    static std::shared_ptr<ConfuiAidlCompatSession> tryGetService() {
        constexpr const char confirmationUIServiceName[] =
            "android.hardware.confirmationui.IConfirmationUI/default";
        if (!AServiceManager_isDeclared(confirmationUIServiceName)) {
            LOG(INFO) << confirmationUIServiceName << " is not declared in VINTF";
            return nullptr;
        }
        std::shared_ptr<AidlConfirmationUI> aidlService = AidlConfirmationUI::fromBinder(
            ndk::SpAIBinder(AServiceManager_waitForService(confirmationUIServiceName)));
        if (aidlService) {
            return ::ndk::SharedRefBase::make<ConfuiAidlCompatSession>(aidlService);
        }

        return nullptr;
    }

    uint32_t promptUserConfirmation(ApcCompatCallback callback, const char* prompt_text,
                                    const uint8_t* extra_data, size_t extra_data_size,
                                    const char* locale, ApcCompatUiOptions ui_options) {
        std::vector<uint8_t> aidl_prompt(prompt_text, prompt_text + strlen(prompt_text));
        std::vector<uint8_t> aidl_extra(extra_data, extra_data + extra_data_size);
        std::vector<AidlUIOptions> aidl_ui_options;
        if (ui_options.inverted) {
            aidl_ui_options.push_back(AidlUIOptions::ACCESSIBILITY_INVERTED);
        }
        if (ui_options.magnified) {
            aidl_ui_options.push_back(AidlUIOptions::ACCESSIBILITY_MAGNIFIED);
        }
        auto lock = std::lock_guard(callback_lock_);
        if (callback_.result != nullptr) {
            return APC_COMPAT_ERROR_OPERATION_PENDING;
        }

        if (!aidlService_) {
            return APC_COMPAT_ERROR_SYSTEM_ERROR;
        }
        auto linkRet =
            AIBinder_linkToDeath(aidlService_->asBinder().get(), death_recipient_.get(), this);
        if (linkRet != STATUS_OK) {
            LOG(ERROR) << "Communication error: promptUserConfirmation: "
                          "Trying to register death recipient: ";
            return APC_COMPAT_ERROR_SYSTEM_ERROR;
        }

        auto rc = aidlService_->promptUserConfirmation(ref<ConfuiAidlCompatSession>(), aidl_prompt,
                                                       aidl_extra, locale, aidl_ui_options);
        int ret = getReturnCode(rc);
        if (ret == AidlConfirmationUI::OK) {
            callback_ = callback;
        } else {
            LOG(ERROR) << "Communication error: promptUserConfirmation: " << rc.getDescription();
        }
        return responseCode2Compat(ret);
    }

    void abort() {
        if (aidlService_) {
            aidlService_->abort();
        }
    }

    void
    finalize(int32_t responseCode,
             std::optional<std::reference_wrapper<const std::vector<uint8_t>>> dataConfirmed,
             std::optional<std::reference_wrapper<const std::vector<uint8_t>>> confirmationToken) {
        ApcCompatCallback callback;
        {
            auto lock = std::lock_guard(callback_lock_);
            // Calling the callback consumes the callback data structure. We have to make
            // sure that it can only be called once.
            callback = callback_;
            callback_ = {nullptr, nullptr};
            // Unlock the callback_lock_ here. It must never be held while calling the callback.
        }

        if (callback.result != nullptr) {
            if (aidlService_) {
                AIBinder_unlinkToDeath(aidlService_->asBinder().get(), death_recipient_.get(),
                                       this);
            }
            CompatSessionCB::finalize(responseCode2Compat(responseCode), callback, dataConfirmed,
                                      confirmationToken);
        }
    }

    // AidlBnConfirmationResultCb overrides:
    ::ndk::ScopedAStatus result(int32_t responseCode, const std::vector<uint8_t>& dataConfirmed,
                                const std::vector<uint8_t>& confirmationToken) override {
        finalize(responseCode, dataConfirmed, confirmationToken);
        return ::ndk::ScopedAStatus::ok();
    };

    void serviceDied() {
        aidlService_.reset();
        aidlService_ = nullptr;
        finalize(AidlConfirmationUI::SYSTEM_ERROR, {}, {});
    }

    static void binderDiedCallbackAidl(void* ptr) {
        LOG(ERROR) << __func__ << " : ConfuiAidlCompatSession Service died.";
        auto aidlSession = static_cast<ConfuiAidlCompatSession*>(ptr);
        if (aidlSession == nullptr) {
            LOG(ERROR) << __func__ << ": Null ConfuiAidlCompatSession HAL died.";
            return;
        }
        aidlSession->serviceDied();
    }

    int getReturnCode(const ::ndk::ScopedAStatus& result) {
        if (result.isOk()) return AidlConfirmationUI::OK;

        if (result.getExceptionCode() == EX_SERVICE_SPECIFIC) {
            return static_cast<int>(result.getServiceSpecificError());
        }
        return result.getStatus();
    }

    uint32_t responseCode2Compat(int32_t rc) {
        switch (rc) {
        case AidlConfirmationUI::OK:
            return APC_COMPAT_ERROR_OK;
        case AidlConfirmationUI::CANCELED:
            return APC_COMPAT_ERROR_CANCELLED;
        case AidlConfirmationUI::ABORTED:
            return APC_COMPAT_ERROR_ABORTED;
        case AidlConfirmationUI::OPERATION_PENDING:
            return APC_COMPAT_ERROR_OPERATION_PENDING;
        case AidlConfirmationUI::IGNORED:
            return APC_COMPAT_ERROR_IGNORED;
        case AidlConfirmationUI::SYSTEM_ERROR:
        case AidlConfirmationUI::UNIMPLEMENTED:
        case AidlConfirmationUI::UNEXPECTED:
        case AidlConfirmationUI::UI_ERROR:
        case AidlConfirmationUI::UI_ERROR_MISSING_GLYPH:
        case AidlConfirmationUI::UI_ERROR_MESSAGE_TOO_LONG:
        case AidlConfirmationUI::UI_ERROR_MALFORMED_UTF8ENCODING:
        default:
            return APC_COMPAT_ERROR_SYSTEM_ERROR;
        }
    }

    ConfuiAidlCompatSession(std::shared_ptr<AidlConfirmationUI> service)
        : aidlService_(service), callback_{nullptr, nullptr} {
        death_recipient_ = ::ndk::ScopedAIBinder_DeathRecipient(
            AIBinder_DeathRecipient_new(binderDiedCallbackAidl));
    }

    virtual ~ConfuiAidlCompatSession() = default;
    ConfuiAidlCompatSession(const ConfuiAidlCompatSession&) = delete;
    ConfuiAidlCompatSession& operator=(const ConfuiAidlCompatSession&) = delete;

  private:
    std::shared_ptr<AidlConfirmationUI> aidlService_;

    // The callback_lock_ protects the callback_ field against concurrent modification.
    // IMPORTANT: It must never be held while calling the call back.
    std::mutex callback_lock_;
    ApcCompatCallback callback_;

    ::ndk::ScopedAIBinder_DeathRecipient death_recipient_;
};

class ApcCompatSession {
  public:
    static ApcCompatServiceHandle getApcCompatSession() {
        auto aidlCompatSession = ConfuiAidlCompatSession::tryGetService();
        if (aidlCompatSession) {
            return new ApcCompatSession(std::move(aidlCompatSession), nullptr);
        }

        sp<ConfuiHidlCompatSession> hidlCompatSession = ConfuiHidlCompatSession::tryGetService();
        if (hidlCompatSession) {
            return new ApcCompatSession(nullptr, std::move(hidlCompatSession));
        }

        LOG(ERROR) << "ConfirmationUI: Not found Service";
        return nullptr;
    }

    uint32_t promptUserConfirmation(ApcCompatCallback callback, const char* prompt_text,
                                    const uint8_t* extra_data, size_t extra_data_size,
                                    char const* locale, ApcCompatUiOptions ui_options) {
        if (aidlCompatSession_) {
            return aidlCompatSession_->promptUserConfirmation(callback, prompt_text, extra_data,
                                                              extra_data_size, locale, ui_options);
        } else {
            return hidlCompatSession_->promptUserConfirmation(callback, prompt_text, extra_data,
                                                              extra_data_size, locale, ui_options);
        }
    }

    void abortUserConfirmation() {
        if (aidlCompatSession_) {
            return aidlCompatSession_->abort();
        } else {
            return hidlCompatSession_->abort();
        }
    }

    void closeUserConfirmationService() {
        // Closing the handle implicitly aborts an ongoing sessions.
        // Note that a resulting callback is still safely conducted, because we only delete a
        // StrongPointer below. libhwbinder still owns another StrongPointer to this session.
        abortUserConfirmation();
    }

    ApcCompatSession(std::shared_ptr<ConfuiAidlCompatSession> aidlCompatSession,
                     sp<ConfuiHidlCompatSession> hidlCompatSession)
        : aidlCompatSession_(aidlCompatSession), hidlCompatSession_(hidlCompatSession) {}

  private:
    std::shared_ptr<ConfuiAidlCompatSession> aidlCompatSession_;
    sp<ConfuiHidlCompatSession> hidlCompatSession_;
};
}  // namespace keystore2

using namespace keystore2;

ApcCompatServiceHandle tryGetUserConfirmationService() {
    return reinterpret_cast<ApcCompatServiceHandle>(ApcCompatSession::getApcCompatSession());
}

uint32_t promptUserConfirmation(ApcCompatServiceHandle handle, ApcCompatCallback callback,
                                const char* prompt_text, const uint8_t* extra_data,
                                size_t extra_data_size, char const* locale,
                                ApcCompatUiOptions ui_options) {
    auto session = reinterpret_cast<ApcCompatSession*>(handle);
    return session->promptUserConfirmation(callback, prompt_text, extra_data, extra_data_size,
                                           locale, ui_options);
}

void abortUserConfirmation(ApcCompatServiceHandle handle) {
    auto session = reinterpret_cast<ApcCompatSession*>(handle);
    session->abortUserConfirmation();
}

void closeUserConfirmationService(ApcCompatServiceHandle handle) {
    auto session = reinterpret_cast<ApcCompatSession*>(handle);
    session->closeUserConfirmationService();
    delete reinterpret_cast<ApcCompatSession*>(handle);
}

const ApcCompatServiceHandle INVALID_SERVICE_HANDLE = nullptr;