blob: e5af487b5df14ee6ccb062e83d7d7697ae2f896a [file] [log] [blame]
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001/*
2 * Copyright (C) 2015 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
Paul Crowley3b71fc52017-10-09 10:55:21 -070017#include <string>
Eric Biggers18ba1522021-04-06 12:02:56 -070018#include <vector>
Paul Crowley3b71fc52017-10-09 10:55:21 -070019
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080020#include <cutils/multiuser.h>
21
Paul Crowleyc8a3ef32019-09-11 15:00:08 -070022bool fscrypt_initialize_systemwide_keys();
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080023
Eric Biggersa701c452018-10-23 13:06:55 -070024bool fscrypt_init_user0();
Eric Biggersfb486662022-03-22 00:33:52 +000025extern bool fscrypt_init_user0_done;
Eric Biggersa701c452018-10-23 13:06:55 -070026bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral);
27bool fscrypt_destroy_user_key(userid_t user_id);
Satya Tangiralae1361712021-03-15 15:33:08 -070028bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& secret);
29bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& secret);
Eric Biggersa701c452018-10-23 13:06:55 -070030bool fscrypt_fixate_newest_user_key_auth(userid_t user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080031
Eric Biggers18ba1522021-04-06 12:02:56 -070032std::vector<int> fscrypt_get_unlocked_users();
Satya Tangiralae1361712021-03-15 15:33:08 -070033bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& secret);
Eric Biggersa701c452018-10-23 13:06:55 -070034bool fscrypt_lock_user_key(userid_t user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080035
Eric Biggersa701c452018-10-23 13:06:55 -070036bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -070037 int flags);
Eric Biggersa701c452018-10-23 13:06:55 -070038bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags);
Paul Lawrence707fd6c2015-04-28 22:14:15 +000039
Eric Biggersa701c452018-10-23 13:06:55 -070040bool fscrypt_destroy_volume_keys(const std::string& volume_uuid);