resolve merge conflicts of 2b6f9ce823
to master.
Change-Id: I69f36f560334b11b099f2eb15999603dd2469d4f
This commit is contained in:
commit
75fc83bac8
4 changed files with 66 additions and 0 deletions
|
@ -29,6 +29,7 @@ common_src_files := \
|
|||
TrimTask.cpp \
|
||||
Keymaster.cpp \
|
||||
KeyStorage.cpp \
|
||||
secontext.cpp \
|
||||
|
||||
common_c_includes := \
|
||||
system/extras/ext4_utils \
|
||||
|
|
18
cryptfs.c
18
cryptfs.c
|
@ -43,7 +43,9 @@
|
|||
#include <fs_mgr.h>
|
||||
#include <time.h>
|
||||
#include <math.h>
|
||||
#include <selinux/selinux.h>
|
||||
#include "cryptfs.h"
|
||||
#include "secontext.h"
|
||||
#define LOG_TAG "Cryptfs"
|
||||
#include "cutils/log.h"
|
||||
#include "cutils/properties.h"
|
||||
|
@ -1712,6 +1714,15 @@ static int cryptfs_restart_internal(int restart_main)
|
|||
/* If that succeeded, then mount the decrypted filesystem */
|
||||
int retries = RETRY_MOUNT_ATTEMPTS;
|
||||
int mount_rc;
|
||||
|
||||
/*
|
||||
* fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
|
||||
* partitions in the fsck domain.
|
||||
*/
|
||||
if (setexeccon(secontextFsck())){
|
||||
SLOGE("Failed to setexeccon");
|
||||
return -1;
|
||||
}
|
||||
while ((mount_rc = fs_mgr_do_mount(fstab, DATA_MNT_POINT,
|
||||
crypto_blkdev, 0))
|
||||
!= 0) {
|
||||
|
@ -1733,9 +1744,16 @@ static int cryptfs_restart_internal(int restart_main)
|
|||
cryptfs_set_corrupt();
|
||||
cryptfs_trigger_restart_min_framework();
|
||||
SLOGI("Started framework to offer wipe");
|
||||
if (setexeccon(NULL)) {
|
||||
SLOGE("Failed to setexeccon");
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
if (setexeccon(NULL)) {
|
||||
SLOGE("Failed to setexeccon");
|
||||
return -1;
|
||||
}
|
||||
|
||||
property_set("vold.decrypt", "trigger_load_persist_props");
|
||||
/* Create necessary paths on /data */
|
||||
|
|
22
secontext.cpp
Normal file
22
secontext.cpp
Normal file
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* Copyright (C) 2016 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 <Utils.h>
|
||||
#include "secontext.h"
|
||||
|
||||
security_context_t secontextFsck()
|
||||
{
|
||||
return android::vold::sFsckContext;
|
||||
}
|
25
secontext.h
Normal file
25
secontext.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* Copyright (C) 2016 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.
|
||||
*/
|
||||
#ifndef _SECONTEXT_H_
|
||||
#define _SECONTEXT_H_
|
||||
|
||||
#include <selinux/selinux.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
security_context_t secontextFsck();
|
||||
__END_DECLS
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue