blob: d4a482c96e942eea4cf1b8957e30879496ba835b [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 Biggersa5a468c2023-12-12 23:53:55 +000026bool fscrypt_create_user_keys(userid_t user_id, bool ephemeral);
Eric Biggersa53a66c2023-10-19 19:47:20 +000027bool fscrypt_destroy_user_keys(userid_t user_id);
Ellen Arteca5177ed22024-04-03 21:18:01 +000028bool fscrypt_set_ce_key_protection(userid_t user_id, const std::vector<uint8_t>& secret);
Eric Biggersb615f3b2022-11-09 05:48:45 +000029void fscrypt_deferred_fixate_ce_keys();
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080030
Eric Biggers18ba1522021-04-06 12:02:56 -070031std::vector<int> fscrypt_get_unlocked_users();
Ellen Arteca5177ed22024-04-03 21:18:01 +000032bool fscrypt_unlock_ce_storage(userid_t user_id, const std::vector<uint8_t>& secret);
Eric Biggersa53a66c2023-10-19 19:47:20 +000033bool fscrypt_lock_ce_storage(userid_t user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080034
Eric Biggersa5a468c2023-12-12 23:53:55 +000035bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int flags);
Eric Biggersa701c452018-10-23 13:06:55 -070036bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags);
Paul Lawrence707fd6c2015-04-28 22:14:15 +000037
Eric Biggersa701c452018-10-23 13:06:55 -070038bool fscrypt_destroy_volume_keys(const std::string& volume_uuid);
Neeraj Sonic114b622018-12-14 15:18:15 +053039bool is_metadata_wrapped_key_supported();